ETH Price: $3,482.64 (+1.86%)
Gas: 14 Gwei

Token

P (P)
 

Overview

Max Total Supply

1,000 P

Holders

691

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slums.eth
Balance
2 P
0xf5a6bd45240cd607a3673492b66c2a7675b8a030
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
P

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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


/*
██████╗░
██╔══██╗
██████╔╝
██╔═══╝░
██║░░░░░
╚═╝░░░░░
*/


pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

                                                                                    

contract P is ERC721, Ownable {


    bool public claimIsActive = false;
	uint public maxSupply = 1000;
	
	mapping(address => uint) public addressClaimed;
	
	
	

    using Counters for Counters.Counter;
    Counters.Counter private pSupply;

    constructor() ERC721("P", "P") {}


    function totalSupply() public view returns (uint256 supply) {
        return pSupply.current();
    }

    function setClaimState(bool newState) public onlyOwner {
        claimIsActive = newState;
    }
	
	
    function claim() external {
        require(claimIsActive, "Claim is inactive.");
        require(pSupply.current() + 1 <= maxSupply, "No more supply.");
		require(addressClaimed[msg.sender] < 1, "One per wallet.");
		addressClaimed[msg.sender] += 1;
        for(uint i = 0; i < 1; i++) {
		  uint256 _tokenId = pSupply.current() + 1;
            _safeMint(msg.sender, _tokenId);
            pSupply.increment();
        }
    }

	
	
    function tokenURI(uint256 tokenId) override public view returns (string memory) {
	
        string memory image = string(abi.encodePacked('<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M121,0.11H6.99c-3.78,0-6.87,3.1-6.87,6.88v114.01c0,3.78,3.09,6.88,6.87,6.88H121 c3.78,0,6.88-3.09,6.88-6.88V7C127.88,3.21,124.78,0.11,121,0.11z" style="fill:#006CA2;"/><path d="M71.63,15.96h-34.5c-0.13,0-0.25,0.06-0.37,0.08h-5.91c-1.13,0-2.04,0.92-2.04,2.05v92.01 c0,1.13,0.91,2.04,2.04,2.04H50.8c1.13,0,2.04-0.91,2.04-2.04V80.85h18.79c18.07,0,32.77-14.55,32.77-32.44 C104.4,30.52,89.7,15.96,71.63,15.96z M70.05,61.73c-0.32,0.02-0.64,0.05-0.95,0.05H53.18c0,0-0.08-0.04-0.11-0.05 c-0.09-0.02-0.16-0.04-0.23-0.09c-0.1-0.1-0.19-0.23-0.19-0.39V35.57c0-0.16,0.09-0.29,0.19-0.39c0.06-0.05,0.13-0.06,0.2-0.08 c0.06-0.02,0.1-0.06,0.14-0.06H69.1c0.38,0,0.75,0.02,1.13,0.06C76.81,35.69,82,41.43,82,48.4C82,55.45,76.71,61.22,70.05,61.73z" style="fill:#FFFFFF;"/></g></svg>'));
        string memory output = string(abi.encodePacked(image));
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "P #', toString(tokenId),'","attributes": [ { "trait_type": "Not ', unicode"🅿️" ,'", "value": "','False','" }]',', "description": "Certified ', unicode"🅿️", ' - ', toString(tokenId),'/1000','", "image": "data:image/svg+xml;base64,',Base64.encode(bytes(output)),'"}'))));
		output = string(abi.encodePacked('data:application/json;base64,', json));
        return output;
    }
	
	
	
	
	 /**
     * @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);
    }


}



/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","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"}]

60806040526000600660146101000a81548160ff0219169083151502179055506103e86007553480156200003257600080fd5b506040518060400160405280600181526020017f50000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f50000000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b7929190620001c7565b508060019080519060200190620000d0929190620001c7565b505050620000f3620000e7620000f960201b60201c565b6200010160201b60201c565b620002dc565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d59062000277565b90600052602060002090601f016020900481019282620001f9576000855562000245565b82601f106200021457805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024457825182559160200191906001019062000227565b5b50905062000254919062000258565b5090565b5b808211156200027357600081600090555060010162000259565b5090565b600060028204905060018216806200029057607f821691505b60208210811415620002a757620002a6620002ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61392480620002ec6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a22cb4651161007c578063a22cb46514610351578063b88d4fde1461036d578063c87b56dd14610389578063d5abeb01146103b9578063e985e9c5146103d7578063f2fde38b1461040757610142565b806370a08231146102ab578063715018a6146102db578063772dc32f146102e55780638da5cb5b1461031557806395d89b411461033357610142565b806323b872dd1161010a57806323b872dd146101ff57806342842e0e1461021b5780634b014e28146102375780634e71d92d146102535780635303f68c1461025d5780636352211e1461027b57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612157565b610423565b60405161016e91906131d2565b60405180910390f35b61017f610505565b60405161018c91906131ed565b60405180910390f35b6101af60048036038101906101aa91906121a9565b610597565b6040516101bc919061316b565b60405180910390f35b6101df60048036038101906101da91906120f2565b61061c565b005b6101e9610734565b6040516101f6919061344f565b60405180910390f35b61021960048036038101906102149190611fec565b610745565b005b61023560048036038101906102309190611fec565b6107a5565b005b610251600480360381019061024c919061212e565b6107c5565b005b61025b61085e565b005b610265610a31565b60405161027291906131d2565b60405180910390f35b610295600480360381019061029091906121a9565b610a44565b6040516102a2919061316b565b60405180910390f35b6102c560048036038101906102c09190611f87565b610af6565b6040516102d2919061344f565b60405180910390f35b6102e3610bae565b005b6102ff60048036038101906102fa9190611f87565b610c36565b60405161030c919061344f565b60405180910390f35b61031d610c4e565b60405161032a919061316b565b60405180910390f35b61033b610c78565b60405161034891906131ed565b60405180910390f35b61036b600480360381019061036691906120b6565b610d0a565b005b6103876004803603810190610382919061203b565b610d20565b005b6103a3600480360381019061039e91906121a9565b610d82565b6040516103b091906131ed565b60405180910390f35b6103c1610e3f565b6040516103ce919061344f565b60405180910390f35b6103f160048036038101906103ec9190611fb0565b610e45565b6040516103fe91906131d2565b60405180910390f35b610421600480360381019061041c9190611f87565b610ed9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fe57506104fd82610fd1565b5b9050919050565b606060008054610514906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610540906136d9565b801561058d5780601f106105625761010080835404028352916020019161058d565b820191906000526020600020905b81548152906001019060200180831161057057829003601f168201915b5050505050905090565b60006105a28261103b565b6105e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d8906133af565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062782610a44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f9061340f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b76110a7565b73ffffffffffffffffffffffffffffffffffffffff1614806106e657506106e5816106e06110a7565b610e45565b5b610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071c9061330f565b60405180910390fd5b61072f83836110af565b505050565b60006107406009611168565b905090565b6107566107506110a7565b82611176565b610795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078c9061342f565b60405180910390fd5b6107a0838383611254565b505050565b6107c083838360405180602001604052806000815250610d20565b505050565b6107cd6110a7565b73ffffffffffffffffffffffffffffffffffffffff166107eb610c4e565b73ffffffffffffffffffffffffffffffffffffffff1614610841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610838906133cf565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b600660149054906101000a900460ff166108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a4906132ef565b60405180910390fd5b60075460016108bc6009611168565b6108c6919061350e565b1115610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe9061336f565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109809061322f565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109d9919061350e565b9250508190555060005b6001811015610a2e57600060016109fa6009611168565b610a04919061350e565b9050610a1033826114b0565b610a1a60096114ce565b508080610a269061370b565b9150506109e3565b50565b600660149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061334f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e9061332f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bb66110a7565b73ffffffffffffffffffffffffffffffffffffffff16610bd4610c4e565b73ffffffffffffffffffffffffffffffffffffffff1614610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906133cf565b60405180910390fd5b610c3460006114e4565b565b60086020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c87906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb3906136d9565b8015610d005780601f10610cd557610100808354040283529160200191610d00565b820191906000526020600020905b815481529060010190602001808311610ce357829003601f168201915b5050505050905090565b610d1c610d156110a7565b83836115aa565b5050565b610d31610d2b6110a7565b83611176565b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d679061342f565b60405180910390fd5b610d7c84848484611717565b50505050565b60606000604051602001610d9590613134565b6040516020818303038152906040529050600081604051602001610db99190613068565b60405160208183030381529060405290506000610e10610dd886611773565b610de187611773565b610dea85611920565b604051602001610dfc9392919061307f565b604051602081830303815290604052611920565b905080604051602001610e239190613149565b6040516020818303038152906040529150819350505050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ee16110a7565b73ffffffffffffffffffffffffffffffffffffffff16610eff610c4e565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906133cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061324f565b60405180910390fd5b610fce816114e4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661112283610a44565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006111818261103b565b6111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b7906132cf565b60405180910390fd5b60006111cb83610a44565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061123a57508373ffffffffffffffffffffffffffffffffffffffff1661122284610597565b73ffffffffffffffffffffffffffffffffffffffff16145b8061124b575061124a8185610e45565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661127482610a44565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906133ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113319061328f565b60405180910390fd5b611345838383611ade565b6113506000826110af565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a091906135ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f7919061350e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6114ca828260405180602001604052806000815250611ae3565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611619576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611610906132af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170a91906131d2565b60405180910390a3505050565b611722848484611254565b61172e84848484611b3e565b61176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117649061320f565b60405180910390fd5b50505050565b606060008214156117bb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061191b565b600082905060005b600082146117ed5780806117d69061370b565b915050600a826117e69190613564565b91506117c3565b60008167ffffffffffffffff81111561182f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118615781602001600182028036833780820191505090505b5090505b600085146119145760018261187a91906135ef565b9150600a856118899190613754565b6030611895919061350e565b60f81b8183815181106118d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561190d9190613564565b9450611865565b8093505050505b919050565b606060008251905060008114156119495760405180602001604052806000815250915050611ad9565b6000600360028361195a919061350e565b6119649190613564565b60046119709190613595565b90506000602082611981919061350e565b67ffffffffffffffff8111156119c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119f25781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016138af604091399050600181016020830160005b86811015611a965760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611a1d565b506003860660018114611ab05760028114611ac057611acb565b613d3d60f01b6002830352611acb565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b611aed8383611cd5565b611afa6000848484611b3e565b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b309061320f565b60405180910390fd5b505050565b6000611b5f8473ffffffffffffffffffffffffffffffffffffffff16611ea3565b15611cc8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b886110a7565b8786866040518563ffffffff1660e01b8152600401611baa9493929190613186565b602060405180830381600087803b158015611bc457600080fd5b505af1925050508015611bf557506040513d601f19601f82011682018060405250810190611bf29190612180565b60015b611c78573d8060008114611c25576040519150601f19603f3d011682016040523d82523d6000602084013e611c2a565b606091505b50600081511415611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c679061320f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ccd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c9061338f565b60405180910390fd5b611d4e8161103b565b15611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d859061326f565b60405180910390fd5b611d9a60008383611ade565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dea919061350e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000611ec9611ec48461349b565b61346a565b905082815260208101848484011115611ee157600080fd5b611eec848285613697565b509392505050565b600081359050611f0381613852565b92915050565b600081359050611f1881613869565b92915050565b600081359050611f2d81613880565b92915050565b600081519050611f4281613880565b92915050565b600082601f830112611f5957600080fd5b8135611f69848260208601611eb6565b91505092915050565b600081359050611f8181613897565b92915050565b600060208284031215611f9957600080fd5b6000611fa784828501611ef4565b91505092915050565b60008060408385031215611fc357600080fd5b6000611fd185828601611ef4565b9250506020611fe285828601611ef4565b9150509250929050565b60008060006060848603121561200157600080fd5b600061200f86828701611ef4565b935050602061202086828701611ef4565b925050604061203186828701611f72565b9150509250925092565b6000806000806080858703121561205157600080fd5b600061205f87828801611ef4565b945050602061207087828801611ef4565b935050604061208187828801611f72565b925050606085013567ffffffffffffffff81111561209e57600080fd5b6120aa87828801611f48565b91505092959194509250565b600080604083850312156120c957600080fd5b60006120d785828601611ef4565b92505060206120e885828601611f09565b9150509250929050565b6000806040838503121561210557600080fd5b600061211385828601611ef4565b925050602061212485828601611f72565b9150509250929050565b60006020828403121561214057600080fd5b600061214e84828501611f09565b91505092915050565b60006020828403121561216957600080fd5b600061217784828501611f1e565b91505092915050565b60006020828403121561219257600080fd5b60006121a084828501611f33565b91505092915050565b6000602082840312156121bb57600080fd5b60006121c984828501611f72565b91505092915050565b6121db81613623565b82525050565b6121ea81613635565b82525050565b60006121fb826134cb565b61220581856134e1565b93506122158185602086016136a6565b61221e81613841565b840191505092915050565b6000612234826134d6565b61223e81856134f2565b935061224e8185602086016136a6565b61225781613841565b840191505092915050565b600061226d826134d6565b6122778185613503565b93506122878185602086016136a6565b80840191505092915050565b60006122a0600d83613503565b91507f7b226e616d65223a2022502023000000000000000000000000000000000000006000830152600d82019050919050565b60006122e06032836134f2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612346600f836134f2565b91507f4f6e65207065722077616c6c65742e00000000000000000000000000000000006000830152602082019050919050565b60006123866026836134f2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123ec601c836134f2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061242c600d83613503565b91507f222c202276616c7565223a2022000000000000000000000000000000000000006000830152600d82019050919050565b600061246c6024836134f2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124d26019836134f2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612512602783613503565b91507f222c2261747472696275746573223a205b207b202274726169745f747970652260008301527f3a20224e6f7420000000000000000000000000000000000000000000000000006020830152602782019050919050565b6000612578602c836134f2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006125de6012836134f2565b91507f436c61696d20697320696e6163746976652e00000000000000000000000000006000830152602082019050919050565b600061261e6038836134f2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612684602a836134f2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006126ea6029836134f2565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612750600483613503565b91507f22207d5d000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b6000612790600283613503565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006127d0600f836134f2565b91507f4e6f206d6f726520737570706c792e00000000000000000000000000000000006000830152602082019050919050565b60006128106020836134f2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612850601c83613503565b91507f2c20226465736372697074696f6e223a202243657274696669656420000000006000830152601c82019050919050565b6000612890602c836134f2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006128f66020836134f2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612936600383613503565b91507f202d2000000000000000000000000000000000000000000000000000000000006000830152600382019050919050565b60006129766029836134f2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006129dc600583613503565b91507f46616c73650000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612a1c602783613503565b91507f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60008301527f6261736536342c000000000000000000000000000000000000000000000000006020830152602782019050919050565b6000612a82600583613503565b91507f2f313030300000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612ac26021836134f2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b2961037183613503565b91507f3c7376672077696474683d2231323822206865696768743d223132382220786d60008301527f6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672260208301527f20786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f60408301527f313939392f786c696e6b223e3c673e3c7061746820643d224d3132312c302e3160608301527f3148362e3939632d332e37382c302d362e38372c332e312d362e38372c362e3860808301527f38763131342e303163302c332e37382c332e30392c362e38382c362e38372c3660a08301527f2e3838483132312063332e37382c302c362e38382d332e30392c362e38382d3660c08301527f2e38385637433132372e38382c332e32312c3132342e37382c302e31312c313260e08301527f312c302e31317a22207374796c653d2266696c6c3a233030364341323b222f3e6101008301527f3c7061746820643d224d37312e36332c31352e3936682d33342e35632d302e316101208301527f332c302d302e32352c302e30362d302e33372c302e3038682d352e3931632d316101408301527f2e31332c302d322e30342c302e39322d322e30342c322e30357639322e3031206101608301527f63302c312e31332c302e39312c322e30342c322e30342c322e30344835302e386101808301527f63312e31332c302c322e30342d302e39312c322e30342d322e30345638302e386101a08301527f356831382e37396331382e30372c302c33322e37372d31342e35352c33322e376101c08301527f372d33322e343420433130342e342c33302e35322c38392e372c31352e39362c6101e08301527f37312e36332c31352e39367a204d37302e30352c36312e3733632d302e33322c6102008301527f302e30322d302e36342c302e30352d302e39352c302e30354835332e313863306102208301527f2c302d302e30382d302e30342d302e31312d302e303520632d302e30392d302e6102408301527f30322d302e31362d302e30342d302e32332d302e3039632d302e312d302e312d6102608301527f302e31392d302e32332d302e31392d302e33395633352e353763302d302e31366102808301527f2c302e30392d302e32392c302e31392d302e333963302e30362d302e30352c306102a08301527f2e31332d302e30362c302e322d302e30382063302e30362d302e30322c302e316102c08301527f2d302e30362c302e31342d302e30364836392e3163302e33382c302c302e37356102e08301527f2c302e30322c312e31332c302e30364337362e38312c33352e36392c38322c346103008301527f312e34332c38322c34382e344338322c35352e34352c37362e37312c36312e326103208301527f322c37302e30352c36312e37337a22207374796c653d2266696c6c3a234646466103408301527f4646463b222f3e3c2f673e3c2f7376673e00000000000000000000000000000061036083015261037182019050919050565b6000612f80601d83613503565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000612fc06031836134f2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613026600783613503565b91507ff09f85bfefb88f000000000000000000000000000000000000000000000000006000830152600782019050919050565b6130628161368d565b82525050565b60006130748284612262565b915081905092915050565b600061308a82612293565b91506130968286612262565b91506130a182612505565b91506130ac82613019565b91506130b78261241f565b91506130c2826129cf565b91506130cd82612743565b91506130d882612843565b91506130e382613019565b91506130ee82612929565b91506130fa8285612262565b915061310582612a75565b915061311082612a0f565b915061311c8284612262565b915061312782612783565b9150819050949350505050565b600061313f82612b1b565b9150819050919050565b600061315482612f73565b91506131608284612262565b915081905092915050565b600060208201905061318060008301846121d2565b92915050565b600060808201905061319b60008301876121d2565b6131a860208301866121d2565b6131b56040830185613059565b81810360608301526131c781846121f0565b905095945050505050565b60006020820190506131e760008301846121e1565b92915050565b600060208201905081810360008301526132078184612229565b905092915050565b60006020820190508181036000830152613228816122d3565b9050919050565b6000602082019050818103600083015261324881612339565b9050919050565b6000602082019050818103600083015261326881612379565b9050919050565b60006020820190508181036000830152613288816123df565b9050919050565b600060208201905081810360008301526132a88161245f565b9050919050565b600060208201905081810360008301526132c8816124c5565b9050919050565b600060208201905081810360008301526132e88161256b565b9050919050565b60006020820190508181036000830152613308816125d1565b9050919050565b6000602082019050818103600083015261332881612611565b9050919050565b6000602082019050818103600083015261334881612677565b9050919050565b60006020820190508181036000830152613368816126dd565b9050919050565b60006020820190508181036000830152613388816127c3565b9050919050565b600060208201905081810360008301526133a881612803565b9050919050565b600060208201905081810360008301526133c881612883565b9050919050565b600060208201905081810360008301526133e8816128e9565b9050919050565b6000602082019050818103600083015261340881612969565b9050919050565b6000602082019050818103600083015261342881612ab5565b9050919050565b6000602082019050818103600083015261344881612fb3565b9050919050565b60006020820190506134646000830184613059565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561349157613490613812565b5b8060405250919050565b600067ffffffffffffffff8211156134b6576134b5613812565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135198261368d565b91506135248361368d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355957613558613785565b5b828201905092915050565b600061356f8261368d565b915061357a8361368d565b92508261358a576135896137b4565b5b828204905092915050565b60006135a08261368d565b91506135ab8361368d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e4576135e3613785565b5b828202905092915050565b60006135fa8261368d565b91506136058361368d565b92508282101561361857613617613785565b5b828203905092915050565b600061362e8261366d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136c45780820151818401526020810190506136a9565b838111156136d3576000848401525b50505050565b600060028204905060018216806136f157607f821691505b60208210811415613705576137046137e3565b5b50919050565b60006137168261368d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374957613748613785565b5b600182019050919050565b600061375f8261368d565b915061376a8361368d565b92508261377a576137796137b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61385b81613623565b811461386657600080fd5b50565b61387281613635565b811461387d57600080fd5b50565b61388981613641565b811461389457600080fd5b50565b6138a08161368d565b81146138ab57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212202d138d439b815f24ab17993548cc234cbcffeff9dd745789eacab4252cc0fd6164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a22cb4651161007c578063a22cb46514610351578063b88d4fde1461036d578063c87b56dd14610389578063d5abeb01146103b9578063e985e9c5146103d7578063f2fde38b1461040757610142565b806370a08231146102ab578063715018a6146102db578063772dc32f146102e55780638da5cb5b1461031557806395d89b411461033357610142565b806323b872dd1161010a57806323b872dd146101ff57806342842e0e1461021b5780634b014e28146102375780634e71d92d146102535780635303f68c1461025d5780636352211e1461027b57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612157565b610423565b60405161016e91906131d2565b60405180910390f35b61017f610505565b60405161018c91906131ed565b60405180910390f35b6101af60048036038101906101aa91906121a9565b610597565b6040516101bc919061316b565b60405180910390f35b6101df60048036038101906101da91906120f2565b61061c565b005b6101e9610734565b6040516101f6919061344f565b60405180910390f35b61021960048036038101906102149190611fec565b610745565b005b61023560048036038101906102309190611fec565b6107a5565b005b610251600480360381019061024c919061212e565b6107c5565b005b61025b61085e565b005b610265610a31565b60405161027291906131d2565b60405180910390f35b610295600480360381019061029091906121a9565b610a44565b6040516102a2919061316b565b60405180910390f35b6102c560048036038101906102c09190611f87565b610af6565b6040516102d2919061344f565b60405180910390f35b6102e3610bae565b005b6102ff60048036038101906102fa9190611f87565b610c36565b60405161030c919061344f565b60405180910390f35b61031d610c4e565b60405161032a919061316b565b60405180910390f35b61033b610c78565b60405161034891906131ed565b60405180910390f35b61036b600480360381019061036691906120b6565b610d0a565b005b6103876004803603810190610382919061203b565b610d20565b005b6103a3600480360381019061039e91906121a9565b610d82565b6040516103b091906131ed565b60405180910390f35b6103c1610e3f565b6040516103ce919061344f565b60405180910390f35b6103f160048036038101906103ec9190611fb0565b610e45565b6040516103fe91906131d2565b60405180910390f35b610421600480360381019061041c9190611f87565b610ed9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fe57506104fd82610fd1565b5b9050919050565b606060008054610514906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610540906136d9565b801561058d5780601f106105625761010080835404028352916020019161058d565b820191906000526020600020905b81548152906001019060200180831161057057829003601f168201915b5050505050905090565b60006105a28261103b565b6105e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d8906133af565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062782610a44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f9061340f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b76110a7565b73ffffffffffffffffffffffffffffffffffffffff1614806106e657506106e5816106e06110a7565b610e45565b5b610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071c9061330f565b60405180910390fd5b61072f83836110af565b505050565b60006107406009611168565b905090565b6107566107506110a7565b82611176565b610795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078c9061342f565b60405180910390fd5b6107a0838383611254565b505050565b6107c083838360405180602001604052806000815250610d20565b505050565b6107cd6110a7565b73ffffffffffffffffffffffffffffffffffffffff166107eb610c4e565b73ffffffffffffffffffffffffffffffffffffffff1614610841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610838906133cf565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b600660149054906101000a900460ff166108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a4906132ef565b60405180910390fd5b60075460016108bc6009611168565b6108c6919061350e565b1115610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe9061336f565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109809061322f565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109d9919061350e565b9250508190555060005b6001811015610a2e57600060016109fa6009611168565b610a04919061350e565b9050610a1033826114b0565b610a1a60096114ce565b508080610a269061370b565b9150506109e3565b50565b600660149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061334f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e9061332f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bb66110a7565b73ffffffffffffffffffffffffffffffffffffffff16610bd4610c4e565b73ffffffffffffffffffffffffffffffffffffffff1614610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c21906133cf565b60405180910390fd5b610c3460006114e4565b565b60086020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c87906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb3906136d9565b8015610d005780601f10610cd557610100808354040283529160200191610d00565b820191906000526020600020905b815481529060010190602001808311610ce357829003601f168201915b5050505050905090565b610d1c610d156110a7565b83836115aa565b5050565b610d31610d2b6110a7565b83611176565b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d679061342f565b60405180910390fd5b610d7c84848484611717565b50505050565b60606000604051602001610d9590613134565b6040516020818303038152906040529050600081604051602001610db99190613068565b60405160208183030381529060405290506000610e10610dd886611773565b610de187611773565b610dea85611920565b604051602001610dfc9392919061307f565b604051602081830303815290604052611920565b905080604051602001610e239190613149565b6040516020818303038152906040529150819350505050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ee16110a7565b73ffffffffffffffffffffffffffffffffffffffff16610eff610c4e565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906133cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061324f565b60405180910390fd5b610fce816114e4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661112283610a44565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006111818261103b565b6111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b7906132cf565b60405180910390fd5b60006111cb83610a44565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061123a57508373ffffffffffffffffffffffffffffffffffffffff1661122284610597565b73ffffffffffffffffffffffffffffffffffffffff16145b8061124b575061124a8185610e45565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661127482610a44565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906133ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113319061328f565b60405180910390fd5b611345838383611ade565b6113506000826110af565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a091906135ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f7919061350e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6114ca828260405180602001604052806000815250611ae3565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611619576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611610906132af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170a91906131d2565b60405180910390a3505050565b611722848484611254565b61172e84848484611b3e565b61176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117649061320f565b60405180910390fd5b50505050565b606060008214156117bb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061191b565b600082905060005b600082146117ed5780806117d69061370b565b915050600a826117e69190613564565b91506117c3565b60008167ffffffffffffffff81111561182f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118615781602001600182028036833780820191505090505b5090505b600085146119145760018261187a91906135ef565b9150600a856118899190613754565b6030611895919061350e565b60f81b8183815181106118d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561190d9190613564565b9450611865565b8093505050505b919050565b606060008251905060008114156119495760405180602001604052806000815250915050611ad9565b6000600360028361195a919061350e565b6119649190613564565b60046119709190613595565b90506000602082611981919061350e565b67ffffffffffffffff8111156119c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119f25781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016138af604091399050600181016020830160005b86811015611a965760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611a1d565b506003860660018114611ab05760028114611ac057611acb565b613d3d60f01b6002830352611acb565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b611aed8383611cd5565b611afa6000848484611b3e565b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b309061320f565b60405180910390fd5b505050565b6000611b5f8473ffffffffffffffffffffffffffffffffffffffff16611ea3565b15611cc8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b886110a7565b8786866040518563ffffffff1660e01b8152600401611baa9493929190613186565b602060405180830381600087803b158015611bc457600080fd5b505af1925050508015611bf557506040513d601f19601f82011682018060405250810190611bf29190612180565b60015b611c78573d8060008114611c25576040519150601f19603f3d011682016040523d82523d6000602084013e611c2a565b606091505b50600081511415611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c679061320f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ccd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c9061338f565b60405180910390fd5b611d4e8161103b565b15611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d859061326f565b60405180910390fd5b611d9a60008383611ade565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dea919061350e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000611ec9611ec48461349b565b61346a565b905082815260208101848484011115611ee157600080fd5b611eec848285613697565b509392505050565b600081359050611f0381613852565b92915050565b600081359050611f1881613869565b92915050565b600081359050611f2d81613880565b92915050565b600081519050611f4281613880565b92915050565b600082601f830112611f5957600080fd5b8135611f69848260208601611eb6565b91505092915050565b600081359050611f8181613897565b92915050565b600060208284031215611f9957600080fd5b6000611fa784828501611ef4565b91505092915050565b60008060408385031215611fc357600080fd5b6000611fd185828601611ef4565b9250506020611fe285828601611ef4565b9150509250929050565b60008060006060848603121561200157600080fd5b600061200f86828701611ef4565b935050602061202086828701611ef4565b925050604061203186828701611f72565b9150509250925092565b6000806000806080858703121561205157600080fd5b600061205f87828801611ef4565b945050602061207087828801611ef4565b935050604061208187828801611f72565b925050606085013567ffffffffffffffff81111561209e57600080fd5b6120aa87828801611f48565b91505092959194509250565b600080604083850312156120c957600080fd5b60006120d785828601611ef4565b92505060206120e885828601611f09565b9150509250929050565b6000806040838503121561210557600080fd5b600061211385828601611ef4565b925050602061212485828601611f72565b9150509250929050565b60006020828403121561214057600080fd5b600061214e84828501611f09565b91505092915050565b60006020828403121561216957600080fd5b600061217784828501611f1e565b91505092915050565b60006020828403121561219257600080fd5b60006121a084828501611f33565b91505092915050565b6000602082840312156121bb57600080fd5b60006121c984828501611f72565b91505092915050565b6121db81613623565b82525050565b6121ea81613635565b82525050565b60006121fb826134cb565b61220581856134e1565b93506122158185602086016136a6565b61221e81613841565b840191505092915050565b6000612234826134d6565b61223e81856134f2565b935061224e8185602086016136a6565b61225781613841565b840191505092915050565b600061226d826134d6565b6122778185613503565b93506122878185602086016136a6565b80840191505092915050565b60006122a0600d83613503565b91507f7b226e616d65223a2022502023000000000000000000000000000000000000006000830152600d82019050919050565b60006122e06032836134f2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612346600f836134f2565b91507f4f6e65207065722077616c6c65742e00000000000000000000000000000000006000830152602082019050919050565b60006123866026836134f2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123ec601c836134f2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061242c600d83613503565b91507f222c202276616c7565223a2022000000000000000000000000000000000000006000830152600d82019050919050565b600061246c6024836134f2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124d26019836134f2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612512602783613503565b91507f222c2261747472696275746573223a205b207b202274726169745f747970652260008301527f3a20224e6f7420000000000000000000000000000000000000000000000000006020830152602782019050919050565b6000612578602c836134f2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006125de6012836134f2565b91507f436c61696d20697320696e6163746976652e00000000000000000000000000006000830152602082019050919050565b600061261e6038836134f2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612684602a836134f2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006126ea6029836134f2565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612750600483613503565b91507f22207d5d000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b6000612790600283613503565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006127d0600f836134f2565b91507f4e6f206d6f726520737570706c792e00000000000000000000000000000000006000830152602082019050919050565b60006128106020836134f2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612850601c83613503565b91507f2c20226465736372697074696f6e223a202243657274696669656420000000006000830152601c82019050919050565b6000612890602c836134f2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006128f66020836134f2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612936600383613503565b91507f202d2000000000000000000000000000000000000000000000000000000000006000830152600382019050919050565b60006129766029836134f2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006129dc600583613503565b91507f46616c73650000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612a1c602783613503565b91507f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60008301527f6261736536342c000000000000000000000000000000000000000000000000006020830152602782019050919050565b6000612a82600583613503565b91507f2f313030300000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612ac26021836134f2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b2961037183613503565b91507f3c7376672077696474683d2231323822206865696768743d223132382220786d60008301527f6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672260208301527f20786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f60408301527f313939392f786c696e6b223e3c673e3c7061746820643d224d3132312c302e3160608301527f3148362e3939632d332e37382c302d362e38372c332e312d362e38372c362e3860808301527f38763131342e303163302c332e37382c332e30392c362e38382c362e38372c3660a08301527f2e3838483132312063332e37382c302c362e38382d332e30392c362e38382d3660c08301527f2e38385637433132372e38382c332e32312c3132342e37382c302e31312c313260e08301527f312c302e31317a22207374796c653d2266696c6c3a233030364341323b222f3e6101008301527f3c7061746820643d224d37312e36332c31352e3936682d33342e35632d302e316101208301527f332c302d302e32352c302e30362d302e33372c302e3038682d352e3931632d316101408301527f2e31332c302d322e30342c302e39322d322e30342c322e30357639322e3031206101608301527f63302c312e31332c302e39312c322e30342c322e30342c322e30344835302e386101808301527f63312e31332c302c322e30342d302e39312c322e30342d322e30345638302e386101a08301527f356831382e37396331382e30372c302c33322e37372d31342e35352c33322e376101c08301527f372d33322e343420433130342e342c33302e35322c38392e372c31352e39362c6101e08301527f37312e36332c31352e39367a204d37302e30352c36312e3733632d302e33322c6102008301527f302e30322d302e36342c302e30352d302e39352c302e30354835332e313863306102208301527f2c302d302e30382d302e30342d302e31312d302e303520632d302e30392d302e6102408301527f30322d302e31362d302e30342d302e32332d302e3039632d302e312d302e312d6102608301527f302e31392d302e32332d302e31392d302e33395633352e353763302d302e31366102808301527f2c302e30392d302e32392c302e31392d302e333963302e30362d302e30352c306102a08301527f2e31332d302e30362c302e322d302e30382063302e30362d302e30322c302e316102c08301527f2d302e30362c302e31342d302e30364836392e3163302e33382c302c302e37356102e08301527f2c302e30322c312e31332c302e30364337362e38312c33352e36392c38322c346103008301527f312e34332c38322c34382e344338322c35352e34352c37362e37312c36312e326103208301527f322c37302e30352c36312e37337a22207374796c653d2266696c6c3a234646466103408301527f4646463b222f3e3c2f673e3c2f7376673e00000000000000000000000000000061036083015261037182019050919050565b6000612f80601d83613503565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000612fc06031836134f2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613026600783613503565b91507ff09f85bfefb88f000000000000000000000000000000000000000000000000006000830152600782019050919050565b6130628161368d565b82525050565b60006130748284612262565b915081905092915050565b600061308a82612293565b91506130968286612262565b91506130a182612505565b91506130ac82613019565b91506130b78261241f565b91506130c2826129cf565b91506130cd82612743565b91506130d882612843565b91506130e382613019565b91506130ee82612929565b91506130fa8285612262565b915061310582612a75565b915061311082612a0f565b915061311c8284612262565b915061312782612783565b9150819050949350505050565b600061313f82612b1b565b9150819050919050565b600061315482612f73565b91506131608284612262565b915081905092915050565b600060208201905061318060008301846121d2565b92915050565b600060808201905061319b60008301876121d2565b6131a860208301866121d2565b6131b56040830185613059565b81810360608301526131c781846121f0565b905095945050505050565b60006020820190506131e760008301846121e1565b92915050565b600060208201905081810360008301526132078184612229565b905092915050565b60006020820190508181036000830152613228816122d3565b9050919050565b6000602082019050818103600083015261324881612339565b9050919050565b6000602082019050818103600083015261326881612379565b9050919050565b60006020820190508181036000830152613288816123df565b9050919050565b600060208201905081810360008301526132a88161245f565b9050919050565b600060208201905081810360008301526132c8816124c5565b9050919050565b600060208201905081810360008301526132e88161256b565b9050919050565b60006020820190508181036000830152613308816125d1565b9050919050565b6000602082019050818103600083015261332881612611565b9050919050565b6000602082019050818103600083015261334881612677565b9050919050565b60006020820190508181036000830152613368816126dd565b9050919050565b60006020820190508181036000830152613388816127c3565b9050919050565b600060208201905081810360008301526133a881612803565b9050919050565b600060208201905081810360008301526133c881612883565b9050919050565b600060208201905081810360008301526133e8816128e9565b9050919050565b6000602082019050818103600083015261340881612969565b9050919050565b6000602082019050818103600083015261342881612ab5565b9050919050565b6000602082019050818103600083015261344881612fb3565b9050919050565b60006020820190506134646000830184613059565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561349157613490613812565b5b8060405250919050565b600067ffffffffffffffff8211156134b6576134b5613812565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135198261368d565b91506135248361368d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355957613558613785565b5b828201905092915050565b600061356f8261368d565b915061357a8361368d565b92508261358a576135896137b4565b5b828204905092915050565b60006135a08261368d565b91506135ab8361368d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e4576135e3613785565b5b828202905092915050565b60006135fa8261368d565b91506136058361368d565b92508282101561361857613617613785565b5b828203905092915050565b600061362e8261366d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136c45780820151818401526020810190506136a9565b838111156136d3576000848401525b50505050565b600060028204905060018216806136f157607f821691505b60208210811415613705576137046137e3565b5b50919050565b60006137168261368d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374957613748613785565b5b600182019050919050565b600061375f8261368d565b915061376a8361368d565b92508261377a576137796137b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61385b81613623565b811461386657600080fd5b50565b61387281613635565b811461387d57600080fd5b50565b61388981613641565b811461389457600080fd5b50565b6138a08161368d565b81146138ab57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212202d138d439b815f24ab17993548cc234cbcffeff9dd745789eacab4252cc0fd6164736f6c63430008000033

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.