ETH Price: $2,939.26 (-6.11%)
Gas: 8 Gwei

Token

CyberZillaz Special Edition Traits (CZ-SET)
 

Overview

Max Total Supply

42 CZ-SET

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 CZ-SET
0xed2a83cDd784aB16bBe6Edf3d2aF501B1f50a539
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:
czSpecialTraits

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 18 : czSpecialTraits.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity 0.8.15;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "./interfaces/iczSpecialEditionTraits.sol";

contract czSpecialTraits is iczSpecialEditionTraits, ERC721Enumerable, IERC2981, Ownable, Pausable, ReentrancyGuard {

    constructor() ERC721("CyberZillaz Special Edition Traits", "CZ-SET") {
        _pause();

        uint16 traitId = 1; //1
        traits[traitId] = Trait({ name: "Banana", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 2
        traits[traitId] = Trait({ name: "Mohawk", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 3
        traits[traitId] = Trait({ name: "Ninja", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 4
        traits[traitId] = Trait({ name: "Viking Hat", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 5
        traits[traitId] = Trait({ name: "Pipe", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 6
        traits[traitId] = Trait({ name: "Laurel Wreath", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 7
        traits[traitId] = Trait({ name: "ETH Chain", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 8
        traits[traitId] = Trait({ name: "Cigar", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 9
        traits[traitId] = Trait({ name: "Boss Hat", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 10
        traits[traitId] = Trait({ name: "Zillaz Chain", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 11
        traits[traitId] = Trait({ name: "Wings", traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
        traitId++; // 12
        traits[traitId] = Trait({ name: "Crown",traitId: traitId, price: 0.07 ether, maxMint: 20, minted: 0 });
    }

    /** EVENTS */
    event TokenMinted(address indexed owner, uint256 indexed tokenId);
    event TokenBurned(address indexed owner, uint256 indexed tokenId);

    /** PUBLIC VARS */
    // number of tokens have been minted so far
    uint16 public override totalMinted;
    // number of tokens have been burned so far
    uint16 public override totalBurned;
    // define if traits can be sold or not
    bool public traitsCanBeSold = false;
    address public royaltyAddress;
    // store all tokens and their traitId
    mapping(uint16 => Token) public tokens;
    // store all traits and their meta infos
    mapping(uint16 => Trait) public traits;

    /** PRIVATE VARS */
    mapping(address => bool) private _admins;
    // uri for revealing nfts traits
    string private _tokenRevealedBaseURI;
    // royalty permille (to support 1 decimal place)
    uint256 private _royaltyPermille = 75;

    /** MODIFIERS */
    modifier onlyAdmin() {
        require(_admins[_msgSender()], "SET: Only admins can call this");
        _;
    }

    /** ADMIN ONLY FUNCTIONS */
    function mint(uint16 traitId, address recipient) external override whenNotPaused nonReentrant onlyAdmin {
        Trait storage _trait = _getTraitStorage(traitId);
        require(_trait.minted + 1 <= _trait.maxMint, "SET: All tokens minted");
        
        // Increase mint counter
        totalMinted++;

        // Update mappings
        _trait.minted++;
        tokens[totalMinted] = Token({
            tokenId: totalMinted,
            traitId: traitId
        });

        // Mint the NFT
        _safeMint(recipient, totalMinted);

        emit TokenMinted(recipient, totalMinted);
    }

    function burn(uint16 tokenId) external override nonReentrant {
        if (!_admins[_msgSender()]) {
            require(ownerOf(tokenId) == _msgSender(), "SET: Cannot burn un-owned token");
        }

        totalBurned++;
        delete tokens[tokenId];

        emit TokenBurned(ownerOf(tokenId), tokenId);
        _burn(tokenId);
    }

    /** PUBLIC FUNCTIONS */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) {
        return (royaltyAddress, salePrice * _royaltyPermille/1000);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, IERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), 'SET: Token does not exist');
        
        Token memory _token = _getToken(uint16(tokenId));
        return string(abi.encodePacked(_tokenRevealedBaseURI, Strings.toString(_token.traitId)));
    }

    function getWalletOfOwner(address owner) external override view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }

        return tokenIds;
    }

    function getToken(uint16 tokenId) external override view returns (Token memory token) {
        return _getToken(tokenId);
    }
    function _getToken(uint16 tokenId) private view returns (Token memory token) {
        return tokens[tokenId];
    }

    function getTrait(uint16 traitId) external override view returns (Trait memory trait) {
        return _getTrait(traitId);
    }
    function _getTrait(uint16 traitId) private view returns (Trait memory trait) {
        return traits[traitId];
    }
    function _getTraitStorage(uint16 traitId) private view returns (Trait storage trait) {
        return traits[traitId];
    }

    /** OVERRIDE */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override(ERC721, IERC721) nonReentrant {
        require(traitsCanBeSold, "SET: Traits cannot be sold at this point");
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override(ERC721, IERC721) nonReentrant {
        require(traitsCanBeSold, "SET: Traits cannot be sold at this point");
        super.safeTransferFrom(from, to, tokenId, _data);
    }

    /** OWNER ONLY FUNCTIONS */
    function setTraitPrice(uint16 traitId, uint256 price) external onlyOwner {
        Trait memory myTrait = traits[traitId];
        myTrait.price = price;
        traits[traitId] = myTrait;
    }

    function setTraitsCanBeSold(bool sellable) external onlyOwner {
        traitsCanBeSold = sellable;
    }

    function setRevealedBaseURI(string calldata uri) external onlyOwner {
        _tokenRevealedBaseURI = uri;
    }

    function setPaused(bool _paused) external onlyOwner {
        require(royaltyAddress != address(0), "SET: Royalty address must be set");
        if (_paused) _pause();
        else _unpause();
    }

    function setRoyaltyPermille(uint256 number) external onlyOwner {
        _royaltyPermille = number;
    }

    function setRoyaltyAddress(address addr) external onlyOwner {
        royaltyAddress = addr;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function addAdmin(address addr) external onlyOwner {
        _admins[addr] = true;
    }

    function removeAdmin(address addr) external onlyOwner {
        delete _admins[addr];
    }

}

File 2 of 18 : iczSpecialEditionTraits.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity 0.8.15;

import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

interface iczSpecialEditionTraits is IERC721Enumerable {

    // traits meta data
    struct Trait {
        string name;
        uint16 traitId;
        uint256 price; // in eth
        uint16 maxMint; // max mint for this trait
        uint16 minted; // how often this trait has been minted already
    }

    struct Token {
        uint16 tokenId;
        uint16 traitId;
    }

    function totalMinted() external view returns (uint16);
    function totalBurned() external view returns (uint16);

    function mint(uint16 traitId, address recipient) external; // onlyAdmin
    function burn(uint16 tokenId) external;
    
    function getToken(uint16 tokenId) external view returns (Token memory token);
    function getTrait(uint16 traitId) external view returns (Trait memory trait);
    function getWalletOfOwner(address owner) external view returns (uint256[] memory);
}

File 3 of 18 : 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 4 of 18 : 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 5 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 18 : 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 7 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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
     * ====
     *
     * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 18 : 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 9 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 14 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 15 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 16 of 18 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./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 payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 17 of 18 : 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 18 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenMinted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAdmin","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":"uint16","name":"tokenId","type":"uint16"}],"name":"burn","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":"uint16","name":"tokenId","type":"uint16"}],"name":"getToken","outputs":[{"components":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"uint16","name":"traitId","type":"uint16"}],"internalType":"struct iczSpecialEditionTraits.Token","name":"token","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"traitId","type":"uint16"}],"name":"getTrait","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint16","name":"traitId","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"minted","type":"uint16"}],"internalType":"struct iczSpecialEditionTraits.Trait","name":"trait","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"traitId","type":"uint16"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setRoyaltyPermille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"traitId","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setTraitPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"sellable","type":"bool"}],"name":"setTraitsCanBeSold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"tokens","outputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"uint16","name":"traitId","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"traits","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint16","name":"traitId","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"minted","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"traitsCanBeSold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600c805460ff60201b19169055604b6011553480156200002357600080fd5b506040518060600160405280602281526020016200424c6022913960408051808201909152600681526510d68b54d15560d21b6020820152600062000069838262000c41565b50600162000078828262000c41565b505050620000956200008f62000a9460201b60201c565b62000a98565b600a805460ff60a01b191690556001600b55620000b162000aea565b6040805160e081018252600660a082019081526542616e616e6160d01b60c083015281526001602080830182905266f8b0a10e4700009383019390935260146060830152600060808301819052819052600e90925280517fa7c5ba7114a813b50159add3a36832908dc83db71d0b9a24c2ad0f83be95820790819062000138908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620001998162000d0d565b6040805160e081018252600660a08201908152654d6f6861776b60d01b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e905291909120815192945090925090819062000208908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620002698162000d0d565b6040805160e081018252600560a08201908152644e696e6a6160d81b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e9052919091208151929450909250908190620002d7908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620003388162000d0d565b6040805160e081018252600a60a0820190815269159a5ada5b99c812185d60b21b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e9052919091208151929450909250908190620003ab908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff1990941693909317620100009290911691909102179055806200040c8162000d0d565b6040805160e081018252600460a08201908152635069706560e01b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e905291909120815192945090925090819062000479908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620004da8162000d0d565b6040805160e081018252600d60a082019081526c098c2eae4cad840aee4cac2e8d609b1b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e905291909120815192945090925090819062000550908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620005b18162000d0d565b6040805160e081018252600960a082019081526822aa241021b430b4b760b91b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e905291909120815192945090925090819062000623908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620006848162000d0d565b6040805160e081018252600560a082019081526421b4b3b0b960d91b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e9052919091208151929450909250908190620006f2908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620007538162000d0d565b6040805160e081018252600860a0820190815267109bdcdcc812185d60c21b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e9052919091208151929450909250908190620007c4908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620008258162000d0d565b6040805160e081018252600c60a082019081526b2d34b63630bd1021b430b4b760a11b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e90529190912081519294509092509081906200089a908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620008fb8162000d0d565b6040805160e081018252600560a082019081526457696e677360d81b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e905291909120815192945090925090819062000969908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff199094169390931762010000929091169190910217905580620009ca8162000d0d565b6040805160e081018252600560a082019081526421b937bbb760d91b60c0830152815261ffff8316602080830182905266f8b0a10e4700008385015260146060840152600060808401819052918252600e905291909120815192945090925090819062000a38908262000c41565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff19909416939093176201000092909116919091021790555062000d3d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000afe600a54600160a01b900460ff1690565b1562000b435760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000b7f3390565b6040516001600160a01b03909116815260200160405180910390a1565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000bc757607f821691505b60208210810362000be857634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c3c57600081815260208120601f850160051c8101602086101562000c175750805b601f850160051c820191505b8181101562000c385782815560010162000c23565b5050505b505050565b81516001600160401b0381111562000c5d5762000c5d62000b9c565b62000c758162000c6e845462000bb2565b8462000bee565b602080601f83116001811462000cad576000841562000c945750858301515b600019600386901b1c1916600185901b17855562000c38565b600085815260208120601f198616915b8281101562000cde5788860151825594840194600190910190840162000cbd565b508582101562000cfd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff80831681810362000d3357634e487b7160e01b600052601160045260246000fd5b6001019392505050565b6134ff8062000d4d6000396000f3fe608060405234801561001057600080fd5b50600436106102d35760003560e01c80636352211e11610186578063a2309ff8116100e3578063d47cc75a11610097578063e985e9c511610071578063e985e9c51461063c578063f2fde38b14610678578063f3c20de01461068b57600080fd5b8063d47cc75a146105de578063d89135cd14610613578063e3e855ee1461062757600080fd5b8063b4de6216116100c8578063b4de621614610598578063b88d4fde146105b8578063c87b56dd146105cb57600080fd5b8063a2309ff81461055b578063ad2f852a1461057c57600080fd5b80638da5cb5b1161013a57806395d89b411161011f57806395d89b411461052d5780639c20551314610535578063a22cb4651461054857600080fd5b80638da5cb5b14610509578063902c7fca1461051a57600080fd5b8063704802751161016b57806370480275146104db57806370a08231146104ee578063715018a61461050157600080fd5b80636352211e146104b55780636e83843a146104c857600080fd5b80632a55205a1161023457806342842e0e116101e85780634f6ccce7116101cd5780634f6ccce7146104705780635c975abb14610483578063627fdeab1461049557600080fd5b806342842e0e1461043957806347bf9fcf1461044c57600080fd5b80632f745c59116102195780632f745c591461040b5780633ad15e671461041e5780633ccfd60b1461043157600080fd5b80632a55205a146103c65780632e9f3f67146103f857600080fd5b806316c38b3c1161028b57806318160ddd1161027057806318160ddd1461038e57806319ac6f69146103a057806323b872dd146103b357600080fd5b806316c38b3c146103685780631785f53c1461037b57600080fd5b806306fdde03116102bc57806306fdde0314610315578063081812fc1461032a578063095ea7b31461035557600080fd5b806301ffc9a7146102d857806306d254da14610300575b600080fd5b6102eb6102e6366004612c03565b6106d4565b60405190151581526020015b60405180910390f35b61031361030e366004612c43565b610718565b005b61031d6107a8565b6040516102f79190612cb6565b61033d610338366004612cc9565b61083a565b6040516001600160a01b0390911681526020016102f7565b610313610363366004612ce2565b6108cf565b610313610376366004612d1c565b610a00565b610313610389366004612c43565b610ac2565b6008545b6040519081526020016102f7565b6103136103ae366004612d49565b610b2b565b6103136103c1366004612d64565b610ca2565b6103d96103d4366004612da0565b610d79565b604080516001600160a01b0390931683526020830191909152016102f7565b610313610406366004612cc9565b610db8565b610392610419366004612ce2565b610e05565b61031361042c366004612dc2565b610ead565b610313611063565b610313610447366004612d64565b6110e4565b61045f61045a366004612d49565b6110ff565b6040516102f7959493929190612dde565b61039261047e366004612cc9565b6111c1565b600a54600160a01b900460ff166102eb565b6104a86104a3366004612c43565b611265565b6040516102f79190612e1e565b61033d6104c3366004612cc9565b611307565b6103136104d6366004612e62565b611392565b6103136104e9366004612c43565b6113e7565b6103926104fc366004612c43565b611453565b6103136114ed565b600a546001600160a01b031661033d565b610313610528366004612d1c565b611541565b61031d6115a9565b610313610543366004612ed4565b6115b8565b610313610556366004612f07565b61185a565b600c546105699061ffff1681565b60405161ffff90911681526020016102f7565b600c5461033d906501000000000090046001600160a01b031681565b6105ab6105a6366004612d49565b611869565b6040516102f79190612f31565b6103136105c6366004612fa3565b61189d565b61031d6105d9366004612cc9565b611976565b6105f16105ec366004612d49565b611a52565b60408051825161ffff90811682526020938401511692810192909252016102f7565b600c546105699062010000900461ffff1681565b600c546102eb90640100000000900460ff1681565b6102eb61064a36600461307f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610313610686366004612c43565b611aa8565b6106b9610699366004612d49565b600d6020526000908152604090205461ffff808216916201000090041682565b6040805161ffff9384168152929091166020830152016102f7565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610712575061071282611b75565b92915050565b600a546001600160a01b031633146107655760405162461bcd60e51b815260206004820181905260248201526000805160206134aa83398151915260448201526064015b60405180910390fd5b600c80546001600160a01b0390921665010000000000027fffffffffffffff0000000000000000000000000000000000000000ffffffffff909216919091179055565b6060600080546107b79061309b565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061309b565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161075c565b506000908152600460205260409020546001600160a01b031690565b60006108da82611307565b9050806001600160a01b0316836001600160a01b0316036109635760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161075c565b336001600160a01b038216148061097f575061097f813361064a565b6109f15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161075c565b6109fb8383611bb3565b505050565b600a546001600160a01b03163314610a485760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b600c546501000000000090046001600160a01b0316610aa95760405162461bcd60e51b815260206004820181905260248201527f5345543a20526f79616c74792061646472657373206d75737420626520736574604482015260640161075c565b8015610aba57610ab7611c21565b50565b610ab7611cd3565b600a546001600160a01b03163314610b0a5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6002600b5403610b7d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55336000908152600f602052604090205460ff16610bfd5733610ba761ffff8316611307565b6001600160a01b031614610bfd5760405162461bcd60e51b815260206004820152601f60248201527f5345543a2043616e6e6f74206275726e20756e2d6f776e656420746f6b656e00604482015260640161075c565b600c805462010000900461ffff16906002610c17836130eb565b82546101009290920a61ffff81810219909316918316021790915582166000818152600d60205260409020805463ffffffff191690559050610c5881611307565b6001600160a01b03167f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa260405160405180910390a3610c9a8161ffff16611d60565b506001600b55565b6002600b5403610cf45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55600c54640100000000900460ff16610d645760405162461bcd60e51b815260206004820152602860248201527f5345543a205472616974732063616e6e6f7420626520736f6c642061742074686044820152671a5cc81c1bda5b9d60c21b606482015260840161075c565b610d6f838383611e07565b50506001600b5550565b600080600c60059054906101000a90046001600160a01b03166103e860115485610da3919061310c565b610dad9190613141565b915091509250929050565b600a546001600160a01b03163314610e005760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b601155565b6000610e1083611453565b8210610e845760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161075c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ef55760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b61ffff82166000908152600e6020526040808220815160a08101909252805482908290610f219061309b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d9061309b565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050509183525050600182015461ffff90811660208084019190915260028401546040808501919091526003909401548083166060850152620100009004821660809093019290925283830186905286166000908152600e9091522081519192508291819061100990826131a3565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff1990941693909317620100009290911691909102179055505050565b600a546001600160a01b031633146110ab5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b6109fb8383836040518060200160405280600081525061189d565b600e6020526000908152604090208054819061111a9061309b565b80601f01602080910402602001604051908101604052809291908181526020018280546111469061309b565b80156111935780601f1061116857610100808354040283529160200191611193565b820191906000526020600020905b81548152906001019060200180831161117657829003601f168201915b50505060018401546002850154600390950154939461ffff9182169490935080821692506201000090041685565b60006111cc60085490565b82106112405760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161075c565b6008828154811061125357611253613263565b90600052602060002001549050919050565b6060600061127283611453565b905060008167ffffffffffffffff81111561128f5761128f612f8d565b6040519080825280602002602001820160405280156112b8578160200160208202803683370190505b50905060005b828110156112ff576112d08582610e05565b8282815181106112e2576112e2613263565b6020908102919091010152806112f781613279565b9150506112be565b509392505050565b6000818152600260205260408120546001600160a01b0316806107125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161075c565b600a546001600160a01b031633146113da5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b60106109fb828483613292565b600a546001600160a01b0316331461142f5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b60006001600160a01b0382166114d15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161075c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115355760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b61153f6000611e8e565b565b600a546001600160a01b031633146115895760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b600c80549115156401000000000264ff0000000019909216919091179055565b6060600180546107b79061309b565b600a54600160a01b900460ff16156116125760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161075c565b6002600b54036116645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55336000908152600f602052604090205460ff166116c85760405162461bcd60e51b815260206004820152601e60248201527f5345543a204f6e6c792061646d696e732063616e2063616c6c20746869730000604482015260640161075c565b61ffff8281166000908152600e6020526040902060038101549091818116916116fa9162010000909104166001613353565b61ffff16111561174c5760405162461bcd60e51b815260206004820152601660248201527f5345543a20416c6c20746f6b656e73206d696e74656400000000000000000000604482015260640161075c565b600c805461ffff16906000611760836130eb565b91906101000a81548161ffff021916908361ffff1602179055505080600301600281819054906101000a900461ffff168092919061179d906130eb565b825461ffff9182166101009390930a928302928202191691909117909155604080518082018252600c8054841680835288851660208085019182526000928352600d90529390209151825493518516620100000263ffffffff1990941690851617929092179055546118129250849116611ee0565b600c5460405161ffff909116906001600160a01b038416907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350506001600b5550565b611865338383611efa565b5050565b6040805160a08101825260608082526000602083018190529282018390528101829052608081019190915261071282611fc8565b6002600b54036118ef5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55600c54640100000000900460ff1661195f5760405162461bcd60e51b815260206004820152602860248201527f5345543a205472616974732063616e6e6f7420626520736f6c642061742074686044820152671a5cc81c1bda5b9d60c21b606482015260840161075c565b61196b848484846120de565b50506001600b555050565b6000818152600260205260409020546060906001600160a01b03166119dd5760405162461bcd60e51b815260206004820152601960248201527f5345543a20546f6b656e20646f6573206e6f7420657869737400000000000000604482015260640161075c565b6040805180820182526000808252602091820181905261ffff8581168252600d835290839020835180850190945254808216845262010000900416908201819052601090611a2a9061216c565b604051602001611a3b929190613379565b604051602081830303815290604052915050919050565b6040805180820182526000808252602080830182905283518085018552828152810182905261ffff8086168352600d82529184902084518086019095525480831685526201000090049091169083015290610712565b600a546001600160a01b03163314611af05760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b6001600160a01b038116611b6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161075c565b610ab781611e8e565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107125750610712826122a9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be882611307565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a54600160a01b900460ff1615611c7b5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161075c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cb63390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff16611d2c5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161075c565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611cb6565b6000611d6b82611307565b9050611d7981600084612344565b611d84600083611bb3565b6001600160a01b0381166000908152600360205260408120805460019290611dad9084906133f7565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e1133826123fc565b611e835760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161075c565b6109fb8383836124ef565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118658282604051806020016040528060008152506126c7565b816001600160a01b0316836001600160a01b031603611f5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040805160a08101825260608082526000602083018190529282018390528101829052608081019190915261ffff82166000908152600e602052604090819020815160a081019092528054829082906120209061309b565b80601f016020809104026020016040519081016040528092919081815260200182805461204c9061309b565b80156120995780601f1061206e57610100808354040283529160200191612099565b820191906000526020600020905b81548152906001019060200180831161207c57829003601f168201915b5050509183525050600182015461ffff908116602083015260028301546040830152600390920154808316606083015262010000900490911660809091015292915050565b6120e833836123fc565b61215a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161075c565b61216684848484612745565b50505050565b6060816000036121af57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156121d957806121c381613279565b91506121d29050600a83613141565b91506121b3565b60008167ffffffffffffffff8111156121f4576121f4612f8d565b6040519080825280601f01601f19166020018201604052801561221e576020820181803683370190505b5090505b84156122a1576122336001836133f7565b9150612240600a8661340e565b61224b906030613422565b60f81b81838151811061226057612260613263565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061229a600a86613141565b9450612222565b949350505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061230c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610712565b6001600160a01b03831661239f5761239a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123c2565b816001600160a01b0316836001600160a01b0316146123c2576123c283826127c3565b6001600160a01b0382166123d9576109fb81612860565b826001600160a01b0316826001600160a01b0316146109fb576109fb828261290f565b6000818152600260205260408120546001600160a01b03166124755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161075c565b600061248083611307565b9050806001600160a01b0316846001600160a01b031614806124bb5750836001600160a01b03166124b08461083a565b6001600160a01b0316145b806122a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166122a1565b826001600160a01b031661250282611307565b6001600160a01b03161461257e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161075c565b6001600160a01b0382166125f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161075c565b612604838383612344565b61260f600082611bb3565b6001600160a01b03831660009081526003602052604081208054600192906126389084906133f7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612666908490613422565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6126d18383612953565b6126de6000848484612aa1565b6109fb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161075c565b6127508484846124ef565b61275c84848484612aa1565b6121665760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161075c565b600060016127d084611453565b6127da91906133f7565b60008381526007602052604090205490915080821461282d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612872906001906133f7565b6000838152600960205260408120546008805493945090928490811061289a5761289a613263565b9060005260206000200154905080600883815481106128bb576128bb613263565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128f3576128f361343a565b6001900381819060005260206000200160009055905550505050565b600061291a83611453565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075c565b6000818152600260205260409020546001600160a01b031615612a0e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075c565b612a1a60008383612344565b6001600160a01b0382166000908152600360205260408120805460019290612a43908490613422565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612be257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ae5903390899088908890600401613450565b6020604051808303816000875af1925050508015612b20575060408051601f3d908101601f19168201909252612b1d9181019061348c565b60015b612bc8573d808015612b4e576040519150601f19603f3d011682016040523d82523d6000602084013e612b53565b606091505b508051600003612bc05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161075c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122a1565b506001949350505050565b6001600160e01b031981168114610ab757600080fd5b600060208284031215612c1557600080fd5b8135612c2081612bed565b9392505050565b80356001600160a01b0381168114612c3e57600080fd5b919050565b600060208284031215612c5557600080fd5b612c2082612c27565b60005b83811015612c79578181015183820152602001612c61565b838111156121665750506000910152565b60008151808452612ca2816020860160208601612c5e565b601f01601f19169290920160200192915050565b602081526000612c206020830184612c8a565b600060208284031215612cdb57600080fd5b5035919050565b60008060408385031215612cf557600080fd5b612cfe83612c27565b946020939093013593505050565b80358015158114612c3e57600080fd5b600060208284031215612d2e57600080fd5b612c2082612d0c565b803561ffff81168114612c3e57600080fd5b600060208284031215612d5b57600080fd5b612c2082612d37565b600080600060608486031215612d7957600080fd5b612d8284612c27565b9250612d9060208501612c27565b9150604084013590509250925092565b60008060408385031215612db357600080fd5b50508035926020909101359150565b60008060408385031215612dd557600080fd5b612cfe83612d37565b60a081526000612df160a0830188612c8a565b61ffff96871660208401526040830195909552509184166060830152909216608090920191909152919050565b6020808252825182820181905260009190848201906040850190845b81811015612e5657835183529284019291840191600101612e3a565b50909695505050505050565b60008060208385031215612e7557600080fd5b823567ffffffffffffffff80821115612e8d57600080fd5b818501915085601f830112612ea157600080fd5b813581811115612eb057600080fd5b866020828501011115612ec257600080fd5b60209290920196919550909350505050565b60008060408385031215612ee757600080fd5b612ef083612d37565b9150612efe60208401612c27565b90509250929050565b60008060408385031215612f1a57600080fd5b612f2383612c27565b9150612efe60208401612d0c565b602081526000825160a06020840152612f4d60c0840182612c8a565b9050602084015161ffff8082166040860152604086015160608601528060608701511660808601528060808701511660a086015250508091505092915050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612fb957600080fd5b612fc285612c27565b9350612fd060208601612c27565b925060408501359150606085013567ffffffffffffffff80821115612ff457600080fd5b818701915087601f83011261300857600080fd5b81358181111561301a5761301a612f8d565b604051601f8201601f19908116603f0116810190838211818310171561304257613042612f8d565b816040528281528a602084870101111561305b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561309257600080fd5b612ef083612c27565b600181811c908216806130af57607f821691505b6020821081036130cf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818103613102576131026130d5565b6001019392505050565b6000816000190483118215151615613126576131266130d5565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826131505761315061312b565b500490565b601f8211156109fb57600081815260208120601f850160051c8101602086101561317c5750805b601f850160051c820191505b8181101561319b57828155600101613188565b505050505050565b815167ffffffffffffffff8111156131bd576131bd612f8d565b6131d1816131cb845461309b565b84613155565b602080601f83116001811461320657600084156131ee5750858301515b600019600386901b1c1916600185901b17855561319b565b600085815260208120601f198616915b8281101561323557888601518255948401946001909101908401613216565b50858210156132535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161328b5761328b6130d5565b5060010190565b67ffffffffffffffff8311156132aa576132aa612f8d565b6132be836132b8835461309b565b83613155565b6000601f8411600181146132f257600085156132da5750838201355b600019600387901b1c1916600186901b17835561334c565b600083815260209020601f19861690835b828110156133235786850135825560209485019460019092019101613303565b50868210156133405760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b600061ffff808316818516808303821115613370576133706130d5565b01949350505050565b60008084546133878161309b565b6001828116801561339f57600181146133b4576133e3565b60ff19841687528215158302870194506133e3565b8860005260208060002060005b858110156133da5781548a8201529084019082016133c1565b50505082870194505b505050508351613370818360208801612c5e565b600082821015613409576134096130d5565b500390565b60008261341d5761341d61312b565b500690565b60008219821115613435576134356130d5565b500190565b634e487b7160e01b600052603160045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526134826080830184612c8a565b9695505050505050565b60006020828403121561349e57600080fd5b8151612c2081612bed56fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c0b7df2e00c7f0e5c5008fca57d4cd649e074bdf477bbd4a693f2813ed100e3664736f6c634300080f003343796265725a696c6c617a205370656369616c2045646974696f6e20547261697473

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102d35760003560e01c80636352211e11610186578063a2309ff8116100e3578063d47cc75a11610097578063e985e9c511610071578063e985e9c51461063c578063f2fde38b14610678578063f3c20de01461068b57600080fd5b8063d47cc75a146105de578063d89135cd14610613578063e3e855ee1461062757600080fd5b8063b4de6216116100c8578063b4de621614610598578063b88d4fde146105b8578063c87b56dd146105cb57600080fd5b8063a2309ff81461055b578063ad2f852a1461057c57600080fd5b80638da5cb5b1161013a57806395d89b411161011f57806395d89b411461052d5780639c20551314610535578063a22cb4651461054857600080fd5b80638da5cb5b14610509578063902c7fca1461051a57600080fd5b8063704802751161016b57806370480275146104db57806370a08231146104ee578063715018a61461050157600080fd5b80636352211e146104b55780636e83843a146104c857600080fd5b80632a55205a1161023457806342842e0e116101e85780634f6ccce7116101cd5780634f6ccce7146104705780635c975abb14610483578063627fdeab1461049557600080fd5b806342842e0e1461043957806347bf9fcf1461044c57600080fd5b80632f745c59116102195780632f745c591461040b5780633ad15e671461041e5780633ccfd60b1461043157600080fd5b80632a55205a146103c65780632e9f3f67146103f857600080fd5b806316c38b3c1161028b57806318160ddd1161027057806318160ddd1461038e57806319ac6f69146103a057806323b872dd146103b357600080fd5b806316c38b3c146103685780631785f53c1461037b57600080fd5b806306fdde03116102bc57806306fdde0314610315578063081812fc1461032a578063095ea7b31461035557600080fd5b806301ffc9a7146102d857806306d254da14610300575b600080fd5b6102eb6102e6366004612c03565b6106d4565b60405190151581526020015b60405180910390f35b61031361030e366004612c43565b610718565b005b61031d6107a8565b6040516102f79190612cb6565b61033d610338366004612cc9565b61083a565b6040516001600160a01b0390911681526020016102f7565b610313610363366004612ce2565b6108cf565b610313610376366004612d1c565b610a00565b610313610389366004612c43565b610ac2565b6008545b6040519081526020016102f7565b6103136103ae366004612d49565b610b2b565b6103136103c1366004612d64565b610ca2565b6103d96103d4366004612da0565b610d79565b604080516001600160a01b0390931683526020830191909152016102f7565b610313610406366004612cc9565b610db8565b610392610419366004612ce2565b610e05565b61031361042c366004612dc2565b610ead565b610313611063565b610313610447366004612d64565b6110e4565b61045f61045a366004612d49565b6110ff565b6040516102f7959493929190612dde565b61039261047e366004612cc9565b6111c1565b600a54600160a01b900460ff166102eb565b6104a86104a3366004612c43565b611265565b6040516102f79190612e1e565b61033d6104c3366004612cc9565b611307565b6103136104d6366004612e62565b611392565b6103136104e9366004612c43565b6113e7565b6103926104fc366004612c43565b611453565b6103136114ed565b600a546001600160a01b031661033d565b610313610528366004612d1c565b611541565b61031d6115a9565b610313610543366004612ed4565b6115b8565b610313610556366004612f07565b61185a565b600c546105699061ffff1681565b60405161ffff90911681526020016102f7565b600c5461033d906501000000000090046001600160a01b031681565b6105ab6105a6366004612d49565b611869565b6040516102f79190612f31565b6103136105c6366004612fa3565b61189d565b61031d6105d9366004612cc9565b611976565b6105f16105ec366004612d49565b611a52565b60408051825161ffff90811682526020938401511692810192909252016102f7565b600c546105699062010000900461ffff1681565b600c546102eb90640100000000900460ff1681565b6102eb61064a36600461307f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610313610686366004612c43565b611aa8565b6106b9610699366004612d49565b600d6020526000908152604090205461ffff808216916201000090041682565b6040805161ffff9384168152929091166020830152016102f7565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610712575061071282611b75565b92915050565b600a546001600160a01b031633146107655760405162461bcd60e51b815260206004820181905260248201526000805160206134aa83398151915260448201526064015b60405180910390fd5b600c80546001600160a01b0390921665010000000000027fffffffffffffff0000000000000000000000000000000000000000ffffffffff909216919091179055565b6060600080546107b79061309b565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061309b565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161075c565b506000908152600460205260409020546001600160a01b031690565b60006108da82611307565b9050806001600160a01b0316836001600160a01b0316036109635760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161075c565b336001600160a01b038216148061097f575061097f813361064a565b6109f15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161075c565b6109fb8383611bb3565b505050565b600a546001600160a01b03163314610a485760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b600c546501000000000090046001600160a01b0316610aa95760405162461bcd60e51b815260206004820181905260248201527f5345543a20526f79616c74792061646472657373206d75737420626520736574604482015260640161075c565b8015610aba57610ab7611c21565b50565b610ab7611cd3565b600a546001600160a01b03163314610b0a5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6002600b5403610b7d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55336000908152600f602052604090205460ff16610bfd5733610ba761ffff8316611307565b6001600160a01b031614610bfd5760405162461bcd60e51b815260206004820152601f60248201527f5345543a2043616e6e6f74206275726e20756e2d6f776e656420746f6b656e00604482015260640161075c565b600c805462010000900461ffff16906002610c17836130eb565b82546101009290920a61ffff81810219909316918316021790915582166000818152600d60205260409020805463ffffffff191690559050610c5881611307565b6001600160a01b03167f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa260405160405180910390a3610c9a8161ffff16611d60565b506001600b55565b6002600b5403610cf45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55600c54640100000000900460ff16610d645760405162461bcd60e51b815260206004820152602860248201527f5345543a205472616974732063616e6e6f7420626520736f6c642061742074686044820152671a5cc81c1bda5b9d60c21b606482015260840161075c565b610d6f838383611e07565b50506001600b5550565b600080600c60059054906101000a90046001600160a01b03166103e860115485610da3919061310c565b610dad9190613141565b915091509250929050565b600a546001600160a01b03163314610e005760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b601155565b6000610e1083611453565b8210610e845760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161075c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ef55760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b61ffff82166000908152600e6020526040808220815160a08101909252805482908290610f219061309b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d9061309b565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050509183525050600182015461ffff90811660208084019190915260028401546040808501919091526003909401548083166060850152620100009004821660809093019290925283830186905286166000908152600e9091522081519192508291819061100990826131a3565b50602082015160018201805461ffff191661ffff9283161790556040830151600283015560608301516003909201805460809094015192821663ffffffff1990941693909317620100009290911691909102179055505050565b600a546001600160a01b031633146110ab5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b6109fb8383836040518060200160405280600081525061189d565b600e6020526000908152604090208054819061111a9061309b565b80601f01602080910402602001604051908101604052809291908181526020018280546111469061309b565b80156111935780601f1061116857610100808354040283529160200191611193565b820191906000526020600020905b81548152906001019060200180831161117657829003601f168201915b50505060018401546002850154600390950154939461ffff9182169490935080821692506201000090041685565b60006111cc60085490565b82106112405760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161075c565b6008828154811061125357611253613263565b90600052602060002001549050919050565b6060600061127283611453565b905060008167ffffffffffffffff81111561128f5761128f612f8d565b6040519080825280602002602001820160405280156112b8578160200160208202803683370190505b50905060005b828110156112ff576112d08582610e05565b8282815181106112e2576112e2613263565b6020908102919091010152806112f781613279565b9150506112be565b509392505050565b6000818152600260205260408120546001600160a01b0316806107125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161075c565b600a546001600160a01b031633146113da5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b60106109fb828483613292565b600a546001600160a01b0316331461142f5760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b60006001600160a01b0382166114d15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161075c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115355760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b61153f6000611e8e565b565b600a546001600160a01b031633146115895760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b600c80549115156401000000000264ff0000000019909216919091179055565b6060600180546107b79061309b565b600a54600160a01b900460ff16156116125760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161075c565b6002600b54036116645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55336000908152600f602052604090205460ff166116c85760405162461bcd60e51b815260206004820152601e60248201527f5345543a204f6e6c792061646d696e732063616e2063616c6c20746869730000604482015260640161075c565b61ffff8281166000908152600e6020526040902060038101549091818116916116fa9162010000909104166001613353565b61ffff16111561174c5760405162461bcd60e51b815260206004820152601660248201527f5345543a20416c6c20746f6b656e73206d696e74656400000000000000000000604482015260640161075c565b600c805461ffff16906000611760836130eb565b91906101000a81548161ffff021916908361ffff1602179055505080600301600281819054906101000a900461ffff168092919061179d906130eb565b825461ffff9182166101009390930a928302928202191691909117909155604080518082018252600c8054841680835288851660208085019182526000928352600d90529390209151825493518516620100000263ffffffff1990941690851617929092179055546118129250849116611ee0565b600c5460405161ffff909116906001600160a01b038416907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350506001600b5550565b611865338383611efa565b5050565b6040805160a08101825260608082526000602083018190529282018390528101829052608081019190915261071282611fc8565b6002600b54036118ef5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075c565b6002600b55600c54640100000000900460ff1661195f5760405162461bcd60e51b815260206004820152602860248201527f5345543a205472616974732063616e6e6f7420626520736f6c642061742074686044820152671a5cc81c1bda5b9d60c21b606482015260840161075c565b61196b848484846120de565b50506001600b555050565b6000818152600260205260409020546060906001600160a01b03166119dd5760405162461bcd60e51b815260206004820152601960248201527f5345543a20546f6b656e20646f6573206e6f7420657869737400000000000000604482015260640161075c565b6040805180820182526000808252602091820181905261ffff8581168252600d835290839020835180850190945254808216845262010000900416908201819052601090611a2a9061216c565b604051602001611a3b929190613379565b604051602081830303815290604052915050919050565b6040805180820182526000808252602080830182905283518085018552828152810182905261ffff8086168352600d82529184902084518086019095525480831685526201000090049091169083015290610712565b600a546001600160a01b03163314611af05760405162461bcd60e51b815260206004820181905260248201526000805160206134aa833981519152604482015260640161075c565b6001600160a01b038116611b6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161075c565b610ab781611e8e565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107125750610712826122a9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be882611307565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a54600160a01b900460ff1615611c7b5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161075c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cb63390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff16611d2c5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161075c565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611cb6565b6000611d6b82611307565b9050611d7981600084612344565b611d84600083611bb3565b6001600160a01b0381166000908152600360205260408120805460019290611dad9084906133f7565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e1133826123fc565b611e835760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161075c565b6109fb8383836124ef565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118658282604051806020016040528060008152506126c7565b816001600160a01b0316836001600160a01b031603611f5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040805160a08101825260608082526000602083018190529282018390528101829052608081019190915261ffff82166000908152600e602052604090819020815160a081019092528054829082906120209061309b565b80601f016020809104026020016040519081016040528092919081815260200182805461204c9061309b565b80156120995780601f1061206e57610100808354040283529160200191612099565b820191906000526020600020905b81548152906001019060200180831161207c57829003601f168201915b5050509183525050600182015461ffff908116602083015260028301546040830152600390920154808316606083015262010000900490911660809091015292915050565b6120e833836123fc565b61215a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161075c565b61216684848484612745565b50505050565b6060816000036121af57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156121d957806121c381613279565b91506121d29050600a83613141565b91506121b3565b60008167ffffffffffffffff8111156121f4576121f4612f8d565b6040519080825280601f01601f19166020018201604052801561221e576020820181803683370190505b5090505b84156122a1576122336001836133f7565b9150612240600a8661340e565b61224b906030613422565b60f81b81838151811061226057612260613263565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061229a600a86613141565b9450612222565b949350505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061230c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610712565b6001600160a01b03831661239f5761239a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123c2565b816001600160a01b0316836001600160a01b0316146123c2576123c283826127c3565b6001600160a01b0382166123d9576109fb81612860565b826001600160a01b0316826001600160a01b0316146109fb576109fb828261290f565b6000818152600260205260408120546001600160a01b03166124755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161075c565b600061248083611307565b9050806001600160a01b0316846001600160a01b031614806124bb5750836001600160a01b03166124b08461083a565b6001600160a01b0316145b806122a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166122a1565b826001600160a01b031661250282611307565b6001600160a01b03161461257e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161075c565b6001600160a01b0382166125f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161075c565b612604838383612344565b61260f600082611bb3565b6001600160a01b03831660009081526003602052604081208054600192906126389084906133f7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612666908490613422565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6126d18383612953565b6126de6000848484612aa1565b6109fb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161075c565b6127508484846124ef565b61275c84848484612aa1565b6121665760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161075c565b600060016127d084611453565b6127da91906133f7565b60008381526007602052604090205490915080821461282d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612872906001906133f7565b6000838152600960205260408120546008805493945090928490811061289a5761289a613263565b9060005260206000200154905080600883815481106128bb576128bb613263565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128f3576128f361343a565b6001900381819060005260206000200160009055905550505050565b600061291a83611453565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075c565b6000818152600260205260409020546001600160a01b031615612a0e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075c565b612a1a60008383612344565b6001600160a01b0382166000908152600360205260408120805460019290612a43908490613422565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612be257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ae5903390899088908890600401613450565b6020604051808303816000875af1925050508015612b20575060408051601f3d908101601f19168201909252612b1d9181019061348c565b60015b612bc8573d808015612b4e576040519150601f19603f3d011682016040523d82523d6000602084013e612b53565b606091505b508051600003612bc05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161075c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122a1565b506001949350505050565b6001600160e01b031981168114610ab757600080fd5b600060208284031215612c1557600080fd5b8135612c2081612bed565b9392505050565b80356001600160a01b0381168114612c3e57600080fd5b919050565b600060208284031215612c5557600080fd5b612c2082612c27565b60005b83811015612c79578181015183820152602001612c61565b838111156121665750506000910152565b60008151808452612ca2816020860160208601612c5e565b601f01601f19169290920160200192915050565b602081526000612c206020830184612c8a565b600060208284031215612cdb57600080fd5b5035919050565b60008060408385031215612cf557600080fd5b612cfe83612c27565b946020939093013593505050565b80358015158114612c3e57600080fd5b600060208284031215612d2e57600080fd5b612c2082612d0c565b803561ffff81168114612c3e57600080fd5b600060208284031215612d5b57600080fd5b612c2082612d37565b600080600060608486031215612d7957600080fd5b612d8284612c27565b9250612d9060208501612c27565b9150604084013590509250925092565b60008060408385031215612db357600080fd5b50508035926020909101359150565b60008060408385031215612dd557600080fd5b612cfe83612d37565b60a081526000612df160a0830188612c8a565b61ffff96871660208401526040830195909552509184166060830152909216608090920191909152919050565b6020808252825182820181905260009190848201906040850190845b81811015612e5657835183529284019291840191600101612e3a565b50909695505050505050565b60008060208385031215612e7557600080fd5b823567ffffffffffffffff80821115612e8d57600080fd5b818501915085601f830112612ea157600080fd5b813581811115612eb057600080fd5b866020828501011115612ec257600080fd5b60209290920196919550909350505050565b60008060408385031215612ee757600080fd5b612ef083612d37565b9150612efe60208401612c27565b90509250929050565b60008060408385031215612f1a57600080fd5b612f2383612c27565b9150612efe60208401612d0c565b602081526000825160a06020840152612f4d60c0840182612c8a565b9050602084015161ffff8082166040860152604086015160608601528060608701511660808601528060808701511660a086015250508091505092915050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612fb957600080fd5b612fc285612c27565b9350612fd060208601612c27565b925060408501359150606085013567ffffffffffffffff80821115612ff457600080fd5b818701915087601f83011261300857600080fd5b81358181111561301a5761301a612f8d565b604051601f8201601f19908116603f0116810190838211818310171561304257613042612f8d565b816040528281528a602084870101111561305b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561309257600080fd5b612ef083612c27565b600181811c908216806130af57607f821691505b6020821081036130cf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818103613102576131026130d5565b6001019392505050565b6000816000190483118215151615613126576131266130d5565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826131505761315061312b565b500490565b601f8211156109fb57600081815260208120601f850160051c8101602086101561317c5750805b601f850160051c820191505b8181101561319b57828155600101613188565b505050505050565b815167ffffffffffffffff8111156131bd576131bd612f8d565b6131d1816131cb845461309b565b84613155565b602080601f83116001811461320657600084156131ee5750858301515b600019600386901b1c1916600185901b17855561319b565b600085815260208120601f198616915b8281101561323557888601518255948401946001909101908401613216565b50858210156132535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161328b5761328b6130d5565b5060010190565b67ffffffffffffffff8311156132aa576132aa612f8d565b6132be836132b8835461309b565b83613155565b6000601f8411600181146132f257600085156132da5750838201355b600019600387901b1c1916600186901b17835561334c565b600083815260209020601f19861690835b828110156133235786850135825560209485019460019092019101613303565b50868210156133405760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b600061ffff808316818516808303821115613370576133706130d5565b01949350505050565b60008084546133878161309b565b6001828116801561339f57600181146133b4576133e3565b60ff19841687528215158302870194506133e3565b8860005260208060002060005b858110156133da5781548a8201529084019082016133c1565b50505082870194505b505050508351613370818360208801612c5e565b600082821015613409576134096130d5565b500390565b60008261341d5761341d61312b565b500690565b60008219821115613435576134356130d5565b500190565b634e487b7160e01b600052603160045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526134826080830184612c8a565b9695505050505050565b60006020828403121561349e57600080fd5b8151612c2081612bed56fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c0b7df2e00c7f0e5c5008fca57d4cd649e074bdf477bbd4a693f2813ed100e3664736f6c634300080f0033

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.