ETH Price: $3,470.38 (+2.34%)
Gas: 7 Gwei

Token

Uniqly Genesis Collection (UNIQLYONE)
 

Overview

Max Total Supply

2,287 UNIQLYONE

Holders

545

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 UNIQLYONE
0x503a623911095e2c506ce900b90ae3e1097a24e6
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:
UniqDrop

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 19 : UniqDrop.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721/ERC721Enumerable.sol";
import "./utils/Ownable.sol";
import "./utils/IERC2981.sol";
import "./utils/IERC20.sol";
import "./VRF/VRFConsumerBase.sol";

contract UniqDrop is ERC721Enumerable, IERC2981, Ownable, VRFConsumerBase {
    uint256 internal constant _maxUniqly = 8500;

    //VRF + Prizes
    bytes32 internal immutable keyHash;
    uint256 internal immutable fee;
    uint256 public randomResult;
    address[] public winners;
    bool baseURILock;

    function MAX_UNIQLY() external pure returns (uint256) {
        return _maxUniqly;
    }

    // The IPFS hash for all Uniqlies concatenated *might* stored
    // here once all Uniqlies are issued and if I figure it out
    string public METADATA_PROVENANCE_HASH;
    string public BASE_URI;

    uint256 public immutable ROYALTY_FEE;

    // save data on burn event tokenid=>message
    mapping(uint256 => string) private claimers;

    modifier notZeroAddress(address a) {
        require(a != address(0), "ZERO address can not be used");
        _;
    }

    constructor(
        string memory baseURI,
        string memory _name,
        string memory _symbol,
        address _vrfCoordinator,
        address _link,
        bytes32 _keyHash,
        uint256 _fee,
        address _owner_,
        address _proxyRegistryAddress
    )
        notZeroAddress(_vrfCoordinator)
        notZeroAddress(_link)
        notZeroAddress(_owner_)
        notZeroAddress(_proxyRegistryAddress)
        ERC721(_name, _symbol)
        VRFConsumerBase(_vrfCoordinator, _link)
        Ownable(_owner_)
    {
        BASE_URI = baseURI;
        keyHash = _keyHash;
        fee = _fee;
        proxyRegistryAddress = _proxyRegistryAddress;
        ROYALTY_FEE = 750000; //7.5%
    }

    function getRandomNumber(uint256 adminProvidedSeed)
        external
        onlyOwner
        returns (bytes32)
    {
        require(totalSupply() >= _maxUniqly, "Sale must be ended");
        require(randomResult == 0, "Random number already initiated");
        require(
            address(this).balance >= 8 ether,
            "min 8 ETH balance required"
        );
        require(
            LINK.balanceOf(address(this)) >= fee,
            "Not enough LINK - fill contract with faucet"
        );
        return requestRandomness(keyHash, fee, adminProvidedSeed);
    }

    function setBaseURILock() external onlyOwner {
        require(!baseURILock, "Lock already enabled");
        baseURILock = true;
    }

    //fallback function
    function fulfillRandomness(bytes32, uint256 randomness) internal override {
        randomResult = randomness;
    }

    // 16/8500 chance to be winner
    function checkWin(uint256 _tokenId) external view returns (bool) {
        return _isWinner(_tokenId);
    }

    function _isWinner(uint256 id) internal view returns (bool) {
        require(randomResult > 0, "Random must be initiated");
        uint256 result =
            (uint256(keccak256(abi.encodePacked(id, randomResult)))) % 8500;
        if (result <= 16) return true;
        return false;
    }

    function isAlreadyRececeivedPrize(address _potWinner)
        external
        view
        returns (bool)
    {
        return (_isAlreadyRececeivedPrize(_potWinner));
    }

    function _isAlreadyRececeivedPrize(address _potWinner)
        internal
        view
        returns (bool)
    {
        uint256 i;
        uint256 winnersCount = winners.length;
        for (i = 0; i < winnersCount; i++) {
            if (winners[i] == _potWinner) return true;
        }
        return false;
    }

    event PrizeCollected(address indexed _winner, uint256 _tokenId);

    function collectPrize(uint256 _tokenId) external {
        require(ownerOf(_tokenId) == msg.sender, "Ownership needed");
        require(_isWinner(_tokenId) == true, "You did not win");
        require(
            _isAlreadyRececeivedPrize(msg.sender) == false,
            "Already received a prize"
        );
        require(winners.length < 8, "Prize limit reached");
        winners.push(msg.sender);
        emit PrizeCollected(msg.sender, _tokenId);
        payable(msg.sender).transfer(1 ether);
    }

    function getAllWinners() external view returns (address[] memory) {
        uint256 winnersCount = winners.length;
        if (winnersCount == 0) {
            return new address[](0);
        } else {
            address[] memory result = new address[](winnersCount);
            uint256 index;
            for (index = 0; index < winnersCount; index++) {
                result[index] = winners[index];
            }
            return result;
        }
    }

    function getWinner(uint256 _arrayKey) external view returns (address) {
        return winners[_arrayKey];
    }

    function getWinnersCount() external view returns (uint256) {
        return winners.length;
    }

    function getMessageHash(
        address _tokenOwner,
        uint256 _tokenId,
        string memory _claimersName
    ) public pure returns (bytes32) {
        return
            keccak256(abi.encodePacked(_tokenOwner, _tokenId, _claimersName));
    }

    function getEthSignedMessageHash(bytes32 _messageHash)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    _messageHash
                )
            );
    }

    function verifySignature(
        address _tokenOwner,
        uint256 _tokenId,
        string memory _claimersName,
        bytes memory _signature
    ) internal view returns (bool) {
        bytes32 messageHash =
            getMessageHash(_tokenOwner, _tokenId, _claimersName);
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);
        return recoverSigner(ethSignedMessageHash, _signature) == owner();
    }

    function recoverSigner(
        bytes32 _ethSignedMessageHash,
        bytes memory _signature
    ) internal pure returns (address) {
        require(_signature.length == 65, "invalid signature length");
        bytes32 r;
        bytes32 s;
        uint8 v;
        assembly {
            r := mload(add(_signature, 32))
            s := mload(add(_signature, 64))
            v := byte(0, mload(add(_signature, 96)))
        }
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    // return information stored on burn event
    function claimerOf(uint256 tokenId) external view returns (string memory) {
        return claimers[tokenId];
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overridden
     * in child contracts.
     */
    function _baseURI() internal view override returns (string memory) {
        return BASE_URI;
    }

    event Claim(
        address indexed _claimer,
        uint256 indexed _tokenId,
        string _claimersName
    );

    function burn(
        uint256 _tokenId,
        string memory _claimersName,
        bytes memory _signature
    ) external {
        require(ownerOf(_tokenId) == msg.sender, "You need to own this token");
        require(
            verifySignature(msg.sender, _tokenId, _claimersName, _signature),
            "Signature is not valid"
        );
        claimers[_tokenId] = _claimersName;
        _burn(_tokenId);
        emit Claim(msg.sender, _tokenId, _claimersName);
    }

    /*
    @dev return all tokens owned by user
    @param _owner address to be listed
    */
    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    //returns array, where [0]-current price in ETH, [1]- supply available in this price,
    // [2] - next price
    function getPriceParameters() external view returns (uint256[3] memory) {
        return _getPriceParams();
    }

    function _getPriceParams() private view returns (uint256[3] memory arr) {
        uint256 tSupply = totalSupply();
        if (1999 - int(tSupply) > 0)
            return [50000000000000000, 1999 - tSupply, 80000000000000000];
        else if (5999 - int(tSupply) > 0)
            return [80000000000000000, 5999 - tSupply, 120000000000000000];
        else if (7999 - int(tSupply) > 0)
            return [120000000000000000, 7999 - tSupply, 240000000000000000];
        else if (8399 - int(tSupply) > 0)
            return [240000000000000000, 8399 - tSupply, 400000000000000000];
        else return [400000000000000000, 8500 - tSupply, 0];
    }

    function _calcEthForUniqs(uint256 _number) private view returns (uint256) {
        uint256 currentSupply = totalSupply();
        require(currentSupply < _maxUniqly, "Sale has already ended");
        require(
            (_number + currentSupply) <= _maxUniqly,
            "You cannot buy that many tokens"
        );
        uint256[3] memory priceParameters = _getPriceParams();
        if (priceParameters[1] > _number) return priceParameters[0] * _number;
        else
            return (priceParameters[1] *
                priceParameters[0] +
                priceParameters[2] *
                (_number - priceParameters[1]));
    }

    function calculateEthPriceForExactUniqs(uint256 _number)
        external
        view
        returns (uint256)
    {
        return _calcEthForUniqs(_number);
    }

    //emits Transfer event
    function mintUniqly(uint256 numUniqlies) external payable {
        uint256 requiredValue = _calcEthForUniqs(numUniqlies);
        require(msg.value >= requiredValue, "Not enough ether");
        require(
            numUniqlies <= 30 && numUniqlies > 0,
            "You can buy minimum 1, maximum 30 Uniqs"
        );
        uint256 mintIndex = totalSupply();
        for (uint256 i = 0; i < numUniqlies; i++) {
            _safeMint(msg.sender, mintIndex+1500);
            mintIndex++;
        }
        // send back ETH if one overpay by accident
        if (requiredValue < msg.value) {
            payable(msg.sender).transfer(msg.value - requiredValue);
        }
    }

    function setProvenanceHash(string memory _hash) external onlyOwner {
        METADATA_PROVENANCE_HASH = _hash;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        require(!baseURILock, "Cant update base URI: Lock enabled");
        BASE_URI = baseURI;
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function recoverERC20(address token) external onlyOwner {
        uint256 val = IERC20(token).balanceOf(address(this));
        require(val > 0, "Nothing to recover");
        // use interface that not return value (USDT case)
        Ierc20(token).transfer(owner(), val);
    }

    // royalty fee EIP2981 implementation
    // contract owner gets all
    function royaltyInfo(uint256)
        external
        view
        override
        returns (address receiver, uint256 amount)
    {
        return (owner(), ROYALTY_FEE);
    }

    function receivedRoyalties(
        address,
        address _buyer,
        uint256 _tokenId,
        address _tokenPaid,
        uint256 _amount
    ) external override {
        emit ReceivedRoyalties(owner(), _buyer, _tokenId, _tokenPaid, _amount);
    }

    // OpenSea stuff
    address proxyRegistryAddress;

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address own, address spend)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(own)) == spend) {
            return true;
        }

        return super.isApprovedForAll(own, spend);
    }
    
    receive() external payable {
    }
}

// To recover broken ERC20 token contracts like USDT
// that are not returning value on transfer
interface Ierc20 {
    function transfer(address, uint256) external;
}

// for OpenSea integration
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/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}. Empty by default, can be overridden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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 {}
}

File 4 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/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 5 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 8 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 19 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 11 of 19 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 12 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./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
     */
    constructor(address _newOwner) {
        _owner = _newOwner;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 14 of 19 : IERC2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.3;

/**
 * @dev Implementation of royalties for 721s
 *
 */
interface IERC2981 {
    /*
     * ERC165 bytes to add to interface array - set in parent contract implementing this standard
     *
     * bytes4(keccak256('royaltyInfo(uint256)')) == 0xcef6d368
     * bytes4(keccak256('receivedRoyalties(address,address,uint256,address,uint256)')) == 0x8589ff45
     * bytes4(0xcef6d368) ^ bytes4(0x8589ff45) == 0x4b7f2c2d
     * bytes4 private constant _INTERFACE_ID_ERC721ROYALTIES = 0x4b7f2c2d;
     * _registerInterface(_INTERFACE_ID_ERC721ROYALTIES);
     */
    /**

    /**
     *      @notice Called to return both the creator's address and the royalty percentage -
     *              this would be the main function called by marketplaces unless they specifically
     *              need to adjust the royaltyAmount
     *      @notice Percentage is calculated as a fixed point with a scaling factor of 100000,
     *              such that 100% would be the value 10000000, as 10000000/100000 = 100.
     *              1% would be the value 100000, as 100000/100000 = 1
     */
    function royaltyInfo(uint256 _tokenId)
        external
        returns (address receiver, uint256 amount);

    /**
     *      @notice Called when royalty is transferred to the receiver. We wrap emitting
     *              the event as we want the NFT contract itself to contain the event.
     */
    function receivedRoyalties(
        address _royaltyRecipient,
        address _buyer,
        uint256 _tokenId,
        address _tokenPaid,
        uint256 _amount
    ) external;

    event ReceivedRoyalties(
        address indexed _royaltyRecipient,
        address indexed _buyer,
        uint256 indexed _tokenId,
        address _tokenPaid,
        uint256 _amount
    );
}

File 15 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 16 of 19 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./SafeMathChainlink.sol";

import "./LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  using SafeMathChainlink for uint256;

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness)
    internal virtual;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   * @param _seed seed mixed into the input of the VRF.
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee, uint256 _seed)
    internal returns (bytes32 requestId)
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, _seed));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, _seed, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash].add(1);
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 17 of 19 : SafeMathChainlink.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathChainlink {
  /**
    * @dev Returns the addition of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `+` operator.
    *
    * Requirements:
    * - Addition cannot overflow.
    */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
    * @dev Returns the subtraction of two unsigned integers, reverting on
    * overflow (when the result is negative).
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    * - Subtraction cannot overflow.
    */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath: subtraction overflow");
    uint256 c = a - b;

    return c;
  }

  /**
    * @dev Returns the multiplication of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `*` operator.
    *
    * Requirements:
    * - Multiplication cannot overflow.
    */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
    * @dev Returns the integer division of two unsigned integers. Reverts on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator. Note: this function uses a
    * `revert` opcode (which leaves remaining gas untouched) while Solidity
    * uses an invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    * - The divisor cannot be zero.
    */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath: division by zero");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts when dividing by zero.
    *
    * Counterpart to Solidity's `%` operator. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    * - The divisor cannot be zero.
    */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0, "SafeMath: modulo by zero");
    return a % b;
  }
}

File 18 of 19 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);
  function approve(address spender, uint256 value) external returns (bool success);
  function balanceOf(address owner) external view returns (uint256 balance);
  function decimals() external view returns (uint8 decimalPlaces);
  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);
  function increaseApproval(address spender, uint256 subtractedValue) external;
  function name() external view returns (string memory tokenName);
  function symbol() external view returns (string memory tokenSymbol);
  function totalSupply() external view returns (uint256 totalTokensIssued);
  function transfer(address to, uint256 value) external returns (bool success);
  function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool success);
  function transferFrom(address from, address to, uint256 value) external returns (bool success);
}

File 19 of 19 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(bytes32 _keyHash, uint256 _userSeed,
    address _requester, uint256 _nonce)
    internal pure returns (uint256)
  {
    return  uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_vrfCoordinator","type":"address"},{"internalType":"address","name":"_link","type":"address"},{"internalType":"bytes32","name":"_keyHash","type":"bytes32"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"address","name":"_owner_","type":"address"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":"_claimer","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_claimersName","type":"string"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"PrizeCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_royaltyRecipient","type":"address"},{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_tokenPaid","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceivedRoyalties","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_UNIQLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_claimersName","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"calculateEthPriceForExactUniqs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkWin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimerOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"collectPrize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllWinners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_claimersName","type":"string"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPriceParameters","outputs":[{"internalType":"uint256[3]","name":"","type":"uint256[3]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"adminProvidedSeed","type":"uint256"}],"name":"getRandomNumber","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arrayKey","type":"uint256"}],"name":"getWinner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWinnersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_potWinner","type":"address"}],"name":"isAlreadyRececeivedPrize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"own","type":"address"},{"internalType":"address","name":"spend","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numUniqlies","type":"uint256"}],"name":"mintUniqly","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomResult","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_tokenPaid","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"receivedRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setBaseURILock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","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":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101206040523480156200001257600080fd5b5060405162004119380380620041198339810160408190526200003591620003c7565b8585838a8a81600090805190602001906200005292919062000251565b5080516200006890600190602084019062000251565b5050600a80546001600160a01b0319166001600160a01b0384169081179091556040519091506000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606092831b811660a052911b16608052856001600160a01b0381166200011c5760405162461bcd60e51b815260206004820152601c6024820152600080516020620040f983398151915260448201526064015b60405180910390fd5b856001600160a01b038116620001645760405162461bcd60e51b815260206004820152601c6024820152600080516020620040f9833981519152604482015260640162000113565b836001600160a01b038116620001ac5760405162461bcd60e51b815260206004820152601c6024820152600080516020620040f9833981519152604482015260640162000113565b836001600160a01b038116620001f45760405162461bcd60e51b815260206004820152601c6024820152600080516020620040f9833981519152604482015260640162000113565b8c601090805190602001906200020c92919062000251565b50505060c0959095525060e09290925250601280546001600160a01b0319166001600160a01b039092169190911790555050620b71b061010052506200050692505050565b8280546200025f90620004b3565b90600052602060002090601f016020900481019282620002835760008555620002ce565b82601f106200029e57805160ff1916838001178555620002ce565b82800160010185558215620002ce579182015b82811115620002ce578251825591602001919060010190620002b1565b50620002dc929150620002e0565b5090565b5b80821115620002dc5760008155600101620002e1565b80516001600160a01b03811681146200030f57600080fd5b919050565b600082601f83011262000325578081fd5b81516001600160401b0380821115620003425762000342620004f0565b604051601f8301601f19908116603f011681019082821181831017156200036d576200036d620004f0565b8160405283815260209250868385880101111562000389578485fd5b8491505b83821015620003ac57858201830151818301840152908201906200038d565b83821115620003bd57848385830101525b9695505050505050565b60008060008060008060008060006101208a8c031215620003e6578485fd5b89516001600160401b0380821115620003fd578687fd5b6200040b8d838e0162000314565b9a5060208c015191508082111562000421578687fd5b6200042f8d838e0162000314565b995060408c015191508082111562000445578687fd5b50620004548c828d0162000314565b9750506200046560608b01620002f7565b95506200047560808b01620002f7565b945060a08a0151935060c08a015192506200049360e08b01620002f7565b9150620004a46101008b01620002f7565b90509295985092959850929598565b600181811c90821680620004c857607f821691505b60208210811415620004ea57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160e05161010051613b8c6200056d6000396000818161044f01526119f301526000818161172c0152611858015260006118370152600081816112f601526126b901526000818161174e015261268a0152613b8c6000f3fe60806040526004361061028c5760003560e01c8063853828b61161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146107d3578063f0c9dc60146107f3578063f0cc3b8514610808578063f2fde38b14610828578063f449619e14610848578063fadd30871461086857610293565b8063b88d4fde146106fd578063c64372861461071d578063c87b56dd1461073d578063cef6d3681461075d578063dbddb26a1461079c578063dc6b8627146107b157610293565b80639e8c708e116101135780639e8c708e1461063b578063a22cb4651461065b578063a2fb11751461067b578063a4db62521461069b578063b37217a4146106bb578063b52ea415146106db57610293565b8063853828b61461059e5780638589ff45146105b35780638da5cb5b146105d357806390fc5d4d146105f157806394985ddd1461060657806395d89b411461062657610293565b80632f745c59116101fe57806355f804b3116101b757806355f804b3146104e75780636352211e1461050757806366c879a91461052757806370a082311461053c578063715018a61461055c5780638462151c1461057157610293565b80632f745c591461041d578063335477fc1461043d5780634129b2c91461047157806342619f661461049157806342842e0e146104a75780634f6ccce7146104c757610293565b80631096952311610250578063109695231461036857806318160ddd146103885780631ee304a01461039d57806323b872dd146103bd578063259944d6146103dd5780632ca40ed8146103fd57610293565b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630b75cef41461034957610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b33660046135f1565b61087b565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108a8565b6040516102c491906138bc565b3480156102fb57600080fd5b5061030f61030a366004613678565b61093b565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004613532565b6109d5565b005b34801561035557600080fd5b50600d545b6040519081526020016102c4565b34801561037457600080fd5b50610347610383366004613645565b610aeb565b34801561039457600080fd5b5060085461035a565b3480156103a957600080fd5b506102e26103b8366004613678565b610b2c565b3480156103c957600080fd5b506103476103d8366004613401565b610bce565b3480156103e957600080fd5b506103476103f83660046136a8565b610bff565b34801561040957600080fd5b506102b86104183660046133ad565b610d20565b34801561042957600080fd5b5061035a610438366004613532565b610d2b565b34801561044957600080fd5b5061035a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047d57600080fd5b5061030f61048c366004613678565b610dc4565b34801561049d57600080fd5b5061035a600c5481565b3480156104b357600080fd5b506103476104c2366004613401565b610e02565b3480156104d357600080fd5b5061035a6104e2366004613678565b610e1d565b3480156104f357600080fd5b50610347610502366004613645565b610ebe565b34801561051357600080fd5b5061030f610522366004613678565b610f59565b34801561053357600080fd5b50610347610fd0565b34801561054857600080fd5b5061035a6105573660046133ad565b611053565b34801561056857600080fd5b506103476110da565b34801561057d57600080fd5b5061059161058c3660046133ad565b61114e565b6040516102c49190613884565b3480156105aa57600080fd5b5061034761122f565b3480156105bf57600080fd5b506103476105ce366004613441565b61127f565b3480156105df57600080fd5b50600a546001600160a01b031661030f565b3480156105fd57600080fd5b5061213461035a565b34801561061257600080fd5b506103476106213660046135d0565b6112eb565b34801561063257600080fd5b506102e261136d565b34801561064757600080fd5b506103476106563660046133ad565b61137c565b34801561066757600080fd5b50610347610676366004613505565b6114ec565b34801561068757600080fd5b5061030f610696366004613678565b6115be565b3480156106a757600080fd5b506102b86106b6366004613678565b6115e8565b3480156106c757600080fd5b5061035a6106d6366004613678565b6115f3565b3480156106e757600080fd5b506106f061187d565b6040516102c49190613853565b34801561070957600080fd5b5061034761071836600461349b565b611892565b34801561072957600080fd5b5061035a61073836600461355d565b6118ca565b34801561074957600080fd5b506102e2610758366004613678565b611900565b34801561076957600080fd5b5061077d610778366004613678565b6119db565b604080516001600160a01b0390931683526020830191909152016102c4565b3480156107a857600080fd5b506102e2611a19565b3480156107bd57600080fd5b506107c6611aa7565b6040516102c49190613806565b3480156107df57600080fd5b506102b86107ee3660046133c9565b611bbf565b3480156107ff57600080fd5b506102e2611c6f565b34801561081457600080fd5b5061035a610823366004613678565b611c7c565b34801561083457600080fd5b506103476108433660046133ad565b611c87565b34801561085457600080fd5b50610347610863366004613678565b611d72565b610347610876366004613678565b611f57565b60006001600160e01b0319821663780e9d6360e01b14806108a057506108a0826120a0565b90505b919050565b6060600080546108b790613a74565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390613a74565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b03166109b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109e082610f59565b9050806001600160a01b0316836001600160a01b03161415610a4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b0565b336001600160a01b0382161480610a6a5750610a6a81336120f0565b610adc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b0565b610ae6838361211e565b505050565b600a546001600160a01b03163314610b155760405162461bcd60e51b81526004016109b090613921565b8051610b2890600f906020840190613273565b5050565b6000818152601160205260409020805460609190610b4990613a74565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7590613a74565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b50505050509050919050565b610bd8338261218c565b610bf45760405162461bcd60e51b81526004016109b090613956565b610ae683838361225b565b33610c0984610f59565b6001600160a01b031614610c5f5760405162461bcd60e51b815260206004820152601a60248201527f596f75206e65656420746f206f776e207468697320746f6b656e00000000000060448201526064016109b0565b610c6b33848484612406565b610cb05760405162461bcd60e51b815260206004820152601660248201527514da59db985d1d5c99481a5cc81b9bdd081d985b1a5960521b60448201526064016109b0565b60008381526011602090815260409091208351610ccf92850190613273565b50610cd9836124ab565b82336001600160a01b03167f58fb02bcfedd338314c70bcf748b4f71a01259cf8956f31b34cb09acf29809cb84604051610d1391906138bc565b60405180910390a3505050565b60006108a082612552565b6000610d3683611053565b8210610d985760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109b0565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b6000600d8281548110610de757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b610ae683838360405180602001604052806000815250611892565b6000610e2860085490565b8210610e8b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109b0565b60088281548110610eac57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ee85760405162461bcd60e51b81526004016109b090613921565b600e5460ff1615610f465760405162461bcd60e51b815260206004820152602260248201527f43616e74207570646174652062617365205552493a204c6f636b20656e61626c604482015261195960f21b60648201526084016109b0565b8051610b28906010906020840190613273565b6000818152600260205260408120546001600160a01b0316806108a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b0565b600a546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016109b090613921565b600e5460ff16156110445760405162461bcd60e51b8152602060048201526014602482015273131bd8dac8185b1c9958591e48195b98589b195960621b60448201526064016109b0565b600e805460ff19166001179055565b60006001600160a01b0382166110be5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109b0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111045760405162461bcd60e51b81526004016109b090613921565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600061115b83611053565b9050806111785750506040805160008152602081019091526108a3565b60008167ffffffffffffffff8111156111a157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156111ca578160200160208202803683370190505b50905060005b8281101561121f576111e28582610d2b565b82828151811061120257634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061121781613aa9565b9150506111d0565b5091506108a39050565b50919050565b600a546001600160a01b031633146112595760405162461bcd60e51b81526004016109b090613921565b60405133904780156108fc02916000818181858888f1935050505061127d57600080fd5b565b82846001600160a01b031661129c600a546001600160a01b031690565b604080516001600160a01b0387811682526020820187905292909216917f096a55ec842afaa98cb78cb0352921e73c0d1caa9136309fa9c07f13f4a39a60910160405180910390a45050505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146113635760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0060448201526064016109b0565b600c819055610b28565b6060600180546108b790613a74565b600a546001600160a01b031633146113a65760405162461bcd60e51b81526004016109b090613921565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156113e857600080fd5b505afa1580156113fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114209190613690565b9050600081116114675760405162461bcd60e51b81526020600482015260126024820152712737ba3434b733903a37903932b1b7bb32b960711b60448201526064016109b0565b816001600160a01b031663a9059cbb611488600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b1580156114d057600080fd5b505af11580156114e4573d6000803e3d6000fd5b505050505050565b6001600160a01b0382163314156115455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b0565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b2911515815260200190565b60405180910390a35050565b600d81815481106115ce57600080fd5b6000918252602090912001546001600160a01b0316905081565b60006108a0826125d0565b600a546000906001600160a01b031633146116205760405162461bcd60e51b81526004016109b090613921565b61213461162c60085490565b101561166f5760405162461bcd60e51b815260206004820152601260248201527114d85b19481b5d5cdd08189948195b99195960721b60448201526064016109b0565b600c54156116bf5760405162461bcd60e51b815260206004820152601f60248201527f52616e646f6d206e756d62657220616c726561647920696e697469617465640060448201526064016109b0565b676f05b59d3b2000004710156117175760405162461bcd60e51b815260206004820152601a60248201527f6d696e2038204554482062616c616e636520726571756972656400000000000060448201526064016109b0565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000000000000000000000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561179857600080fd5b505afa1580156117ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d09190613690565b10156118325760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e74726163742060448201526a1dda5d1a0819985d58d95d60aa1b60648201526084016109b0565b6108a07f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000084612686565b6118856132f3565b61188d612819565b905090565b61189c338361218c565b6118b85760405162461bcd60e51b81526004016109b090613956565b6118c4848484846129b6565b50505050565b60008383836040516020016118e193929190613734565b6040516020818303038152906040528051906020012090509392505050565b6000818152600260205260409020546060906001600160a01b031661197f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109b0565b60006119896129e9565b905060008151116119a957604051806020016040528060008152506119d4565b806119b3846129f8565b6040516020016119c4929190613773565b6040516020818303038152906040525b9392505050565b6000806119f0600a546001600160a01b031690565b937f00000000000000000000000000000000000000000000000000000000000000009350915050565b60108054611a2690613a74565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5290613a74565b8015611a9f5780601f10611a7457610100808354040283529160200191611a9f565b820191906000526020600020905b815481529060010190602001808311611a8257829003601f168201915b505050505081565b600d5460609080611ac8575050604080516000815260208101909152610938565b60008167ffffffffffffffff811115611af157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611b1a578160200160208202803683370190505b50905060005b82811015611bb157600d8181548110611b4957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b0316828281518110611b8757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280611ba981613aa9565b915050611b20565b5091506109389050565b5090565b60125460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611c0c57600080fd5b505afa158015611c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c449190613629565b6001600160a01b03161415611c5d576001915050610dbe565b611c6784846120f0565b949350505050565b600f8054611a2690613a74565b60006108a082612b13565b600a546001600160a01b03163314611cb15760405162461bcd60e51b81526004016109b090613921565b6001600160a01b038116611d165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b33611d7c82610f59565b6001600160a01b031614611dc55760405162461bcd60e51b815260206004820152601060248201526f13dddb995c9cda1a5c081b995959195960821b60448201526064016109b0565b611dce816125d0565b1515600114611e115760405162461bcd60e51b815260206004820152600f60248201526e2cb7ba903234b2103737ba103bb4b760891b60448201526064016109b0565b611e1a33612552565b15611e675760405162461bcd60e51b815260206004820152601860248201527f416c72656164792072656365697665642061207072697a65000000000000000060448201526064016109b0565b600d54600811611eaf5760405162461bcd60e51b8152602060048201526013602482015272141c9a5e99481b1a5b5a5d081c995858da1959606a1b60448201526064016109b0565b600d80546001810182556000919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b031916339081179091556040518281527f79c99597ba23f96ba7d9b4729d81d5de16e368bfe8307fa890457fb7474ec98c9060200160405180910390a26040513390600090670de0b6b3a76400009082818181858883f19350505050158015610b28573d6000803e3d6000fd5b6000611f6282612b13565b905080341015611fa75760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b60448201526064016109b0565b601e8211158015611fb85750600082115b6120145760405162461bcd60e51b815260206004820152602760248201527f596f752063616e20627579206d696e696d756d20312c206d6178696d756d20336044820152663020556e69717360c81b60648201526084016109b0565b600061201f60085490565b905060005b83811015612061576120413361203c846105dc6139a7565b612c30565b8161204b81613aa9565b925050808061205990613aa9565b915050612024565b5034821015610ae657336108fc6120788434613a31565b6040518115909202916000818181858888f193505050501580156118c4573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b14806120d157506001600160e01b03198216635b5e139f60e01b145b806108a057506301ffc9a760e01b6001600160e01b03198316146108a0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215382610f59565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b0565b600061221083610f59565b9050806001600160a01b0316846001600160a01b0316148061224b5750836001600160a01b03166122408461093b565b6001600160a01b0316145b80611c675750611c6781856120f0565b826001600160a01b031661226e82610f59565b6001600160a01b0316146122d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109b0565b6001600160a01b0382166123385760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b0565b612343838383612c4a565b61234e60008261211e565b6001600160a01b0383166000908152600360205260408120805460019290612377908490613a31565b90915550506001600160a01b03821660009081526003602052604081208054600192906123a59084906139a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806124148686866118ca565b9050600061246f826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b9050612483600a546001600160a01b031690565b6001600160a01b03166124968286612d07565b6001600160a01b031614979650505050505050565b60006124b682610f59565b90506124c481600084612c4a565b6124cf60008361211e565b6001600160a01b03811660009081526003602052604081208054600192906124f8908490613a31565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600d5460009081905b808210156125c657836001600160a01b0316600d838154811061258e57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156125b4576001925050506108a3565b816125be81613aa9565b92505061255b565b5060009392505050565b600080600c54116126235760405162461bcd60e51b815260206004820152601860248201527f52616e646f6d206d75737420626520696e69746961746564000000000000000060448201526064016109b0565b600061213483600c54604051602001612646929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c6126699190613ac4565b90506010811161267d5760019150506108a3565b50600092915050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f00000000000000000000000000000000000000000000000000000000000000008587866040516020016126f5929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612722939291906137df565b602060405180830381600087803b15801561273c57600080fd5b505af1158015612750573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061277491906135b4565b506000848152600b602081815260408084205481518084018a905280830188905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938890529190526127d0906001612dcf565b6000868152600b60205260409020556128108582604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b95945050505050565b6128216132f3565b600061282c60085490565b9050600061283c826107cf6139f2565b131561288157604051806060016040528066b1a2bc2ec500008152602001826107cf6128689190613a31565b815260200167011c37937e080000815250915050610938565b600061288f8261176f6139f2565b13156128d557604051806060016040528067011c37937e08000081526020018261176f6128bc9190613a31565b81526020016701aa535d3d0c0000815250915050610938565b60006128e382611f3f6139f2565b13156129295760405180606001604052806701aa535d3d0c0000815260200182611f3f6129109190613a31565b8152602001670354a6ba7a180000815250915050610938565b6000612937826120cf6139f2565b131561297d576040518060600160405280670354a6ba7a1800008152602001826120cf6129649190613a31565b815260200167058d15e176280000815250915050610938565b604051806060016040528067058d15e1762800008152602001826121346129a49190613a31565b81526020016000815250915050610938565b6129c184848461225b565b6129cd84848484612e2e565b6118c45760405162461bcd60e51b81526004016109b0906138cf565b6060601080546108b790613a74565b606081612a1d57506040805180820190915260018152600360fc1b60208201526108a3565b8160005b8115612a475780612a3181613aa9565b9150612a409050600a836139bf565b9150612a21565b60008167ffffffffffffffff811115612a7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a9a576020820181803683370190505b5090505b8415611c6757612aaf600183613a31565b9150612abc600a86613ac4565b612ac79060306139a7565b60f81b818381518110612aea57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612b0c600a866139bf565b9450612a9e565b600080612b1f60085490565b90506121348110612b6b5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b60448201526064016109b0565b612134612b7882856139a7565b1115612bc65760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74206275792074686174206d616e7920746f6b656e730060448201526064016109b0565b6000612bd0612819565b90508381600160200201511115612bf7578051612bee9085906139d3565b925050506108a3565b6020810151612c069085613a31565b6040820151612c1591906139d3565b81516020830151612c2691906139d3565b612bee91906139a7565b610b28828260405180602001604052806000815250612f38565b6001600160a01b038316612ca557612ca081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cc8565b816001600160a01b0316836001600160a01b031614612cc857612cc88382612f6b565b6001600160a01b038216612ce457612cdf81613008565b610ae6565b826001600160a01b0316826001600160a01b031614610ae657610ae682826130e1565b60008151604114612d5a5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e677468000000000000000060448201526064016109b0565b602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa158015612dba573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600080612ddc83856139a7565b9050838110156119d45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109b0565b60006001600160a01b0384163b15612f3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e729033908990889088906004016137a2565b602060405180830381600087803b158015612e8c57600080fd5b505af1925050508015612ebc575060408051601f3d908101601f19168201909252612eb99181019061360d565b60015b612f16573d808015612eea576040519150601f19603f3d011682016040523d82523d6000602084013e612eef565b606091505b508051612f0e5760405162461bcd60e51b81526004016109b0906138cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c67565b506001611c67565b612f428383613125565b612f4f6000848484612e2e565b610ae65760405162461bcd60e51b81526004016109b0906138cf565b60006001612f7884611053565b612f829190613a31565b600083815260076020526040902054909150808214612fd5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061301a90600190613a31565b6000838152600960205260408120546008805493945090928490811061305057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061307f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130c557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006130ec83611053565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661317b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b0565b6000818152600260205260409020546001600160a01b0316156131e05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b0565b6131ec60008383612c4a565b6001600160a01b03821660009081526003602052604081208054600192906132159084906139a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461327f90613a74565b90600052602060002090601f0160209004810192826132a157600085556132e7565b82601f106132ba57805160ff19168380011785556132e7565b828001600101855582156132e7579182015b828111156132e75782518255916020019190600101906132cc565b50611bbb929150613311565b60405180606001604052806003906020820280368337509192915050565b5b80821115611bbb5760008155600101613312565b600082601f830112613336578081fd5b813567ffffffffffffffff8082111561335157613351613b04565b604051601f8301601f19908116603f0116810190828211818310171561337957613379613b04565b81604052838152866020858801011115613391578485fd5b8360208701602083013792830160200193909352509392505050565b6000602082840312156133be578081fd5b81356119d481613b1a565b600080604083850312156133db578081fd5b82356133e681613b1a565b915060208301356133f681613b1a565b809150509250929050565b600080600060608486031215613415578081fd5b833561342081613b1a565b9250602084013561343081613b1a565b929592945050506040919091013590565b600080600080600060a08688031215613458578081fd5b853561346381613b1a565b9450602086013561347381613b1a565b935060408601359250606086013561348a81613b1a565b949793965091946080013592915050565b600080600080608085870312156134b0578384fd5b84356134bb81613b1a565b935060208501356134cb81613b1a565b925060408501359150606085013567ffffffffffffffff8111156134ed578182fd5b6134f987828801613326565b91505092959194509250565b60008060408385031215613517578182fd5b823561352281613b1a565b915060208301356133f681613b32565b60008060408385031215613544578182fd5b823561354f81613b1a565b946020939093013593505050565b600080600060608486031215613571578283fd5b833561357c81613b1a565b925060208401359150604084013567ffffffffffffffff81111561359e578182fd5b6135aa86828701613326565b9150509250925092565b6000602082840312156135c5578081fd5b81516119d481613b32565b600080604083850312156135e2578182fd5b50508035926020909101359150565b600060208284031215613602578081fd5b81356119d481613b40565b60006020828403121561361e578081fd5b81516119d481613b40565b60006020828403121561363a578081fd5b81516119d481613b1a565b600060208284031215613656578081fd5b813567ffffffffffffffff81111561366c578182fd5b611c6784828501613326565b600060208284031215613689578081fd5b5035919050565b6000602082840312156136a1578081fd5b5051919050565b6000806000606084860312156136bc578081fd5b83359250602084013567ffffffffffffffff808211156136da578283fd5b6136e687838801613326565b935060408601359150808211156136fb578283fd5b506135aa86828701613326565b60008151808452613720816020860160208601613a48565b601f01601f19169290920160200192915050565b60006bffffffffffffffffffffffff198560601b1682528360148301528251613764816034850160208701613a48565b91909101603401949350505050565b60008351613785818460208801613a48565b835190830190613799818360208801613a48565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137d590830184613708565b9695505050505050565b600060018060a01b0385168252836020830152606060408301526128106060830184613708565b6020808252825182820181905260009190848201906040850190845b818110156138475783516001600160a01b031683529284019291840191600101613822565b50909695505050505050565b60608101818360005b600381101561387b57815183526020928301929091019060010161385c565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015613847578351835292840192918401916001016138a0565b6000602082526119d46020830184613708565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156139ba576139ba613ad8565b500190565b6000826139ce576139ce613aee565b500490565b60008160001904831182151516156139ed576139ed613ad8565b500290565b60008083128015600160ff1b850184121615613a1057613a10613ad8565b6001600160ff1b0384018313811615613a2b57613a2b613ad8565b50500390565b600082821015613a4357613a43613ad8565b500390565b60005b83811015613a63578181015183820152602001613a4b565b838111156118c45750506000910152565b600181811c90821680613a8857607f821691505b6020821081141561122957634e487b7160e01b600052602260045260246000fd5b6000600019821415613abd57613abd613ad8565b5060010190565b600082613ad357613ad3613aee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114613b2f57600080fd5b50565b8015158114613b2f57600080fd5b6001600160e01b031981168114613b2f57600080fdfea26469706673582212207cd4626a3c5eafc7f19893688b2ff6106932bae038f1976be308e9b2edd86d0264736f6c634300080300335a45524f20616464726573732063616e206e6f74206265207573656400000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000025cc669bbb52f36f723c35cf84b6e6e4364e9edc000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f756e69716c792e6d7970696e6174612e636c6f75642f697066732f516d5a41355a55316944356b5374667a4d6b756246505a5531716948316162794279714633324639614c7875574e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019556e69716c792047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000009554e49514c594f4e450000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063853828b61161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146107d3578063f0c9dc60146107f3578063f0cc3b8514610808578063f2fde38b14610828578063f449619e14610848578063fadd30871461086857610293565b8063b88d4fde146106fd578063c64372861461071d578063c87b56dd1461073d578063cef6d3681461075d578063dbddb26a1461079c578063dc6b8627146107b157610293565b80639e8c708e116101135780639e8c708e1461063b578063a22cb4651461065b578063a2fb11751461067b578063a4db62521461069b578063b37217a4146106bb578063b52ea415146106db57610293565b8063853828b61461059e5780638589ff45146105b35780638da5cb5b146105d357806390fc5d4d146105f157806394985ddd1461060657806395d89b411461062657610293565b80632f745c59116101fe57806355f804b3116101b757806355f804b3146104e75780636352211e1461050757806366c879a91461052757806370a082311461053c578063715018a61461055c5780638462151c1461057157610293565b80632f745c591461041d578063335477fc1461043d5780634129b2c91461047157806342619f661461049157806342842e0e146104a75780634f6ccce7146104c757610293565b80631096952311610250578063109695231461036857806318160ddd146103885780631ee304a01461039d57806323b872dd146103bd578063259944d6146103dd5780632ca40ed8146103fd57610293565b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630b75cef41461034957610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b33660046135f1565b61087b565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108a8565b6040516102c491906138bc565b3480156102fb57600080fd5b5061030f61030a366004613678565b61093b565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004613532565b6109d5565b005b34801561035557600080fd5b50600d545b6040519081526020016102c4565b34801561037457600080fd5b50610347610383366004613645565b610aeb565b34801561039457600080fd5b5060085461035a565b3480156103a957600080fd5b506102e26103b8366004613678565b610b2c565b3480156103c957600080fd5b506103476103d8366004613401565b610bce565b3480156103e957600080fd5b506103476103f83660046136a8565b610bff565b34801561040957600080fd5b506102b86104183660046133ad565b610d20565b34801561042957600080fd5b5061035a610438366004613532565b610d2b565b34801561044957600080fd5b5061035a7f00000000000000000000000000000000000000000000000000000000000b71b081565b34801561047d57600080fd5b5061030f61048c366004613678565b610dc4565b34801561049d57600080fd5b5061035a600c5481565b3480156104b357600080fd5b506103476104c2366004613401565b610e02565b3480156104d357600080fd5b5061035a6104e2366004613678565b610e1d565b3480156104f357600080fd5b50610347610502366004613645565b610ebe565b34801561051357600080fd5b5061030f610522366004613678565b610f59565b34801561053357600080fd5b50610347610fd0565b34801561054857600080fd5b5061035a6105573660046133ad565b611053565b34801561056857600080fd5b506103476110da565b34801561057d57600080fd5b5061059161058c3660046133ad565b61114e565b6040516102c49190613884565b3480156105aa57600080fd5b5061034761122f565b3480156105bf57600080fd5b506103476105ce366004613441565b61127f565b3480156105df57600080fd5b50600a546001600160a01b031661030f565b3480156105fd57600080fd5b5061213461035a565b34801561061257600080fd5b506103476106213660046135d0565b6112eb565b34801561063257600080fd5b506102e261136d565b34801561064757600080fd5b506103476106563660046133ad565b61137c565b34801561066757600080fd5b50610347610676366004613505565b6114ec565b34801561068757600080fd5b5061030f610696366004613678565b6115be565b3480156106a757600080fd5b506102b86106b6366004613678565b6115e8565b3480156106c757600080fd5b5061035a6106d6366004613678565b6115f3565b3480156106e757600080fd5b506106f061187d565b6040516102c49190613853565b34801561070957600080fd5b5061034761071836600461349b565b611892565b34801561072957600080fd5b5061035a61073836600461355d565b6118ca565b34801561074957600080fd5b506102e2610758366004613678565b611900565b34801561076957600080fd5b5061077d610778366004613678565b6119db565b604080516001600160a01b0390931683526020830191909152016102c4565b3480156107a857600080fd5b506102e2611a19565b3480156107bd57600080fd5b506107c6611aa7565b6040516102c49190613806565b3480156107df57600080fd5b506102b86107ee3660046133c9565b611bbf565b3480156107ff57600080fd5b506102e2611c6f565b34801561081457600080fd5b5061035a610823366004613678565b611c7c565b34801561083457600080fd5b506103476108433660046133ad565b611c87565b34801561085457600080fd5b50610347610863366004613678565b611d72565b610347610876366004613678565b611f57565b60006001600160e01b0319821663780e9d6360e01b14806108a057506108a0826120a0565b90505b919050565b6060600080546108b790613a74565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390613a74565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b03166109b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109e082610f59565b9050806001600160a01b0316836001600160a01b03161415610a4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b0565b336001600160a01b0382161480610a6a5750610a6a81336120f0565b610adc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b0565b610ae6838361211e565b505050565b600a546001600160a01b03163314610b155760405162461bcd60e51b81526004016109b090613921565b8051610b2890600f906020840190613273565b5050565b6000818152601160205260409020805460609190610b4990613a74565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7590613a74565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b50505050509050919050565b610bd8338261218c565b610bf45760405162461bcd60e51b81526004016109b090613956565b610ae683838361225b565b33610c0984610f59565b6001600160a01b031614610c5f5760405162461bcd60e51b815260206004820152601a60248201527f596f75206e65656420746f206f776e207468697320746f6b656e00000000000060448201526064016109b0565b610c6b33848484612406565b610cb05760405162461bcd60e51b815260206004820152601660248201527514da59db985d1d5c99481a5cc81b9bdd081d985b1a5960521b60448201526064016109b0565b60008381526011602090815260409091208351610ccf92850190613273565b50610cd9836124ab565b82336001600160a01b03167f58fb02bcfedd338314c70bcf748b4f71a01259cf8956f31b34cb09acf29809cb84604051610d1391906138bc565b60405180910390a3505050565b60006108a082612552565b6000610d3683611053565b8210610d985760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109b0565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b6000600d8281548110610de757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b610ae683838360405180602001604052806000815250611892565b6000610e2860085490565b8210610e8b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109b0565b60088281548110610eac57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ee85760405162461bcd60e51b81526004016109b090613921565b600e5460ff1615610f465760405162461bcd60e51b815260206004820152602260248201527f43616e74207570646174652062617365205552493a204c6f636b20656e61626c604482015261195960f21b60648201526084016109b0565b8051610b28906010906020840190613273565b6000818152600260205260408120546001600160a01b0316806108a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b0565b600a546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016109b090613921565b600e5460ff16156110445760405162461bcd60e51b8152602060048201526014602482015273131bd8dac8185b1c9958591e48195b98589b195960621b60448201526064016109b0565b600e805460ff19166001179055565b60006001600160a01b0382166110be5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109b0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111045760405162461bcd60e51b81526004016109b090613921565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060600061115b83611053565b9050806111785750506040805160008152602081019091526108a3565b60008167ffffffffffffffff8111156111a157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156111ca578160200160208202803683370190505b50905060005b8281101561121f576111e28582610d2b565b82828151811061120257634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061121781613aa9565b9150506111d0565b5091506108a39050565b50919050565b600a546001600160a01b031633146112595760405162461bcd60e51b81526004016109b090613921565b60405133904780156108fc02916000818181858888f1935050505061127d57600080fd5b565b82846001600160a01b031661129c600a546001600160a01b031690565b604080516001600160a01b0387811682526020820187905292909216917f096a55ec842afaa98cb78cb0352921e73c0d1caa9136309fa9c07f13f4a39a60910160405180910390a45050505050565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795216146113635760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0060448201526064016109b0565b600c819055610b28565b6060600180546108b790613a74565b600a546001600160a01b031633146113a65760405162461bcd60e51b81526004016109b090613921565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156113e857600080fd5b505afa1580156113fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114209190613690565b9050600081116114675760405162461bcd60e51b81526020600482015260126024820152712737ba3434b733903a37903932b1b7bb32b960711b60448201526064016109b0565b816001600160a01b031663a9059cbb611488600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b1580156114d057600080fd5b505af11580156114e4573d6000803e3d6000fd5b505050505050565b6001600160a01b0382163314156115455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b0565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b2911515815260200190565b60405180910390a35050565b600d81815481106115ce57600080fd5b6000918252602090912001546001600160a01b0316905081565b60006108a0826125d0565b600a546000906001600160a01b031633146116205760405162461bcd60e51b81526004016109b090613921565b61213461162c60085490565b101561166f5760405162461bcd60e51b815260206004820152601260248201527114d85b19481b5d5cdd08189948195b99195960721b60448201526064016109b0565b600c54156116bf5760405162461bcd60e51b815260206004820152601f60248201527f52616e646f6d206e756d62657220616c726561647920696e697469617465640060448201526064016109b0565b676f05b59d3b2000004710156117175760405162461bcd60e51b815260206004820152601a60248201527f6d696e2038204554482062616c616e636520726571756972656400000000000060448201526064016109b0565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000001bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b15801561179857600080fd5b505afa1580156117ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d09190613690565b10156118325760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e74726163742060448201526a1dda5d1a0819985d58d95d60aa1b60648201526084016109b0565b6108a07faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4457f0000000000000000000000000000000000000000000000001bc16d674ec8000084612686565b6118856132f3565b61188d612819565b905090565b61189c338361218c565b6118b85760405162461bcd60e51b81526004016109b090613956565b6118c4848484846129b6565b50505050565b60008383836040516020016118e193929190613734565b6040516020818303038152906040528051906020012090509392505050565b6000818152600260205260409020546060906001600160a01b031661197f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109b0565b60006119896129e9565b905060008151116119a957604051806020016040528060008152506119d4565b806119b3846129f8565b6040516020016119c4929190613773565b6040516020818303038152906040525b9392505050565b6000806119f0600a546001600160a01b031690565b937f00000000000000000000000000000000000000000000000000000000000b71b09350915050565b60108054611a2690613a74565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5290613a74565b8015611a9f5780601f10611a7457610100808354040283529160200191611a9f565b820191906000526020600020905b815481529060010190602001808311611a8257829003601f168201915b505050505081565b600d5460609080611ac8575050604080516000815260208101909152610938565b60008167ffffffffffffffff811115611af157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611b1a578160200160208202803683370190505b50905060005b82811015611bb157600d8181548110611b4957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b0316828281518110611b8757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015280611ba981613aa9565b915050611b20565b5091506109389050565b5090565b60125460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611c0c57600080fd5b505afa158015611c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c449190613629565b6001600160a01b03161415611c5d576001915050610dbe565b611c6784846120f0565b949350505050565b600f8054611a2690613a74565b60006108a082612b13565b600a546001600160a01b03163314611cb15760405162461bcd60e51b81526004016109b090613921565b6001600160a01b038116611d165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b33611d7c82610f59565b6001600160a01b031614611dc55760405162461bcd60e51b815260206004820152601060248201526f13dddb995c9cda1a5c081b995959195960821b60448201526064016109b0565b611dce816125d0565b1515600114611e115760405162461bcd60e51b815260206004820152600f60248201526e2cb7ba903234b2103737ba103bb4b760891b60448201526064016109b0565b611e1a33612552565b15611e675760405162461bcd60e51b815260206004820152601860248201527f416c72656164792072656365697665642061207072697a65000000000000000060448201526064016109b0565b600d54600811611eaf5760405162461bcd60e51b8152602060048201526013602482015272141c9a5e99481b1a5b5a5d081c995858da1959606a1b60448201526064016109b0565b600d80546001810182556000919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b031916339081179091556040518281527f79c99597ba23f96ba7d9b4729d81d5de16e368bfe8307fa890457fb7474ec98c9060200160405180910390a26040513390600090670de0b6b3a76400009082818181858883f19350505050158015610b28573d6000803e3d6000fd5b6000611f6282612b13565b905080341015611fa75760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b60448201526064016109b0565b601e8211158015611fb85750600082115b6120145760405162461bcd60e51b815260206004820152602760248201527f596f752063616e20627579206d696e696d756d20312c206d6178696d756d20336044820152663020556e69717360c81b60648201526084016109b0565b600061201f60085490565b905060005b83811015612061576120413361203c846105dc6139a7565b612c30565b8161204b81613aa9565b925050808061205990613aa9565b915050612024565b5034821015610ae657336108fc6120788434613a31565b6040518115909202916000818181858888f193505050501580156118c4573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b14806120d157506001600160e01b03198216635b5e139f60e01b145b806108a057506301ffc9a760e01b6001600160e01b03198316146108a0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215382610f59565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b0565b600061221083610f59565b9050806001600160a01b0316846001600160a01b0316148061224b5750836001600160a01b03166122408461093b565b6001600160a01b0316145b80611c675750611c6781856120f0565b826001600160a01b031661226e82610f59565b6001600160a01b0316146122d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109b0565b6001600160a01b0382166123385760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b0565b612343838383612c4a565b61234e60008261211e565b6001600160a01b0383166000908152600360205260408120805460019290612377908490613a31565b90915550506001600160a01b03821660009081526003602052604081208054600192906123a59084906139a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806124148686866118ca565b9050600061246f826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b9050612483600a546001600160a01b031690565b6001600160a01b03166124968286612d07565b6001600160a01b031614979650505050505050565b60006124b682610f59565b90506124c481600084612c4a565b6124cf60008361211e565b6001600160a01b03811660009081526003602052604081208054600192906124f8908490613a31565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600d5460009081905b808210156125c657836001600160a01b0316600d838154811061258e57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156125b4576001925050506108a3565b816125be81613aa9565b92505061255b565b5060009392505050565b600080600c54116126235760405162461bcd60e51b815260206004820152601860248201527f52616e646f6d206d75737420626520696e69746961746564000000000000000060448201526064016109b0565b600061213483600c54604051602001612646929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c6126699190613ac4565b90506010811161267d5760019150506108a3565b50600092915050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79528587866040516020016126f5929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612722939291906137df565b602060405180830381600087803b15801561273c57600080fd5b505af1158015612750573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061277491906135b4565b506000848152600b602081815260408084205481518084018a905280830188905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938890529190526127d0906001612dcf565b6000868152600b60205260409020556128108582604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b95945050505050565b6128216132f3565b600061282c60085490565b9050600061283c826107cf6139f2565b131561288157604051806060016040528066b1a2bc2ec500008152602001826107cf6128689190613a31565b815260200167011c37937e080000815250915050610938565b600061288f8261176f6139f2565b13156128d557604051806060016040528067011c37937e08000081526020018261176f6128bc9190613a31565b81526020016701aa535d3d0c0000815250915050610938565b60006128e382611f3f6139f2565b13156129295760405180606001604052806701aa535d3d0c0000815260200182611f3f6129109190613a31565b8152602001670354a6ba7a180000815250915050610938565b6000612937826120cf6139f2565b131561297d576040518060600160405280670354a6ba7a1800008152602001826120cf6129649190613a31565b815260200167058d15e176280000815250915050610938565b604051806060016040528067058d15e1762800008152602001826121346129a49190613a31565b81526020016000815250915050610938565b6129c184848461225b565b6129cd84848484612e2e565b6118c45760405162461bcd60e51b81526004016109b0906138cf565b6060601080546108b790613a74565b606081612a1d57506040805180820190915260018152600360fc1b60208201526108a3565b8160005b8115612a475780612a3181613aa9565b9150612a409050600a836139bf565b9150612a21565b60008167ffffffffffffffff811115612a7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a9a576020820181803683370190505b5090505b8415611c6757612aaf600183613a31565b9150612abc600a86613ac4565b612ac79060306139a7565b60f81b818381518110612aea57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612b0c600a866139bf565b9450612a9e565b600080612b1f60085490565b90506121348110612b6b5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b60448201526064016109b0565b612134612b7882856139a7565b1115612bc65760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74206275792074686174206d616e7920746f6b656e730060448201526064016109b0565b6000612bd0612819565b90508381600160200201511115612bf7578051612bee9085906139d3565b925050506108a3565b6020810151612c069085613a31565b6040820151612c1591906139d3565b81516020830151612c2691906139d3565b612bee91906139a7565b610b28828260405180602001604052806000815250612f38565b6001600160a01b038316612ca557612ca081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cc8565b816001600160a01b0316836001600160a01b031614612cc857612cc88382612f6b565b6001600160a01b038216612ce457612cdf81613008565b610ae6565b826001600160a01b0316826001600160a01b031614610ae657610ae682826130e1565b60008151604114612d5a5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e677468000000000000000060448201526064016109b0565b602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa158015612dba573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600080612ddc83856139a7565b9050838110156119d45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109b0565b60006001600160a01b0384163b15612f3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e729033908990889088906004016137a2565b602060405180830381600087803b158015612e8c57600080fd5b505af1925050508015612ebc575060408051601f3d908101601f19168201909252612eb99181019061360d565b60015b612f16573d808015612eea576040519150601f19603f3d011682016040523d82523d6000602084013e612eef565b606091505b508051612f0e5760405162461bcd60e51b81526004016109b0906138cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c67565b506001611c67565b612f428383613125565b612f4f6000848484612e2e565b610ae65760405162461bcd60e51b81526004016109b0906138cf565b60006001612f7884611053565b612f829190613a31565b600083815260076020526040902054909150808214612fd5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061301a90600190613a31565b6000838152600960205260408120546008805493945090928490811061305057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061307f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130c557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006130ec83611053565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661317b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b0565b6000818152600260205260409020546001600160a01b0316156131e05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b0565b6131ec60008383612c4a565b6001600160a01b03821660009081526003602052604081208054600192906132159084906139a7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461327f90613a74565b90600052602060002090601f0160209004810192826132a157600085556132e7565b82601f106132ba57805160ff19168380011785556132e7565b828001600101855582156132e7579182015b828111156132e75782518255916020019190600101906132cc565b50611bbb929150613311565b60405180606001604052806003906020820280368337509192915050565b5b80821115611bbb5760008155600101613312565b600082601f830112613336578081fd5b813567ffffffffffffffff8082111561335157613351613b04565b604051601f8301601f19908116603f0116810190828211818310171561337957613379613b04565b81604052838152866020858801011115613391578485fd5b8360208701602083013792830160200193909352509392505050565b6000602082840312156133be578081fd5b81356119d481613b1a565b600080604083850312156133db578081fd5b82356133e681613b1a565b915060208301356133f681613b1a565b809150509250929050565b600080600060608486031215613415578081fd5b833561342081613b1a565b9250602084013561343081613b1a565b929592945050506040919091013590565b600080600080600060a08688031215613458578081fd5b853561346381613b1a565b9450602086013561347381613b1a565b935060408601359250606086013561348a81613b1a565b949793965091946080013592915050565b600080600080608085870312156134b0578384fd5b84356134bb81613b1a565b935060208501356134cb81613b1a565b925060408501359150606085013567ffffffffffffffff8111156134ed578182fd5b6134f987828801613326565b91505092959194509250565b60008060408385031215613517578182fd5b823561352281613b1a565b915060208301356133f681613b32565b60008060408385031215613544578182fd5b823561354f81613b1a565b946020939093013593505050565b600080600060608486031215613571578283fd5b833561357c81613b1a565b925060208401359150604084013567ffffffffffffffff81111561359e578182fd5b6135aa86828701613326565b9150509250925092565b6000602082840312156135c5578081fd5b81516119d481613b32565b600080604083850312156135e2578182fd5b50508035926020909101359150565b600060208284031215613602578081fd5b81356119d481613b40565b60006020828403121561361e578081fd5b81516119d481613b40565b60006020828403121561363a578081fd5b81516119d481613b1a565b600060208284031215613656578081fd5b813567ffffffffffffffff81111561366c578182fd5b611c6784828501613326565b600060208284031215613689578081fd5b5035919050565b6000602082840312156136a1578081fd5b5051919050565b6000806000606084860312156136bc578081fd5b83359250602084013567ffffffffffffffff808211156136da578283fd5b6136e687838801613326565b935060408601359150808211156136fb578283fd5b506135aa86828701613326565b60008151808452613720816020860160208601613a48565b601f01601f19169290920160200192915050565b60006bffffffffffffffffffffffff198560601b1682528360148301528251613764816034850160208701613a48565b91909101603401949350505050565b60008351613785818460208801613a48565b835190830190613799818360208801613a48565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137d590830184613708565b9695505050505050565b600060018060a01b0385168252836020830152606060408301526128106060830184613708565b6020808252825182820181905260009190848201906040850190845b818110156138475783516001600160a01b031683529284019291840191600101613822565b50909695505050505050565b60608101818360005b600381101561387b57815183526020928301929091019060010161385c565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015613847578351835292840192918401916001016138a0565b6000602082526119d46020830184613708565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156139ba576139ba613ad8565b500190565b6000826139ce576139ce613aee565b500490565b60008160001904831182151516156139ed576139ed613ad8565b500290565b60008083128015600160ff1b850184121615613a1057613a10613ad8565b6001600160ff1b0384018313811615613a2b57613a2b613ad8565b50500390565b600082821015613a4357613a43613ad8565b500390565b60005b83811015613a63578181015183820152602001613a4b565b838111156118c45750506000910152565b600181811c90821680613a8857607f821691505b6020821081141561122957634e487b7160e01b600052602260045260246000fd5b6000600019821415613abd57613abd613ad8565b5060010190565b600082613ad357613ad3613aee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114613b2f57600080fd5b50565b8015158114613b2f57600080fd5b6001600160e01b031981168114613b2f57600080fdfea26469706673582212207cd4626a3c5eafc7f19893688b2ff6106932bae038f1976be308e9b2edd86d0264736f6c63430008030033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000025cc669bbb52f36f723c35cf84b6e6e4364e9edc000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f756e69716c792e6d7970696e6174612e636c6f75642f697066732f516d5a41355a55316944356b5374667a4d6b756246505a5531716948316162794279714633324639614c7875574e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019556e69716c792047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000009554e49514c594f4e450000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://uniqly.mypinata.cloud/ipfs/QmZA5ZU1iD5kStfzMkubFPZU1qiH1abyByqF32F9aLxuWN/
Arg [1] : _name (string): Uniqly Genesis Collection
Arg [2] : _symbol (string): UNIQLYONE
Arg [3] : _vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [4] : _link (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [5] : _keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [6] : _fee (uint256): 2000000000000000000
Arg [7] : _owner_ (address): 0x25cC669bbb52F36f723c35CF84b6E6E4364E9EDc
Arg [8] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [3] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [4] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [5] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [6] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [7] : 00000000000000000000000025cc669bbb52f36f723c35cf84b6e6e4364e9edc
Arg [8] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [10] : 68747470733a2f2f756e69716c792e6d7970696e6174612e636c6f75642f6970
Arg [11] : 66732f516d5a41355a55316944356b5374667a4d6b756246505a553171694831
Arg [12] : 6162794279714633324639614c7875574e2f0000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [14] : 556e69716c792047656e6573697320436f6c6c656374696f6e00000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [16] : 554e49514c594f4e450000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

225:12157:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:1;;;;;;;;;;-1:-1:-1;909:234:1;;;;;:::i;:::-;;:::i;:::-;;;12699:14:19;;12692:22;12674:41;;12662:2;12647:18;909:234:1;;;;;;;;2611:98:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4158:295::-;;;;;;;;;;-1:-1:-1;4158:295:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9523:32:19;;;9505:51;;9493:2;9478:18;4158:295:0;9460:102:19;3673:424:0;;;;;;;;;;-1:-1:-1;3673:424:0;;;;;:::i;:::-;;:::i;:::-;;4808:97:6;;;;;;;;;;-1:-1:-1;4884:7:6;:14;4808:97;;;12872:25:19;;;12860:2;12845:18;4808:97:6;12827:76:19;10522:116:6;;;;;;;;;;-1:-1:-1;10522:116:6;;;;;:::i;:::-;;:::i;1546:111:1:-;;;;;;;;;;-1:-1:-1;1633:10:1;:17;1546:111;;6484:115:6;;;;;;;;;;-1:-1:-1;6484:115:6;;;;;:::i;:::-;;:::i;5172:364:0:-;;;;;;;;;;-1:-1:-1;5172:364:0;;;;;:::i;:::-;;:::i;6958:481:6:-;;;;;;;;;;-1:-1:-1;6958:481:6;;;;;:::i;:::-;;:::i;3134:174::-;;;;;;;;;;-1:-1:-1;3134:174:6;;;;;:::i;:::-;;:::i;1222:253:1:-;;;;;;;;;;-1:-1:-1;1222:253:1;;;;;:::i;:::-;;:::i;833:36:6:-;;;;;;;;;;;;;;;4690:112;;;;;;;;;;-1:-1:-1;4690:112:6;;;;;:::i;:::-;;:::i;450:27::-;;;;;;;;;;;;;;;;5602:179:0;;;;;;;;;;-1:-1:-1;5602:179:0;;;;;:::i;:::-;;:::i;1729:230:1:-;;;;;;;;;;-1:-1:-1;1729:230:1;;;;;:::i;:::-;;:::i;10644:166:6:-;;;;;;;;;;-1:-1:-1;10644:166:6;;;;;:::i;:::-;;:::i;2236:313:0:-;;;;;;;;;;-1:-1:-1;2236:313:0;;;;;:::i;:::-;;:::i;2399:135:6:-;;;;;;;;;;;;;:::i;1896:283:0:-;;;;;;;;;;-1:-1:-1;1896:283:0;;;;;:::i;:::-;;:::i;1644:145:17:-;;;;;;;;;;;;;:::i;7539:555:6:-;;;;;;;;;;-1:-1:-1;7539:555:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10816:115::-;;;;;;;;;;;;;:::i;11478:258::-;;;;;;;;;;-1:-1:-1;11478:258:6;;;;;:::i;:::-;;:::i;1012:85:17:-;;;;;;;;;;-1:-1:-1;1084:6:17;;-1:-1:-1;;;;;1084:6:17;1012:85;;536:88:6;;;;;;;;;;-1:-1:-1;344:4:6;536:88;;9243:207:9;;;;;;;;;;-1:-1:-1;9243:207:9;;;;;:::i;:::-;;:::i;2773:102:0:-;;;;;;;;;;;;;:::i;10937:278:6:-;;;;;;;;;;-1:-1:-1;10937:278:6;;;;;:::i;:::-;;:::i;4520:318:0:-;;;;;;;;;;-1:-1:-1;4520:318:0;;;;;:::i;:::-;;:::i;483:24:6:-;;;;;;;;;;-1:-1:-1;483:24:6;;;;;:::i;:::-;;:::i;2721:108::-;;;;;;;;;;-1:-1:-1;2721:108:6;;;;;:::i;:::-;;:::i;1812:581::-;;;;;;;;;;-1:-1:-1;1812:581:6;;;;;:::i;:::-;;:::i;8214:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5847:354:0:-;;;;;;;;;;-1:-1:-1;5847:354:0;;;;;:::i;:::-;;:::i;4911:253:6:-;;;;;;;;;;-1:-1:-1;4911:253:6;;;;;:::i;:::-;;:::i;2941:451:0:-;;;;;;;;;;-1:-1:-1;2941:451:0;;;;;:::i;:::-;;:::i;11294:178:6:-;;;;;;;;;;-1:-1:-1;11294:178:6;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10252:32:19;;;10234:51;;10316:2;10301:18;;10294:34;;;;10207:18;11294:178:6;10189:145:19;804:22:6;;;;;;;;;;;;;:::i;4223:461::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11919:417::-;;;;;;;;;;-1:-1:-1;11919:417:6;;;;;:::i;:::-;;:::i;760:38::-;;;;;;;;;;;;;:::i;9639:166::-;;;;;;;;;;-1:-1:-1;9639:166:6;;;;;:::i;:::-;;:::i;1938:274:17:-;;;;;;;;;;-1:-1:-1;1938:274:17;;;;;:::i;:::-;;:::i;3707:510:6:-;;;;;;;;;;-1:-1:-1;3707:510:6;;;;;:::i;:::-;;:::i;9838:678::-;;;;;;:::i;:::-;;:::i;909:234:1:-;1011:4;-1:-1:-1;;;;;;1034:50:1;;-1:-1:-1;;;1034:50:1;;:102;;;1100:36;1124:11;1100:23;:36::i;:::-;1027:109;;909:234;;;;:::o;2611:98:0:-;2665:13;2697:5;2690:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2611:98;;:::o;4158:295::-;4274:7;7802:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7802:16:0;4297:107;;;;-1:-1:-1;;;4297:107:0;;22334:2:19;4297:107:0;;;22316:21:19;22373:2;22353:18;;;22346:30;22412:34;22392:18;;;22385:62;-1:-1:-1;;;22463:18:19;;;22456:42;22515:19;;4297:107:0;;;;;;;;;-1:-1:-1;4422:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4422:24:0;;4158:295::o;3673:424::-;3753:13;3769:23;3784:7;3769:14;:23::i;:::-;3753:39;;3816:5;-1:-1:-1;;;;;3810:11:0;:2;-1:-1:-1;;;;;3810:11:0;;;3802:57;;;;-1:-1:-1;;;3802:57:0;;25406:2:19;3802:57:0;;;25388:21:19;25445:2;25425:18;;;25418:30;25484:34;25464:18;;;25457:62;-1:-1:-1;;;25535:18:19;;;25528:31;25576:19;;3802:57:0;25378:223:19;3802:57:0;665:10:12;-1:-1:-1;;;;;3891:21:0;;;;:85;;-1:-1:-1;3932:44:0;3956:5;665:10:12;3932:23:0;:44::i;:::-;3870:188;;;;-1:-1:-1;;;3870:188:0;;20379:2:19;3870:188:0;;;20361:21:19;20418:2;20398:18;;;20391:30;20457:34;20437:18;;;20430:62;20528:26;20508:18;;;20501:54;20572:19;;3870:188:0;20351:246:19;3870:188:0;4069:21;4078:2;4082:7;4069:8;:21::i;:::-;3673:424;;;:::o;10522:116:6:-;1084:6:17;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;10599:32:6;;::::1;::::0;:24:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;10522:116:::0;:::o;6484:115::-;6575:17;;;;:8;:17;;;;;6568:24;;6543:13;;6575:17;6568:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6484:115;;;:::o;5172:364:0:-;5374:41;665:10:12;5407:7:0;5374:18;:41::i;:::-;5353:137;;;;-1:-1:-1;;;5353:137:0;;;;;;;:::i;:::-;5501:28;5511:4;5517:2;5521:7;5501:9;:28::i;6958:481:6:-;7122:10;7101:17;7109:8;7101:7;:17::i;:::-;-1:-1:-1;;;;;7101:31:6;;7093:70;;;;-1:-1:-1;;;7093:70:6;;27345:2:19;7093:70:6;;;27327:21:19;27384:2;27364:18;;;27357:30;27423:28;27403:18;;;27396:56;27469:18;;7093:70:6;27317:176:19;7093:70:6;7194:64;7210:10;7222:8;7232:13;7247:10;7194:15;:64::i;:::-;7173:133;;;;-1:-1:-1;;;7173:133:6;;19270:2:19;7173:133:6;;;19252:21:19;19309:2;19289:18;;;19282:30;-1:-1:-1;;;19328:18:19;;;19321:52;19390:18;;7173:133:6;19242:172:19;7173:133:6;7316:18;;;;:8;:18;;;;;;;;:34;;;;;;;;:::i;:::-;;7360:15;7366:8;7360:5;:15::i;:::-;7408:8;7396:10;-1:-1:-1;;;;;7390:42:6;;7418:13;7390:42;;;;;;:::i;:::-;;;;;;;;6958:481;;;:::o;3134:174::-;3235:4;3263:37;3289:10;3263:25;:37::i;1222:253:1:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;-1:-1:-1;;;1338:87:1;;15104:2:19;1338:87:1;;;15086:21:19;15143:2;15123:18;;;15116:30;15182:34;15162:18;;;15155:62;-1:-1:-1;;;15233:18:19;;;15226:41;15284:19;;1338:87:1;15076:233:19;1338:87:1;-1:-1:-1;;;;;;1442:19:1;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1222:253;;;;;:::o;4690:112:6:-;4751:7;4777;4785:9;4777:18;;;;;;-1:-1:-1;;;4777:18:6;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4777:18:6;;4690:112;-1:-1:-1;;4690:112:6:o;5602:179:0:-;5735:39;5752:4;5758:2;5762:7;5735:39;;;;;;;;;;;;:16;:39::i;1729:230:1:-;1804:7;1839:30;1633:10;:17;1546:111;;1839:30;1831:5;:38;1823:95;;;;-1:-1:-1;;;1823:95:1;;27700:2:19;1823:95:1;;;27682:21:19;27739:2;27719:18;;;27712:30;27778:34;27758:18;;;27751:62;-1:-1:-1;;;27829:18:19;;;27822:42;27881:19;;1823:95:1;27672:234:19;1823:95:1;1935:10;1946:5;1935:17;;;;;;-1:-1:-1;;;1935:17:1;;;;;;;;;;;;;;;;;1928:24;;1729:230;;;:::o;10644:166:6:-;1084:6:17;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;10725:11:6::1;::::0;::::1;;10724:12;10716:59;;;::::0;-1:-1:-1;;;10716:59:6;;22747:2:19;10716:59:6::1;::::0;::::1;22729:21:19::0;22786:2;22766:18;;;22759:30;22825:34;22805:18;;;22798:62;-1:-1:-1;;;22876:18:19;;;22869:32;22918:19;;10716:59:6::1;22719:224:19::0;10716:59:6::1;10785:18:::0;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;2236:313:0:-:0;2348:7;2387:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2387:16:0;2434:19;2413:107;;;;-1:-1:-1;;;2413:107:0;;21215:2:19;2413:107:0;;;21197:21:19;21254:2;21234:18;;;21227:30;21293:34;21273:18;;;21266:62;-1:-1:-1;;;21344:18:19;;;21337:39;21393:19;;2413:107:0;21187:231:19;2399:135:6;1084:6:17;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;2463:11:6::1;::::0;::::1;;2462:12;2454:45;;;::::0;-1:-1:-1;;;2454:45:6;;24697:2:19;2454:45:6::1;::::0;::::1;24679:21:19::0;24736:2;24716:18;;;24709:30;-1:-1:-1;;;24755:18:19;;;24748:50;24815:18;;2454:45:6::1;24669:170:19::0;2454:45:6::1;2509:11;:18:::0;;-1:-1:-1;;2509:18:6::1;2523:4;2509:18;::::0;;2399:135::o;1896:283:0:-;2008:7;-1:-1:-1;;;;;2052:19:0;;2031:108;;;;-1:-1:-1;;;2031:108:0;;20804:2:19;2031:108:0;;;20786:21:19;20843:2;20823:18;;;20816:30;20882:34;20862:18;;;20855:62;-1:-1:-1;;;20933:18:19;;;20926:40;20983:19;;2031:108:0;20776:232:19;2031:108:0;-1:-1:-1;;;;;;2156:16:0;;;;;:9;:16;;;;;;;1896:283::o;1644:145:17:-;1084:6;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;1734:6:::1;::::0;1713:40:::1;::::0;1750:1:::1;::::0;-1:-1:-1;;;;;1734:6:17::1;::::0;1713:40:::1;::::0;1750:1;;1713:40:::1;1763:6;:19:::0;;-1:-1:-1;;;;;;1763:19:17::1;::::0;;1644:145::o;7539:555:6:-;7625:16;7657:18;7678:17;7688:6;7678:9;:17::i;:::-;7657:38;-1:-1:-1;7709:15:6;7705:383;;-1:-1:-1;;7784:16:6;;;7798:1;7784:16;;;;;;;;7777:23;;7705:383;7831:23;7871:10;7857:25;;;;;;-1:-1:-1;;;7857:25:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7857:25:6;;7831:51;;7896:13;7923:128;7947:10;7939:5;:18;7923:128;;;8002:34;8022:6;8030:5;8002:19;:34::i;:::-;7986:6;7993:5;7986:13;;;;;;-1:-1:-1;;;7986:13:6;;;;;;;;;;;;;;;;;;:50;7959:7;;;;:::i;:::-;;;;7923:128;;;-1:-1:-1;8071:6:6;-1:-1:-1;8064:13:6;;-1:-1:-1;8064:13:6;7705:383;7539:555;;;;:::o;10816:115::-;1084:6:17;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;10876:47:6::1;::::0;10884:10:::1;::::0;10901:21:::1;10876:47:::0;::::1;;;::::0;::::1;::::0;;;10901:21;10884:10;10876:47;::::1;;;;;;10868:56;;;::::0;::::1;;10816:115::o:0;11478:258::-;11699:8;11691:6;-1:-1:-1;;;;;11664:65:6;11682:7;1084:6:17;;-1:-1:-1;;;;;1084:6:17;1012:85;;11682:7:6;11664:65;;;-1:-1:-1;;;;;10252:32:19;;;10234:51;;10316:2;10301:18;;10294:34;;;11664:65:6;;;;;;;10207:18:19;11664:65:6;;;;;;;11478:258;;;;;:::o;9243:207:9:-;9335:10;-1:-1:-1;;;;;9349:14:9;9335:28;;9327:72;;;;-1:-1:-1;;;9327:72:9;;25046:2:19;9327:72:9;;;25028:21:19;25085:2;25065:18;;;25058:30;25124:33;25104:18;;;25097:61;25175:18;;9327:72:9;25018:181:19;9327:72:9;2648:12:6;:25;;;9405:40:9;2564:116:6;2773:102:0;2829:13;2861:7;2854:14;;;;;:::i;10937:278:6:-;1084:6:17;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;11017:38:6::1;::::0;-1:-1:-1;;;11017:38:6;;11049:4:::1;11017:38;::::0;::::1;9505:51:19::0;11003:11:6::1;::::0;-1:-1:-1;;;;;11017:23:6;::::1;::::0;::::1;::::0;9478:18:19;;11017:38:6::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11003:52;;11079:1;11073:3;:7;11065:38;;;::::0;-1:-1:-1;;;11065:38:6;;14412:2:19;11065:38:6::1;::::0;::::1;14394:21:19::0;14451:2;14431:18;;;14424:30;-1:-1:-1;;;14470:18:19;;;14463:48;14528:18;;11065:38:6::1;14384:168:19::0;11065:38:6::1;11179:5;-1:-1:-1::0;;;;;11172:22:6::1;;11195:7;1084:6:17::0;;-1:-1:-1;;;;;1084:6:17;1012:85;;11195:7:6::1;11172:36;::::0;-1:-1:-1;;;;;;11172:36:6::1;::::0;;;;;;-1:-1:-1;;;;;10252:32:19;;;11172:36:6::1;::::0;::::1;10234:51:19::0;10301:18;;;10294:34;;;10207:18;;11172:36:6::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;1294:1:17;10937:278:6::0;:::o;4520:318:0:-;-1:-1:-1;;;;;4650:24:0;;665:10:12;4650:24:0;;4642:62;;;;-1:-1:-1;;;4642:62:0;;17813:2:19;4642:62:0;;;17795:21:19;17852:2;17832:18;;;17825:30;17891:27;17871:18;;;17864:55;17936:18;;4642:62:0;17785:175:19;4642:62:0;665:10:12;4715:32:0;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4715:42:0;;;;;;;;;;:53;;-1:-1:-1;;4715:53:0;;;;;;;:42;-1:-1:-1;;;;;4783:48:0;;4822:8;4783:48;;;;12699:14:19;12692:22;12674:41;;12662:2;12647:18;;12629:92;4783:48:0;;;;;;;;4520:318;;:::o;483:24:6:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;483:24:6;;-1:-1:-1;483:24:6;:::o;2721:108::-;2780:4;2803:19;2813:8;2803:9;:19::i;1812:581::-;1084:6:17;;1916:7:6;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;344:4:6::1;1947:13;1633:10:1::0;:17;1546:111;;1947:13:6::1;:27;;1939:58;;;::::0;-1:-1:-1;;;1939:58:6;;18923:2:19;1939:58:6::1;::::0;::::1;18905:21:19::0;18962:2;18942:18;;;18935:30;-1:-1:-1;;;18981:18:19;;;18974:48;19039:18;;1939:58:6::1;18895:168:19::0;1939:58:6::1;2015:12;::::0;:17;2007:61:::1;;;::::0;-1:-1:-1;;;2007:61:6;;24337:2:19;2007:61:6::1;::::0;::::1;24319:21:19::0;24376:2;24356:18;;;24349:30;24415:33;24395:18;;;24388:61;24466:18;;2007:61:6::1;24309:181:19::0;2007:61:6::1;2124:7;2099:21;:32;;2078:105;;;::::0;-1:-1:-1;;;2078:105:6;;28819:2:19;2078:105:6::1;::::0;::::1;28801:21:19::0;28858:2;28838:18;;;28831:30;28897:28;28877:18;;;28870:56;28943:18;;2078:105:6::1;28791:176:19::0;2078:105:6::1;2214:29;::::0;-1:-1:-1;;;2214:29:6;;2237:4:::1;2214:29;::::0;::::1;9505:51:19::0;2247:3:6::1;::::0;2214:4:::1;-1:-1:-1::0;;;;;2214:14:6::1;::::0;::::1;::::0;9478:18:19;;2214:29:6::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;2193:126;;;::::0;-1:-1:-1;;;2193:126:6;;18167:2:19;2193:126:6::1;::::0;::::1;18149:21:19::0;18206:2;18186:18;;;18179:30;18245:34;18225:18;;;18218:62;-1:-1:-1;;;18296:18:19;;;18289:41;18347:19;;2193:126:6::1;18139:233:19::0;2193:126:6::1;2336:50;2354:7;2363:3;2368:17;2336;:50::i;8214:113::-:0;8267:17;;:::i;:::-;8303;:15;:17::i;:::-;8296:24;;8214:113;:::o;5847:354:0:-;6029:41;665:10:12;6062:7:0;6029:18;:41::i;:::-;6008:137;;;;-1:-1:-1;;;6008:137:0;;;;;;;:::i;:::-;6155:39;6169:4;6175:2;6179:7;6188:5;6155:13;:39::i;:::-;5847:354;;;;:::o;4911:253:6:-;5054:7;5119:11;5132:8;5142:13;5102:54;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5092:65;;;;;;5073:84;;4911:253;;;;;:::o;2941:451:0:-;7779:4;7802:16;;;:7;:16;;;;;;3054:13;;-1:-1:-1;;;;;7802:16:0;3083:110;;;;-1:-1:-1;;;3083:110:0;;23921:2:19;3083:110:0;;;23903:21:19;23960:2;23940:18;;;23933:30;23999:34;23979:18;;;23972:62;-1:-1:-1;;;24050:18:19;;;24043:45;24105:19;;3083:110:0;23893:237:19;3083:110:0;3204:21;3228:10;:8;:10::i;:::-;3204:34;;3291:1;3273:7;3267:21;:25;:118;;;;;;;;;;;;;;;;;3335:7;3344:18;:7;:16;:18::i;:::-;3318:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3267:118;3248:137;2941:451;-1:-1:-1;;;2941:451:0:o;11294:178:6:-;11388:16;11406:14;11444:7;1084:6:17;;-1:-1:-1;;;;;1084:6:17;1012:85;;11444:7:6;11436:29;11453:11;;-1:-1:-1;11294:178:6;-1:-1:-1;;11294:178:6:o;804:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4223:461::-;4322:7;:14;4271:16;;4350:17;4346:332;;-1:-1:-1;;4390:16:6;;;4404:1;4390:16;;;;;;;;4383:23;;4346:332;4437:23;4477:12;4463:27;;;;;;-1:-1:-1;;;4463:27:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4463:27:6;;4437:53;;4504:13;4531:110;4555:12;4547:5;:20;4531:110;;;4612:7;4620:5;4612:14;;;;;;-1:-1:-1;;;4612:14:6;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4612:14:6;4596:6;4603:5;4596:13;;;;;;-1:-1:-1;;;4596:13:6;;;;;;;;;-1:-1:-1;;;;;4596:30:6;;;:13;;;;;;;;;;;:30;4569:7;;;;:::i;:::-;;;;4531:110;;;-1:-1:-1;4661:6:6;-1:-1:-1;4654:13:6;;-1:-1:-1;4654:13:6;4346:332;4223:461;;:::o;11919:417::-;12161:20;;12204:26;;-1:-1:-1;;;12204:26:6;;-1:-1:-1;;;;;9523:32:19;;;12204:26:6;;;9505:51:19;12035:4:6;;12161:20;;;12196:44;;;;12161:20;;12204:21;;9478:18:19;;12204:26:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;12196:44:6;;12192:86;;;12263:4;12256:11;;;;;12192:86;12295:34;12318:3;12323:5;12295:22;:34::i;:::-;12288:41;11919:417;-1:-1:-1;;;;11919:417:6:o;760:38::-;;;;;;;:::i;9639:166::-;9743:7;9773:25;9790:7;9773:16;:25::i;1938:274:17:-;1084:6;;-1:-1:-1;;;;;1084:6:17;665:10:12;1224:23:17;1216:68;;;;-1:-1:-1;;;1216:68:17;;;;;;;:::i;:::-;-1:-1:-1;;;;;2039:22:17;::::1;2018:107;;;::::0;-1:-1:-1;;;2018:107:17;;15935:2:19;2018:107:17::1;::::0;::::1;15917:21:19::0;15974:2;15954:18;;;15947:30;16013:34;15993:18;;;15986:62;-1:-1:-1;;;16064:18:19;;;16057:36;16110:19;;2018:107:17::1;15907:228:19::0;2018:107:17::1;2161:6;::::0;2140:38:::1;::::0;-1:-1:-1;;;;;2140:38:17;;::::1;::::0;2161:6:::1;::::0;2140:38:::1;::::0;2161:6:::1;::::0;2140:38:::1;2188:6;:17:::0;;-1:-1:-1;;;;;;2188:17:17::1;-1:-1:-1::0;;;;;2188:17:17;;;::::1;::::0;;;::::1;::::0;;1938:274::o;3707:510:6:-;3795:10;3774:17;3782:8;3774:7;:17::i;:::-;-1:-1:-1;;;;;3774:31:6;;3766:60;;;;-1:-1:-1;;;3766:60:6;;19621:2:19;3766:60:6;;;19603:21:19;19660:2;19640:18;;;19633:30;-1:-1:-1;;;19679:18:19;;;19672:46;19735:18;;3766:60:6;19593:166:19;3766:60:6;3844:19;3854:8;3844:9;:19::i;:::-;:27;;3867:4;3844:27;3836:55;;;;-1:-1:-1;;;3836:55:6;;18579:2:19;3836:55:6;;;18561:21:19;18618:2;18598:18;;;18591:30;-1:-1:-1;;;18637:18:19;;;18630:45;18692:18;;3836:55:6;18551:165:19;3836:55:6;3922:37;3948:10;3922:25;:37::i;:::-;:46;3901:117;;;;-1:-1:-1;;;3901:117:6;;28466:2:19;3901:117:6;;;28448:21:19;28505:2;28485:18;;;28478:30;28544:26;28524:18;;;28517:54;28588:18;;3901:117:6;28438:174:19;3901:117:6;4036:7;:14;4053:1;-1:-1:-1;4028:50:6;;;;-1:-1:-1;;;4028:50:6;;21625:2:19;4028:50:6;;;21607:21:19;21664:2;21644:18;;;21637:30;-1:-1:-1;;;21683:18:19;;;21676:49;21742:18;;4028:50:6;21597:169:19;4028:50:6;4088:7;:24;;;;;;;-1:-1:-1;4088:24:6;;;;;;;;-1:-1:-1;;;;;;4088:24:6;4101:10;4088:24;;;;;;4127:36;;12872:25:19;;;4127:36:6;;12860:2:19;12845:18;4127:36:6;;;;;;;4173:37;;4181:10;;4173:37;;4202:7;;4173:37;;;;4202:7;4181:10;4173:37;;;;;;;;;;;;;;;;;;;9838:678;9906:21;9930:29;9947:11;9930:16;:29::i;:::-;9906:53;;9990:13;9977:9;:26;;9969:55;;;;-1:-1:-1;;;9969:55:6;;14759:2:19;9969:55:6;;;14741:21:19;14798:2;14778:18;;;14771:30;-1:-1:-1;;;14817:18:19;;;14810:46;14873:18;;9969:55:6;14731:166:19;9969:55:6;10070:2;10055:11;:17;;:36;;;;;10090:1;10076:11;:15;10055:36;10034:122;;;;-1:-1:-1;;;10034:122:6;;26937:2:19;10034:122:6;;;26919:21:19;26976:2;26956:18;;;26949:30;27015:34;26995:18;;;26988:62;-1:-1:-1;;;27066:18:19;;;27059:37;27113:19;;10034:122:6;26909:229:19;10034:122:6;10166:17;10186:13;1633:10:1;:17;1546:111;;10186:13:6;10166:33;;10214:9;10209:129;10233:11;10229:1;:15;10209:129;;;10265:37;10275:10;10287:14;:9;10297:4;10287:14;:::i;:::-;10265:9;:37::i;:::-;10316:11;;;;:::i;:::-;;;;10246:3;;;;;:::i;:::-;;;;10209:129;;;;10419:9;10403:13;:25;10399:111;;;10452:10;10444:55;10473:25;10485:13;10473:9;:25;:::i;:::-;10444:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1493:344:0;1635:4;-1:-1:-1;;;;;;1674:40:0;;-1:-1:-1;;;1674:40:0;;:104;;-1:-1:-1;;;;;;;1730:48:0;;-1:-1:-1;;;1730:48:0;1674:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:13;;;1794:36:0;763:155:13;4904:206:0;-1:-1:-1;;;;;5068:25:0;;;5041:4;5068:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4904:206::o;11707:171::-;11781:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11781:29:0;-1:-1:-1;;;;;11781:29:0;;;;;;;;:24;;11834:23;11781:24;11834:14;:23::i;:::-;-1:-1:-1;;;;;11825:46:0;;;;;;;;;;;11707:171;;:::o;7997:445::-;8122:4;7802:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7802:16:0;8142:107;;;;-1:-1:-1;;;8142:107:0;;19966:2:19;8142:107:0;;;19948:21:19;20005:2;19985:18;;;19978:30;20044:34;20024:18;;;20017:62;-1:-1:-1;;;20095:18:19;;;20088:42;20147:19;;8142:107:0;19938:234:19;8142:107:0;8259:13;8275:23;8290:7;8275:14;:23::i;:::-;8259:39;;8327:5;-1:-1:-1;;;;;8316:16:0;:7;-1:-1:-1;;;;;8316:16:0;;:63;;;;8372:7;-1:-1:-1;;;;;8348:31:0;:20;8360:7;8348:11;:20::i;:::-;-1:-1:-1;;;;;8348:31:0;;8316:63;:118;;;;8395:39;8419:5;8426:7;8395:23;:39::i;11002:594::-;11169:4;-1:-1:-1;;;;;11142:31:0;:23;11157:7;11142:14;:23::i;:::-;-1:-1:-1;;;;;11142:31:0;;11121:119;;;;-1:-1:-1;;;11121:119:0;;23511:2:19;11121:119:0;;;23493:21:19;23550:2;23530:18;;;23523:30;23589:34;23569:18;;;23562:62;-1:-1:-1;;;23640:18:19;;;23633:39;23689:19;;11121:119:0;23483:231:19;11121:119:0;-1:-1:-1;;;;;11258:16:0;;11250:65;;;;-1:-1:-1;;;11250:65:0;;17408:2:19;11250:65:0;;;17390:21:19;17447:2;17427:18;;;17420:30;17486:34;17466:18;;;17459:62;-1:-1:-1;;;17537:18:19;;;17530:34;17581:19;;11250:65:0;17380:226:19;11250:65:0;11326:39;11347:4;11353:2;11357:7;11326:20;:39::i;:::-;11427:29;11444:1;11448:7;11427:8;:29::i;:::-;-1:-1:-1;;;;;11467:15:0;;;;;;:9;:15;;;;;:20;;11486:1;;11467:15;:20;;11486:1;;11467:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11497:13:0;;;;;;:9;:13;;;;;:18;;11514:1;;11497:13;:18;;11514:1;;11497:18;:::i;:::-;;;;-1:-1:-1;;11525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11525:21:0;-1:-1:-1;;;;;11525:21:0;;;;;;;;;11562:27;;11525:16;;11562:27;;;;;;;11002:594;;;:::o;5492:440:6:-;5671:4;5687:19;5721:52;5736:11;5749:8;5759:13;5721:14;:52::i;:::-;5687:86;;5783:28;5814:36;5838:11;5341:124;;8964:66:19;5341:124:6;;;8952:79:19;9047:12;;;9040:28;;;5272:7:6;;9084:12:19;;5341:124:6;;;;;;;;;;;;5314:165;;;;;;5295:184;;5170:316;;;;5814:36;5783:67;;5918:7;1084:6:17;;-1:-1:-1;;;;;1084:6:17;1012:85;;5918:7:6;-1:-1:-1;;;;;5867:58:6;:47;5881:20;5903:10;5867:13;:47::i;:::-;-1:-1:-1;;;;;5867:58:6;;;5492:440;-1:-1:-1;;;;;;;5492:440:6:o;10330:348:0:-;10389:13;10405:23;10420:7;10405:14;:23::i;:::-;10389:39;;10439:48;10460:5;10475:1;10479:7;10439:20;:48::i;:::-;10525:29;10542:1;10546:7;10525:8;:29::i;:::-;-1:-1:-1;;;;;10565:16:0;;;;;;:9;:16;;;;;:21;;10585:1;;10565:16;:21;;10585:1;;10565:21;:::i;:::-;;;;-1:-1:-1;;10603:16:0;;;;:7;:16;;;;;;10596:23;;-1:-1:-1;;;;;;10596:23:0;;;10635:36;10611:7;;10603:16;-1:-1:-1;;;;;10635:36:0;;;;;10603:16;;10635:36;10330:348;;:::o;3314:317:6:-;3478:7;:14;3416:4;;;;3502:101;3518:12;3514:1;:16;3502:101;;;3569:10;-1:-1:-1;;;;;3555:24:6;:7;3563:1;3555:10;;;;;;-1:-1:-1;;;3555:10:6;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3555:10:6;:24;3551:41;;;3588:4;3581:11;;;;;;3551:41;3532:3;;;;:::i;:::-;;;;3502:101;;;-1:-1:-1;3619:5:6;;3314:317;-1:-1:-1;;;3314:317:6:o;2835:293::-;2889:4;2928:1;2913:12;;:16;2905:53;;;;-1:-1:-1;;;2905:53:6;;17055:2:19;2905:53:6;;;17037:21:19;17094:2;17074:18;;;17067:30;17133:26;17113:18;;;17106:54;17177:18;;2905:53:6;17027:174:19;2905:53:6;2968:14;3056:4;3033:2;3037:12;;3016:34;;;;;;;;8152:19:19;;;8196:2;8187:12;;8180:28;8233:2;8224:12;;8142:100;3016:34:6;;;;;;;;;;;;;3006:45;;;;;;2998:54;;2997:63;;;;:::i;:::-;2968:92;;3084:2;3074:6;:12;3070:29;;3095:4;3088:11;;;;;3070:29;-1:-1:-1;3116:5:6;;2835:293;-1:-1:-1;;2835:293:6:o;7410:1013:9:-;7506:17;7533:4;-1:-1:-1;;;;;7533:20:9;;7554:14;7570:4;7587:8;7597:5;7576:27;;;;;;;;13082:25:19;;;13138:2;13123:18;;13116:34;13070:2;13055:18;;13037:119;7576:27:9;;;;;;;;;;;;;7533:71;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;7835:15:9;7903:16;;;:6;:16;;;;;;;;;970:51:10;;;;;13392:25:19;;;13433:18;;;13426:34;;;7896:4:9;13476:18:19;;;13469:60;13545:18;;;;13538:34;;;970:51:10;;;;;;;;;;13364:19:19;;;;970:51:10;;;960:62;;;;;;;;;8350:16:9;;;;;;;:23;;8371:1;8350:20;:23::i;:::-;8331:16;;;;:6;:16;;;;;:42;8386:32;8338:8;8410:7;1532:41:10;;;;;;;8152:19:19;;;;8187:12;;;8180:28;;;;1532:41:10;;;;;;;;;8224:12:19;;;;1532:41:10;;1522:52;;;;;;1408:171;8386:32:9;8379:39;7410:1013;-1:-1:-1;;;;;7410:1013:9:o;8333:649:6:-;8382:21;;:::i;:::-;8415:15;8433:13;1633:10:1;:17;1546:111;;8433:13:6;8415:31;-1:-1:-1;8482:1:6;8460:19;8415:31;8460:4;:19;:::i;:::-;:23;8456:519;;;8497:61;;;;;;;;8505:17;8497:61;;;;8531:7;8524:4;:14;;;;:::i;:::-;8497:61;;;;8540:17;8497:61;;;;;;;;8456:519;8599:1;8577:19;8588:7;8577:4;:19;:::i;:::-;:23;8573:402;;;8614:62;;;;;;;;8622:17;8614:62;;;;8648:7;8641:4;:14;;;;:::i;:::-;8614:62;;;;8657:18;8614:62;;;;;;;;8573:402;8717:1;8695:19;8706:7;8695:4;:19;:::i;:::-;:23;8691:284;;;8732:63;;;;;;;;8740:18;8732:63;;;;8767:7;8760:4;:14;;;;:::i;:::-;8732:63;;;;8776:18;8732:63;;;;;;;;8691:284;8836:1;8814:19;8825:7;8814:4;:19;:::i;:::-;:23;8810:165;;;8851:63;;;;;;;;8859:18;8851:63;;;;8886:7;8879:4;:14;;;;:::i;:::-;8851:63;;;;8895:18;8851:63;;;;;;;;8810:165;8929:46;;;;;;;;8937:18;8929:46;;;;8964:7;8957:4;:14;;;;:::i;:::-;8929:46;;;;8973:1;8929:46;;;;;;;;7070:341:0;7221:28;7231:4;7237:2;7241:7;7221:9;:28::i;:::-;7280:48;7303:4;7309:2;7313:7;7322:5;7280:22;:48::i;:::-;7259:145;;;;-1:-1:-1;;;7259:145:0;;;;;;;:::i;6731:99:6:-;6783:13;6815:8;6808:15;;;;;:::i;271:703:18:-;327:13;544:10;540:51;;-1:-1:-1;570:10:18;;;;;;;;;;;;-1:-1:-1;;;570:10:18;;;;;;540:51;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:18;;-1:-1:-1;716:2:18;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:18;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:18;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:18;;;;;;;;;;;;:56;-1:-1:-1;;;;;845:56:18;;;;;;;;-1:-1:-1;915:11:18;924:2;915:11;;:::i;:::-;;;787:150;;8988:645:6;9053:7;9072:21;9096:13;1633:10:1;:17;1546:111;;9096:13:6;9072:37;;344:4;9127:13;:26;9119:61;;;;-1:-1:-1;;;9119:61:6;;25808:2:19;9119:61:6;;;25790:21:19;25847:2;25827:18;;;25820:30;-1:-1:-1;;;25866:18:19;;;25859:52;25928:18;;9119:61:6;25780:172:19;9119:61:6;344:4;9212:23;9222:13;9212:7;:23;:::i;:::-;9211:39;;9190:117;;;;-1:-1:-1;;;9190:117:6;;26159:2:19;9190:117:6;;;26141:21:19;26198:2;26178:18;;;26171:30;26237:33;26217:18;;;26210:61;26288:18;;9190:117:6;26131:181:19;9190:117:6;9317:33;9353:17;:15;:17::i;:::-;9317:53;-1:-1:-1;9405:7:6;9317:53;9400:1;9384:18;;;;:28;9380:246;;;9421:18;;:28;;9442:7;;9421:28;:::i;:::-;9414:35;;;;;;9380:246;9606:18;;;;9596:28;;:7;:28;:::i;:::-;9558:18;;;;:67;;;;:::i;:::-;9521:18;;;9484;;;:55;;9521:18;9484:55;:::i;:::-;:141;;;;:::i;8779:108:0:-;8854:26;8864:2;8868:7;8854:26;;;;;;;;;;;;:9;:26::i;2555:542:1:-;-1:-1:-1;;;;;2724:18:1;;2720:183;;2758:40;2790:7;3906:10;:17;;3879:24;;;;:15;:24;;;;;:44;;;3933:24;;;;;;;;;;;;3803:161;2758:40;2720:183;;;2827:2;-1:-1:-1;;;;;2819:10:1;:4;-1:-1:-1;;;;;2819:10:1;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;-1:-1:-1;;;;;2916:16:1;;2912:179;;2948:45;2985:7;2948:36;:45::i;:::-;2912:179;;;3020:4;-1:-1:-1;;;;;3014:10:1;:2;-1:-1:-1;;;;;3014:10:1;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;5938:493:6:-;6062:7;6089:10;:17;6110:2;6089:23;6081:60;;;;-1:-1:-1;;;6081:60:6;;28113:2:19;6081:60:6;;;28095:21:19;28152:2;28132:18;;;28125:30;28191:26;28171:18;;;28164:54;28235:18;;6081:60:6;28085:174:19;6081:60:6;6256:2;6240:19;;;6234:26;6300:2;6284:19;;;6278:26;6352:2;6336:19;;;6330:26;6383:41;;6151:9;6383:41;;;;;;;;;13810:25:19;;;6322:35:6;;13851:18:19;;;13844:45;;;13905:18;;13898:34;;;13948:18;;;13941:34;;;6234:26:6;;6383:41;;13782:19:19;;6383:41:6;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6383:41:6;;-1:-1:-1;;6383:41:6;;;5938:493;-1:-1:-1;;;;;;;5938:493:6:o;863:162:8:-;921:7;;948:5;952:1;948;:5;:::i;:::-;936:17;;972:1;967;:6;;959:46;;;;-1:-1:-1;;;959:46:8;;16699:2:19;959:46:8;;;16681:21:19;16738:2;16718:18;;;16711:30;16777:29;16757:18;;;16750:57;16824:18;;959:46:8;16671:177:19;12431:1022:0;12581:4;-1:-1:-1;;;;;12601:13:0;;1078:20:11;1116:8;12597:850:0;;12652:170;;-1:-1:-1;;;12652:170:0;;-1:-1:-1;;;;;12652:36:0;;;;;:170;;665:10:12;;12744:4:0;;12770:7;;12799:5;;12652:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12652:170:0;;;;;;;;-1:-1:-1;;12652:170:0;;;;;;;;;;;;:::i;:::-;;;12632:763;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13005:13:0;;13001:380;;13047:106;;-1:-1:-1;;;13047:106:0;;;;;;;:::i;13001:380::-;13333:6;13327:13;13318:6;13314:2;13310:15;13303:38;12632:763;-1:-1:-1;;;;;;12884:55:0;-1:-1:-1;;;12884:55:0;;-1:-1:-1;12877:62:0;;12597:850;-1:-1:-1;13432:4:0;13425:11;;9108:311;9233:18;9239:2;9243:7;9233:5;:18::i;:::-;9282:54;9313:1;9317:2;9321:7;9330:5;9282:22;:54::i;:::-;9261:151;;;;-1:-1:-1;;;9261:151:0;;;;;;;:::i;4581:970:1:-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4904:18;4925:26;;;:17;:26;;;;;;4843:51;;-1:-1:-1;5055:28:1;;;5051:323;;-1:-1:-1;;;;;5121:18:1;;5099:19;5121:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5170:30;;;;;;:44;;;5286:30;;:17;:30;;;;;:43;;;5051:323;-1:-1:-1;5467:26:1;;;;:17;:26;;;;;;;;5460:33;;;-1:-1:-1;;;;;5510:18:1;;;;;:12;:18;;;;;:34;;;;;;;5503:41;4581:970::o;5839:1061::-;6113:10;:17;6088:22;;6113:21;;6133:1;;6113:21;:::i;:::-;6144:18;6165:24;;;:15;:24;;;;;;6533:10;:26;;6088:46;;-1:-1:-1;6165:24:1;;6088:46;;6533:26;;;;-1:-1:-1;;;6533:26:1;;;;;;;;;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;-1:-1:-1;;;6570:22:1;;;;;;;;;;;;;;;;;;;;:36;;;;6674:28;;;:15;:28;;;;;;;:41;;;6843:24;;;;;6836:31;6877:10;:16;;;;;-1:-1:-1;;;6877:16:1;;;;;;;;;;;;;;;;;;;;;;;;;;5839:1061;;;;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;-1:-1:-1;;;;;3522:16:1;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3566:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3391:217:1:o;9741:372:0:-;-1:-1:-1;;;;;9820:16:0;;9812:61;;;;-1:-1:-1;;;9812:61:0;;21973:2:19;9812:61:0;;;21955:21:19;;;21992:18;;;21985:30;22051:34;22031:18;;;22024:62;22103:18;;9812:61:0;21945:182:19;9812:61:0;7779:4;7802:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7802:16:0;:30;9883:58;;;;-1:-1:-1;;;9883:58:0;;16342:2:19;9883:58:0;;;16324:21:19;16381:2;16361:18;;;16354:30;16420;16400:18;;;16393:58;16468:18;;9883:58:0;16314:178:19;9883:58:0;9952:45;9981:1;9985:2;9989:7;9952:20;:45::i;:::-;-1:-1:-1;;;;;10008:13:0;;;;;;:9;:13;;;;;:18;;10025:1;;10008:13;:18;;10025:1;;10008:18;:::i;:::-;;;;-1:-1:-1;;10036:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10036:21:0;-1:-1:-1;;;;;10036:21:0;;;;;;;;10073:33;;10036:16;;;10073:33;;10036:16;;10073:33;9741:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:738:19;;109:3;102:4;94:6;90:17;86:27;76:2;;131:5;124;117:20;76:2;171:6;158:20;197:18;234:2;230;227:10;224:2;;;240:18;;:::i;:::-;315:2;309:9;283:2;369:13;;-1:-1:-1;;365:22:19;;;389:2;361:31;357:40;345:53;;;413:18;;;433:22;;;410:46;407:2;;;459:18;;:::i;:::-;499:10;495:2;488:22;534:2;526:6;519:18;580:3;573:4;568:2;560:6;556:15;552:26;549:35;546:2;;;601:5;594;587:20;546:2;669;662:4;654:6;650:17;643:4;635:6;631:17;618:54;692:15;;;709:4;688:26;681:41;;;;-1:-1:-1;696:6:19;66:686;-1:-1:-1;;;66:686:19:o;757:257::-;;869:2;857:9;848:7;844:23;840:32;837:2;;;890:6;882;875:22;837:2;934:9;921:23;953:31;978:5;953:31;:::i;1019:398::-;;;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1169:6;1161;1154:22;1116:2;1213:9;1200:23;1232:31;1257:5;1232:31;:::i;:::-;1282:5;-1:-1:-1;1339:2:19;1324:18;;1311:32;1352:33;1311:32;1352:33;:::i;:::-;1404:7;1394:17;;;1106:311;;;;;:::o;1422:466::-;;;;1568:2;1556:9;1547:7;1543:23;1539:32;1536:2;;;1589:6;1581;1574:22;1536:2;1633:9;1620:23;1652:31;1677:5;1652:31;:::i;:::-;1702:5;-1:-1:-1;1759:2:19;1744:18;;1731:32;1772:33;1731:32;1772:33;:::i;:::-;1526:362;;1824:7;;-1:-1:-1;;;1878:2:19;1863:18;;;;1850:32;;1526:362::o;1893:677::-;;;;;;2073:3;2061:9;2052:7;2048:23;2044:33;2041:2;;;2095:6;2087;2080:22;2041:2;2139:9;2126:23;2158:31;2183:5;2158:31;:::i;:::-;2208:5;-1:-1:-1;2265:2:19;2250:18;;2237:32;2278:33;2237:32;2278:33;:::i;:::-;2330:7;-1:-1:-1;2384:2:19;2369:18;;2356:32;;-1:-1:-1;2440:2:19;2425:18;;2412:32;2453:33;2412:32;2453:33;:::i;:::-;2031:539;;;;-1:-1:-1;2031:539:19;;2559:3;2544:19;2531:33;;2031:539;-1:-1:-1;;2031:539:19:o;2575:685::-;;;;;2747:3;2735:9;2726:7;2722:23;2718:33;2715:2;;;2769:6;2761;2754:22;2715:2;2813:9;2800:23;2832:31;2857:5;2832:31;:::i;:::-;2882:5;-1:-1:-1;2939:2:19;2924:18;;2911:32;2952:33;2911:32;2952:33;:::i;:::-;3004:7;-1:-1:-1;3058:2:19;3043:18;;3030:32;;-1:-1:-1;3113:2:19;3098:18;;3085:32;3140:18;3129:30;;3126:2;;;3177:6;3169;3162:22;3126:2;3205:49;3246:7;3237:6;3226:9;3222:22;3205:49;:::i;:::-;3195:59;;;2705:555;;;;;;;:::o;3265:392::-;;;3391:2;3379:9;3370:7;3366:23;3362:32;3359:2;;;3412:6;3404;3397:22;3359:2;3456:9;3443:23;3475:31;3500:5;3475:31;:::i;:::-;3525:5;-1:-1:-1;3582:2:19;3567:18;;3554:32;3595:30;3554:32;3595:30;:::i;3662:325::-;;;3791:2;3779:9;3770:7;3766:23;3762:32;3759:2;;;3812:6;3804;3797:22;3759:2;3856:9;3843:23;3875:31;3900:5;3875:31;:::i;:::-;3925:5;3977:2;3962:18;;;;3949:32;;-1:-1:-1;;;3749:238:19:o;3992:544::-;;;;4148:2;4136:9;4127:7;4123:23;4119:32;4116:2;;;4169:6;4161;4154:22;4116:2;4213:9;4200:23;4232:31;4257:5;4232:31;:::i;:::-;4282:5;-1:-1:-1;4334:2:19;4319:18;;4306:32;;-1:-1:-1;4389:2:19;4374:18;;4361:32;4416:18;4405:30;;4402:2;;;4453:6;4445;4438:22;4402:2;4481:49;4522:7;4513:6;4502:9;4498:22;4481:49;:::i;:::-;4471:59;;;4106:430;;;;;:::o;4541:255::-;;4661:2;4649:9;4640:7;4636:23;4632:32;4629:2;;;4682:6;4674;4667:22;4629:2;4719:9;4713:16;4738:28;4760:5;4738:28;:::i;4801:258::-;;;4930:2;4918:9;4909:7;4905:23;4901:32;4898:2;;;4951:6;4943;4936:22;4898:2;-1:-1:-1;;4979:23:19;;;5049:2;5034:18;;;5021:32;;-1:-1:-1;4888:171:19:o;5064:255::-;;5175:2;5163:9;5154:7;5150:23;5146:32;5143:2;;;5196:6;5188;5181:22;5143:2;5240:9;5227:23;5259:30;5283:5;5259:30;:::i;5324:259::-;;5446:2;5434:9;5425:7;5421:23;5417:32;5414:2;;;5467:6;5459;5452:22;5414:2;5504:9;5498:16;5523:30;5547:5;5523:30;:::i;5588:290::-;;5740:2;5728:9;5719:7;5715:23;5711:32;5708:2;;;5761:6;5753;5746:22;5708:2;5798:9;5792:16;5817:31;5842:5;5817:31;:::i;5883:341::-;;6005:2;5993:9;5984:7;5980:23;5976:32;5973:2;;;6026:6;6018;6011:22;5973:2;6071:9;6058:23;6104:18;6096:6;6093:30;6090:2;;;6141:6;6133;6126:22;6090:2;6169:49;6210:7;6201:6;6190:9;6186:22;6169:49;:::i;6229:190::-;;6341:2;6329:9;6320:7;6316:23;6312:32;6309:2;;;6362:6;6354;6347:22;6309:2;-1:-1:-1;6390:23:19;;6299:120;-1:-1:-1;6299:120:19:o;6424:194::-;;6547:2;6535:9;6526:7;6522:23;6518:32;6515:2;;;6568:6;6560;6553:22;6515:2;-1:-1:-1;6596:16:19;;6505:113;-1:-1:-1;6505:113:19:o;6623:638::-;;;;6788:2;6776:9;6767:7;6763:23;6759:32;6756:2;;;6809:6;6801;6794:22;6756:2;6850:9;6837:23;6827:33;;6911:2;6900:9;6896:18;6883:32;6934:18;6975:2;6967:6;6964:14;6961:2;;;6996:6;6988;6981:22;6961:2;7024:49;7065:7;7056:6;7045:9;7041:22;7024:49;:::i;:::-;7014:59;;7126:2;7115:9;7111:18;7098:32;7082:48;;7155:2;7145:8;7142:16;7139:2;;;7176:6;7168;7161:22;7139:2;;7204:51;7247:7;7236:8;7225:9;7221:24;7204:51;:::i;7266:257::-;;7345:5;7339:12;7372:6;7367:3;7360:19;7388:63;7444:6;7437:4;7432:3;7428:14;7421:4;7414:5;7410:16;7388:63;:::i;:::-;7505:2;7484:15;-1:-1:-1;;7480:29:19;7471:39;;;;7512:4;7467:50;;7315:208;-1:-1:-1;;7315:208:19:o;7528:462::-;;7770:26;7766:31;7757:6;7753:2;7749:15;7745:53;7740:3;7733:66;7829:6;7824:2;7819:3;7815:12;7808:28;7865:6;7859:13;7881:62;7936:6;7931:2;7926:3;7922:12;7915:4;7907:6;7903:17;7881:62;:::i;:::-;7963:16;;;;7981:2;7959:25;;7723:267;-1:-1:-1;;;;7723:267:19:o;8247:470::-;;8464:6;8458:13;8480:53;8526:6;8521:3;8514:4;8506:6;8502:17;8480:53;:::i;:::-;8596:13;;8555:16;;;;8618:57;8596:13;8555:16;8652:4;8640:17;;8618:57;:::i;:::-;8691:20;;8434:283;-1:-1:-1;;;;8434:283:19:o;9567:488::-;-1:-1:-1;;;;;9836:15:19;;;9818:34;;9888:15;;9883:2;9868:18;;9861:43;9935:2;9920:18;;9913:34;;;9983:3;9978:2;9963:18;;9956:31;;;9567:488;;10004:45;;10029:19;;10021:6;10004:45;:::i;:::-;9996:53;9770:285;-1:-1:-1;;;;;;9770:285:19:o;10339:385::-;;10571:1;10567;10562:3;10558:11;10554:19;10546:6;10542:32;10531:9;10524:51;10611:6;10606:2;10595:9;10591:18;10584:34;10654:2;10649;10638:9;10634:18;10627:30;10674:44;10714:2;10703:9;10699:18;10691:6;10674:44;:::i;10729:661::-;10900:2;10952:21;;;11022:13;;10925:18;;;11044:22;;;10729:661;;10900:2;11123:15;;;;11097:2;11082:18;;;10729:661;11169:195;11183:6;11180:1;11177:13;11169:195;;;11248:13;;-1:-1:-1;;;;;11244:39:19;11232:52;;11339:15;;;;11304:12;;;;11280:1;11198:9;11169:195;;;-1:-1:-1;11381:3:19;;10880:510;-1:-1:-1;;;;;;10880:510:19:o;11395:494::-;11575:2;11560:18;;11564:9;11655:6;11395:494;11689:194;11703:4;11700:1;11697:11;11689:194;;;11762:13;;11750:26;;11799:4;11823:12;;;;11858:15;;;;11723:1;11716:9;11689:194;;;11693:3;;;11542:347;;;;:::o;11894:635::-;12065:2;12117:21;;;12187:13;;12090:18;;;12209:22;;;11894:635;;12065:2;12288:15;;;;12262:2;12247:18;;;11894:635;12334:169;12348:6;12345:1;12342:13;12334:169;;;12409:13;;12397:26;;12478:15;;;;12443:12;;;;12370:1;12363:9;12334:169;;13986:219;;14135:2;14124:9;14117:21;14155:44;14195:2;14184:9;14180:18;14172:6;14155:44;:::i;15314:414::-;15516:2;15498:21;;;15555:2;15535:18;;;15528:30;15594:34;15589:2;15574:18;;15567:62;-1:-1:-1;;;15660:2:19;15645:18;;15638:48;15718:3;15703:19;;15488:240::o;22948:356::-;23150:2;23132:21;;;23169:18;;;23162:30;23228:34;23223:2;23208:18;;23201:62;23295:2;23280:18;;23122:182::o;26317:413::-;26519:2;26501:21;;;26558:2;26538:18;;;26531:30;26597:34;26592:2;26577:18;;26570:62;-1:-1:-1;;;26663:2:19;26648:18;;26641:47;26720:3;26705:19;;26491:239::o;29154:128::-;;29225:1;29221:6;29218:1;29215:13;29212:2;;;29231:18;;:::i;:::-;-1:-1:-1;29267:9:19;;29202:80::o;29287:120::-;;29353:1;29343:2;;29358:18;;:::i;:::-;-1:-1:-1;29392:9:19;;29333:74::o;29412:168::-;;29518:1;29514;29510:6;29506:14;29503:1;29500:21;29495:1;29488:9;29481:17;29477:45;29474:2;;;29525:18;;:::i;:::-;-1:-1:-1;29565:9:19;;29464:116::o;29585:270::-;;29653:12;;;29681:10;;-1:-1:-1;;;29700:19:19;;29693:27;;29677:44;29674:2;;;29724:18;;:::i;:::-;-1:-1:-1;;;;;29771:27:19;;29764:35;;29756:44;;29753:2;;;29803:18;;:::i;:::-;-1:-1:-1;;29840:9:19;;29633:222::o;29860:125::-;;29928:1;29925;29922:8;29919:2;;;29933:18;;:::i;:::-;-1:-1:-1;29970:9:19;;29909:76::o;29990:258::-;30062:1;30072:113;30086:6;30083:1;30080:13;30072:113;;;30162:11;;;30156:18;30143:11;;;30136:39;30108:2;30101:10;30072:113;;;30203:6;30200:1;30197:13;30194:2;;;-1:-1:-1;;30238:1:19;30220:16;;30213:27;30043:205::o;30253:380::-;30332:1;30328:12;;;;30375;;;30396:2;;30450:4;30442:6;30438:17;30428:27;;30396:2;30503;30495:6;30492:14;30472:18;30469:38;30466:2;;;30549:10;30544:3;30540:20;30537:1;30530:31;30584:4;30581:1;30574:15;30612:4;30609:1;30602:15;30638:135;;-1:-1:-1;;30698:17:19;;30695:2;;;30718:18;;:::i;:::-;-1:-1:-1;30765:1:19;30754:13;;30685:88::o;30778:112::-;;30836:1;30826:2;;30841:18;;:::i;:::-;-1:-1:-1;30875:9:19;;30816:74::o;30895:127::-;30956:10;30951:3;30947:20;30944:1;30937:31;30987:4;30984:1;30977:15;31011:4;31008:1;31001:15;31027:127;31088:10;31083:3;31079:20;31076:1;31069:31;31119:4;31116:1;31109:15;31143:4;31140:1;31133:15;31159:127;31220:10;31215:3;31211:20;31208:1;31201:31;31251:4;31248:1;31241:15;31275:4;31272:1;31265:15;31291:131;-1:-1:-1;;;;;31366:31:19;;31356:42;;31346:2;;31412:1;31409;31402:12;31346:2;31336:86;:::o;31427:118::-;31513:5;31506:13;31499:21;31492:5;31489:32;31479:2;;31535:1;31532;31525:12;31550:131;-1:-1:-1;;;;;;31624:32:19;;31614:43;;31604:2;;31671:1;31668;31661:12

Swarm Source

ipfs://7cd4626a3c5eafc7f19893688b2ff6106932bae038f1976be308e9b2edd86d02
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.