ETH Price: $3,362.82 (-1.58%)
Gas: 8 Gwei

Token

RichKids (RKS)
 

Overview

Max Total Supply

7,389 RKS

Holders

3,023

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 RKS
0x920976068920991B9E47c4122b6d62803756C027
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

By multi-platinum hip-hop artist, Rich the Kid, RICH KIDS is a collection of 7,427 cartoon-styled, blockchain baby bad asses, that Plug Walks the trust fund lifestyle to the hood!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RichKids

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

contract RichKids is ERC721Enumerable, Ownable {
	//call up functions
	using Strings for uint256;

	//global variables
	uint256 public constant RK_PRIVATE = 1600;
	uint256 public constant RK_PUBLIC = 5827;
	uint256 public constant RK_MAX = RK_PRIVATE + RK_PUBLIC;
	uint256 public constant RK_PRICE = 0.09 ether;
	uint256 public constant RK_PER_MINT = 20;

	//private variables addresses
	address private _signerAddress;
	address private _withdraw1 = 0x874552a6902841A3f8A4eE5B9427982E3930782D;
	address private _withdraw2 = 0x39C280B23b892a32ad7867497d45fAd2Be02D519;
	string private _contractURI;
	string private _tokenBaseURI;

	//mappings
	mapping(address => bool) public presalerList;
	mapping(address => uint256) public presalerListPurchases;

	//contract states
	uint256 public publicAmountMinted;
	uint256 public privateAmountMinted;
	uint256 public presalePurchaseLimit = 2;
	bool public presaleLive;
	bool public saleLive;
	bool public locked;

	constructor() ERC721('RichKids', 'RKS') {
		for (uint256 i = 0; i < 100; i++) {
			_signerAddress = _msgSender();
			_safeMint(_signerAddress, totalSupply() + 1);
		}
	}

	modifier notLocked() {
		require(!locked, 'Contract metadata methods are locked');
		_;
	}

	//whitelisted addresses that will be able to mint before public launch
	function addToPresaleList(address[] calldata entries) external onlyOwner {
		for (uint256 i = 0; i < entries.length; i++) {
			address entry = entries[i];
			require(entry != address(0), 'NULL_ADDRESS');
			require(!presalerList[entry], 'DUPLICATE_ENTRY');

			presalerList[entry] = true;
		}
	}

	//removes addresses from whitelisted users
	function removeFromPresaleList(address[] calldata entries)
		external
		onlyOwner
	{
		for (uint256 i = 0; i < entries.length; i++) {
			address entry = entries[i];
			require(entry != address(0), 'NULL_ADDRESS');

			presalerList[entry] = false;
		}
	}

	//allows users to mint a richkid
	function buy(uint256 tokenQuantity) external payable {
		require(saleLive, 'SALE_CLOSED');
		require(!presaleLive, 'ONLY_PRESALE');

		require(totalSupply() < RK_MAX, 'OUT_OF_STOCK');
		require(publicAmountMinted + tokenQuantity <= RK_PUBLIC, 'EXCEED_PUBLIC');
		require(tokenQuantity <= RK_PER_MINT, 'EXCEED_RK_PER_MINT');
		require(RK_PRICE * tokenQuantity <= msg.value, 'INSUFFICIENT_ETH');

		for (uint256 i = 0; i < tokenQuantity; i++) {
			publicAmountMinted++;
			_safeMint(msg.sender, totalSupply() + 1);
		}
	}

	function presaleBuy(uint256 tokenQuantity) external payable {
		require(!saleLive && presaleLive, 'PRESALE_CLOSED');
		require(presalerList[msg.sender], 'NOT_QUALIFIED');
		require(totalSupply() < RK_MAX, 'OUT_OF_STOCK');
		require(
			privateAmountMinted + tokenQuantity <= RK_PRIVATE,
			'EXCEED_PRIVATE'
		);
		require(
			presalerListPurchases[msg.sender] + tokenQuantity <= presalePurchaseLimit,
			'EXCEED_ALLOC'
		);
		require(RK_PRICE * tokenQuantity <= msg.value, 'INSUFFICIENT_ETH');

		for (uint256 i = 0; i < tokenQuantity; i++) {
			privateAmountMinted++;
			presalerListPurchases[msg.sender]++;
			_safeMint(msg.sender, totalSupply() + 1);
		}
	}

	function withdraw() external onlyOwner {
		payable(_withdraw1).transfer(address(this).balance / 2);
		payable(_withdraw2).transfer(address(this).balance);
	}

	function isPresaler(address addr) external view returns (bool) {
		return presalerList[addr];
	}

	function presalePurchasedCount(address addr) external view returns (uint256) {
		return presalerListPurchases[addr];
	}

	// Owner functions for enabling presale, sale, revealing and setting the provenance hash
	function lockMetadata() external onlyOwner {
		locked = true;
	}

	function togglePresaleStatus() external onlyOwner {
		presaleLive = !presaleLive;
	}

	function toggleSaleStatus() external onlyOwner {
		saleLive = !saleLive;
	}

	function setContractURI(string calldata URI) external onlyOwner notLocked {
		_contractURI = URI;
	}

	function setBaseURI(string calldata URI) external onlyOwner notLocked {
		_tokenBaseURI = URI;
	}

	function contractURI() public view returns (string memory) {
		return _contractURI;
	}

	function tokenURI(uint256 tokenId)
		public
		view
		override(ERC721)
		returns (string memory)
	{
		require(_exists(tokenId), 'Cannot query non-existent token');

		return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
	}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : 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 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RK_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RK_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RK_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RK_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RK_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273874552a6902841a3f8a4ee5b9427982e3930782d600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507339c280b23b892a32ad7867497d45fad2be02d519600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002601455348015620000c057600080fd5b506040518060400160405280600881526020017f526963684b6964730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f524b53000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014592919062000d0f565b5080600190805190602001906200015e92919062000d0f565b50505062000181620001756200024c60201b60201c565b6200025460201b60201c565b60005b606481101562000245576200019e6200024c60201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200022f600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620002176200031a60201b60201c565b62000223919062001010565b6200032760201b60201c565b80806200023c906200117e565b91505062000184565b50620013a8565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600880549050905090565b620003498282604051806020016040528060008152506200034d60201b60201c565b5050565b6200035f8383620003bb60201b60201c565b620003746000848484620005a160201b60201c565b620003b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ad9062000f5b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200042e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004259062000fc1565b60405180910390fd5b6200043f816200075b60201b60201c565b1562000482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004799062000f7d565b60405180910390fd5b6200049660008383620007c760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004e8919062001010565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005cf8473ffffffffffffffffffffffffffffffffffffffff166200090e60201b6200253e1760201c565b156200074e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006016200024c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000625949392919062000f07565b602060405180830381600087803b1580156200064057600080fd5b505af19250505080156200067457506040513d601f19601f8201168201806040525081019062000671919062000dd6565b60015b620006fd573d8060008114620006a7576040519150601f19603f3d011682016040523d82523d6000602084013e620006ac565b606091505b50600081511415620006f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ec9062000f5b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000753565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007df8383836200092160201b620025511760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200082c5762000826816200092660201b60201c565b62000874565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000873576200087283826200096f60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008c157620008bb8162000aec60201b60201c565b62000909565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009085762000907828262000bc860201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009898462000c5460201b620012931760201c565b6200099591906200106d565b905060006007600084815260200190815260200160002054905081811462000a7b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b0291906200106d565b905060006009600084815260200190815260200160002054905060006008838154811062000b355762000b3462001259565b5b90600052602060002001549050806008838154811062000b5a5762000b5962001259565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000bac5762000bab6200122a565b5b6001900381819060005260206000200160009055905550505050565b600062000be08362000c5460201b620012931760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cbf9062000f9f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d1d9062001148565b90600052602060002090601f01602090048101928262000d41576000855562000d8d565b82601f1062000d5c57805160ff191683800117855562000d8d565b8280016001018555821562000d8d579182015b8281111562000d8c57825182559160200191906001019062000d6f565b5b50905062000d9c919062000da0565b5090565b5b8082111562000dbb57600081600090555060010162000da1565b5090565b60008151905062000dd0816200138e565b92915050565b60006020828403121562000def5762000dee62001288565b5b600062000dff8482850162000dbf565b91505092915050565b62000e1381620010a8565b82525050565b600062000e268262000fe3565b62000e32818562000fee565b935062000e4481856020860162001112565b62000e4f816200128d565b840191505092915050565b600062000e6960328362000fff565b915062000e76826200129e565b604082019050919050565b600062000e90601c8362000fff565b915062000e9d82620012ed565b602082019050919050565b600062000eb7602a8362000fff565b915062000ec48262001316565b604082019050919050565b600062000ede60208362000fff565b915062000eeb8262001365565b602082019050919050565b62000f018162001108565b82525050565b600060808201905062000f1e600083018762000e08565b62000f2d602083018662000e08565b62000f3c604083018562000ef6565b818103606083015262000f50818462000e19565b905095945050505050565b6000602082019050818103600083015262000f768162000e5a565b9050919050565b6000602082019050818103600083015262000f988162000e81565b9050919050565b6000602082019050818103600083015262000fba8162000ea8565b9050919050565b6000602082019050818103600083015262000fdc8162000ecf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200101d8262001108565b91506200102a8362001108565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010625762001061620011cc565b5b828201905092915050565b60006200107a8262001108565b9150620010878362001108565b9250828210156200109d576200109c620011cc565b5b828203905092915050565b6000620010b582620010e8565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200113257808201518184015260208101905062001115565b8381111562001142576000848401525b50505050565b600060028204905060018216806200116157607f821691505b60208210811415620011785762001177620011fb565b5b50919050565b60006200118b8262001108565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620011c157620011c0620011cc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200139981620010bc565b8114620013a557600080fd5b50565b61511b80620013b86000396000f3fe6080604052600436106102725760003560e01c8063815f7bbd1161014f578063a22cb465116100c1578063e081b7811161007a578063e081b78114610936578063e8a3d48514610961578063e985e9c51461098c578063f2fde38b146109c9578063f4743070146109f2578063f6f24e4614610a1d57610272565b8063a22cb46514610837578063b179e06014610860578063b88d4fde14610889578063c87b56dd146108b2578063cf309012146108ef578063d96a094a1461091a57610272565b806395d89b411161011357806395d89b4114610713578063989bdbb61461073e5780639bf80316146107555780639cf2e8d6146107925780639e273b2f146107cf578063a11c695e1461080c57610272565b8063815f7bbd1461064d57806383a9e049146106695780638da5cb5b14610694578063938e3d7b146106bf578063940f1ada146106e857610272565b80634f6ccce7116101e85780636e18485c116101ac5780636e18485c1461056357806370a082311461058e578063715018a6146105cb5780637204a3c9146105e25780637bffb4ce1461060b578063810f1ae81461062257610272565b80634f6ccce71461045857806355f804b31461049557806359a12ad5146104be5780635ce7af1f146104e95780636352211e1461052657610272565b806318160ddd1161023a57806318160ddd1461035c57806323b872dd146103875780632f745c59146103b057806337e41edc146103ed5780633ccfd60b1461041857806342842e0e1461042f57610272565b806301ffc9a714610277578063049c5c49146102b457806306fdde03146102cb578063081812fc146102f6578063095ea7b314610333575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139bc565b610a48565b6040516102ab91906140a7565b60405180910390f35b3480156102c057600080fd5b506102c9610ac2565b005b3480156102d757600080fd5b506102e0610b6a565b6040516102ed91906140c2565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613a63565b610bfc565b60405161032a9190614040565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061392f565b610c81565b005b34801561036857600080fd5b50610371610d99565b60405161037e91906144c4565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613819565b610da6565b005b3480156103bc57600080fd5b506103d760048036038101906103d2919061392f565b610e06565b6040516103e491906144c4565b60405180910390f35b3480156103f957600080fd5b50610402610eab565b60405161040f91906144c4565b60405180910390f35b34801561042457600080fd5b5061042d610ebe565b005b34801561043b57600080fd5b5061045660048036038101906104519190613819565b61101a565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613a63565b61103a565b60405161048c91906144c4565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613a16565b6110ab565b005b3480156104ca57600080fd5b506104d361118d565b6040516104e091906144c4565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906137ac565b611193565b60405161051d91906144c4565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613a63565b6111dc565b60405161055a9190614040565b60405180910390f35b34801561056f57600080fd5b5061057861128e565b60405161058591906144c4565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b091906137ac565b611293565b6040516105c291906144c4565b60405180910390f35b3480156105d757600080fd5b506105e061134b565b005b3480156105ee57600080fd5b506106096004803603810190610604919061396f565b6113d3565b005b34801561061757600080fd5b506106206115f7565b005b34801561062e57600080fd5b5061063761169f565b60405161064491906144c4565b60405180910390f35b61066760048036038101906106629190613a63565b6116ab565b005b34801561067557600080fd5b5061067e6119da565b60405161068b91906140a7565b60405180910390f35b3480156106a057600080fd5b506106a96119ed565b6040516106b69190614040565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613a16565b611a17565b005b3480156106f457600080fd5b506106fd611af9565b60405161070a91906144c4565b60405180910390f35b34801561071f57600080fd5b50610728611aff565b60405161073591906140c2565b60405180910390f35b34801561074a57600080fd5b50610753611b91565b005b34801561076157600080fd5b5061077c600480360381019061077791906137ac565b611c2a565b60405161078991906144c4565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b491906137ac565b611c42565b6040516107c691906140a7565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f191906137ac565b611c62565b60405161080391906140a7565b60405180910390f35b34801561081857600080fd5b50610821611cb8565b60405161082e91906144c4565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906138ef565b611cbe565b005b34801561086c57600080fd5b506108876004803603810190610882919061396f565b611e3f565b005b34801561089557600080fd5b506108b060048036038101906108ab919061386c565b611fd6565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613a63565b612038565b6040516108e691906140c2565b60405180910390f35b3480156108fb57600080fd5b506109046120b4565b60405161091191906140a7565b60405180910390f35b610934600480360381019061092f9190613a63565b6120c7565b005b34801561094257600080fd5b5061094b612301565b60405161095891906140a7565b60405180910390f35b34801561096d57600080fd5b50610976612314565b60405161098391906140c2565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae91906137d9565b6123a6565b6040516109c091906140a7565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb91906137ac565b61243a565b005b3480156109fe57600080fd5b50610a07612532565b604051610a1491906144c4565b60405180910390f35b348015610a2957600080fd5b50610a32612538565b604051610a3f91906144c4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abb5750610aba82612556565b5b9050919050565b610aca612638565b73ffffffffffffffffffffffffffffffffffffffff16610ae86119ed565b73ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590614344565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b606060008054610b7990614758565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba590614758565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b6000610c0782612640565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614324565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8c826111dc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906143e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1c612638565b73ffffffffffffffffffffffffffffffffffffffff161480610d4b5750610d4a81610d45612638565b6123a6565b5b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190614284565b60405180910390fd5b610d9483836126ac565b505050565b6000600880549050905090565b610db7610db1612638565b82612765565b610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90614424565b60405180910390fd5b610e01838383612843565b505050565b6000610e1183611293565b8210610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990614124565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6116c3610640610ebb919061458d565b81565b610ec6612638565b73ffffffffffffffffffffffffffffffffffffffff16610ee46119ed565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190614344565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600247610f8391906145e3565b9081150290604051600060405180830381858888f19350505050158015610fae573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611017573d6000803e3d6000fd5b50565b61103583838360405180602001604052806000815250611fd6565b505050565b6000611044610d99565b8210611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90614444565b60405180910390fd5b60088281548110611099576110986148f1565b5b90600052602060002001549050919050565b6110b3612638565b73ffffffffffffffffffffffffffffffffffffffff166110d16119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90614344565b60405180910390fd5b601560029054906101000a900460ff1615611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614384565b60405180910390fd5b8181600f9190611188929190613584565b505050565b60135481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906142c4565b60405180910390fd5b80915050919050565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906142a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611353612638565b73ffffffffffffffffffffffffffffffffffffffff166113716119ed565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90614344565b60405180910390fd5b6113d16000612a9f565b565b6113db612638565b73ffffffffffffffffffffffffffffffffffffffff166113f96119ed565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690614344565b60405180910390fd5b60005b828290508110156115f2576000838383818110611472576114716148f1565b5b905060200201602081019061148791906137ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090614104565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614244565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806115ea906147bb565b915050611452565b505050565b6115ff612638565b73ffffffffffffffffffffffffffffffffffffffff1661161d6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614344565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b67013fbe85edc9000081565b601560019054906101000a900460ff161580156116d45750601560009054906101000a900460ff165b611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906140e4565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906143a4565b60405180910390fd5b6116c36106406117af919061458d565b6117b7610d99565b106117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906141e4565b60405180910390fd5b61064081601354611808919061458d565b1115611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090614464565b60405180910390fd5b60145481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611897919061458d565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90614484565b60405180910390fd5b348167013fbe85edc900006118ed9190614614565b111561192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906144a4565b60405180910390fd5b60005b818110156119d6576013600081548092919061194c906147bb565b9190505550601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119a1906147bb565b91905055506119c33360016119b4610d99565b6119be919061458d565b612b65565b80806119ce906147bb565b915050611931565b5050565b601560009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a1f612638565b73ffffffffffffffffffffffffffffffffffffffff16611a3d6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90614344565b60405180910390fd5b601560029054906101000a900460ff1615611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614384565b60405180910390fd5b8181600e9190611af4929190613584565b505050565b60125481565b606060018054611b0e90614758565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3a90614758565b8015611b875780601f10611b5c57610100808354040283529160200191611b87565b820191906000526020600020905b815481529060010190602001808311611b6a57829003601f168201915b5050505050905090565b611b99612638565b73ffffffffffffffffffffffffffffffffffffffff16611bb76119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614344565b60405180910390fd5b6001601560026101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915090505481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61064081565b611cc6612638565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b906141c4565b60405180910390fd5b8060056000611d41612638565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dee612638565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e3391906140a7565b60405180910390a35050565b611e47612638565b73ffffffffffffffffffffffffffffffffffffffff16611e656119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614344565b60405180910390fd5b60005b82829050811015611fd1576000838383818110611ede57611edd6148f1565b5b9050602002016020810190611ef391906137ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c90614104565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611fc9906147bb565b915050611ebe565b505050565b611fe7611fe1612638565b83612765565b612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614424565b60405180910390fd5b61203284848484612b83565b50505050565b606061204382612640565b612082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612079906143c4565b60405180910390fd5b600f61208d83612bdf565b60405160200161209e92919061401c565b6040516020818303038152906040529050919050565b601560029054906101000a900460ff1681565b601560019054906101000a900460ff16612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614204565b60405180910390fd5b601560009054906101000a900460ff1615612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90614264565b60405180910390fd5b6116c3610640612176919061458d565b61217e610d99565b106121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b5906141e4565b60405180910390fd5b6116c3816012546121cf919061458d565b1115612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614404565b60405180910390fd5b6014811115612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906142e4565b60405180910390fd5b348167013fbe85edc900006122699190614614565b11156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a1906144a4565b60405180910390fd5b60005b818110156122fd57601260008154809291906122c8906147bb565b91905055506122ea3360016122db610d99565b6122e5919061458d565b612b65565b80806122f5906147bb565b9150506122ad565b5050565b601560019054906101000a900460ff1681565b6060600e805461232390614758565b80601f016020809104026020016040519081016040528092919081815260200182805461234f90614758565b801561239c5780601f106123715761010080835404028352916020019161239c565b820191906000526020600020905b81548152906001019060200180831161237f57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612442612638565b73ffffffffffffffffffffffffffffffffffffffff166124606119ed565b73ffffffffffffffffffffffffffffffffffffffff16146124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90614344565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614164565b60405180910390fd5b61252f81612a9f565b50565b60145481565b6116c381565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061262157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612631575061263082612d40565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661271f836111dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061277082612640565b6127af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a690614224565b60405180910390fd5b60006127ba836111dc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061282957508373ffffffffffffffffffffffffffffffffffffffff1661281184610bfc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061283a575061283981856123a6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612863826111dc565b73ffffffffffffffffffffffffffffffffffffffff16146128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b090614364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612920906141a4565b60405180910390fd5b612934838383612daa565b61293f6000826126ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298f919061466e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e6919061458d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b7f828260405180602001604052806000815250612ebe565b5050565b612b8e848484612843565b612b9a84848484612f19565b612bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd090614144565b60405180910390fd5b50505050565b60606000821415612c27576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d3b565b600082905060005b60008214612c59578080612c42906147bb565b915050600a82612c5291906145e3565b9150612c2f565b60008167ffffffffffffffff811115612c7557612c74614920565b5b6040519080825280601f01601f191660200182016040528015612ca75781602001600182028036833780820191505090505b5090505b60008514612d3457600182612cc0919061466e565b9150600a85612ccf9190614804565b6030612cdb919061458d565b60f81b818381518110612cf157612cf06148f1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d2d91906145e3565b9450612cab565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612db5838383612551565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612df857612df3816130b0565b612e37565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e3657612e3583826130f9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7a57612e7581613266565b612eb9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612eb857612eb78282613337565b5b5b505050565b612ec883836133b6565b612ed56000848484612f19565b612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614144565b60405180910390fd5b505050565b6000612f3a8473ffffffffffffffffffffffffffffffffffffffff1661253e565b156130a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f63612638565b8786866040518563ffffffff1660e01b8152600401612f85949392919061405b565b602060405180830381600087803b158015612f9f57600080fd5b505af1925050508015612fd057506040513d601f19601f82011682018060405250810190612fcd91906139e9565b60015b613053573d8060008114613000576040519150601f19603f3d011682016040523d82523d6000602084013e613005565b606091505b5060008151141561304b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304290614144565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130a8565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161310684611293565b613110919061466e565b90506000600760008481526020019081526020016000205490508181146131f5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061327a919061466e565b90506000600960008481526020019081526020016000205490506000600883815481106132aa576132a96148f1565b5b9060005260206000200154905080600883815481106132cc576132cb6148f1565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061331b5761331a6148c2565b5b6001900381819060005260206000200160009055905550505050565b600061334283611293565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341d90614304565b60405180910390fd5b61342f81612640565b1561346f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346690614184565b60405180910390fd5b61347b60008383612daa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134cb919061458d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461359090614758565b90600052602060002090601f0160209004810192826135b257600085556135f9565b82601f106135cb57803560ff19168380011785556135f9565b828001600101855582156135f9579182015b828111156135f85782358255916020019190600101906135dd565b5b509050613606919061360a565b5090565b5b8082111561362357600081600090555060010161360b565b5090565b600061363a61363584614504565b6144df565b9050828152602081018484840111156136565761365561495e565b5b613661848285614716565b509392505050565b60008135905061367881615089565b92915050565b60008083601f84011261369457613693614954565b5b8235905067ffffffffffffffff8111156136b1576136b061494f565b5b6020830191508360208202830111156136cd576136cc614959565b5b9250929050565b6000813590506136e3816150a0565b92915050565b6000813590506136f8816150b7565b92915050565b60008151905061370d816150b7565b92915050565b600082601f83011261372857613727614954565b5b8135613738848260208601613627565b91505092915050565b60008083601f84011261375757613756614954565b5b8235905067ffffffffffffffff8111156137745761377361494f565b5b6020830191508360018202830111156137905761378f614959565b5b9250929050565b6000813590506137a6816150ce565b92915050565b6000602082840312156137c2576137c1614968565b5b60006137d084828501613669565b91505092915050565b600080604083850312156137f0576137ef614968565b5b60006137fe85828601613669565b925050602061380f85828601613669565b9150509250929050565b60008060006060848603121561383257613831614968565b5b600061384086828701613669565b935050602061385186828701613669565b925050604061386286828701613797565b9150509250925092565b6000806000806080858703121561388657613885614968565b5b600061389487828801613669565b94505060206138a587828801613669565b93505060406138b687828801613797565b925050606085013567ffffffffffffffff8111156138d7576138d6614963565b5b6138e387828801613713565b91505092959194509250565b6000806040838503121561390657613905614968565b5b600061391485828601613669565b9250506020613925858286016136d4565b9150509250929050565b6000806040838503121561394657613945614968565b5b600061395485828601613669565b925050602061396585828601613797565b9150509250929050565b6000806020838503121561398657613985614968565b5b600083013567ffffffffffffffff8111156139a4576139a3614963565b5b6139b08582860161367e565b92509250509250929050565b6000602082840312156139d2576139d1614968565b5b60006139e0848285016136e9565b91505092915050565b6000602082840312156139ff576139fe614968565b5b6000613a0d848285016136fe565b91505092915050565b60008060208385031215613a2d57613a2c614968565b5b600083013567ffffffffffffffff811115613a4b57613a4a614963565b5b613a5785828601613741565b92509250509250929050565b600060208284031215613a7957613a78614968565b5b6000613a8784828501613797565b91505092915050565b613a99816146a2565b82525050565b613aa8816146b4565b82525050565b6000613ab98261454a565b613ac38185614560565b9350613ad3818560208601614725565b613adc8161496d565b840191505092915050565b6000613af282614555565b613afc8185614571565b9350613b0c818560208601614725565b613b158161496d565b840191505092915050565b6000613b2b82614555565b613b358185614582565b9350613b45818560208601614725565b80840191505092915050565b60008154613b5e81614758565b613b688186614582565b94506001821660008114613b835760018114613b9457613bc7565b60ff19831686528186019350613bc7565b613b9d85614535565b60005b83811015613bbf57815481890152600182019150602081019050613ba0565b838801955050505b50505092915050565b6000613bdd600e83614571565b9150613be88261497e565b602082019050919050565b6000613c00600c83614571565b9150613c0b826149a7565b602082019050919050565b6000613c23602b83614571565b9150613c2e826149d0565b604082019050919050565b6000613c46603283614571565b9150613c5182614a1f565b604082019050919050565b6000613c69602683614571565b9150613c7482614a6e565b604082019050919050565b6000613c8c601c83614571565b9150613c9782614abd565b602082019050919050565b6000613caf602483614571565b9150613cba82614ae6565b604082019050919050565b6000613cd2601983614571565b9150613cdd82614b35565b602082019050919050565b6000613cf5600c83614571565b9150613d0082614b5e565b602082019050919050565b6000613d18600b83614571565b9150613d2382614b87565b602082019050919050565b6000613d3b602c83614571565b9150613d4682614bb0565b604082019050919050565b6000613d5e600f83614571565b9150613d6982614bff565b602082019050919050565b6000613d81600c83614571565b9150613d8c82614c28565b602082019050919050565b6000613da4603883614571565b9150613daf82614c51565b604082019050919050565b6000613dc7602a83614571565b9150613dd282614ca0565b604082019050919050565b6000613dea602983614571565b9150613df582614cef565b604082019050919050565b6000613e0d601283614571565b9150613e1882614d3e565b602082019050919050565b6000613e30602083614571565b9150613e3b82614d67565b602082019050919050565b6000613e53602c83614571565b9150613e5e82614d90565b604082019050919050565b6000613e76602083614571565b9150613e8182614ddf565b602082019050919050565b6000613e99602983614571565b9150613ea482614e08565b604082019050919050565b6000613ebc602483614571565b9150613ec782614e57565b604082019050919050565b6000613edf600d83614571565b9150613eea82614ea6565b602082019050919050565b6000613f02601f83614571565b9150613f0d82614ecf565b602082019050919050565b6000613f25602183614571565b9150613f3082614ef8565b604082019050919050565b6000613f48600d83614571565b9150613f5382614f47565b602082019050919050565b6000613f6b603183614571565b9150613f7682614f70565b604082019050919050565b6000613f8e602c83614571565b9150613f9982614fbf565b604082019050919050565b6000613fb1600e83614571565b9150613fbc8261500e565b602082019050919050565b6000613fd4600c83614571565b9150613fdf82615037565b602082019050919050565b6000613ff7601083614571565b915061400282615060565b602082019050919050565b6140168161470c565b82525050565b60006140288285613b51565b91506140348284613b20565b91508190509392505050565b60006020820190506140556000830184613a90565b92915050565b60006080820190506140706000830187613a90565b61407d6020830186613a90565b61408a604083018561400d565b818103606083015261409c8184613aae565b905095945050505050565b60006020820190506140bc6000830184613a9f565b92915050565b600060208201905081810360008301526140dc8184613ae7565b905092915050565b600060208201905081810360008301526140fd81613bd0565b9050919050565b6000602082019050818103600083015261411d81613bf3565b9050919050565b6000602082019050818103600083015261413d81613c16565b9050919050565b6000602082019050818103600083015261415d81613c39565b9050919050565b6000602082019050818103600083015261417d81613c5c565b9050919050565b6000602082019050818103600083015261419d81613c7f565b9050919050565b600060208201905081810360008301526141bd81613ca2565b9050919050565b600060208201905081810360008301526141dd81613cc5565b9050919050565b600060208201905081810360008301526141fd81613ce8565b9050919050565b6000602082019050818103600083015261421d81613d0b565b9050919050565b6000602082019050818103600083015261423d81613d2e565b9050919050565b6000602082019050818103600083015261425d81613d51565b9050919050565b6000602082019050818103600083015261427d81613d74565b9050919050565b6000602082019050818103600083015261429d81613d97565b9050919050565b600060208201905081810360008301526142bd81613dba565b9050919050565b600060208201905081810360008301526142dd81613ddd565b9050919050565b600060208201905081810360008301526142fd81613e00565b9050919050565b6000602082019050818103600083015261431d81613e23565b9050919050565b6000602082019050818103600083015261433d81613e46565b9050919050565b6000602082019050818103600083015261435d81613e69565b9050919050565b6000602082019050818103600083015261437d81613e8c565b9050919050565b6000602082019050818103600083015261439d81613eaf565b9050919050565b600060208201905081810360008301526143bd81613ed2565b9050919050565b600060208201905081810360008301526143dd81613ef5565b9050919050565b600060208201905081810360008301526143fd81613f18565b9050919050565b6000602082019050818103600083015261441d81613f3b565b9050919050565b6000602082019050818103600083015261443d81613f5e565b9050919050565b6000602082019050818103600083015261445d81613f81565b9050919050565b6000602082019050818103600083015261447d81613fa4565b9050919050565b6000602082019050818103600083015261449d81613fc7565b9050919050565b600060208201905081810360008301526144bd81613fea565b9050919050565b60006020820190506144d9600083018461400d565b92915050565b60006144e96144fa565b90506144f5828261478a565b919050565b6000604051905090565b600067ffffffffffffffff82111561451f5761451e614920565b5b6145288261496d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145988261470c565b91506145a38361470c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d8576145d7614835565b5b828201905092915050565b60006145ee8261470c565b91506145f98361470c565b92508261460957614608614864565b5b828204905092915050565b600061461f8261470c565b915061462a8361470c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561466357614662614835565b5b828202905092915050565b60006146798261470c565b91506146848361470c565b92508282101561469757614696614835565b5b828203905092915050565b60006146ad826146ec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614743578082015181840152602081019050614728565b83811115614752576000848401525b50505050565b6000600282049050600182168061477057607f821691505b6020821081141561478457614783614893565b5b50919050565b6147938261496d565b810181811067ffffffffffffffff821117156147b2576147b1614920565b5b80604052505050565b60006147c68261470c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147f9576147f8614835565b5b600182019050919050565b600061480f8261470c565b915061481a8361470c565b92508261482a57614829614864565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f4f4e4c595f50524553414c450000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4558434545445f524b5f5045525f4d494e540000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f5155414c494649454400000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4558434545445f50524956415445000000000000000000000000000000000000600082015250565b7f4558434545445f414c4c4f430000000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b615092816146a2565b811461509d57600080fd5b50565b6150a9816146b4565b81146150b457600080fd5b50565b6150c0816146c0565b81146150cb57600080fd5b50565b6150d78161470c565b81146150e257600080fd5b5056fea2646970667358221220b4dc41734c4865045150baf56c0c57ad910c2bb3c109261138031895628548db64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063815f7bbd1161014f578063a22cb465116100c1578063e081b7811161007a578063e081b78114610936578063e8a3d48514610961578063e985e9c51461098c578063f2fde38b146109c9578063f4743070146109f2578063f6f24e4614610a1d57610272565b8063a22cb46514610837578063b179e06014610860578063b88d4fde14610889578063c87b56dd146108b2578063cf309012146108ef578063d96a094a1461091a57610272565b806395d89b411161011357806395d89b4114610713578063989bdbb61461073e5780639bf80316146107555780639cf2e8d6146107925780639e273b2f146107cf578063a11c695e1461080c57610272565b8063815f7bbd1461064d57806383a9e049146106695780638da5cb5b14610694578063938e3d7b146106bf578063940f1ada146106e857610272565b80634f6ccce7116101e85780636e18485c116101ac5780636e18485c1461056357806370a082311461058e578063715018a6146105cb5780637204a3c9146105e25780637bffb4ce1461060b578063810f1ae81461062257610272565b80634f6ccce71461045857806355f804b31461049557806359a12ad5146104be5780635ce7af1f146104e95780636352211e1461052657610272565b806318160ddd1161023a57806318160ddd1461035c57806323b872dd146103875780632f745c59146103b057806337e41edc146103ed5780633ccfd60b1461041857806342842e0e1461042f57610272565b806301ffc9a714610277578063049c5c49146102b457806306fdde03146102cb578063081812fc146102f6578063095ea7b314610333575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139bc565b610a48565b6040516102ab91906140a7565b60405180910390f35b3480156102c057600080fd5b506102c9610ac2565b005b3480156102d757600080fd5b506102e0610b6a565b6040516102ed91906140c2565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613a63565b610bfc565b60405161032a9190614040565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061392f565b610c81565b005b34801561036857600080fd5b50610371610d99565b60405161037e91906144c4565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613819565b610da6565b005b3480156103bc57600080fd5b506103d760048036038101906103d2919061392f565b610e06565b6040516103e491906144c4565b60405180910390f35b3480156103f957600080fd5b50610402610eab565b60405161040f91906144c4565b60405180910390f35b34801561042457600080fd5b5061042d610ebe565b005b34801561043b57600080fd5b5061045660048036038101906104519190613819565b61101a565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613a63565b61103a565b60405161048c91906144c4565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613a16565b6110ab565b005b3480156104ca57600080fd5b506104d361118d565b6040516104e091906144c4565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b91906137ac565b611193565b60405161051d91906144c4565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613a63565b6111dc565b60405161055a9190614040565b60405180910390f35b34801561056f57600080fd5b5061057861128e565b60405161058591906144c4565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b091906137ac565b611293565b6040516105c291906144c4565b60405180910390f35b3480156105d757600080fd5b506105e061134b565b005b3480156105ee57600080fd5b506106096004803603810190610604919061396f565b6113d3565b005b34801561061757600080fd5b506106206115f7565b005b34801561062e57600080fd5b5061063761169f565b60405161064491906144c4565b60405180910390f35b61066760048036038101906106629190613a63565b6116ab565b005b34801561067557600080fd5b5061067e6119da565b60405161068b91906140a7565b60405180910390f35b3480156106a057600080fd5b506106a96119ed565b6040516106b69190614040565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613a16565b611a17565b005b3480156106f457600080fd5b506106fd611af9565b60405161070a91906144c4565b60405180910390f35b34801561071f57600080fd5b50610728611aff565b60405161073591906140c2565b60405180910390f35b34801561074a57600080fd5b50610753611b91565b005b34801561076157600080fd5b5061077c600480360381019061077791906137ac565b611c2a565b60405161078991906144c4565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b491906137ac565b611c42565b6040516107c691906140a7565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f191906137ac565b611c62565b60405161080391906140a7565b60405180910390f35b34801561081857600080fd5b50610821611cb8565b60405161082e91906144c4565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906138ef565b611cbe565b005b34801561086c57600080fd5b506108876004803603810190610882919061396f565b611e3f565b005b34801561089557600080fd5b506108b060048036038101906108ab919061386c565b611fd6565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613a63565b612038565b6040516108e691906140c2565b60405180910390f35b3480156108fb57600080fd5b506109046120b4565b60405161091191906140a7565b60405180910390f35b610934600480360381019061092f9190613a63565b6120c7565b005b34801561094257600080fd5b5061094b612301565b60405161095891906140a7565b60405180910390f35b34801561096d57600080fd5b50610976612314565b60405161098391906140c2565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae91906137d9565b6123a6565b6040516109c091906140a7565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb91906137ac565b61243a565b005b3480156109fe57600080fd5b50610a07612532565b604051610a1491906144c4565b60405180910390f35b348015610a2957600080fd5b50610a32612538565b604051610a3f91906144c4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abb5750610aba82612556565b5b9050919050565b610aca612638565b73ffffffffffffffffffffffffffffffffffffffff16610ae86119ed565b73ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590614344565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b606060008054610b7990614758565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba590614758565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b6000610c0782612640565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614324565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8c826111dc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906143e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1c612638565b73ffffffffffffffffffffffffffffffffffffffff161480610d4b5750610d4a81610d45612638565b6123a6565b5b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190614284565b60405180910390fd5b610d9483836126ac565b505050565b6000600880549050905090565b610db7610db1612638565b82612765565b610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90614424565b60405180910390fd5b610e01838383612843565b505050565b6000610e1183611293565b8210610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990614124565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6116c3610640610ebb919061458d565b81565b610ec6612638565b73ffffffffffffffffffffffffffffffffffffffff16610ee46119ed565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190614344565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600247610f8391906145e3565b9081150290604051600060405180830381858888f19350505050158015610fae573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611017573d6000803e3d6000fd5b50565b61103583838360405180602001604052806000815250611fd6565b505050565b6000611044610d99565b8210611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90614444565b60405180910390fd5b60088281548110611099576110986148f1565b5b90600052602060002001549050919050565b6110b3612638565b73ffffffffffffffffffffffffffffffffffffffff166110d16119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90614344565b60405180910390fd5b601560029054906101000a900460ff1615611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614384565b60405180910390fd5b8181600f9190611188929190613584565b505050565b60135481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906142c4565b60405180910390fd5b80915050919050565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906142a4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611353612638565b73ffffffffffffffffffffffffffffffffffffffff166113716119ed565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90614344565b60405180910390fd5b6113d16000612a9f565b565b6113db612638565b73ffffffffffffffffffffffffffffffffffffffff166113f96119ed565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690614344565b60405180910390fd5b60005b828290508110156115f2576000838383818110611472576114716148f1565b5b905060200201602081019061148791906137ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090614104565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614244565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806115ea906147bb565b915050611452565b505050565b6115ff612638565b73ffffffffffffffffffffffffffffffffffffffff1661161d6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90614344565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b67013fbe85edc9000081565b601560019054906101000a900460ff161580156116d45750601560009054906101000a900460ff165b611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906140e4565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906143a4565b60405180910390fd5b6116c36106406117af919061458d565b6117b7610d99565b106117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906141e4565b60405180910390fd5b61064081601354611808919061458d565b1115611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090614464565b60405180910390fd5b60145481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611897919061458d565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90614484565b60405180910390fd5b348167013fbe85edc900006118ed9190614614565b111561192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906144a4565b60405180910390fd5b60005b818110156119d6576013600081548092919061194c906147bb565b9190505550601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119a1906147bb565b91905055506119c33360016119b4610d99565b6119be919061458d565b612b65565b80806119ce906147bb565b915050611931565b5050565b601560009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a1f612638565b73ffffffffffffffffffffffffffffffffffffffff16611a3d6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90614344565b60405180910390fd5b601560029054906101000a900460ff1615611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614384565b60405180910390fd5b8181600e9190611af4929190613584565b505050565b60125481565b606060018054611b0e90614758565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3a90614758565b8015611b875780601f10611b5c57610100808354040283529160200191611b87565b820191906000526020600020905b815481529060010190602001808311611b6a57829003601f168201915b5050505050905090565b611b99612638565b73ffffffffffffffffffffffffffffffffffffffff16611bb76119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614344565b60405180910390fd5b6001601560026101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915090505481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61064081565b611cc6612638565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b906141c4565b60405180910390fd5b8060056000611d41612638565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dee612638565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e3391906140a7565b60405180910390a35050565b611e47612638565b73ffffffffffffffffffffffffffffffffffffffff16611e656119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614344565b60405180910390fd5b60005b82829050811015611fd1576000838383818110611ede57611edd6148f1565b5b9050602002016020810190611ef391906137ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c90614104565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611fc9906147bb565b915050611ebe565b505050565b611fe7611fe1612638565b83612765565b612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614424565b60405180910390fd5b61203284848484612b83565b50505050565b606061204382612640565b612082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612079906143c4565b60405180910390fd5b600f61208d83612bdf565b60405160200161209e92919061401c565b6040516020818303038152906040529050919050565b601560029054906101000a900460ff1681565b601560019054906101000a900460ff16612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614204565b60405180910390fd5b601560009054906101000a900460ff1615612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90614264565b60405180910390fd5b6116c3610640612176919061458d565b61217e610d99565b106121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b5906141e4565b60405180910390fd5b6116c3816012546121cf919061458d565b1115612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614404565b60405180910390fd5b6014811115612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906142e4565b60405180910390fd5b348167013fbe85edc900006122699190614614565b11156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a1906144a4565b60405180910390fd5b60005b818110156122fd57601260008154809291906122c8906147bb565b91905055506122ea3360016122db610d99565b6122e5919061458d565b612b65565b80806122f5906147bb565b9150506122ad565b5050565b601560019054906101000a900460ff1681565b6060600e805461232390614758565b80601f016020809104026020016040519081016040528092919081815260200182805461234f90614758565b801561239c5780601f106123715761010080835404028352916020019161239c565b820191906000526020600020905b81548152906001019060200180831161237f57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612442612638565b73ffffffffffffffffffffffffffffffffffffffff166124606119ed565b73ffffffffffffffffffffffffffffffffffffffff16146124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad90614344565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614164565b60405180910390fd5b61252f81612a9f565b50565b60145481565b6116c381565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061262157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612631575061263082612d40565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661271f836111dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061277082612640565b6127af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a690614224565b60405180910390fd5b60006127ba836111dc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061282957508373ffffffffffffffffffffffffffffffffffffffff1661281184610bfc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061283a575061283981856123a6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612863826111dc565b73ffffffffffffffffffffffffffffffffffffffff16146128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b090614364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612920906141a4565b60405180910390fd5b612934838383612daa565b61293f6000826126ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298f919061466e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e6919061458d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b7f828260405180602001604052806000815250612ebe565b5050565b612b8e848484612843565b612b9a84848484612f19565b612bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd090614144565b60405180910390fd5b50505050565b60606000821415612c27576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d3b565b600082905060005b60008214612c59578080612c42906147bb565b915050600a82612c5291906145e3565b9150612c2f565b60008167ffffffffffffffff811115612c7557612c74614920565b5b6040519080825280601f01601f191660200182016040528015612ca75781602001600182028036833780820191505090505b5090505b60008514612d3457600182612cc0919061466e565b9150600a85612ccf9190614804565b6030612cdb919061458d565b60f81b818381518110612cf157612cf06148f1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d2d91906145e3565b9450612cab565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612db5838383612551565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612df857612df3816130b0565b612e37565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e3657612e3583826130f9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7a57612e7581613266565b612eb9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612eb857612eb78282613337565b5b5b505050565b612ec883836133b6565b612ed56000848484612f19565b612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614144565b60405180910390fd5b505050565b6000612f3a8473ffffffffffffffffffffffffffffffffffffffff1661253e565b156130a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f63612638565b8786866040518563ffffffff1660e01b8152600401612f85949392919061405b565b602060405180830381600087803b158015612f9f57600080fd5b505af1925050508015612fd057506040513d601f19601f82011682018060405250810190612fcd91906139e9565b60015b613053573d8060008114613000576040519150601f19603f3d011682016040523d82523d6000602084013e613005565b606091505b5060008151141561304b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304290614144565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130a8565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161310684611293565b613110919061466e565b90506000600760008481526020019081526020016000205490508181146131f5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061327a919061466e565b90506000600960008481526020019081526020016000205490506000600883815481106132aa576132a96148f1565b5b9060005260206000200154905080600883815481106132cc576132cb6148f1565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061331b5761331a6148c2565b5b6001900381819060005260206000200160009055905550505050565b600061334283611293565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341d90614304565b60405180910390fd5b61342f81612640565b1561346f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346690614184565b60405180910390fd5b61347b60008383612daa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134cb919061458d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461359090614758565b90600052602060002090601f0160209004810192826135b257600085556135f9565b82601f106135cb57803560ff19168380011785556135f9565b828001600101855582156135f9579182015b828111156135f85782358255916020019190600101906135dd565b5b509050613606919061360a565b5090565b5b8082111561362357600081600090555060010161360b565b5090565b600061363a61363584614504565b6144df565b9050828152602081018484840111156136565761365561495e565b5b613661848285614716565b509392505050565b60008135905061367881615089565b92915050565b60008083601f84011261369457613693614954565b5b8235905067ffffffffffffffff8111156136b1576136b061494f565b5b6020830191508360208202830111156136cd576136cc614959565b5b9250929050565b6000813590506136e3816150a0565b92915050565b6000813590506136f8816150b7565b92915050565b60008151905061370d816150b7565b92915050565b600082601f83011261372857613727614954565b5b8135613738848260208601613627565b91505092915050565b60008083601f84011261375757613756614954565b5b8235905067ffffffffffffffff8111156137745761377361494f565b5b6020830191508360018202830111156137905761378f614959565b5b9250929050565b6000813590506137a6816150ce565b92915050565b6000602082840312156137c2576137c1614968565b5b60006137d084828501613669565b91505092915050565b600080604083850312156137f0576137ef614968565b5b60006137fe85828601613669565b925050602061380f85828601613669565b9150509250929050565b60008060006060848603121561383257613831614968565b5b600061384086828701613669565b935050602061385186828701613669565b925050604061386286828701613797565b9150509250925092565b6000806000806080858703121561388657613885614968565b5b600061389487828801613669565b94505060206138a587828801613669565b93505060406138b687828801613797565b925050606085013567ffffffffffffffff8111156138d7576138d6614963565b5b6138e387828801613713565b91505092959194509250565b6000806040838503121561390657613905614968565b5b600061391485828601613669565b9250506020613925858286016136d4565b9150509250929050565b6000806040838503121561394657613945614968565b5b600061395485828601613669565b925050602061396585828601613797565b9150509250929050565b6000806020838503121561398657613985614968565b5b600083013567ffffffffffffffff8111156139a4576139a3614963565b5b6139b08582860161367e565b92509250509250929050565b6000602082840312156139d2576139d1614968565b5b60006139e0848285016136e9565b91505092915050565b6000602082840312156139ff576139fe614968565b5b6000613a0d848285016136fe565b91505092915050565b60008060208385031215613a2d57613a2c614968565b5b600083013567ffffffffffffffff811115613a4b57613a4a614963565b5b613a5785828601613741565b92509250509250929050565b600060208284031215613a7957613a78614968565b5b6000613a8784828501613797565b91505092915050565b613a99816146a2565b82525050565b613aa8816146b4565b82525050565b6000613ab98261454a565b613ac38185614560565b9350613ad3818560208601614725565b613adc8161496d565b840191505092915050565b6000613af282614555565b613afc8185614571565b9350613b0c818560208601614725565b613b158161496d565b840191505092915050565b6000613b2b82614555565b613b358185614582565b9350613b45818560208601614725565b80840191505092915050565b60008154613b5e81614758565b613b688186614582565b94506001821660008114613b835760018114613b9457613bc7565b60ff19831686528186019350613bc7565b613b9d85614535565b60005b83811015613bbf57815481890152600182019150602081019050613ba0565b838801955050505b50505092915050565b6000613bdd600e83614571565b9150613be88261497e565b602082019050919050565b6000613c00600c83614571565b9150613c0b826149a7565b602082019050919050565b6000613c23602b83614571565b9150613c2e826149d0565b604082019050919050565b6000613c46603283614571565b9150613c5182614a1f565b604082019050919050565b6000613c69602683614571565b9150613c7482614a6e565b604082019050919050565b6000613c8c601c83614571565b9150613c9782614abd565b602082019050919050565b6000613caf602483614571565b9150613cba82614ae6565b604082019050919050565b6000613cd2601983614571565b9150613cdd82614b35565b602082019050919050565b6000613cf5600c83614571565b9150613d0082614b5e565b602082019050919050565b6000613d18600b83614571565b9150613d2382614b87565b602082019050919050565b6000613d3b602c83614571565b9150613d4682614bb0565b604082019050919050565b6000613d5e600f83614571565b9150613d6982614bff565b602082019050919050565b6000613d81600c83614571565b9150613d8c82614c28565b602082019050919050565b6000613da4603883614571565b9150613daf82614c51565b604082019050919050565b6000613dc7602a83614571565b9150613dd282614ca0565b604082019050919050565b6000613dea602983614571565b9150613df582614cef565b604082019050919050565b6000613e0d601283614571565b9150613e1882614d3e565b602082019050919050565b6000613e30602083614571565b9150613e3b82614d67565b602082019050919050565b6000613e53602c83614571565b9150613e5e82614d90565b604082019050919050565b6000613e76602083614571565b9150613e8182614ddf565b602082019050919050565b6000613e99602983614571565b9150613ea482614e08565b604082019050919050565b6000613ebc602483614571565b9150613ec782614e57565b604082019050919050565b6000613edf600d83614571565b9150613eea82614ea6565b602082019050919050565b6000613f02601f83614571565b9150613f0d82614ecf565b602082019050919050565b6000613f25602183614571565b9150613f3082614ef8565b604082019050919050565b6000613f48600d83614571565b9150613f5382614f47565b602082019050919050565b6000613f6b603183614571565b9150613f7682614f70565b604082019050919050565b6000613f8e602c83614571565b9150613f9982614fbf565b604082019050919050565b6000613fb1600e83614571565b9150613fbc8261500e565b602082019050919050565b6000613fd4600c83614571565b9150613fdf82615037565b602082019050919050565b6000613ff7601083614571565b915061400282615060565b602082019050919050565b6140168161470c565b82525050565b60006140288285613b51565b91506140348284613b20565b91508190509392505050565b60006020820190506140556000830184613a90565b92915050565b60006080820190506140706000830187613a90565b61407d6020830186613a90565b61408a604083018561400d565b818103606083015261409c8184613aae565b905095945050505050565b60006020820190506140bc6000830184613a9f565b92915050565b600060208201905081810360008301526140dc8184613ae7565b905092915050565b600060208201905081810360008301526140fd81613bd0565b9050919050565b6000602082019050818103600083015261411d81613bf3565b9050919050565b6000602082019050818103600083015261413d81613c16565b9050919050565b6000602082019050818103600083015261415d81613c39565b9050919050565b6000602082019050818103600083015261417d81613c5c565b9050919050565b6000602082019050818103600083015261419d81613c7f565b9050919050565b600060208201905081810360008301526141bd81613ca2565b9050919050565b600060208201905081810360008301526141dd81613cc5565b9050919050565b600060208201905081810360008301526141fd81613ce8565b9050919050565b6000602082019050818103600083015261421d81613d0b565b9050919050565b6000602082019050818103600083015261423d81613d2e565b9050919050565b6000602082019050818103600083015261425d81613d51565b9050919050565b6000602082019050818103600083015261427d81613d74565b9050919050565b6000602082019050818103600083015261429d81613d97565b9050919050565b600060208201905081810360008301526142bd81613dba565b9050919050565b600060208201905081810360008301526142dd81613ddd565b9050919050565b600060208201905081810360008301526142fd81613e00565b9050919050565b6000602082019050818103600083015261431d81613e23565b9050919050565b6000602082019050818103600083015261433d81613e46565b9050919050565b6000602082019050818103600083015261435d81613e69565b9050919050565b6000602082019050818103600083015261437d81613e8c565b9050919050565b6000602082019050818103600083015261439d81613eaf565b9050919050565b600060208201905081810360008301526143bd81613ed2565b9050919050565b600060208201905081810360008301526143dd81613ef5565b9050919050565b600060208201905081810360008301526143fd81613f18565b9050919050565b6000602082019050818103600083015261441d81613f3b565b9050919050565b6000602082019050818103600083015261443d81613f5e565b9050919050565b6000602082019050818103600083015261445d81613f81565b9050919050565b6000602082019050818103600083015261447d81613fa4565b9050919050565b6000602082019050818103600083015261449d81613fc7565b9050919050565b600060208201905081810360008301526144bd81613fea565b9050919050565b60006020820190506144d9600083018461400d565b92915050565b60006144e96144fa565b90506144f5828261478a565b919050565b6000604051905090565b600067ffffffffffffffff82111561451f5761451e614920565b5b6145288261496d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145988261470c565b91506145a38361470c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145d8576145d7614835565b5b828201905092915050565b60006145ee8261470c565b91506145f98361470c565b92508261460957614608614864565b5b828204905092915050565b600061461f8261470c565b915061462a8361470c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561466357614662614835565b5b828202905092915050565b60006146798261470c565b91506146848361470c565b92508282101561469757614696614835565b5b828203905092915050565b60006146ad826146ec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614743578082015181840152602081019050614728565b83811115614752576000848401525b50505050565b6000600282049050600182168061477057607f821691505b6020821081141561478457614783614893565b5b50919050565b6147938261496d565b810181811067ffffffffffffffff821117156147b2576147b1614920565b5b80604052505050565b60006147c68261470c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147f9576147f8614835565b5b600182019050919050565b600061480f8261470c565b915061481a8361470c565b92508261482a57614829614864565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f4f4e4c595f50524553414c450000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4558434545445f524b5f5045525f4d494e540000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f5155414c494649454400000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4558434545445f50524956415445000000000000000000000000000000000000600082015250565b7f4558434545445f414c4c4f430000000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b615092816146a2565b811461509d57600080fd5b50565b6150a9816146b4565b81146150b457600080fd5b50565b6150c0816146c0565b81146150cb57600080fd5b50565b6150d78161470c565b81146150e257600080fd5b5056fea2646970667358221220b4dc41734c4865045150baf56c0c57ad910c2bb3c109261138031895628548db64736f6c63430008070033

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.