ETH Price: $3,374.16 (+3.15%)
Gas: 2 Gwei

Token

OnChainBunnies (OCB)
 

Overview

Max Total Supply

231 OCB

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mchexley.eth
Balance
2 OCB
0xebfd774c1c2008e56ce40e0a4504ebecc81b1921
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:
OnChainBunnies

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 22 : IERC4883.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@openzeppelin/contracts/interfaces/IERC165.sol";

/// @title EIP-4883 Non-Fungible Token Standard
/// Based on https://eips.ethereum.org/EIPS/eip-4883
interface IERC4883 is IERC165 {
    /**
     * @dev Generates the SVG image of `id`
     *
     * Requirements:
     *
     * - `id` must exist
     * - must return the SVG body for the specified token `id`
     * - must either be an empty string or a valid SVG element(s)
     */
    function renderTokenById(uint256 id) external view returns (string memory);
}

File 2 of 22 : ERC721F.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

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

/**
 * @title ERC721F
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation.
 * Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation.
 * @author @FrankNFT.eth
 *
 */

contract ERC721F is Ownable, ERC721 {
    uint256 private _tokenSupply;
    uint256 private _burnCounter;

    // Base URI for Meta data
    string private _baseTokenURI;

    constructor(string memory name_, string memory symbol_)
        ERC721(name_, symbol_)
    {}

    /**
     * @dev walletofOwner
     * @return tokens id owned by the given address
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function walletOfOwner(address _owner)
        external
        view
        virtual
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        uint256 tokenSupply = _tokenSupply;

        unchecked {
            for(;;) {
                if (ownedTokenIndex >= ownerTokenCount) {
                    break;
                }
                if (currentTokenId >= tokenSupply) {
                    break;
                }
                if (_ownerOf(currentTokenId) == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
                currentTokenId++;
            }
        }
        return ownedTokenIds;
    }

    /**
     * To change the starting tokenId, override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @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 override returns (string memory) {
        return _baseTokenURI;
    }

    /**
     * @dev Set the base token URI
     */
    function setBaseTokenURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    /**
     *
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     */
    function _mint(address to, uint256 tokenId) internal virtual override {
        super._mint(to, tokenId);
        unchecked {
            _tokenSupply++;
        }
    }

    /**
     * @dev See {ERC721-_burn}
     * Increases value of _burnCounter
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Gets the total amount of existing tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view virtual returns (uint256) {
        return _tokenSupply - _burnCounter;
    }

    /**
     * @dev Gets total amount of tokens minted by the contract
     */
    function _totalMinted() internal view virtual returns (uint256) {
        return _tokenSupply;
    }

    /**
     * @dev Gets total amount of burned tokens
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }
}

File 3 of 22 : ERC721FCOMMON.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "./ERC721F.sol";
import "../../utils/Payable.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

contract ERC721FCOMMON is ERC721F, Payable, ERC2981 {
    uint16 private royalties = 500;
    address private royaltyReceiver;

    event ROYALTIESUPDATED(uint256 royalties);

    constructor(string memory name_, string memory symbol_) ERC721F(name_, symbol_) {
        setRoyaltyReceiver(address(this));
    }

    /**
     * @notice Indicates whether this contract supports an interface
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * @return `true` if the contract implements `interfaceID` or is 0x2a55205a, `false` otherwise
     */
    function supportsInterface(bytes4 _interfaceId)
        public
        view
        virtual
        override(ERC721, ERC2981)
        returns (bool)
    {
        return
            _interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(_interfaceId);
    }

    /**
     * @dev it will update the royalties for token
     * @param _royalties is new percentage of royalties. It should be more than 0 and least 90
     */
    function setRoyalties(uint16 _royalties) external onlyOwner {
        require(
            _royalties != 0 && _royalties < 90,
            "royalties should be between 0 and 90"
        );

        royalties = (_royalties * 100);

        emit ROYALTIESUPDATED(_royalties);
    }

    /**
     * @notice Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     * @param _tokenId is the token being sold and should exist.
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        public
        view
        virtual
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(
            _exists(_tokenId),
            "ERC2981RoyaltyStandard: Royalty info for nonexistent token"
        );
        return (royaltyReceiver, (_salePrice * royalties) / 10000);
    }

    /**
     * @notice Sets `receiver` as royaltyReceiver
     */
    function setRoyaltyReceiver(address receiver) public virtual onlyOwner {
        royaltyReceiver = receiver;
    }
}

File 4 of 22 : AllowList.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract AllowList is Ownable {
    mapping(address => bool) private allowList;

    modifier onlyAllowList() {
        require(isAllowList(msg.sender), "Address is not within allowList");
        _;
    }

    /**
     * @notice Adds an address to the allowList
     */
    function allowAddress(address _address) public onlyOwner {
        allowList[_address] = true;
    }

    /**
     * @notice Adds an array of addresses to the allowList
     */
    function allowAddresses(address[] calldata _addresses) external onlyOwner {
        uint length = _addresses.length;
        for (uint i; i < length; ) {
            allowAddress(_addresses[i]);
            unchecked {
                i++;
            }
        }
    }

    /**
     * @notice Removes an address off the allowList
     */
    function disallowAddress(address _address) external onlyOwner {
        _disallowAddress(_address);
    }

    /**
     * @dev Sets `_address` to `false` in allowList
     */
    function _disallowAddress(address _address) internal {
        delete allowList[_address];
    }

    /**
     * @notice Returns `true` if `_address` is in and `true` in the allowList
     */
    function isAllowList(address _address) public view returns (bool) {
        return allowList[_address];
    }
}

File 5 of 22 : Payable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

abstract contract Payable {
    /**
    * Helper method to allow ETH withdraws.
    */
    function _withdraw(address _address, uint256 _amount) internal {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to withdraw Ether");
    }

    // contract can recieve Ether
    receive() external payable { }
}

File 6 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 7 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 8 of 22 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

File 9 of 22 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 10 of 22 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 11 of 22 : 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 12 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 13 of 22 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 14 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 15 of 22 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 16 of 22 : 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 17 of 22 : 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 18 of 22 : 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);
}

File 19 of 22 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 20 of 22 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 21 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 22 of 22 : OnChainBunnies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9 <0.9.0;

import "@franknft.eth/erc721-f/contracts/interfaces/IERC4883.sol";
import "@franknft.eth/erc721-f/contracts/token/ERC721/ERC721FCOMMON.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@franknft.eth/erc721-f/contracts/utils/AllowList.sol";


/**
 * @title OnChainBunnies
 * 99.95% deployment cost reduction
 * Excluding insider trading with a new sampling algorithm without replacement
 * 
 */
contract OnChainBunnies is IERC4883, ERC721FCOMMON, AllowList {
    
    uint256 public last_selected = 0; 
    bool public saleIsActive;
    bool public preSaleIsActive;
    uint public tokenPrice = 0.01 ether;
    mapping(uint256 => uint256) private IdToAlgorithmId;


    string[5] private frame = ['<svg width="1080" height="1080" style="background-color:#',
            '" stroke="#000" xmlns="http://www.w3.org/2000/svg">',
            '<ellipse stroke-width="10" ry="266" rx="200" cy="540" cx="540" fill="#fff"/>',
            '<ellipse transform="rotate(25 660 250)" ry="107" rx="45" cy="250" cx="660" stroke-width="10" fill="#fff"/><ellipse transform="rotate(-25 420 250)" ry="107" rx="45" cy="250" cx="420" stroke-width="10" fill="#fff"/><ellipse transform="rotate(-25 435 283)" ry="68" rx="26" cy="283" cx="435" stroke-width="10" fill="#FFAFCC"/><ellipse transform="rotate(25 645 283)" ry="68" rx="26" cy="283" cx="645" stroke-width="10" fill="#FFAFCC"/><circle cy="427" cx="470" stroke-width="10" r="30"/><circle cy="427" cx="610" stroke-width="10" r="30"/><circle cy="418" cx="465" r="12" fill="#fff" stroke="none"/><circle cy="440" cx="484" r="6" fill="#fff" stroke="none"/><circle cy="418" cx="615" r="12" fill="#fff" stroke="none"/><circle cy="440" cx="600" r="8" fill="#fff" stroke="none"/><circle cy="520" cx="540" stroke-width="4" fill="#FFAFCC" r="14"/><ellipse ry="120" rx="100" cy="685" cx="540" stroke-width="4" fill="#FFE2FF"/><ellipse ry="106" rx="80" cy="697" cx="540" fill="#FFAFCC" stroke="none"/><ellipse transform="rotate(-17 610 804)" ry="43" rx="30" cy="804" cx="610" stroke-width="10" fill="#fff"/><ellipse transform="rotate(17 470 804)" ry="43" rx="30" cy="804" cx="470" stroke-width="10" fill="#fff"/><ellipse transform="rotate(30 750 518)" ry="48" rx="31" cy="518" cx="750" stroke-width="10" fill="#fff"/><ellipse transform="rotate(-30 330 518)" ry="48" rx="31" cy="518" cx="330" stroke-width="10" fill="#fff"/>',
            '</svg>']; 

    constructor() ERC721FCOMMON("OnChainBunnies", "OCB") {
    }


    /**
     * Changes the state of saleIsActive from true to false and false to true
     */
    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
        preSaleIsActive = false;
    }

    function flipPreSaleState() external onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    /**
     * @notice Creates the tokenURI which contains the name, description, generated SVG image and token traits
     */
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Non-Existing");
        string memory svgData = renderTokenById(tokenId);
        string memory traits = getTraits(tokenId);
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "',
                        name(),
                        " ",
                        Strings.toString(tokenId),
                        '", "description": "',
                        "ocb"
                        '", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(svgData)),
                        bytes(traits).length == 0 ? '"' : '", "attributes": ',
                        traits,
                        "}"
                    )
                )
            )
        );
        return string(abi.encodePacked("data:application/json;base64,", json));
    }

    


    function sample(uint256 numberOfTokens) public payable {
        require(msg.sender == tx.origin, "No Contracts allowed");
        require(numberOfTokens > 0, "#NFTS != 0");
        uint256 supply = _totalMinted(); 
        require(
            supply + numberOfTokens <= 2000,
            "Sold out"
        );
        while (numberOfTokens != 0 ) {
            uint256 randomNumber = uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty, supply, msg.sender))) % 47217;
            uint256 algorithmId = last_selected + randomNumber;
            if (checkId(algorithmId)){
                _mint(msg.sender, supply + 1); 
                unchecked {
                    supply++;
                    numberOfTokens--;
                }
                IdToAlgorithmId[supply + 1] = algorithmId;
            }
            last_selected = algorithmId;
        }
    }

    /**
     * @notice Mints `numberOfTokens` tokens for `sender`
     */
    function mint(uint256 numberOfTokens) external payable {
        require(saleIsActive, "Sale inactive");
        require(
            numberOfTokens < 31,
            "Max 30 NFTs"
        );
        require(
            tokenPrice * numberOfTokens <= msg.value,
            "Value incorrect"
        );
        sample(numberOfTokens);
    }

    function mintPresale(uint256 numberOfTokens) external payable onlyAllowList{
        require(preSaleIsActive, "PreSale inactive");
        require(
            numberOfTokens < 11,
            "Max 20 NFTs"
        );
        require(
            tokenPrice * numberOfTokens <= msg.value,
            "Value incorrect"
        );
        sample(2 * numberOfTokens);
        
    }

    function getPurseId(uint256 Id) internal pure returns (uint256 purseId){
        uint256 bit_1 = (Id >> 4) & 1;
        uint256 bit_2 = (Id >> 10) & 1;
        uint256 bit_3 = (Id >> 24) & 1;
        return ((bit_3 << 2) | (bit_2 << 1) | bit_1);
    }

    function getBraceletId(uint256 Id) internal pure returns (uint256 braceletId){
        uint256 bit_1 = (Id >> 3) & 1;
        uint256 bit_2 = (Id >> 9) & 1;
        uint256 bit_3 = (Id >> 23) & 1;
        return ((bit_3 << 2) | (bit_2 << 1) | bit_1);
    }

    function getWizardId(uint256 Id) internal pure returns (uint256 wizardId){
        uint256 bit_1 = (Id >> 2) & 1;
        uint256 bit_2 = (Id >> 8) & 1;
        uint256 bit_3 = (Id >> 22) & 1;
        return ((bit_3 << 2) | (bit_2 << 1) | bit_1);
    }

    function getWhiskersId(uint256 Id) internal pure returns (uint256 whiskersId){
        uint256 bit_1 = (Id >> 1) & 1;
        uint256 bit_2 = (Id >> 21) & 1;
        return ((bit_2 << 1) | bit_1);
    }
    
    function getEyebrowsId(uint256 Id) internal pure returns (uint256 eyebrowsId){
        uint256 bit_1 = Id & 1;
        uint256 bit_2 = (Id >> 20) & 1;
        return ((bit_2 << 1) | bit_1);
    }

    function getHatId(uint256 Id) internal pure returns (uint256 hatId){
        uint256 bit_1 = (Id >> 5) & 1;
        uint256 bit_5 = (Id >> 25) & 1;
        uint256 trait_mask = 7; //0b111 = 7
        uint256 bitMask = trait_mask << 11;
        uint256 bit_234 = ((Id & bitMask) >> 11);
        return ((bit_5 << 4) | (bit_234 << 1) | bit_1);
    }

    function getGlassesId(uint256 Id) internal pure returns (uint256 glassesId){
        uint256 bit_1 = (Id >> 6) & 1;
        uint256 bit_5 = (Id >> 26) & 1;
        uint256 trait_mask = 7; //0b111 = 7
        uint256 bitMask = trait_mask << 14;
        uint256 bit_234 = ((Id & bitMask) >> 14);
        return ((bit_5 << 4) | (bit_234 << 1) | bit_1);
    }

    function getTieId(uint256 Id) internal pure returns (uint256 tieId){
        uint256 bit_1 = (Id >> 7) & 1;
        uint256 bit_5 = (Id >> 27) & 1;
        uint256 trait_mask = 7; //0b111 = 7
        uint256 bitMask = trait_mask << 17;
        uint256 bit_234 = ((Id & bitMask) >> 17);
        return ((bit_5 << 4) | (bit_234 << 1) | bit_1);
    }

    function checkId(uint256 Id) private pure returns (bool ok){
        return !(getGlassesId(Id) > 24 || getTieId(Id) > 28 || getWizardId(Id) > 5 || getHatId(Id) > 30);
    }


    function getTie(uint256 tie_id) internal pure returns(string memory){
        string memory bow = '<path stroke-width="8" fill="#';
        string[2] memory bow_tie_circle = [
            '" d="m540 570 80-20v40zm0 0-80-20v40z"/><circle cy="570" cx="540" r="14" stroke-width="8" fill="#',
            '"/>'];
        string[2] memory bow_tie_square = [
            '" d="m540 570 80-20v40zm0 0-80-20v40z"/><rect x="527" y="557" width="26" height="26" stroke-width="8" fill="',
            '"/>'];
        string[3] memory tie = ['<polygon points="540,555 510,710 570,710"  stroke-width="8" fill="#',
        '"/><circle cy="570" cx="540" r="15" stroke-width="8" fill="#',
        '"/>'];
        string[3] memory tie_colors = ['56aaff', '5f00bf', 'ff7f00'];
        
        if (tie_id == 0){
            return'';
        }
        //bow_ties
        if (tie_id%3 == 0){
            //tie circle
            return string(abi.encodePacked(
                bow,
                tie_colors[tie_id/3%3],
                bow_tie_circle[0],
                tie_colors[tie_id/9%3],
                bow_tie_circle[1]
        )
        );
        }
        if (tie_id%3 == 1){
            //tie square
            return string(abi.encodePacked(
                bow,
                tie_colors[tie_id/3%3],
                bow_tie_square[0],
                tie_colors[tie_id/9%3],
                bow_tie_square[1]
        )
        );
        }
        
        //normal tie 
        return string(abi.encodePacked(
                tie[0],
                tie_colors[tie_id/3%3],
                tie[1],
                tie_colors[tie_id/9%3],
                tie[2]
        )
        );

        
        
    }

    function getWhiskers(uint256 whiskers_id) internal pure returns(string memory){
        string[13] memory whiskers = ['<path stroke-width="4" d="M', ' 520h','v2', 'zm','L512 510l-.347 1.97-', 'zm0', 'L512 530l.347 1.97-', 'zM570 520h', 'v2', 'zm-2-10', 'zm0 20 ', '1.97-', 'z"/>'];
        string[12] memory whiskers_short = ['430', '80', 'h-80', '3.215-23.8922', '78.785-13.892', ' 47.784', '78.784 13.891', '80', 'h-80', ' 78.785-13.892.347 1.97-78.785 13.892', ' 78.785 13.892-.348 ', '78.784-13.892'];
        string[12] memory whiskers_long = ['390', '120', 'H390', '3.823-30.8382', '118.177-20.838', ' 61.676', '118.177 20.837', '120','H570', ' 118.177-20.838.347 1.97-118.177 20.838', ' 118.177 20.838-.347 ', '118.177-20.838' ];
        string[12] memory whiskers_very_short = ['490', '20', 'h-20', '2.304-13.473', '19.696-3.473', ' 26.946', '19.696 3.473', '20', 'h-20', ' 19.696-3.473.347 1.97-19.696 3.473', ' 19.696 3.473-.347 ', '19.696-3.473'];
    
        string[12] memory short_or_long;
        if (whiskers_id == 0){
            return '';
        }
        else if (whiskers_id == 1){
            short_or_long = whiskers_short;
        }
        else if (whiskers_id == 2){
            short_or_long = whiskers_long;
        }
        else if (whiskers_id > 2){
            short_or_long = whiskers_very_short;
        }
        string memory whisker_string;
        
        for (uint i=0; i<12;){
            whisker_string = string(abi.encodePacked(whisker_string, whiskers[i], short_or_long[i]));
            unchecked{
                i++;
              }
        }
    
        return string(abi.encodePacked(
            whisker_string, 
            whiskers[12]
        )
        ); 
    }

    function getMagic(uint256 magic_id) internal pure returns(string memory){
        string[2] memory magic = ['<rect y="350" x="750" width="20" height="160" stroke-width="8" fill="#', '"/><rect y="350" x="748" width="24" height="40" stroke-width="8" fill="#FFEA00"/><circle cy="300" cx="710" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="260" cx="800" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="230" cx="730" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="300" cx="760" r="12" fill="#FFEA00" stroke-width="8"/><circle cy="340" cx="810" r="12" fill="#FFEA00" stroke-width="8"/>'];
        string[4] memory magic_colors = ['f', 'CEC9DF','FDF1CA', 'EDCCB6'];

        if (magic_id == 0){
            return '';
        }
        return string(abi.encodePacked(
            magic[0],
            magic_colors[magic_id-1],
            magic[1]
        )
        ); 

        
    }

    function getBracelet(uint256 bracelet_id) internal pure returns(string memory){
        string[5] memory bracelet_colors = ['FFF093', '05faf6', '07ab2d', 'f70505', 'f768e2'];
        string[2] memory bracelet = ['<circle cy="520" cx="310" r="8" fill="#FFF093" stroke-width="4"/><circle cy="510" cx="350" r="8" fill="#FFF093" stroke-width="4"/><circle cy="519" cx="331" r="12" fill="#',
    '       " stroke-width="4"/>'];
        if (bracelet_id == 0){
            return '';
        }
        return string(abi.encodePacked(
            bracelet[0],
            bracelet_colors[bracelet_id-1],
            bracelet[1]
        )
        ); 
    }

    function getPurse(uint256 purse_id) internal pure returns(string memory){
        string[2] memory upper_part_purse = ['<circle cy="580" cx="330" r="60" stroke="none"/><circle cy="580" cx="330" r="40" fill="#fff" stroke="none"/>','<rect y="530" x="280" width="100" height="120" stroke-width="8"/><rect y="530" x="290" width="80" height="100" stroke-width="8" fill="#fff"/>'];
        string memory lower_part_purse = '<rect y="580" x="240" width="180" height="120" stroke-width="8" ';
        string[5] memory design_purse = ['fill="#f05de4"/><circle cy="600" cx="340" r="15" fill="#f0b267" stroke-width="8"/><circle cy="650" cx="380" r="20" fill="#f0b267" stroke-width="8"/><circle cy="650" cx="280" r="16" fill="#f0b267" stroke-width="8"/><circle cy="600" cx="400" r="13" fill="#f0b267" stroke-width="8"/>', 
            'fill="#f73149"/><rect y="600" x="260" width="140" height="80" stroke-width="8" fill="#f58822"/><rect y="620" x="280" width="100" height="40" stroke-width="8" fill="#f5c43d"/>', 
            'fill="#9F87FB"/><rect y="650" x="310" width="30" height="30" stroke-width="8" fill="#e06cf5"/><rect y="590" x="350" width="30" height="30" stroke-width="8" fill="#e06cf5"/><rect y="640" x="380" width="30" height="30" stroke-width="8" fill="#e06cf5"/><rect y="610" x="260" width="30" height="30" stroke-width="8" fill="#e06cf5"/>', 
            '<rect y="550" x="240" width="180" height="30" stroke-width="8" fill="#9efa84"/><rect y="580" x="240" width="180" height="30" stroke-width="8" fill="#7ac9fa"/><rect y="610" x="240" width="180" height="30" stroke-width="8" fill="#b67afa"/><rect y="640" x="240" width="180" height="30" stroke-width="8" fill="#ea72f7"/>', 
            '<rect y="560" x="240" width="45" height="120" stroke-width="8" fill="#9efa84"/><rect y="560" x="285" width="45" height="120" stroke-width="8" fill="#7ac9fa"/><rect y="560" x="330" width="45" height="120" stroke-width="8" fill="#b67afa"/><rect y="560" x="375" width="45" height="120" stroke-width="8" fill="#ea72f7"/>'];
  
        if (purse_id == 0){
            return '';
        }
        if (purse_id == 5){
            return string(abi.encodePacked(
            upper_part_purse[1],
            design_purse[4]
        )
        ); 
        }

        if (purse_id == 4){
            return string(abi.encodePacked(
            upper_part_purse[1],
            design_purse[3]
        )
        ); 
        }

        return string(abi.encodePacked(
            upper_part_purse[0],
            lower_part_purse,
            design_purse[purse_id - 1])
        ); 
        
    }

    /**
     * 3 types of eyebrows + None = 4 options
     */
    function getEyeBrows(uint256 eyebrows_id) internal pure returns(string memory){
        string[3] memory rotations_left_eyebrows = ['25', '-25', '0'];
        string[3] memory rotations_right_eyebrows = ['-25', '25', '0'];
        string[3] memory eyebrows = ['<rect transform="rotate(',' 465 350)" height="8" width="80" y="370" x="425" fill="#000000"/><rect transform="rotate(',' 615 350)" height="8" width="80" y="370" x="575" fill="#000000"/>'];
    
    
        if (eyebrows_id%4 == 0){
            return '';
        }
        return string(abi.encodePacked(
            eyebrows[0],
            rotations_left_eyebrows[eyebrows_id%4-1],
            eyebrows[1],
            rotations_right_eyebrows[eyebrows_id%4-1],
            eyebrows[2]
        )
        );
    }

    /**
     * 5 types of hats
     * Should give 30 different combo's: 3 possibilities for up, 2 for down and 5 colors = 6*5=30
     */
    function getHat(uint256 hat_id) internal pure returns(string memory){
        string memory hat_basic = '"/>';
        string[3] memory hat_up = ['<rect y="205" x="475" width="130" height="60" stroke-width="8" fill="#',
            '<rect y="140" x="485" width="110" height="120" stroke-width="8" fill="#',
            '<circle cy="238" cx="540" stroke-width="10" r="62" fill="#'];
        string[2] memory hat_down = ['<rect y="262" x="440" width="200" height="40" stroke-width="8"  fill="#',
            '<ellipse ry="22" rx="70" cy="280" cx="540" stroke-width="8" fill="#'];
        string[5] memory hat_colors_up = ['5fbf00', '000000','e960ff', '56aaff', '5fbf00'];
        string[5] memory hat_colors_down = ['56aaff','ff0000','ff0000', 'ffff93', 'ffff93'];
        if (hat_id == 0){
            return '';
        }
        return string(abi.encodePacked(
            hat_up[hat_id/5%3],
            hat_colors_up[hat_id%5],
            hat_basic,
            hat_down[hat_id/15%2],
            hat_colors_down[hat_id%5],
            hat_basic
        )
        );
    }

    function getGlasses(uint256 glasses_id) internal pure returns(string memory){
        string[8] memory glasses_colors = ['ed4949','ffff56', 'ff7f00', '00bf00', '1900bf', 'e960ff', '68f7ce', '56aaff'];
        string memory glasses_common = '<path stroke-width="4" fill="#';
        string[3] memory small_glasses = ['" d="M492 417h140v20H492z"/><circle cy="427" cx="470" stroke-width="4" r="45" fill="#',
            '"/><circle cy="427" cx="610" stroke-width="4" r="45" fill="#',
            '"/>'];
        string[3] memory big_glasses = ['" d="M492 417h140v20H492z"/><circle cy="427" cx="470" stroke-width="4" r="55" fill="#',
            '"/><circle cy="427" cx="470" stroke-width="4" r="45" fill="#fff"/><circle cy="427" cx="610" stroke-width="4" r="55" fill="#',
            '"/><circle cy="427" cx="610" stroke-width="4" r="45" fill="#fff"/>'];

        string[3] memory square_glasses = ['" d="M492 417h140v20H492z"/><rect x="420" y="377" width="100" height="100" fill="#',
        '" stroke-width="4"/><rect x="430" y="387" width="80" height="80" fill="#fff" stroke-width="4"/><rect x="560" y="377" width="100" height="100" fill="#',
        '" stroke-width="4"/><rect x="570" y="387" width="80" height="80" fill="#fff" stroke-width="4"/>'];

        string memory output;
        if (glasses_id == 0){
            return '';
        }

        else if (glasses_id%3 == 0){
            output = string(abi.encodePacked(
                glasses_common,
                glasses_colors[glasses_id/3%8],
                small_glasses[0]));

            return string(abi.encodePacked(output,
                glasses_colors[glasses_id/3%8],
                small_glasses[1],
                glasses_colors[glasses_id/3%8],
                small_glasses[2]
                ));
        }
        else if (glasses_id%3 == 1){
            output = string(abi.encodePacked(
                glasses_common,
                glasses_colors[glasses_id/3%8],
                big_glasses[0]));

            return string(abi.encodePacked(
                output,
                glasses_colors[glasses_id/3%8],
                big_glasses[1],
                glasses_colors[glasses_id/3%8],
                big_glasses[2]
                ));
        }
        //enabling optimizer: 7 is too deep for stack so split up
        output = string(abi.encodePacked(
                glasses_common,
                glasses_colors[glasses_id/3%8],
                square_glasses[0]));

        return string(abi.encodePacked(
                output,
                glasses_colors[glasses_id/3%8],
                square_glasses[1],
                glasses_colors[glasses_id/3%8],
                square_glasses[2]
                ));
    }


    function getBackground(uint256 id) internal pure returns(string memory){
        string[6] memory colors = ["CEC9DF", "FDF1CA", "EDCCB6", "B2C6DE", "E1E1E1", "C8DCB8"];
        return colors[id%6];
    }

    /**
     * @notice Overridden function which creates custom SVG image
     * 
     */
    function renderTokenById(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        
        require(_exists(tokenId), "Non-Existing");
        uint256 algorithmId = IdToAlgorithmId[tokenId];        

        string memory output = string(abi.encodePacked(frame[0],getBackground(algorithmId % 6), frame[1], frame[2], getGlasses(getGlassesId(algorithmId))));
        output = string(abi.encodePacked(output,
        getHat(getHatId(algorithmId)), 
        getEyeBrows(getEyebrowsId(algorithmId))));
        output = string(abi.encodePacked(output,frame[3], 
        getBracelet(getBraceletId(algorithmId)), 
        getTie(getTieId(algorithmId)), 
        getMagic(getWizardId(algorithmId)),
        getPurse(getPurseId(algorithmId)),
        getWhiskers(getWhiskersId(algorithmId)),
        frame[4]));
        return string(output);
    }


    function getTraits(
        uint256 tokenId
    ) internal view returns (string memory) {
        string memory tr1='[{"trait_type": "Background","value": "';
        string memory tr2='"},{"trait_type": "Bracelet","value": "';
        string memory tr3='"},{"trait_type": "Eyebrows","value": "';
        string memory tr4='"},{"trait_type": "Hat","value": "';
        string memory tr5='"},{"trait_type": "Glasses","value": "';
        string memory tr6='"},{"trait_type": "Tie","value": "';
        string memory tr7='"},{"trait_type": "Wizard","value": "';
        string memory tr8='"},{"trait_type": "Whiskers","value": "';
        string memory tr9='"},{"trait_type": "Purse","value": "';
        string memory tr10='"}]';
        uint256 algorithmId = IdToAlgorithmId[tokenId];
        require(_exists(tokenId), "Non-Existing");
        string memory o=string(abi.encodePacked(tr1,Strings.toString(algorithmId % 6),tr2,Strings.toString(getBraceletId(algorithmId)),tr3,Strings.toString(getEyebrowsId(algorithmId))));
        o = string(abi.encodePacked(o, tr4,Strings.toString(getHatId(algorithmId)),tr5,Strings.toString(getGlassesId(algorithmId)), tr6,Strings.toString(getTieId(algorithmId))));
        return string(abi.encodePacked(o,tr7,Strings.toString(getWizardId(algorithmId)), tr8, Strings.toString(getWhiskersId(algorithmId)), tr9, Strings.toString(getPurseId(algorithmId)),tr10));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "0 balance");
        _withdraw(owner(), balance);
    }
    
    
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "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":false,"internalType":"uint256","name":"royalties","type":"uint256"}],"name":"ROYALTIESUPDATED","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":"_address","type":"address"}],"name":"allowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"allowAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"disallowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"last_selected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renderTokenById","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"sample","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalties","type":"uint16"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setRoyaltyReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805461ffff19166101f41790556000600e55662386f26fc1000060105561018060405260396101208181526080918291906200605b61014039815260200160405180606001604052806033815260200162005fdc6033913981526020016040518060800160405280604c81526020016200600f604c91398152602001604051806105c0016040528061058481526020016200609461058491398152602001604051806040016040528060068152602001651e17b9bb339f60d11b8152508152506012906005620000d392919062000275565b50348015620000e157600080fd5b506040518060400160405280600e81526020016d4f6e436861696e42756e6e69657360901b8152506040518060400160405280600381526020016227a1a160e91b81525081818181620001436200013d6200018c60201b60201c565b62000190565b815162000158906001906020850190620002cc565b5080516200016e906002906020840190620002cc565b50505050506200018430620001e060201b60201c565b50506200040d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001ea62000214565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000546001600160a01b03163314620002735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8260058101928215620002ba579160200282015b82811115620002ba5782518051620002a9918491602090910190620002cc565b509160200191906001019062000289565b50620002c892915062000357565b5090565b828054620002da90620003d1565b90600052602060002090601f016020900481019282620002fe576000855562000349565b82601f106200031957805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003495782518255916020019190600101906200032c565b50620002c892915062000378565b80821115620002c85760006200036e82826200038f565b5060010162000357565b5b80821115620002c8576000815560010162000379565b5080546200039d90620003d1565b6000825580601f10620003ae575050565b601f016020900490600052602060002090810190620003ce919062000378565b50565b600181811c90821680620003e657607f821691505b6020821081036200040757634e487b7160e01b600052602260045260246000fd5b50919050565b615bbf806200041d6000396000f3fe6080604052600436106101ae5760003560e01c806301ffc9a7146101ba57806306fdde03146101ef578063081812fc1461021157806308af4d8814610249578063095ea7b31461026b57806310fa18781461028b57806318160ddd1461029e5780631f0234d8146102c157806323b872dd146102e057806324d38d9f146103005780632a55205a1461031657806330176e131461035557806334918dfd146103755780633863b1f51461038a5780633ccfd60b146103aa57806342842e0e146103bf578063438b6300146103df5780636352211e1461040c57806370a082311461042c578063715018a61461044c5780637ff9b596146104615780638da5cb5b146104775780638dc251e31461048c57806395d89b41146104ac578063a0712d68146104c1578063a22cb465146104d4578063a2d6c6da146104f4578063b7c58d7a14610514578063b88d4fde14610534578063c87b56dd14610554578063e985e9c514610574578063eb8d244414610594578063f0325549146105ae578063f2fde38b146105c3578063f5964e08146105e3578063f759867a14610603578063f7e079671461061657600080fd5b366101b557005b600080fd5b3480156101c657600080fd5b506101da6101d5366004613da3565b610636565b60405190151581526020015b60405180910390f35b3480156101fb57600080fd5b50610204610661565b6040516101e69190613e1f565b34801561021d57600080fd5b5061023161022c366004613e32565b6106f3565b6040516001600160a01b0390911681526020016101e6565b34801561025557600080fd5b50610269610264366004613e67565b61071a565b005b34801561027757600080fd5b50610269610286366004613e82565b610746565b610269610299366004613e32565b610860565b3480156102aa57600080fd5b506102b3610a0a565b6040519081526020016101e6565b3480156102cd57600080fd5b50600f546101da90610100900460ff1681565b3480156102ec57600080fd5b506102696102fb366004613eac565b610a21565b34801561030c57600080fd5b506102b3600e5481565b34801561032257600080fd5b50610336610331366004613ee8565b610a52565b604080516001600160a01b0390931683526020830191909152016101e6565b34801561036157600080fd5b50610269610370366004613f95565b610b07565b34801561038157600080fd5b50610269610b22565b34801561039657600080fd5b506102696103a5366004613fdd565b610b44565b3480156103b657600080fd5b50610269610b90565b3480156103cb57600080fd5b506102696103da366004613eac565b610be6565b3480156103eb57600080fd5b506103ff6103fa366004613e67565b610c01565b6040516101e69190614051565b34801561041857600080fd5b50610231610427366004613e32565b610ccc565b34801561043857600080fd5b506102b3610447366004613e67565b610d00565b34801561045857600080fd5b50610269610d86565b34801561046d57600080fd5b506102b360105481565b34801561048357600080fd5b50610231610d9a565b34801561049857600080fd5b506102696104a7366004613e67565b610da9565b3480156104b857600080fd5b50610204610ddb565b6102696104cf366004613e32565b610dea565b3480156104e057600080fd5b506102696104ef366004614095565b610ea0565b34801561050057600080fd5b5061020461050f366004613e32565b610eab565b34801561052057600080fd5b5061026961052f366004613e67565b61100b565b34801561054057600080fd5b5061026961054f3660046140d1565b611038565b34801561056057600080fd5b5061020461056f366004613e32565b61106a565b34801561058057600080fd5b506101da61058f36600461414c565b611170565b3480156105a057600080fd5b50600f546101da9060ff1681565b3480156105ba57600080fd5b5061026961119e565b3480156105cf57600080fd5b506102696105de366004613e67565b6111c3565b3480156105ef57600080fd5b506101da6105fe366004613e67565b611239565b610269610611366004613e32565b611257565b34801561062257600080fd5b5061026961063136600461417f565b61136f565b60006001600160e01b0319821663152a902d60e11b148061065b575061065b8261143b565b92915050565b606060018054610670906141a3565b80601f016020809104026020016040519081016040528092919081815260200182805461069c906141a3565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe82611460565b506000908152600560205260409020546001600160a01b031690565b610722611485565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600061075182610ccc565b9050806001600160a01b0316836001600160a01b0316036107c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107df57506107df8133611170565b6108515760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107ba565b61085b83836114e4565b505050565b3332146108a65760405162461bcd60e51b8152602060048201526014602482015273139bc810dbdb9d1c9858dd1cc8185b1b1bddd95960621b60448201526064016107ba565b600081116108e35760405162461bcd60e51b815260206004820152600a6024820152690234e46545320213d20360b41b60448201526064016107ba565b60006108ee60075490565b90506107d06108fd83836141f3565b11156109365760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016107ba565b8115610a0657604080514260208201524491810191909152606080820183905233901b6001600160601b031916608082015260009061b871906094016040516020818303038152906040528051906020012060001c6109959190614221565b9050600081600e546109a791906141f3565b90506109b281611552565b156109fd576109cb336109c68560016141f3565b6115a0565b6000199093019260019283019281906011906000906109eb9087906141f3565b81526020810191909152604001600020555b600e5550610936565b5050565b6000600854600754610a1c9190614235565b905090565b610a2b33826115b7565b610a475760405162461bcd60e51b81526004016107ba9061424c565b61085b838383611616565b600080610a5e84611768565b610acd5760405162461bcd60e51b815260206004820152603a60248201527f45524332393831526f79616c74795374616e646172643a20526f79616c74792060448201527934b73337903337b9103737b732bc34b9ba32b73a103a37b5b2b760311b60648201526084016107ba565b600c546001600160a01b03620100008204169061271090610af29061ffff1686614299565b610afc91906142b8565b915091509250929050565b610b0f611485565b8051610a06906009906020840190613ccc565b610b2a611485565b600f805461ff001960ff8216151661ffff19909116179055565b610b4c611485565b8060005b81811015610b8a57610b82848483818110610b6d57610b6d6142cc565b90506020020160208101906102649190613e67565b600101610b50565b50505050565b610b98611485565b4780610bd25760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b60448201526064016107ba565b610be3610bdd610d9a565b82611785565b50565b61085b83838360405180602001604052806000815250611038565b60606000610c0e83610d00565b90506000816001600160401b03811115610c2a57610c2a613f0a565b604051908082528060200260200182016040528015610c53578160200160208202803683370190505b5060075490915060009081905b84821015610cc15780831015610cc157866001600160a01b0316610c8384611823565b6001600160a01b031603610cb65782848381518110610ca457610ca46142cc565b60209081029190910101526001909101905b600190920191610c60565b509195945050505050565b600080610cd883611823565b90506001600160a01b03811661065b5760405162461bcd60e51b81526004016107ba906142e2565b60006001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107ba565b506001600160a01b031660009081526004602052604090205490565b610d8e611485565b610d98600061183e565b565b6000546001600160a01b031690565b610db1611485565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b606060028054610670906141a3565b600f5460ff16610e2c5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107ba565b601f8110610e6a5760405162461bcd60e51b815260206004820152600b60248201526a4d6178203330204e46547360a81b60448201526064016107ba565b3481601054610e799190614299565b1115610e975760405162461bcd60e51b81526004016107ba90614314565b610be381610860565b610a0633838361188e565b6060610eb682611768565b610ed25760405162461bcd60e51b81526004016107ba9061433d565b600082815260116020526040812054906012610ef7610ef2600685614221565b611958565b60136014610f0c610f0787611a47565b611a68565b604051602001610f209594939291906143fc565b604051602081830303815290604052905080610f43610f3e84611f8a565b611fab565b610f5860018516601386901c600216176122e4565b604051602001610f6a9392919061444c565b60408051808303601f190181529190529050806015610f90610f8b856124e8565b612509565b610fa1610f9c86612683565b6126a2565b610fb2610fad876129c0565b6129e2565b610fc3610fbe88612afc565b612b1d565b610fda600189811c1660148a901c60021617612cc6565b604051610ff3979695949392919060169060200161448f565b60408051601f19818403018152919052949350505050565b611013611485565b610be3816001600160a01b03166000908152600d60205260409020805460ff19169055565b61104233836115b7565b61105e5760405162461bcd60e51b81526004016107ba9061424c565b610b8a8484848461351f565b606061107582611768565b6110915760405162461bcd60e51b81526004016107ba9061433d565b600061109c83610eab565b905060006110a984613552565b905060006111446110b8610661565b6110c1876137c7565b6110ca86613859565b855115611100576040518060400160405280601181526020017001116101130ba3a3934b13aba32b9911d1607d1b81525061111b565b604051806040016040528060018152602001601160f91b8152505b86604051602001611130959493929190614524565b604051602081830303815290604052613859565b9050806040516020016111579190614627565b6040516020818303038152906040529350505050919050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6111a6611485565b600f805461ff001981166101009182900460ff1615909102179055565b6111cb611485565b6001600160a01b0381166112305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ba565b610be38161183e565b6001600160a01b03166000908152600d602052604090205460ff1690565b61126033611239565b6112ac5760405162461bcd60e51b815260206004820152601f60248201527f41646472657373206973206e6f742077697468696e20616c6c6f774c6973740060448201526064016107ba565b600f54610100900460ff166112f65760405162461bcd60e51b815260206004820152601060248201526f50726553616c6520696e61637469766560801b60448201526064016107ba565b600b81106113345760405162461bcd60e51b815260206004820152600b60248201526a4d6178203230204e46547360a81b60448201526064016107ba565b34816010546113439190614299565b11156113615760405162461bcd60e51b81526004016107ba90614314565b610be3610299826002614299565b611377611485565b61ffff81161580159061138e5750605a8161ffff16105b6113e65760405162461bcd60e51b8152602060048201526024808201527f726f79616c746965732073686f756c64206265206265747765656e203020616e6044820152630642039360e41b60648201526084016107ba565b6113f181606461466c565b600c805461ffff191661ffff92831617905560405190821681527f4d6cb9294cbdb904203aa4a781e367c3d90e784c5d71bda09274843ee48436e59060200160405180910390a150565b60006001600160e01b0319821663152a902d60e11b148061065b575061065b826139aa565b61146981611768565b610be35760405162461bcd60e51b81526004016107ba906142e2565b3361148e610d9a565b6001600160a01b031614610d985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ba565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151982610ccc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000601861155f83611a47565b11806115735750601c61157183612683565b115b8061158657506005611584836129c0565b115b806115995750601e61159783611f8a565b115b1592915050565b6115aa82826139fa565b5050600780546001019055565b6000806115c383610ccc565b9050806001600160a01b0316846001600160a01b031614806115ea57506115ea8185611170565b8061160e5750836001600160a01b0316611603846106f3565b6001600160a01b0316145b949350505050565b826001600160a01b031661162982610ccc565b6001600160a01b03161461164f5760405162461bcd60e51b81526004016107ba90614696565b6001600160a01b0382166116b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ba565b826001600160a01b03166116c482610ccc565b6001600160a01b0316146116ea5760405162461bcd60e51b81526004016107ba90614696565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184936000805160206154af83398151915291a4505050565b60008061177483611823565b6001600160a01b0316141592915050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146117d2576040519150601f19603f3d011682016040523d82523d6000602084013e6117d7565b606091505b505090508061085b5760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b60448201526064016107ba565b6000908152600360205260409020546001600160a01b031690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036118eb5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107ba565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040805161010081018252600660c082018181526521a2a19ca22360d11b60e08401528252825180840184528181526546444631434160d01b60208281019190915280840191909152835180850185528281526522a221a1a11b60d11b8183015283850152835180850185528281526542324336444560d01b81830152606084810191909152845180860186528381526545314531453160d01b81840152608085015284518086019095528285526508670888684760d31b9185019190915260a08301939093528190611a2b9085614221565b60068110611a3b57611a3b6142cc565b60200201519392505050565b6010601682901c16600d82901c600e1617600160069290921c919091161790565b6040805161014081018252600661010082018181526565643439343960d01b61012084015282528251808401845281815265333333331a9b60d11b60208281019190915280840191909152835180850185528281526506666376630360d41b8183015283850152835180850185528281526503030626630360d41b818301526060848101919091528451808601865283815265189c9818313360d11b818401526080808601919091528551808701875284815265329c9b18333360d11b8185015260a0860152855180870187528481526536386637636560d01b8185015260c086015285518087018752938452651a9b30b0b33360d11b8484015260e08086019490945285518087018752601e81527f3c70617468207374726f6b652d77696474683d2234222066696c6c3d222300009381019390935285519384019095526055838201818152919592936000939092839290916155e49084013981526020016040518060600160405280603c81526020016157b5603c913981526020016040518060400160405280600381526020016211179f60e91b81525081525090506000604051806060016040528060405180608001604052806055815260200161522a6055913981526020016040518060a00160405280607b8152602001614f7b607b91398152602001604051806080016040528060428152602001614d216042913990526040805160e0810190915260526060820181815292935060009282916157f1608084013981526020016040518060c001604052806095815260200161541a6095913981526020016040518060800160405280605f8152602001614d63605f91398152509050606087600003611cf55750506040805160208101909152600081529695505050505050565b611d00600389614221565b600003611df85784866008611d1660038c6142b8565b611d209190614221565b60088110611d3057611d306142cc565b602090810291909101518651604051611d4a94930161444c565b60408051601f19818403018152919052905080866008611d6b60038c6142b8565b611d759190614221565b60088110611d8557611d856142cc565b60200201518560016020020151886008611da060038e6142b8565b611daa9190614221565b60088110611dba57611dba6142cc565b60200201518760025b6020020151604051602001611ddc9594939291906146db565b6040516020818303038152906040529650505050505050919050565b611e03600389614221565b600103611eca5784866008611e1960038c6142b8565b611e239190614221565b60088110611e3357611e336142cc565b602090810291909101518551604051611e4d94930161444c565b60408051601f19818403018152919052905080866008611e6e60038c6142b8565b611e789190614221565b60088110611e8857611e886142cc565b60200201518460016020020151886008611ea360038e6142b8565b611ead9190614221565b60088110611ebd57611ebd6142cc565b6020020151866002611dc3565b84866008611ed960038c6142b8565b611ee39190614221565b60088110611ef357611ef36142cc565b602090810291909101518451604051611f0d94930161444c565b60408051601f19818403018152919052905080866008611f2e60038c6142b8565b611f389190614221565b60088110611f4857611f486142cc565b60200201518360016020020151886008611f6360038e6142b8565b611f6d9190614221565b60088110611f7d57611f7d6142cc565b6020020151856002611dc3565b6010601582901c16600e600a83901c1617600160059290921c919091161790565b604080518082018252600381526211179f60e91b6020820152815160e08101909252604660608381018281529093600092909182916154cf6080840139815260200160405180608001604052806047815260200161555c6047913981526020016040518060600160405280603a8152602001615a9c603a9139815250905060006040518060400160405280604051806080016040528060478152602001614a25604791398152602001604051806080016040528060438152602001614e4a60439139815250905060006040518060a001604052806040518060400160405280600681526020016503566626630360d41b81525081526020016040518060400160405280600681526020016503030303030360d41b815250815260200160405180604001604052806006815260200165329c9b18333360d11b8152508152602001604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016503566626630360d41b815250815250905060006040518060a00160405280604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081525090508660000361221657505060408051602081019091526000815295945050505050565b83600361222460058a6142b8565b61222e9190614221565b6003811061223e5761223e6142cc565b60200201518261224f60058a614221565b6005811061225f5761225f6142cc565b602002015186856002612273600f8d6142b8565b61227d9190614221565b6002811061228d5761228d6142cc565b60200201518461229e60058d614221565b600581106122ae576122ae6142cc565b6020020151896040516020016122c99695949392919061473a565b60405160208183030381529060405295505050505050919050565b60606000604051806060016040528060405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060038152602001622d323560e81b8152508152602001604051806040016040528060018152602001600360fc1b815250815250905060006040518060600160405280604051806040016040528060038152602001622d323560e81b815250815260200160405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060018152602001600360fc1b81525081525090506000604051806060016040528060405180604001604052806018815260200177078e4cac6e840e8e4c2dce6ccdee4da7a44e4dee8c2e8ca560431b8152508152602001604051806080016040528060598152602001614b3d6059913981526020016040518060800160405280604181526020016155a36041913990529050612449600486614221565b6000036124685750506040805160208101909152600081529392505050565b8051836001612478600489614221565b6124829190614235565b60038110612492576124926142cc565b602002015182600160200201518460016124ad60048b614221565b6124b79190614235565b600381106124c7576124c76142cc565b602002015184600260200201516040516020016111579594939291906146db565b6004601582901c166002600883901c1617600160039290921c919091161790565b6040805160e081018252600660a082018181526546464630393360d01b60c084015282528251808401845281815265181ab330b31b60d11b6020828101919091528084019190915283518085018552828152650c0dd8588c9960d21b8183015283850152835180850185528281526566373035303560d01b818301526060848101919091528451808601865292835265331b9b1c329960d11b91830191909152608083019190915282516101208101845260aa93810184815291936000928291614a938388013981526020016040518060400160405280601b81526020017a10101010101010111039ba3937b5b296bbb4b23a341e911a11179f60291b81525081525090508360000361262d57505060408051602081019091526000815292915050565b80518261263b600187614235565b6005811061264b5761264b6142cc565b60200201518260015b602002015160405160200161266b9392919061444c565b60405160208183030381529060405292505050919050565b600781901c600116601082811c600e1660179390931c16919091171790565b604080518082018252601e81527f3c70617468207374726f6b652d77696474683d2238222066696c6c3d222300006020820152815160e0810183526061928101838152606093600092918291614dc28388013981526020016040518060400160405280600381526020016211179f60e91b8152508152509050600060405180604001604052806040518060a00160405280606c8152602001615082606c913981526020016040518060400160405280600381526020016211179f60e91b815250815250905060006040518060600160405280604051806080016040528060438152602001614cde6043913981526020016040518060600160405280603c8152602001614eaf603c91398152604080518082018252600381526211179f60e91b60208281019190915292830152805160a081018252600660608201818152651a9b30b0b33360d11b6080840152825282518084018452818152651ab31818313360d11b8186015282850152825180840184529081526506666376630360d41b9381019390935290810191909152909150600087900361285457505060408051602081019091526000815295945050505050565b61285f600388614221565b6000036128df5784816003612874818b6142b8565b61287e9190614221565b6003811061288e5761288e6142cc565b602002015185518360036128a360098d6142b8565b6128ad9190614221565b600381106128bd576128bd6142cc565b60200201518760015b60200201516040516020016122c99594939291906146db565b6128ea600388614221565b60010361295557848160036128ff818b6142b8565b6129099190614221565b60038110612919576129196142cc565b6020020151845183600361292e60098d6142b8565b6129389190614221565b60038110612948576129486142cc565b60200201518660016128c6565b8151816003612964818b6142b8565b61296e9190614221565b6003811061297e5761297e6142cc565b6020020151836001602002015183600361299960098d6142b8565b6129a39190614221565b600381106129b3576129b36142cc565b60200201518560026128c6565b600281811c600116600783901c9190911660149290921c600416919091171790565b606060006040518060400160405280604051806080016040528060468152602001614f0f604691398152602001604051806101c0016040528061019b815260200161527f61019b913990526040805160c081018252600160808201908152603360f91b60a083015281528151808301835260068082526521a2a19ca22360d11b60208381019190915280840192909252835180850185528181526546444631434160d01b8184015283850152835180850190945283526522a221a1a11b60d11b9083015260608101919091529091506000849003612ad157505060408051602081019091526000815292915050565b815181612adf600187614235565b60048110612aef57612aef6142cc565b6020020151836001612654565b601681901c60049081166002600984901c161760019290911c919091161790565b6060600060405180604001604052806040518060a00160405280606c8152602001615982606c913981526020016040518060c00160405280608d8152602001615ad6608d91398152509050600060405180606001604052806040815260200161577560409139905060006040518060a001604052806040518061014001604052806101188152602001615843610118913981526020016040518060e0016040528060ae81526020016159ee60ae913981526020016040518061018001604052806101488152602001614b966101489139815260200160405180610160016040528061013c81526020016150ee61013c9139815260200160405180610160016040528061013c815260200161563961013c9139815250905084600003612c545750506040805160208101909152600081529392505050565b84600503612c7b5760208301518160045b60200201516040516020016111579291906147b9565b84600403612c90576020830151816003612c65565b82518282612c9f600189614235565b60058110612caf57612caf6142cc565b60200201516040516020016111579392919061444c565b60606000604051806101a001604052806040518060400160405280601b81526020017a3c70617468207374726f6b652d77696474683d22342220643d224d60281b8152508152602001604051806040016040528060058152602001640406a6460d60db1b8152508152602001604051806040016040528060028152602001613b1960f11b8152508152602001604051806040016040528060028152602001617a6d60f01b8152508152602001604051806040016040528060148152602001734c353132203531306c2d2e33343720312e39372d60601b81525081526020016040518060400160405280600381526020016207a6d360ec1b8152508152602001604051806040016040528060138152602001724c353132203533306c2e33343720312e39372d60681b81525081526020016040518060400160405280600a8152602001690f49a6a6e60406a6460d60b31b8152508152602001604051806040016040528060028152602001613b1960f11b81525081526020016040518060400160405280600781526020016607a6d2d322d31360cc1b81525081526020016040518060400160405280600781526020016603d3698101918160cd1b815250815260200160405180604001604052806005815260200164312e39372d60d81b8152508152602001604051806040016040528060048152602001633d11179f60e11b815250815250905060006040518061018001604052806040518060400160405280600381526020016203433360ec1b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b81525081526020016040518060400160405280600d81526020016c199719189a969919971c1c991960991b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a969899971c1c9960991b815250815260200160405180604001604052806007815260200166080d0dcb8dce0d60ca1b81525081526020016040518060400160405280600d81526020016c37382e3738342031332e38393160981b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b8152508152602001604051806060016040528060258152602001615036602591398152602001604051806040016040528060148152602001730101b9c171b9c1a901899971c1c991697199a1c160651b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a169899971c1c9960991b815250815250905060006040518061018001604052806040518060400160405280600381526020016203339360ec1b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483339360e41b81525081526020016040518060400160405280600d81526020016c19971c1919969998171c199c1960991b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815260200160405180604001604052806007815260200166101b18971b1b9b60c91b81525081526020016040518060400160405280600e81526020016d3131382e3137372032302e38333760901b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483537360e41b815250815260200160405180606001604052806027815260200161595b6027913981526020016040518060400160405280601581526020017401018989c17189b9b901918171c199c1697199a1b9605d1b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815250905060006040518061018001604052806040518060400160405280600381526020016203439360ec1b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b81525081526020016040518060400160405280600c81526020016b322e3330342d31332e34373360a01b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b81525081526020016040518060400160405280600781526020016610191b171c9a1b60c91b81525081526020016040518060400160405280600c81526020016b31392e36393620332e34373360a01b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b8152508152602001604051806060016040528060238152602001614a0260239139815260200160405180604001604052806013815260200172010189c971b1c9b1019971a1b999697199a1b9606d1b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b8152508152509050613452613d50565b8660000361347457505060408051602081019091526000815295945050505050565b8660010361348357508261349e565b8660020361349257508161349e565b600287111561349e5750805b606060005b600c81101561350757818782600d81106134bf576134bf6142cc565b60200201518483600c81106134d6576134d66142cc565b60200201516040516020016134ed9392919061444c565b60408051601f1981840301815291905291506001016134a3565b50610180860151604051611ddc9183916020016147b9565b61352a848484611616565b61353684848484613af5565b610b8a5760405162461bcd60e51b81526004016107ba906147e8565b6060600060405180606001604052806027815260200161505b6027913990506000604051806060016040528060278152602001614a6c6027913990506000604051806060016040528060278152602001615b63602791399050600060405180606001604052806022815260200161553a6022913990506000604051806060016040528060268152602001614f556026913990506000604051806060016040528060228152602001614e8d60229139905060006040518060600160405280602581526020016155156025913990506000604051806060016040528060278152602001614e236027913990506000604051806060016040528060248152602001614eeb602491396040805180820182526003815262227d5d60e81b60208083019190915260008f815260119091529190912054919250906136908d611768565b6136ac5760405162461bcd60e51b81526004016107ba9061433d565b60008b6136c26136bd600685614221565b6137c7565b8c6136cf6136bd866124e8565b8d6136e560018816601389901c600216176137c7565b6040516020016136fa9695949392919061473a565b604051602081830303815290604052905080896137196136bd85611f8a565b8a6137266136bd87611a47565b8b6137336136bd89612683565b604051602001613749979695949392919061483a565b604051602081830303815290604052905080866137686136bd856129c0565b87613780600187811c16601488901c600216176137c7565b8861378d6136bd89612afc565b896040516020016137a59897969594939291906148cc565b6040516020818303038152906040529c50505050505050505050505050919050565b606060006137d483613bf6565b60010190506000816001600160401b038111156137f3576137f3613f0a565b6040519080825280601f01601f19166020018201604052801561381d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461382757509392505050565b6060815160000361387857505060408051602081019091526000815290565b6000604051806060016040528060408152602001614ff660409139905060006003845160026138a791906141f3565b6138b191906142b8565b6138bc906004614299565b6001600160401b038111156138d3576138d3613f0a565b6040519080825280601f01601f1916602001820160405280156138fd576020820181803683370190505b509050600182016020820185865187015b80821015613969576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184535060018301925061390e565b5050600386510660018114613985576002811461399857610cc1565b603d6001830353603d6002830353610cc1565b603d6001830353509195945050505050565b60006001600160e01b031982166380ac58cd60e01b14806139db57506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b031983161461065b565b6001600160a01b038216613a505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ba565b613a5981611768565b15613a765760405162461bcd60e51b81526004016107ba90614971565b613a7f81611768565b15613a9c5760405162461bcd60e51b81526004016107ba90614971565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291906000805160206154af833981519152908290a45050565b60006001600160a01b0384163b15613beb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613b399033908990889088906004016149a7565b6020604051808303816000875af1925050508015613b74575060408051601f3d908101601f19168201909252613b71918101906149e4565b60015b613bd1573d808015613ba2576040519150601f19603f3d011682016040523d82523d6000602084013e613ba7565b606091505b508051600003613bc95760405162461bcd60e51b81526004016107ba906147e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160e565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613c355772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310613c5f576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310613c7d57662386f26fc10000830492506010015b6305f5e1008310613c95576305f5e100830492506008015b6127108310613ca957612710830492506004015b60648310613cbb576064830492506002015b600a831061065b5760010192915050565b828054613cd8906141a3565b90600052602060002090601f016020900481019282613cfa5760008555613d40565b82601f10613d1357805160ff1916838001178555613d40565b82800160010185558215613d40579182015b82811115613d40578251825591602001919060010190613d25565b50613d4c929150613d78565b5090565b604051806101800160405280600c905b6060815260200190600190039081613d605790505090565b5b80821115613d4c5760008155600101613d79565b6001600160e01b031981168114610be357600080fd5b600060208284031215613db557600080fd5b8135613dc081613d8d565b9392505050565b60005b83811015613de2578181015183820152602001613dca565b83811115610b8a5750506000910152565b60008151808452613e0b816020860160208601613dc7565b601f01601f19169290920160200192915050565b602081526000613dc06020830184613df3565b600060208284031215613e4457600080fd5b5035919050565b80356001600160a01b0381168114613e6257600080fd5b919050565b600060208284031215613e7957600080fd5b613dc082613e4b565b60008060408385031215613e9557600080fd5b613e9e83613e4b565b946020939093013593505050565b600080600060608486031215613ec157600080fd5b613eca84613e4b565b9250613ed860208501613e4b565b9150604084013590509250925092565b60008060408385031215613efb57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613f3a57613f3a613f0a565b604051601f8501601f19908116603f01168101908282118183101715613f6257613f62613f0a565b81604052809350858152868686011115613f7b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613fa757600080fd5b81356001600160401b03811115613fbd57600080fd5b8201601f81018413613fce57600080fd5b61160e84823560208401613f20565b60008060208385031215613ff057600080fd5b82356001600160401b038082111561400757600080fd5b818501915085601f83011261401b57600080fd5b81358181111561402a57600080fd5b8660208260051b850101111561403f57600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156140895783518352928401929184019160010161406d565b50909695505050505050565b600080604083850312156140a857600080fd5b6140b183613e4b565b9150602083013580151581146140c657600080fd5b809150509250929050565b600080600080608085870312156140e757600080fd5b6140f085613e4b565b93506140fe60208601613e4b565b92506040850135915060608501356001600160401b0381111561412057600080fd5b8501601f8101871361413157600080fd5b61414087823560208401613f20565b91505092959194509250565b6000806040838503121561415f57600080fd5b61416883613e4b565b915061417660208401613e4b565b90509250929050565b60006020828403121561419157600080fd5b813561ffff81168114613dc057600080fd5b600181811c908216806141b757607f821691505b6020821081036141d757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115614206576142066141dd565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826142305761423061420b565b500690565b600082821015614247576142476141dd565b500390565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008160001904831182151516156142b3576142b36141dd565b500290565b6000826142c7576142c761420b565b500490565b634e487b7160e01b600052603260045260246000fd5b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6020808252600f908201526e15985b1d59481a5b98dbdc9c9958dd608a1b604082015260600190565b6020808252600c908201526b4e6f6e2d4578697374696e6760a01b604082015260600190565b8054600090600181811c908083168061437d57607f831692505b6020808410820361439e57634e487b7160e01b600052602260045260246000fd5b8180156143b257600181146143c3576143f0565b60ff198616895284890196506143f0565b60008881526020902060005b868110156143e85781548b8201529085019083016143cf565b505084890196505b50505050505092915050565b60006144088288614363565b8651614418818360208b01613dc7565b61442d61442782840189614363565b87614363565b9150508351614440818360208801613dc7565b01979650505050505050565b6000845161445e818460208901613dc7565b845190830190614472818360208901613dc7565b8451910190614485818360208801613dc7565b0195945050505050565b6000895160206144a28285838f01613dc7565b6144ae8285018c614363565b915089516144bf8184848e01613dc7565b89519201916144d18184848d01613dc7565b88519201916144e38184848c01613dc7565b87519201916144f58184848b01613dc7565b86519201916145078184848a01613dc7565b61451381840187614363565b9d9c50505050505050505050505050565b693d913730b6b2911d101160b11b8152855160009061454a81600a850160208b01613dc7565b600160fd1b600a91840191820152865161456b81600b840160208b01613dc7565b72111610113232b9b1b934b83a34b7b7111d101160691b600b92909101918201527f6f6362222c2022696d616765223a2022646174613a696d6167652f7376672b78601e820152691b5b0ed8985cd94d8d0b60b21b603e82015285516145d8816048840160208a01613dc7565b85519101906145ee816048840160208901613dc7565b8451910190614604816048840160208801613dc7565b61461a604882840101607d60f81b815260010190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161465f81601d850160208701613dc7565b91909101601d0192915050565b600061ffff8083168185168183048111821515161561468d5761468d6141dd565b02949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b600086516146ed818460208b01613dc7565b865190830190614701818360208b01613dc7565b8651910190614714818360208a01613dc7565b8551910190614727818360208901613dc7565b8451910190614440818360208801613dc7565b60008751602061474d8285838d01613dc7565b8851918401916147608184848d01613dc7565b88519201916147728184848c01613dc7565b87519201916147848184848b01613dc7565b86519201916147968184848a01613dc7565b85519201916147a88184848901613dc7565b919091019998505050505050505050565b600083516147cb818460208801613dc7565b8351908301906147df818360208801613dc7565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008851602061484d8285838e01613dc7565b8951918401916148608184848e01613dc7565b89519201916148728184848d01613dc7565b88519201916148848184848c01613dc7565b87519201916148968184848b01613dc7565b86519201916148a88184848a01613dc7565b85519201916148ba8184848901613dc7565b919091019a9950505050505050505050565b6000895160206148df8285838f01613dc7565b8a51918401916148f28184848f01613dc7565b8a519201916149048184848e01613dc7565b89519201916149168184848d01613dc7565b88519201916149288184848c01613dc7565b875192019161493a8184848b01613dc7565b865192019161494c8184848a01613dc7565b855192019161495e8184848901613dc7565b919091019b9a5050505050505050505050565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604082015260600190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906149da90830184613df3565b9695505050505050565b6000602082840312156149f657600080fd5b8151613dc081613d8d56fe2031392e3639362d332e3437332e33343720312e39372d31392e36393620332e3437333c7265637420793d223236322220783d22343430222077696474683d2232303022206865696768743d22343022207374726f6b652d77696474683d223822202066696c6c3d2223227d2c7b2274726169745f74797065223a202242726163656c6574222c2276616c7565223a20223c636972636c652063793d22353230222063783d223331302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353130222063783d223335302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353139222063783d223333312220723d223132222066696c6c3d222320343635203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22343235222066696c6c3d2223303030303030222f3e3c72656374207472616e73666f726d3d22726f746174652866696c6c3d2223394638374642222f3e3c7265637420793d223635302220783d22333130222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223539302220783d22333530222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223634302220783d22333830222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223631302220783d22323630222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c706f6c79676f6e20706f696e74733d223534302c353535203531302c373130203537302c3731302220207374726f6b652d77696474683d2238222066696c6c3d2223222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223537302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e2220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c636972636c652063793d22353730222063783d223534302220723d22313422207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022576869736b657273222c2276616c7565223a20223c656c6c697073652072793d223232222072783d223730222063793d22323830222063783d2235343022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022546965222c2276616c7565223a2022222f3e3c636972636c652063793d22353730222063783d223534302220723d22313522207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a20225075727365222c2276616c7565223a20223c7265637420793d223335302220783d22373530222077696474683d22323022206865696768743d2231363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022476c6173736573222c2276616c7565223a2022222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223535222066696c6c3d22234142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2037382e3738352d31332e3839322e33343720312e39372d37382e3738352031332e3839325b7b2274726169745f74797065223a20224261636b67726f756e64222c2276616c7565223a20222220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c7265637420783d223532372220793d22353537222077696474683d22323622206865696768743d22323622207374726f6b652d77696474683d2238222066696c6c3d223c7265637420793d223535302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223631302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223634302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223535222066696c6c3d2223222f3e3c7265637420793d223335302220783d22373438222077696474683d22323422206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223464645413030222f3e3c636972636c652063793d22333030222063783d223731302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323630222063783d223830302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323330222063783d223733302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333030222063783d223736302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333430222063783d223831302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223433302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e3c7265637420783d223536302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d2223ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef3c7265637420793d223230352220783d22343735222077696474683d2231333022206865696768743d22363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a202257697a617264222c2276616c7565223a2022227d2c7b2274726169745f74797065223a2022486174222c2276616c7565223a20223c7265637420793d223134302220783d22343835222077696474683d2231313022206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d222320363135203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22353735222066696c6c3d2223303030303030222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22233c7265637420793d223536302220783d22323430222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223536302220783d22323835222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223536302220783d22333330222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223536302220783d22333735222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d2231323022207374726f6b652d77696474683d22382220222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22232220643d224d3439322034313768313430763230483439327a222f3e3c7265637420783d223432302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d222366696c6c3d2223663035646534222f3e3c636972636c652063793d22363030222063783d223334302220723d223135222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223338302220723d223230222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223238302220723d223136222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363030222063783d223430302220723d223133222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e203131382e3137372d32302e3833382e33343720312e39372d3131382e3137372032302e3833383c636972636c652063793d22353830222063783d223333302220723d22363022207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22353830222063783d223333302220723d223430222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e66696c6c3d2223663733313439222f3e3c7265637420793d223630302220783d22323630222077696474683d2231343022206865696768743d22383022207374726f6b652d77696474683d2238222066696c6c3d2223663538383232222f3e3c7265637420793d223632302220783d22323830222077696474683d2231303022206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223663563343364222f3e3c636972636c652063793d22323338222063783d2235343022207374726f6b652d77696474683d2231302220723d223632222066696c6c3d22233c7265637420793d223533302220783d22323830222077696474683d2231303022206865696768743d2231323022207374726f6b652d77696474683d2238222f3e3c7265637420793d223533302220783d22323930222077696474683d22383022206865696768743d2231303022207374726f6b652d77696474683d2238222066696c6c3d2223666666222f3e227d2c7b2274726169745f74797065223a202245796562726f7773222c2276616c7565223a2022a26469706673582212206ae60e93d321ab99945f48f8efc0ba65e91df52b0c10ba30a4f52402c0f40a4c64736f6c634300080d003322207374726f6b653d22233030302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c656c6c69707365207374726f6b652d77696474683d223130222072793d22323636222072783d22323030222063793d22353430222063783d22353430222066696c6c3d2223666666222f3e3c7376672077696474683d223130383022206865696768743d223130383022207374796c653d226261636b67726f756e642d636f6c6f723a233c656c6c69707365207472616e73666f726d3d22726f74617465283235203636302032353029222072793d22313037222072783d223435222063793d22323530222063783d2236363022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3235203432302032353029222072793d22313037222072783d223435222063793d22323530222063783d2234323022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3235203433352032383329222072793d223638222072783d223236222063793d22323833222063783d2234333522207374726f6b652d77696474683d223130222066696c6c3d2223464641464343222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465283235203634352032383329222072793d223638222072783d223236222063793d22323833222063783d2236343522207374726f6b652d77696474683d223130222066696c6c3d2223464641464343222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d2231302220723d223330222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d2231302220723d223330222f3e3c636972636c652063793d22343138222063783d223436352220723d223132222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22343430222063783d223438342220723d2236222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22343138222063783d223631352220723d223132222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22343430222063783d223630302220723d2238222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22353230222063783d2235343022207374726f6b652d77696474683d2234222066696c6c3d22234646414643432220723d223134222f3e3c656c6c697073652072793d22313230222072783d22313030222063793d22363835222063783d2235343022207374726f6b652d77696474683d2234222066696c6c3d2223464645324646222f3e3c656c6c697073652072793d22313036222072783d223830222063793d22363937222063783d22353430222066696c6c3d222346464146434322207374726f6b653d226e6f6e65222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3137203631302038303429222072793d223433222072783d223330222063793d22383034222063783d2236313022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465283137203437302038303429222072793d223433222072783d223330222063793d22383034222063783d2234373022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465283330203735302035313829222072793d223438222072783d223331222063793d22353138222063783d2237353022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e3c656c6c69707365207472616e73666f726d3d22726f74617465282d3330203333302035313829222072793d223438222072783d223331222063793d22353138222063783d2233333022207374726f6b652d77696474683d223130222066696c6c3d2223666666222f3e

Deployed Bytecode

0x6080604052600436106101ae5760003560e01c806301ffc9a7146101ba57806306fdde03146101ef578063081812fc1461021157806308af4d8814610249578063095ea7b31461026b57806310fa18781461028b57806318160ddd1461029e5780631f0234d8146102c157806323b872dd146102e057806324d38d9f146103005780632a55205a1461031657806330176e131461035557806334918dfd146103755780633863b1f51461038a5780633ccfd60b146103aa57806342842e0e146103bf578063438b6300146103df5780636352211e1461040c57806370a082311461042c578063715018a61461044c5780637ff9b596146104615780638da5cb5b146104775780638dc251e31461048c57806395d89b41146104ac578063a0712d68146104c1578063a22cb465146104d4578063a2d6c6da146104f4578063b7c58d7a14610514578063b88d4fde14610534578063c87b56dd14610554578063e985e9c514610574578063eb8d244414610594578063f0325549146105ae578063f2fde38b146105c3578063f5964e08146105e3578063f759867a14610603578063f7e079671461061657600080fd5b366101b557005b600080fd5b3480156101c657600080fd5b506101da6101d5366004613da3565b610636565b60405190151581526020015b60405180910390f35b3480156101fb57600080fd5b50610204610661565b6040516101e69190613e1f565b34801561021d57600080fd5b5061023161022c366004613e32565b6106f3565b6040516001600160a01b0390911681526020016101e6565b34801561025557600080fd5b50610269610264366004613e67565b61071a565b005b34801561027757600080fd5b50610269610286366004613e82565b610746565b610269610299366004613e32565b610860565b3480156102aa57600080fd5b506102b3610a0a565b6040519081526020016101e6565b3480156102cd57600080fd5b50600f546101da90610100900460ff1681565b3480156102ec57600080fd5b506102696102fb366004613eac565b610a21565b34801561030c57600080fd5b506102b3600e5481565b34801561032257600080fd5b50610336610331366004613ee8565b610a52565b604080516001600160a01b0390931683526020830191909152016101e6565b34801561036157600080fd5b50610269610370366004613f95565b610b07565b34801561038157600080fd5b50610269610b22565b34801561039657600080fd5b506102696103a5366004613fdd565b610b44565b3480156103b657600080fd5b50610269610b90565b3480156103cb57600080fd5b506102696103da366004613eac565b610be6565b3480156103eb57600080fd5b506103ff6103fa366004613e67565b610c01565b6040516101e69190614051565b34801561041857600080fd5b50610231610427366004613e32565b610ccc565b34801561043857600080fd5b506102b3610447366004613e67565b610d00565b34801561045857600080fd5b50610269610d86565b34801561046d57600080fd5b506102b360105481565b34801561048357600080fd5b50610231610d9a565b34801561049857600080fd5b506102696104a7366004613e67565b610da9565b3480156104b857600080fd5b50610204610ddb565b6102696104cf366004613e32565b610dea565b3480156104e057600080fd5b506102696104ef366004614095565b610ea0565b34801561050057600080fd5b5061020461050f366004613e32565b610eab565b34801561052057600080fd5b5061026961052f366004613e67565b61100b565b34801561054057600080fd5b5061026961054f3660046140d1565b611038565b34801561056057600080fd5b5061020461056f366004613e32565b61106a565b34801561058057600080fd5b506101da61058f36600461414c565b611170565b3480156105a057600080fd5b50600f546101da9060ff1681565b3480156105ba57600080fd5b5061026961119e565b3480156105cf57600080fd5b506102696105de366004613e67565b6111c3565b3480156105ef57600080fd5b506101da6105fe366004613e67565b611239565b610269610611366004613e32565b611257565b34801561062257600080fd5b5061026961063136600461417f565b61136f565b60006001600160e01b0319821663152a902d60e11b148061065b575061065b8261143b565b92915050565b606060018054610670906141a3565b80601f016020809104026020016040519081016040528092919081815260200182805461069c906141a3565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe82611460565b506000908152600560205260409020546001600160a01b031690565b610722611485565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600061075182610ccc565b9050806001600160a01b0316836001600160a01b0316036107c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107df57506107df8133611170565b6108515760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107ba565b61085b83836114e4565b505050565b3332146108a65760405162461bcd60e51b8152602060048201526014602482015273139bc810dbdb9d1c9858dd1cc8185b1b1bddd95960621b60448201526064016107ba565b600081116108e35760405162461bcd60e51b815260206004820152600a6024820152690234e46545320213d20360b41b60448201526064016107ba565b60006108ee60075490565b90506107d06108fd83836141f3565b11156109365760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016107ba565b8115610a0657604080514260208201524491810191909152606080820183905233901b6001600160601b031916608082015260009061b871906094016040516020818303038152906040528051906020012060001c6109959190614221565b9050600081600e546109a791906141f3565b90506109b281611552565b156109fd576109cb336109c68560016141f3565b6115a0565b6000199093019260019283019281906011906000906109eb9087906141f3565b81526020810191909152604001600020555b600e5550610936565b5050565b6000600854600754610a1c9190614235565b905090565b610a2b33826115b7565b610a475760405162461bcd60e51b81526004016107ba9061424c565b61085b838383611616565b600080610a5e84611768565b610acd5760405162461bcd60e51b815260206004820152603a60248201527f45524332393831526f79616c74795374616e646172643a20526f79616c74792060448201527934b73337903337b9103737b732bc34b9ba32b73a103a37b5b2b760311b60648201526084016107ba565b600c546001600160a01b03620100008204169061271090610af29061ffff1686614299565b610afc91906142b8565b915091509250929050565b610b0f611485565b8051610a06906009906020840190613ccc565b610b2a611485565b600f805461ff001960ff8216151661ffff19909116179055565b610b4c611485565b8060005b81811015610b8a57610b82848483818110610b6d57610b6d6142cc565b90506020020160208101906102649190613e67565b600101610b50565b50505050565b610b98611485565b4780610bd25760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b60448201526064016107ba565b610be3610bdd610d9a565b82611785565b50565b61085b83838360405180602001604052806000815250611038565b60606000610c0e83610d00565b90506000816001600160401b03811115610c2a57610c2a613f0a565b604051908082528060200260200182016040528015610c53578160200160208202803683370190505b5060075490915060009081905b84821015610cc15780831015610cc157866001600160a01b0316610c8384611823565b6001600160a01b031603610cb65782848381518110610ca457610ca46142cc565b60209081029190910101526001909101905b600190920191610c60565b509195945050505050565b600080610cd883611823565b90506001600160a01b03811661065b5760405162461bcd60e51b81526004016107ba906142e2565b60006001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107ba565b506001600160a01b031660009081526004602052604090205490565b610d8e611485565b610d98600061183e565b565b6000546001600160a01b031690565b610db1611485565b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b606060028054610670906141a3565b600f5460ff16610e2c5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107ba565b601f8110610e6a5760405162461bcd60e51b815260206004820152600b60248201526a4d6178203330204e46547360a81b60448201526064016107ba565b3481601054610e799190614299565b1115610e975760405162461bcd60e51b81526004016107ba90614314565b610be381610860565b610a0633838361188e565b6060610eb682611768565b610ed25760405162461bcd60e51b81526004016107ba9061433d565b600082815260116020526040812054906012610ef7610ef2600685614221565b611958565b60136014610f0c610f0787611a47565b611a68565b604051602001610f209594939291906143fc565b604051602081830303815290604052905080610f43610f3e84611f8a565b611fab565b610f5860018516601386901c600216176122e4565b604051602001610f6a9392919061444c565b60408051808303601f190181529190529050806015610f90610f8b856124e8565b612509565b610fa1610f9c86612683565b6126a2565b610fb2610fad876129c0565b6129e2565b610fc3610fbe88612afc565b612b1d565b610fda600189811c1660148a901c60021617612cc6565b604051610ff3979695949392919060169060200161448f565b60408051601f19818403018152919052949350505050565b611013611485565b610be3816001600160a01b03166000908152600d60205260409020805460ff19169055565b61104233836115b7565b61105e5760405162461bcd60e51b81526004016107ba9061424c565b610b8a8484848461351f565b606061107582611768565b6110915760405162461bcd60e51b81526004016107ba9061433d565b600061109c83610eab565b905060006110a984613552565b905060006111446110b8610661565b6110c1876137c7565b6110ca86613859565b855115611100576040518060400160405280601181526020017001116101130ba3a3934b13aba32b9911d1607d1b81525061111b565b604051806040016040528060018152602001601160f91b8152505b86604051602001611130959493929190614524565b604051602081830303815290604052613859565b9050806040516020016111579190614627565b6040516020818303038152906040529350505050919050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6111a6611485565b600f805461ff001981166101009182900460ff1615909102179055565b6111cb611485565b6001600160a01b0381166112305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ba565b610be38161183e565b6001600160a01b03166000908152600d602052604090205460ff1690565b61126033611239565b6112ac5760405162461bcd60e51b815260206004820152601f60248201527f41646472657373206973206e6f742077697468696e20616c6c6f774c6973740060448201526064016107ba565b600f54610100900460ff166112f65760405162461bcd60e51b815260206004820152601060248201526f50726553616c6520696e61637469766560801b60448201526064016107ba565b600b81106113345760405162461bcd60e51b815260206004820152600b60248201526a4d6178203230204e46547360a81b60448201526064016107ba565b34816010546113439190614299565b11156113615760405162461bcd60e51b81526004016107ba90614314565b610be3610299826002614299565b611377611485565b61ffff81161580159061138e5750605a8161ffff16105b6113e65760405162461bcd60e51b8152602060048201526024808201527f726f79616c746965732073686f756c64206265206265747765656e203020616e6044820152630642039360e41b60648201526084016107ba565b6113f181606461466c565b600c805461ffff191661ffff92831617905560405190821681527f4d6cb9294cbdb904203aa4a781e367c3d90e784c5d71bda09274843ee48436e59060200160405180910390a150565b60006001600160e01b0319821663152a902d60e11b148061065b575061065b826139aa565b61146981611768565b610be35760405162461bcd60e51b81526004016107ba906142e2565b3361148e610d9a565b6001600160a01b031614610d985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ba565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061151982610ccc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000601861155f83611a47565b11806115735750601c61157183612683565b115b8061158657506005611584836129c0565b115b806115995750601e61159783611f8a565b115b1592915050565b6115aa82826139fa565b5050600780546001019055565b6000806115c383610ccc565b9050806001600160a01b0316846001600160a01b031614806115ea57506115ea8185611170565b8061160e5750836001600160a01b0316611603846106f3565b6001600160a01b0316145b949350505050565b826001600160a01b031661162982610ccc565b6001600160a01b03161461164f5760405162461bcd60e51b81526004016107ba90614696565b6001600160a01b0382166116b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ba565b826001600160a01b03166116c482610ccc565b6001600160a01b0316146116ea5760405162461bcd60e51b81526004016107ba90614696565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184936000805160206154af83398151915291a4505050565b60008061177483611823565b6001600160a01b0316141592915050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146117d2576040519150601f19603f3d011682016040523d82523d6000602084013e6117d7565b606091505b505090508061085b5760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b60448201526064016107ba565b6000908152600360205260409020546001600160a01b031690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036118eb5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107ba565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040805161010081018252600660c082018181526521a2a19ca22360d11b60e08401528252825180840184528181526546444631434160d01b60208281019190915280840191909152835180850185528281526522a221a1a11b60d11b8183015283850152835180850185528281526542324336444560d01b81830152606084810191909152845180860186528381526545314531453160d01b81840152608085015284518086019095528285526508670888684760d31b9185019190915260a08301939093528190611a2b9085614221565b60068110611a3b57611a3b6142cc565b60200201519392505050565b6010601682901c16600d82901c600e1617600160069290921c919091161790565b6040805161014081018252600661010082018181526565643439343960d01b61012084015282528251808401845281815265333333331a9b60d11b60208281019190915280840191909152835180850185528281526506666376630360d41b8183015283850152835180850185528281526503030626630360d41b818301526060848101919091528451808601865283815265189c9818313360d11b818401526080808601919091528551808701875284815265329c9b18333360d11b8185015260a0860152855180870187528481526536386637636560d01b8185015260c086015285518087018752938452651a9b30b0b33360d11b8484015260e08086019490945285518087018752601e81527f3c70617468207374726f6b652d77696474683d2234222066696c6c3d222300009381019390935285519384019095526055838201818152919592936000939092839290916155e49084013981526020016040518060600160405280603c81526020016157b5603c913981526020016040518060400160405280600381526020016211179f60e91b81525081525090506000604051806060016040528060405180608001604052806055815260200161522a6055913981526020016040518060a00160405280607b8152602001614f7b607b91398152602001604051806080016040528060428152602001614d216042913990526040805160e0810190915260526060820181815292935060009282916157f1608084013981526020016040518060c001604052806095815260200161541a6095913981526020016040518060800160405280605f8152602001614d63605f91398152509050606087600003611cf55750506040805160208101909152600081529695505050505050565b611d00600389614221565b600003611df85784866008611d1660038c6142b8565b611d209190614221565b60088110611d3057611d306142cc565b602090810291909101518651604051611d4a94930161444c565b60408051601f19818403018152919052905080866008611d6b60038c6142b8565b611d759190614221565b60088110611d8557611d856142cc565b60200201518560016020020151886008611da060038e6142b8565b611daa9190614221565b60088110611dba57611dba6142cc565b60200201518760025b6020020151604051602001611ddc9594939291906146db565b6040516020818303038152906040529650505050505050919050565b611e03600389614221565b600103611eca5784866008611e1960038c6142b8565b611e239190614221565b60088110611e3357611e336142cc565b602090810291909101518551604051611e4d94930161444c565b60408051601f19818403018152919052905080866008611e6e60038c6142b8565b611e789190614221565b60088110611e8857611e886142cc565b60200201518460016020020151886008611ea360038e6142b8565b611ead9190614221565b60088110611ebd57611ebd6142cc565b6020020151866002611dc3565b84866008611ed960038c6142b8565b611ee39190614221565b60088110611ef357611ef36142cc565b602090810291909101518451604051611f0d94930161444c565b60408051601f19818403018152919052905080866008611f2e60038c6142b8565b611f389190614221565b60088110611f4857611f486142cc565b60200201518360016020020151886008611f6360038e6142b8565b611f6d9190614221565b60088110611f7d57611f7d6142cc565b6020020151856002611dc3565b6010601582901c16600e600a83901c1617600160059290921c919091161790565b604080518082018252600381526211179f60e91b6020820152815160e08101909252604660608381018281529093600092909182916154cf6080840139815260200160405180608001604052806047815260200161555c6047913981526020016040518060600160405280603a8152602001615a9c603a9139815250905060006040518060400160405280604051806080016040528060478152602001614a25604791398152602001604051806080016040528060438152602001614e4a60439139815250905060006040518060a001604052806040518060400160405280600681526020016503566626630360d41b81525081526020016040518060400160405280600681526020016503030303030360d41b815250815260200160405180604001604052806006815260200165329c9b18333360d11b8152508152602001604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016503566626630360d41b815250815250905060006040518060a00160405280604051806040016040528060068152602001651a9b30b0b33360d11b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016506666303030360d41b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081526020016040518060400160405280600681526020016566666666393360d01b81525081525090508660000361221657505060408051602081019091526000815295945050505050565b83600361222460058a6142b8565b61222e9190614221565b6003811061223e5761223e6142cc565b60200201518261224f60058a614221565b6005811061225f5761225f6142cc565b602002015186856002612273600f8d6142b8565b61227d9190614221565b6002811061228d5761228d6142cc565b60200201518461229e60058d614221565b600581106122ae576122ae6142cc565b6020020151896040516020016122c99695949392919061473a565b60405160208183030381529060405295505050505050919050565b60606000604051806060016040528060405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060038152602001622d323560e81b8152508152602001604051806040016040528060018152602001600360fc1b815250815250905060006040518060600160405280604051806040016040528060038152602001622d323560e81b815250815260200160405180604001604052806002815260200161323560f01b8152508152602001604051806040016040528060018152602001600360fc1b81525081525090506000604051806060016040528060405180604001604052806018815260200177078e4cac6e840e8e4c2dce6ccdee4da7a44e4dee8c2e8ca560431b8152508152602001604051806080016040528060598152602001614b3d6059913981526020016040518060800160405280604181526020016155a36041913990529050612449600486614221565b6000036124685750506040805160208101909152600081529392505050565b8051836001612478600489614221565b6124829190614235565b60038110612492576124926142cc565b602002015182600160200201518460016124ad60048b614221565b6124b79190614235565b600381106124c7576124c76142cc565b602002015184600260200201516040516020016111579594939291906146db565b6004601582901c166002600883901c1617600160039290921c919091161790565b6040805160e081018252600660a082018181526546464630393360d01b60c084015282528251808401845281815265181ab330b31b60d11b6020828101919091528084019190915283518085018552828152650c0dd8588c9960d21b8183015283850152835180850185528281526566373035303560d01b818301526060848101919091528451808601865292835265331b9b1c329960d11b91830191909152608083019190915282516101208101845260aa93810184815291936000928291614a938388013981526020016040518060400160405280601b81526020017a10101010101010111039ba3937b5b296bbb4b23a341e911a11179f60291b81525081525090508360000361262d57505060408051602081019091526000815292915050565b80518261263b600187614235565b6005811061264b5761264b6142cc565b60200201518260015b602002015160405160200161266b9392919061444c565b60405160208183030381529060405292505050919050565b600781901c600116601082811c600e1660179390931c16919091171790565b604080518082018252601e81527f3c70617468207374726f6b652d77696474683d2238222066696c6c3d222300006020820152815160e0810183526061928101838152606093600092918291614dc28388013981526020016040518060400160405280600381526020016211179f60e91b8152508152509050600060405180604001604052806040518060a00160405280606c8152602001615082606c913981526020016040518060400160405280600381526020016211179f60e91b815250815250905060006040518060600160405280604051806080016040528060438152602001614cde6043913981526020016040518060600160405280603c8152602001614eaf603c91398152604080518082018252600381526211179f60e91b60208281019190915292830152805160a081018252600660608201818152651a9b30b0b33360d11b6080840152825282518084018452818152651ab31818313360d11b8186015282850152825180840184529081526506666376630360d41b9381019390935290810191909152909150600087900361285457505060408051602081019091526000815295945050505050565b61285f600388614221565b6000036128df5784816003612874818b6142b8565b61287e9190614221565b6003811061288e5761288e6142cc565b602002015185518360036128a360098d6142b8565b6128ad9190614221565b600381106128bd576128bd6142cc565b60200201518760015b60200201516040516020016122c99594939291906146db565b6128ea600388614221565b60010361295557848160036128ff818b6142b8565b6129099190614221565b60038110612919576129196142cc565b6020020151845183600361292e60098d6142b8565b6129389190614221565b60038110612948576129486142cc565b60200201518660016128c6565b8151816003612964818b6142b8565b61296e9190614221565b6003811061297e5761297e6142cc565b6020020151836001602002015183600361299960098d6142b8565b6129a39190614221565b600381106129b3576129b36142cc565b60200201518560026128c6565b600281811c600116600783901c9190911660149290921c600416919091171790565b606060006040518060400160405280604051806080016040528060468152602001614f0f604691398152602001604051806101c0016040528061019b815260200161527f61019b913990526040805160c081018252600160808201908152603360f91b60a083015281528151808301835260068082526521a2a19ca22360d11b60208381019190915280840192909252835180850185528181526546444631434160d01b8184015283850152835180850190945283526522a221a1a11b60d11b9083015260608101919091529091506000849003612ad157505060408051602081019091526000815292915050565b815181612adf600187614235565b60048110612aef57612aef6142cc565b6020020151836001612654565b601681901c60049081166002600984901c161760019290911c919091161790565b6060600060405180604001604052806040518060a00160405280606c8152602001615982606c913981526020016040518060c00160405280608d8152602001615ad6608d91398152509050600060405180606001604052806040815260200161577560409139905060006040518060a001604052806040518061014001604052806101188152602001615843610118913981526020016040518060e0016040528060ae81526020016159ee60ae913981526020016040518061018001604052806101488152602001614b966101489139815260200160405180610160016040528061013c81526020016150ee61013c9139815260200160405180610160016040528061013c815260200161563961013c9139815250905084600003612c545750506040805160208101909152600081529392505050565b84600503612c7b5760208301518160045b60200201516040516020016111579291906147b9565b84600403612c90576020830151816003612c65565b82518282612c9f600189614235565b60058110612caf57612caf6142cc565b60200201516040516020016111579392919061444c565b60606000604051806101a001604052806040518060400160405280601b81526020017a3c70617468207374726f6b652d77696474683d22342220643d224d60281b8152508152602001604051806040016040528060058152602001640406a6460d60db1b8152508152602001604051806040016040528060028152602001613b1960f11b8152508152602001604051806040016040528060028152602001617a6d60f01b8152508152602001604051806040016040528060148152602001734c353132203531306c2d2e33343720312e39372d60601b81525081526020016040518060400160405280600381526020016207a6d360ec1b8152508152602001604051806040016040528060138152602001724c353132203533306c2e33343720312e39372d60681b81525081526020016040518060400160405280600a8152602001690f49a6a6e60406a6460d60b31b8152508152602001604051806040016040528060028152602001613b1960f11b81525081526020016040518060400160405280600781526020016607a6d2d322d31360cc1b81525081526020016040518060400160405280600781526020016603d3698101918160cd1b815250815260200160405180604001604052806005815260200164312e39372d60d81b8152508152602001604051806040016040528060048152602001633d11179f60e11b815250815250905060006040518061018001604052806040518060400160405280600381526020016203433360ec1b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b81525081526020016040518060400160405280600d81526020016c199719189a969919971c1c991960991b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a969899971c1c9960991b815250815260200160405180604001604052806007815260200166080d0dcb8dce0d60ca1b81525081526020016040518060400160405280600d81526020016c37382e3738342031332e38393160981b815250815260200160405180604001604052806002815260200161038360f41b8152508152602001604051806040016040528060048152602001630682d38360e41b8152508152602001604051806060016040528060258152602001615036602591398152602001604051806040016040528060148152602001730101b9c171b9c1a901899971c1c991697199a1c160651b81525081526020016040518060400160405280600d81526020016c1b9c171b9c1a169899971c1c9960991b815250815250905060006040518061018001604052806040518060400160405280600381526020016203339360ec1b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483339360e41b81525081526020016040518060400160405280600d81526020016c19971c1919969998171c199c1960991b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815260200160405180604001604052806007815260200166101b18971b1b9b60c91b81525081526020016040518060400160405280600e81526020016d3131382e3137372032302e38333760901b81525081526020016040518060400160405280600381526020016203132360ec1b8152508152602001604051806040016040528060048152602001630483537360e41b815250815260200160405180606001604052806027815260200161595b6027913981526020016040518060400160405280601581526020017401018989c17189b9b901918171c199c1697199a1b9605d1b81525081526020016040518060400160405280600e81526020016d06262705c626e6e5a64605c7066760931b815250815250905060006040518061018001604052806040518060400160405280600381526020016203439360ec1b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b81525081526020016040518060400160405280600c81526020016b322e3330342d31332e34373360a01b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b81525081526020016040518060400160405280600781526020016610191b171c9a1b60c91b81525081526020016040518060400160405280600c81526020016b31392e36393620332e34373360a01b815250815260200160405180604001604052806002815260200161032360f41b8152508152602001604051806040016040528060048152602001630682d32360e41b8152508152602001604051806060016040528060238152602001614a0260239139815260200160405180604001604052806013815260200172010189c971b1c9b1019971a1b999697199a1b9606d1b81525081526020016040518060400160405280600c81526020016b31392e3639362d332e34373360a01b8152508152509050613452613d50565b8660000361347457505060408051602081019091526000815295945050505050565b8660010361348357508261349e565b8660020361349257508161349e565b600287111561349e5750805b606060005b600c81101561350757818782600d81106134bf576134bf6142cc565b60200201518483600c81106134d6576134d66142cc565b60200201516040516020016134ed9392919061444c565b60408051601f1981840301815291905291506001016134a3565b50610180860151604051611ddc9183916020016147b9565b61352a848484611616565b61353684848484613af5565b610b8a5760405162461bcd60e51b81526004016107ba906147e8565b6060600060405180606001604052806027815260200161505b6027913990506000604051806060016040528060278152602001614a6c6027913990506000604051806060016040528060278152602001615b63602791399050600060405180606001604052806022815260200161553a6022913990506000604051806060016040528060268152602001614f556026913990506000604051806060016040528060228152602001614e8d60229139905060006040518060600160405280602581526020016155156025913990506000604051806060016040528060278152602001614e236027913990506000604051806060016040528060248152602001614eeb602491396040805180820182526003815262227d5d60e81b60208083019190915260008f815260119091529190912054919250906136908d611768565b6136ac5760405162461bcd60e51b81526004016107ba9061433d565b60008b6136c26136bd600685614221565b6137c7565b8c6136cf6136bd866124e8565b8d6136e560018816601389901c600216176137c7565b6040516020016136fa9695949392919061473a565b604051602081830303815290604052905080896137196136bd85611f8a565b8a6137266136bd87611a47565b8b6137336136bd89612683565b604051602001613749979695949392919061483a565b604051602081830303815290604052905080866137686136bd856129c0565b87613780600187811c16601488901c600216176137c7565b8861378d6136bd89612afc565b896040516020016137a59897969594939291906148cc565b6040516020818303038152906040529c50505050505050505050505050919050565b606060006137d483613bf6565b60010190506000816001600160401b038111156137f3576137f3613f0a565b6040519080825280601f01601f19166020018201604052801561381d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461382757509392505050565b6060815160000361387857505060408051602081019091526000815290565b6000604051806060016040528060408152602001614ff660409139905060006003845160026138a791906141f3565b6138b191906142b8565b6138bc906004614299565b6001600160401b038111156138d3576138d3613f0a565b6040519080825280601f01601f1916602001820160405280156138fd576020820181803683370190505b509050600182016020820185865187015b80821015613969576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184535060018301925061390e565b5050600386510660018114613985576002811461399857610cc1565b603d6001830353603d6002830353610cc1565b603d6001830353509195945050505050565b60006001600160e01b031982166380ac58cd60e01b14806139db57506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b031983161461065b565b6001600160a01b038216613a505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ba565b613a5981611768565b15613a765760405162461bcd60e51b81526004016107ba90614971565b613a7f81611768565b15613a9c5760405162461bcd60e51b81526004016107ba90614971565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291906000805160206154af833981519152908290a45050565b60006001600160a01b0384163b15613beb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613b399033908990889088906004016149a7565b6020604051808303816000875af1925050508015613b74575060408051601f3d908101601f19168201909252613b71918101906149e4565b60015b613bd1573d808015613ba2576040519150601f19603f3d011682016040523d82523d6000602084013e613ba7565b606091505b508051600003613bc95760405162461bcd60e51b81526004016107ba906147e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160e565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613c355772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310613c5f576904ee2d6d415b85acef8160201b830492506020015b662386f26fc100008310613c7d57662386f26fc10000830492506010015b6305f5e1008310613c95576305f5e100830492506008015b6127108310613ca957612710830492506004015b60648310613cbb576064830492506002015b600a831061065b5760010192915050565b828054613cd8906141a3565b90600052602060002090601f016020900481019282613cfa5760008555613d40565b82601f10613d1357805160ff1916838001178555613d40565b82800160010185558215613d40579182015b82811115613d40578251825591602001919060010190613d25565b50613d4c929150613d78565b5090565b604051806101800160405280600c905b6060815260200190600190039081613d605790505090565b5b80821115613d4c5760008155600101613d79565b6001600160e01b031981168114610be357600080fd5b600060208284031215613db557600080fd5b8135613dc081613d8d565b9392505050565b60005b83811015613de2578181015183820152602001613dca565b83811115610b8a5750506000910152565b60008151808452613e0b816020860160208601613dc7565b601f01601f19169290920160200192915050565b602081526000613dc06020830184613df3565b600060208284031215613e4457600080fd5b5035919050565b80356001600160a01b0381168114613e6257600080fd5b919050565b600060208284031215613e7957600080fd5b613dc082613e4b565b60008060408385031215613e9557600080fd5b613e9e83613e4b565b946020939093013593505050565b600080600060608486031215613ec157600080fd5b613eca84613e4b565b9250613ed860208501613e4b565b9150604084013590509250925092565b60008060408385031215613efb57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613f3a57613f3a613f0a565b604051601f8501601f19908116603f01168101908282118183101715613f6257613f62613f0a565b81604052809350858152868686011115613f7b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613fa757600080fd5b81356001600160401b03811115613fbd57600080fd5b8201601f81018413613fce57600080fd5b61160e84823560208401613f20565b60008060208385031215613ff057600080fd5b82356001600160401b038082111561400757600080fd5b818501915085601f83011261401b57600080fd5b81358181111561402a57600080fd5b8660208260051b850101111561403f57600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156140895783518352928401929184019160010161406d565b50909695505050505050565b600080604083850312156140a857600080fd5b6140b183613e4b565b9150602083013580151581146140c657600080fd5b809150509250929050565b600080600080608085870312156140e757600080fd5b6140f085613e4b565b93506140fe60208601613e4b565b92506040850135915060608501356001600160401b0381111561412057600080fd5b8501601f8101871361413157600080fd5b61414087823560208401613f20565b91505092959194509250565b6000806040838503121561415f57600080fd5b61416883613e4b565b915061417660208401613e4b565b90509250929050565b60006020828403121561419157600080fd5b813561ffff81168114613dc057600080fd5b600181811c908216806141b757607f821691505b6020821081036141d757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115614206576142066141dd565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826142305761423061420b565b500690565b600082821015614247576142476141dd565b500390565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008160001904831182151516156142b3576142b36141dd565b500290565b6000826142c7576142c761420b565b500490565b634e487b7160e01b600052603260045260246000fd5b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6020808252600f908201526e15985b1d59481a5b98dbdc9c9958dd608a1b604082015260600190565b6020808252600c908201526b4e6f6e2d4578697374696e6760a01b604082015260600190565b8054600090600181811c908083168061437d57607f831692505b6020808410820361439e57634e487b7160e01b600052602260045260246000fd5b8180156143b257600181146143c3576143f0565b60ff198616895284890196506143f0565b60008881526020902060005b868110156143e85781548b8201529085019083016143cf565b505084890196505b50505050505092915050565b60006144088288614363565b8651614418818360208b01613dc7565b61442d61442782840189614363565b87614363565b9150508351614440818360208801613dc7565b01979650505050505050565b6000845161445e818460208901613dc7565b845190830190614472818360208901613dc7565b8451910190614485818360208801613dc7565b0195945050505050565b6000895160206144a28285838f01613dc7565b6144ae8285018c614363565b915089516144bf8184848e01613dc7565b89519201916144d18184848d01613dc7565b88519201916144e38184848c01613dc7565b87519201916144f58184848b01613dc7565b86519201916145078184848a01613dc7565b61451381840187614363565b9d9c50505050505050505050505050565b693d913730b6b2911d101160b11b8152855160009061454a81600a850160208b01613dc7565b600160fd1b600a91840191820152865161456b81600b840160208b01613dc7565b72111610113232b9b1b934b83a34b7b7111d101160691b600b92909101918201527f6f6362222c2022696d616765223a2022646174613a696d6167652f7376672b78601e820152691b5b0ed8985cd94d8d0b60b21b603e82015285516145d8816048840160208a01613dc7565b85519101906145ee816048840160208901613dc7565b8451910190614604816048840160208801613dc7565b61461a604882840101607d60f81b815260010190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161465f81601d850160208701613dc7565b91909101601d0192915050565b600061ffff8083168185168183048111821515161561468d5761468d6141dd565b02949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b600086516146ed818460208b01613dc7565b865190830190614701818360208b01613dc7565b8651910190614714818360208a01613dc7565b8551910190614727818360208901613dc7565b8451910190614440818360208801613dc7565b60008751602061474d8285838d01613dc7565b8851918401916147608184848d01613dc7565b88519201916147728184848c01613dc7565b87519201916147848184848b01613dc7565b86519201916147968184848a01613dc7565b85519201916147a88184848901613dc7565b919091019998505050505050505050565b600083516147cb818460208801613dc7565b8351908301906147df818360208801613dc7565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008851602061484d8285838e01613dc7565b8951918401916148608184848e01613dc7565b89519201916148728184848d01613dc7565b88519201916148848184848c01613dc7565b87519201916148968184848b01613dc7565b86519201916148a88184848a01613dc7565b85519201916148ba8184848901613dc7565b919091019a9950505050505050505050565b6000895160206148df8285838f01613dc7565b8a51918401916148f28184848f01613dc7565b8a519201916149048184848e01613dc7565b89519201916149168184848d01613dc7565b88519201916149288184848c01613dc7565b875192019161493a8184848b01613dc7565b865192019161494c8184848a01613dc7565b855192019161495e8184848901613dc7565b919091019b9a5050505050505050505050565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604082015260600190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906149da90830184613df3565b9695505050505050565b6000602082840312156149f657600080fd5b8151613dc081613d8d56fe2031392e3639362d332e3437332e33343720312e39372d31392e36393620332e3437333c7265637420793d223236322220783d22343430222077696474683d2232303022206865696768743d22343022207374726f6b652d77696474683d223822202066696c6c3d2223227d2c7b2274726169745f74797065223a202242726163656c6574222c2276616c7565223a20223c636972636c652063793d22353230222063783d223331302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353130222063783d223335302220723d2238222066696c6c3d222346464630393322207374726f6b652d77696474683d2234222f3e3c636972636c652063793d22353139222063783d223333312220723d223132222066696c6c3d222320343635203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22343235222066696c6c3d2223303030303030222f3e3c72656374207472616e73666f726d3d22726f746174652866696c6c3d2223394638374642222f3e3c7265637420793d223635302220783d22333130222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223539302220783d22333530222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223634302220783d22333830222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c7265637420793d223631302220783d22323630222077696474683d22333022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223653036636635222f3e3c706f6c79676f6e20706f696e74733d223534302c353535203531302c373130203537302c3731302220207374726f6b652d77696474683d2238222066696c6c3d2223222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223537302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e2220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c636972636c652063793d22353730222063783d223534302220723d22313422207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022576869736b657273222c2276616c7565223a20223c656c6c697073652072793d223232222072783d223730222063793d22323830222063783d2235343022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022546965222c2276616c7565223a2022222f3e3c636972636c652063793d22353730222063783d223534302220723d22313522207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a20225075727365222c2276616c7565223a20223c7265637420793d223335302220783d22373530222077696474683d22323022206865696768743d2231363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a2022476c6173736573222c2276616c7565223a2022222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d2223666666222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223535222066696c6c3d22234142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2037382e3738352d31332e3839322e33343720312e39372d37382e3738352031332e3839325b7b2274726169745f74797065223a20224261636b67726f756e64222c2276616c7565223a20222220643d226d353430203537302038302d32307634307a6d3020302d38302d32307634307a222f3e3c7265637420783d223532372220793d22353537222077696474683d22323622206865696768743d22323622207374726f6b652d77696474683d2238222066696c6c3d223c7265637420793d223535302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223631302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223634302220783d22323430222077696474683d2231383022206865696768743d22333022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223535222066696c6c3d2223222f3e3c7265637420793d223335302220783d22373438222077696474683d22323422206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223464645413030222f3e3c636972636c652063793d22333030222063783d223731302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323630222063783d223830302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22323330222063783d223733302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333030222063783d223736302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22333430222063783d223831302220723d223132222066696c6c3d222346464541303022207374726f6b652d77696474683d2238222f3e22207374726f6b652d77696474683d2234222f3e3c7265637420783d223433302220793d22333837222077696474683d22383022206865696768743d223830222066696c6c3d222366666622207374726f6b652d77696474683d2234222f3e3c7265637420783d223536302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d2223ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef3c7265637420793d223230352220783d22343735222077696474683d2231333022206865696768743d22363022207374726f6b652d77696474683d2238222066696c6c3d2223227d2c7b2274726169745f74797065223a202257697a617264222c2276616c7565223a2022227d2c7b2274726169745f74797065223a2022486174222c2276616c7565223a20223c7265637420793d223134302220783d22343835222077696474683d2231313022206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d222320363135203335302922206865696768743d2238222077696474683d2238302220793d223337302220783d22353735222066696c6c3d2223303030303030222f3e2220643d224d3439322034313768313430763230483439327a222f3e3c636972636c652063793d22343237222063783d2234373022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22233c7265637420793d223536302220783d22323430222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223396566613834222f3e3c7265637420793d223536302220783d22323835222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223376163396661222f3e3c7265637420793d223536302220783d22333330222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223623637616661222f3e3c7265637420793d223536302220783d22333735222077696474683d22343522206865696768743d2231323022207374726f6b652d77696474683d2238222066696c6c3d2223656137326637222f3e3c7265637420793d223538302220783d22323430222077696474683d2231383022206865696768743d2231323022207374726f6b652d77696474683d22382220222f3e3c636972636c652063793d22343237222063783d2236313022207374726f6b652d77696474683d22342220723d223435222066696c6c3d22232220643d224d3439322034313768313430763230483439327a222f3e3c7265637420783d223432302220793d22333737222077696474683d2231303022206865696768743d22313030222066696c6c3d222366696c6c3d2223663035646534222f3e3c636972636c652063793d22363030222063783d223334302220723d223135222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223338302220723d223230222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363530222063783d223238302220723d223136222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e3c636972636c652063793d22363030222063783d223430302220723d223133222066696c6c3d222366306232363722207374726f6b652d77696474683d2238222f3e203131382e3137372d32302e3833382e33343720312e39372d3131382e3137372032302e3833383c636972636c652063793d22353830222063783d223333302220723d22363022207374726f6b653d226e6f6e65222f3e3c636972636c652063793d22353830222063783d223333302220723d223430222066696c6c3d222366666622207374726f6b653d226e6f6e65222f3e66696c6c3d2223663733313439222f3e3c7265637420793d223630302220783d22323630222077696474683d2231343022206865696768743d22383022207374726f6b652d77696474683d2238222066696c6c3d2223663538383232222f3e3c7265637420793d223632302220783d22323830222077696474683d2231303022206865696768743d22343022207374726f6b652d77696474683d2238222066696c6c3d2223663563343364222f3e3c636972636c652063793d22323338222063783d2235343022207374726f6b652d77696474683d2231302220723d223632222066696c6c3d22233c7265637420793d223533302220783d22323830222077696474683d2231303022206865696768743d2231323022207374726f6b652d77696474683d2238222f3e3c7265637420793d223533302220783d22323930222077696474683d22383022206865696768743d2231303022207374726f6b652d77696474683d2238222066696c6c3d2223666666222f3e227d2c7b2274726169745f74797065223a202245796562726f7773222c2276616c7565223a2022a26469706673582212206ae60e93d321ab99945f48f8efc0ba65e91df52b0c10ba30a4f52402c0f40a4c64736f6c634300080d0033

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.