ETH Price: $2,610.52 (-1.11%)

Token

Fine-Ass CryptoApes (FACA)
 

Overview

Max Total Supply

1,800 FACA

Holders

645

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
umutak47shawty.eth
Balance
1 FACA
0x0b16dd061ad33b866341dc3bf17264bd6111f10d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FACA or Fine-Ass CryptoApes is a limited collection of 1,800 randomly generated pixel-Ape characters. Each FACA is unique with several attributes that altogether define its scarcity level. This is the only batch ever-produced at our Factory.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FacaNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";

contract FacaNFT is Ownable, ERC721, ERC721Enumerable, VRFConsumerBase, ReentrancyGuard {
    using SafeMath for uint256;
    
    event FacaNFTRandomnessRequest(uint timestamp);
    event FacaNFTRandomnessFulfil(uint timestamp, bytes32 requestId, uint256 seed);
    event FacaNFTChainlinkError(uint timestamp, bytes32 requestId);
    event FacaNFTReveal(uint timestamp);
    event FacaManualSetSeed(uint timestamp);
    event FacaWhitelist(address adress);
    event PermanentURI(string _value, uint256 indexed _id);

    bool _revealed = false;
    bool _requestedVRF = false;

    bytes32 _keyHash;

    uint private _mode = 0;
    uint private _limitPrivateSaleTx = 2;
    uint private _limitPublicSaleTx = 20;
    uint public maxAirdrop;
    uint public maxPrivateSale;
    uint public totalAirdrop;
    uint public totalPrivateSale;
    uint public maxSupply;

    uint256 public seed = 0;
    uint256 private _privateSalePrice = 77000000000000000; //0.077ETH
    uint256 private _publicSalePrice = 88000000000000000; //0.088ETH

    string _tokenBaseURI;
    string _defaultURI;
    
    mapping(address => uint) private _originalOwns;
    mapping(address => uint) private _presaleMinted;
    mapping(address => bool) private _originalOwner;
    mapping(address => bool) private _presaleAllowed;

    /**
     * @param vrfCoordinator address of Chainlink VRF coordinator to use
     * @param linkToken address of LINK token
     * @param keyHash Chainlink VRF keyhash for the coordinator
     * @param tokenName Token name
     * @param tokenSymbol Token symbol
     * @param baseURI token base URI
     * @param defaultURI token default URI aka loot box
     * @param maximumAirdrop max amount for airdrop
     * @param maximumPrivateSale max amount to sale in private sale
     * @param maximumSupply max supply of token
     */
    constructor(
        address vrfCoordinator,
        address linkToken,
        bytes32 keyHash,
        string memory tokenName, 
        string memory tokenSymbol, 
        string memory baseURI,
        string memory defaultURI,
        uint maximumAirdrop,
        uint maximumPrivateSale,
        uint maximumSupply
    ) ERC721(tokenName, tokenSymbol) 
        VRFConsumerBase(vrfCoordinator, linkToken) {
        maxAirdrop = maximumAirdrop;
        maxPrivateSale = maximumPrivateSale;
        maxSupply = maximumSupply;
        _keyHash = keyHash;
        _tokenBaseURI = baseURI;
        _defaultURI = defaultURI;
    }

    /**
     * @dev ensure collector pays for mint token and message sender is directly interact (and not a contract)
     * @param amount number of token to mint
     */
    modifier mintable(uint amount) {
        require( msg.sender == tx.origin , "Apes don't like bots");

        if(_mode == 1) {
            require(amount <= _limitPrivateSaleTx, "Number Token invalid.");
            require(msg.value >= amount.mul(_privateSalePrice), "Payment error.");
        }

        if(_mode == 3) {
            require(amount <= _limitPublicSaleTx, "Number Token invalid.");
            require(msg.value >= amount.mul(_publicSalePrice), "Payment error.");
        }

        _;
    }

    /**
     * @dev add collector to private sale allowlist
     */
    function addAllowlist(address[] memory allowlist) public onlyOwner {
        for(uint i = 0; i < allowlist.length; i+=1) {
            _presaleAllowed[allowlist[i]] = true;
            emit FacaWhitelist(allowlist[i]);
        }
    }

    /**
     * @dev airdrop token for marketing and influencer campaign
     */
    function airdrop(address[] memory _to, uint256 amount) public onlyOwner {
        require(totalAirdrop + (_to.length * amount) <= maxAirdrop, "Exceed airdop allowance limit.");
        for (uint i = 0; i < _to.length; i+=1) {
            mintFaca(_to[i], amount, true); // mint for marketing & influencer
        }
    }

    /**
     * @dev return token base URI to construct metadata URL
     */
    function tokenBaseURI() public view returns (string memory) {
        return _tokenBaseURI;
    }

    /**
     * @dev get sale mode
     * 0 - offline
     * 1 - presale
     * 2 - before public sale
     * 3 - public sale
     * 4 - close public sale
     * 5 - sold out
     */
    function getSaleMode() public view returns(uint) {
        if (_mode == 1 &&  totalPrivateSale == maxPrivateSale - maxAirdrop) {
            return 2;
        }

        if (totalSupply() - totalAirdrop == maxSupply - maxAirdrop) {
            return 5;
        }

        return _mode;
    }

    /**
     * @dev get sale price base on sale mode
     */
    function getPrice() public view returns(uint256) {
        return (_mode == 1) ? _privateSalePrice : _publicSalePrice; // return public sale price as default
    }

    /**
     * @dev get current amount of minted token by sale mode
     */
    function getMintedBySaleMode() public view returns(uint256) {
        if (_mode == 1) return totalPrivateSale;
        if (_mode == 3) return totalPublicSale();
        return 0;
    }

    /**
     * @dev get current token amount available for sale (by sale mode)
     */
    function getMaxSupplyBySaleMode() public view returns(uint256) {
        if (_mode == 1) return maxPrivateSale  - maxAirdrop;
        if (_mode == 3) return maxSupply - totalPrivateSale - maxAirdrop;
        return 0;
    }

    /**
     * @dev emit event for OpenSea to freeze metadata.
     */
    function freezeMetadata() public onlyOwner {
        for (uint256 i = 1; i <= totalSupply(); i+=1) {
            emit PermanentURI(tokenURI(i), i);
        }
    }

    /**
     * @dev ensure collector is under allowlist
     */
    function inAllowlist(address collector) public view returns(bool) {
        return _presaleAllowed[collector];
    }

    /**
     * @dev check if collector is an original minter
     */
    function isOriginalOwner(address collector) public view returns(bool) {
        return _originalOwns[collector] > 0;
    }

    function isRequestedVrf() public view returns(bool) {
        return _requestedVRF;
    }

    function isRevealed() public view returns(bool) {
        return _requestedVRF && _revealed;
    }

    /**
     * @dev shuffle metadata with seed provided by VRF
     */
    function metadataOf(uint256 tokenId) public view returns (string memory) {
        if(_msgSender() != owner()) {
            require(tokenId <= totalSupply(), "Token id invalid");
        }
        
        if(!_revealed) return "default";

        uint256[] memory metaIds = new uint256[](maxSupply+1);
        uint256 ss = seed;

        for (uint256 i = 1; i <= maxSupply; i+=1) {
            metaIds[i] = i;
        }

        // shuffle meta id
        for (uint256 i = 1; i <= maxSupply; i+=1) {
            uint256 j = (uint256(keccak256(abi.encode(ss, i))) % (maxSupply));
            (metaIds[i], metaIds[j]) = (metaIds[j], metaIds[i]);
        }

        return Strings.toString(metaIds[tokenId]);
    }


    /**
     * @dev Mint NFT
     */
    function mintNFT(uint256 amount) public payable nonReentrant mintable(amount) returns (bool) {
        require(_mode == 1 || _mode == 3, "Sale is not available");
        return mintFaca(_msgSender(), amount, false);
    }

    /**
     * @dev get amount of original minted amount.
     */
    function originalMintedBalanceOf(address collector) public view returns(uint){
        return _originalOwns[collector];
    }

    function publicSalePrice() public view returns(uint256) {
        return _publicSalePrice;
    }
    
    function privateSalePrice() public view returns(uint256) {
        return _privateSalePrice;
    }

    /**
     * @dev request Chainlink VRF for a random seed
     */
    function requestChainlinkVRF() public onlyOwner {
        require(!_requestedVRF, "You have already generated a random seed");
        require(LINK.balanceOf(address(this)) >= 2000000000000000000);
        requestRandomness(_keyHash, 2000000000000000000);
        _requestedVRF = true;
        emit FacaNFTRandomnessRequest(block.timestamp);
    }

    /**
     * @dev set token base URI
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        _tokenBaseURI = baseURI;
    }

    /**
     * @dev reveal all lootbox
     */
    function reveal() public onlyOwner {
        require(!_revealed, "You can only reveal once.");
        _revealed = true;
    }

    /**
     * @dev set public sale price in case we have last minutes change on sale price/promotion
     */
    function setPublicSalePrice(uint256 price) public onlyOwner {
        _publicSalePrice = price;
    }

    /**
     * @dev set seed number (only used for automate testing and emergency reveal)
     */
    function setSeed(uint randomNumber) public onlyOwner {
        _requestedVRF = true;
        seed = randomNumber;
        emit FacaManualSetSeed(block.timestamp);
    }

    /**
     * @dev start private sale
     */
    function startPrivateSale() public onlyOwner {
        _mode = 1;
    }

    /**
     * @dev change mode to before public sale
     */
    function startBeforePublicSale() public onlyOwner {
        _mode = 2;
    }

    /**
     * @dev change mode to public sale
     */
    function startPublicSale() public onlyOwner {
        _mode = 3;
    }

    /**
     * @dev close public sale
     */
    function closePublicSale() public onlyOwner {
        _mode = 4;
    }

    function stopAllSale() public onlyOwner {
        _mode = 0;
    }
    
    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev return token metadata based on reveal status
     */
    function tokenURI(uint256 tokenId) public view override (ERC721) returns (string memory) {
        require(tokenId <= totalSupply(), "Token not exist.");
        
        // before we reveal, everyone will get default URI
        return isRevealed() ? string(abi.encodePacked(_tokenBaseURI, metadataOf(tokenId), ".json")) :_defaultURI;        
    }

    /**
     * @dev total public sale amount
     */
     function totalPublicSale() public view returns(uint) {
        return totalSupply() - totalPrivateSale - totalAirdrop;
    }

    /**
     * @dev withdraw ether to owner/admin wallet
     * @notice only owner can call this method
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable){
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev ensure original minter is logged and favor for future use.
     */
    function addOriginalOwns(address collector) internal {
        _originalOwns[collector] += 1;
    }

    /**
     * @dev ensure private sale amount will not exceed quota per collector
     */
    function isValidPrivateSaleAmount(address collector,uint amount) internal view returns(bool) {
        return _presaleMinted[collector] + amount <= _limitPrivateSaleTx;
    }

    /**
     * @dev ensure private sale amount will not oversell
     */
    function isOversell(uint amount) internal view returns(bool) {
        return getMintedBySaleMode().add(amount)  <= getMaxSupplyBySaleMode();
    }

    /**
     * @dev Mints amount `amount` of token to collector
     * @param collector The collector to receive the token
     * @param amount The amount of token to be minted
     * @param isAirdrop Flag for use in airdrop (internally)
     */
    function mintFaca( address collector, uint256 amount, bool isAirdrop) internal returns (bool) {
        // private sale
        if(getSaleMode() == 1) {
            require(inAllowlist(collector), "Only whitelist addresses allowed.");
            require(isValidPrivateSaleAmount(collector, amount), "Max presale amount exceeded.");
        }
        if (getSaleMode() > 0 && !isAirdrop) {
            require(isOversell(amount), "Cannot oversell");
        }

        for (uint256 i = 0; i < amount; i+=1) {
            uint256 tokenIndex = totalSupply();
            
            if (tokenIndex < maxSupply) {
                _safeMint(collector, tokenIndex+1);
                addOriginalOwns(collector);
            }
        }

        logTrade(collector, amount, isAirdrop);
        return true;
    }

    /**
     * @dev receive random number from chainlink
     * @notice random number will greater than zero
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomNumber) internal override {
        if (randomNumber > 0) {
            seed = randomNumber;
            emit FacaNFTRandomnessFulfil(block.timestamp, requestId, seed);
        }
        else {
            seed = 1;
            emit FacaNFTChainlinkError(block.timestamp, requestId);
        } 
    }

    /**
     * @dev log trade amount for controlling the capacity of tx
     * @param collector collector address
     * @param amount amount of sale
     * @param isAirdrop flag for log airdrop transaction
     */
    function logTrade(address collector,uint amount, bool isAirdrop) internal {
        if (isAirdrop) {
            totalAirdrop += amount;
            return;
        }

        if (_mode == 1) {
            totalPrivateSale += amount;
            _presaleMinted[collector] += amount;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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) {
        return a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 18 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

import "./interfaces/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 {

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

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @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
   *
   * @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
  )
    internal
    returns (
      bytes32 requestId
    )
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // 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, USER_SEED_PLACEHOLDER, 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] + 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 9 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 12 of 18 : 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 13 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 18 : 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 15 of 18 : 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 16 of 18 : 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 17 of 18 : 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 18 of 18 : 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
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"vrfCoordinator","type":"address"},{"internalType":"address","name":"linkToken","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"defaultURI","type":"string"},{"internalType":"uint256","name":"maximumAirdrop","type":"uint256"},{"internalType":"uint256","name":"maximumPrivateSale","type":"uint256"},{"internalType":"uint256","name":"maximumSupply","type":"uint256"}],"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":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"FacaManualSetSeed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"FacaNFTChainlinkError","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"FacaNFTRandomnessFulfil","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"FacaNFTRandomnessRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"FacaNFTReveal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"adress","type":"address"}],"name":"FacaWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"allowlist","type":"address[]"}],"name":"addAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupplyBySaleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedBySaleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collector","type":"address"}],"name":"inAllowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collector","type":"address"}],"name":"isOriginalOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRequestedVrf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrivateSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"metadataOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collector","type":"address"}],"name":"originalMintedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestChainlinkVRF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"setSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBeforePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopAllSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","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":[],"name":"totalAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPrivateSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSale","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600d805461ffff191690556000600f819055600260105560146011556017556701118f178fb48000601855670138a388a43c00006019553480156200004857600080fd5b5060405162003af838038062003af88339810160408190526200006b91620002dc565b898988886200007a3362000116565b81516200008f90600190602085019062000166565b508051620000a590600290602084019062000166565b5050506001600160601b0319606092831b811660a052911b166080526001600c55601283905560138290556016819055600e8890558451620000ef90601a90602088019062000166565b5083516200010590601b90602087019062000166565b505050505050505050505062000432565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200017490620003df565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b80516001600160a01b03811681146200022457600080fd5b919050565b600082601f8301126200023a578081fd5b81516001600160401b03808211156200025757620002576200041c565b604051601f8301601f19908116603f011681019082821181831017156200028257620002826200041c565b816040528381526020925086838588010111156200029e578485fd5b8491505b83821015620002c15785820183015181830184015290820190620002a2565b83821115620002d257848385830101525b9695505050505050565b6000806000806000806000806000806101408b8d031215620002fc578586fd5b620003078b6200020c565b99506200031760208c016200020c565b60408c015160608d0151919a5098506001600160401b03808211156200033b578788fd5b620003498e838f0162000229565b985060808d01519150808211156200035f578788fd5b6200036d8e838f0162000229565b975060a08d015191508082111562000383578687fd5b620003918e838f0162000229565b965060c08d0151915080821115620003a7578586fd5b50620003b68d828e0162000229565b94505060e08b015192506101008b015191506101208b015190509295989b9194979a5092959850565b600181811c90821680620003f457607f821691505b602082108114156200041657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c61368c6200046c6000396000818161178d0152612652015260008181611ce40152612623015261368c6000f3fe6080604052600436106103505760003560e01c806367ecc9f2116101c6578063a85f70f3116100f7578063d5abeb0111610095578063e66e995d1161006f578063e66e995d1461091c578063e985e9c514610931578063f2fde38b1461097a578063f560d4151461099a57600080fd5b8063d5abeb01146108b0578063da064a12146108c6578063e46f3162146108e357600080fd5b8063c32a50f9116100d1578063c32a50f914610846578063c87b56dd14610866578063ccc5d84714610886578063d111515d1461089b57600080fd5b8063a85f70f3146107f0578063b88d4fde14610806578063c204642c1461082657600080fd5b8063926427441161016457806398d5fdca1161013e57806398d5fdca146107915780639b6860c8146107a6578063a22cb465146107bb578063a475b5dd146107db57600080fd5b8063926427441461074957806394985ddd1461075c57806395d89b411461077c57600080fd5b806377d3a3b9116101a057806377d3a3b9146106e0578063791a2519146106f55780637d94792a146107155780638da5cb5b1461072b57600080fd5b806367ecc9f21461069657806370a08231146106ab578063715018a6146106cb57600080fd5b80632f745c59116102a05780634e7fc34b1161023e57806354214f691161021857806354214f691461062b57806355f804b3146106405780635ce97dbb146106605780636352211e1461067657600080fd5b80634e7fc34b146105c05780634e99b800146105f65780634f6ccce71461060b57600080fd5b806342842e0e1161027a57806342842e0e1461053d57806346da8e731461055d57806349ba5175146105955780634c64384c146105aa57600080fd5b80632f745c59146104f3578063338dbf59146105135780633ccfd60b1461052857600080fd5b80630c1c972a1161030d57806318160ddd116102e757806318160ddd1461048957806323b872dd1461049e5780632617dd4d146104be5780632af89179146104de57600080fd5b80630c1c972a1461043f5780630d43ebc2146104545780630ef7cc8e1461046957600080fd5b806301ffc9a71461035557806305d5c5951461038a57806306fdde03146103ae578063081812fc146103d0578063095ea7b3146104085780630ba391501461042a575b600080fd5b34801561036157600080fd5b506103756103703660046131c8565b6109af565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103a060125481565b604051908152602001610381565b3480156103ba57600080fd5b506103c36109c0565b60405161038191906133dc565b3480156103dc57600080fd5b506103f06103eb366004613246565b610a52565b6040516001600160a01b039091168152602001610381565b34801561041457600080fd5b506104286104233660046130ec565b610aec565b005b34801561043657600080fd5b506103a0610c02565b34801561044b57600080fd5b50610428610c52565b34801561046057600080fd5b506103a0610c83565b34801561047557600080fd5b506103c3610484366004613246565b610ce5565b34801561049557600080fd5b506009546103a0565b3480156104aa57600080fd5b506104286104b9366004613002565b610f79565b3480156104ca57600080fd5b506104286104d9366004613115565b610faa565b3480156104ea57600080fd5b506104286110c8565b3480156104ff57600080fd5b506103a061050e3660046130ec565b6110f9565b34801561051f57600080fd5b5061042861118f565b34801561053457600080fd5b506104286111c0565b34801561054957600080fd5b50610428610558366004613002565b611219565b34801561056957600080fd5b50610375610578366004612fb6565b6001600160a01b03166000908152601c6020526040902054151590565b3480156105a157600080fd5b50610428611234565b3480156105b657600080fd5b506103a060135481565b3480156105cc57600080fd5b506103a06105db366004612fb6565b6001600160a01b03166000908152601c602052604090205490565b34801561060257600080fd5b506103c3611265565b34801561061757600080fd5b506103a0610626366004613246565b611274565b34801561063757600080fd5b50610375611315565b34801561064c57600080fd5b5061042861065b366004613200565b611334565b34801561066c57600080fd5b506103a060145481565b34801561068257600080fd5b506103f0610691366004613246565b611371565b3480156106a257600080fd5b506104286113e8565b3480156106b757600080fd5b506103a06106c6366004612fb6565b611419565b3480156106d757600080fd5b506104286114a0565b3480156106ec57600080fd5b506103a06114d6565b34801561070157600080fd5b50610428610710366004613246565b6114fd565b34801561072157600080fd5b506103a060175481565b34801561073757600080fd5b506000546001600160a01b03166103f0565b610375610757366004613246565b61152c565b34801561076857600080fd5b506104286107773660046131a7565b611782565b34801561078857600080fd5b506103c3611804565b34801561079d57600080fd5b506103a0611813565b3480156107b257600080fd5b506019546103a0565b3480156107c757600080fd5b506104286107d63660046130b6565b61182d565b3480156107e757600080fd5b506104286118f2565b3480156107fc57600080fd5b506103a060155481565b34801561081257600080fd5b5061042861082136600461303d565b61197e565b34801561083257600080fd5b50610428610841366004613148565b6119b6565b34801561085257600080fd5b50610428610861366004613246565b611a9d565b34801561087257600080fd5b506103c3610881366004613246565b611b18565b34801561089257600080fd5b50610428611c32565b3480156108a757600080fd5b50610428611dd1565b3480156108bc57600080fd5b506103a060165481565b3480156108d257600080fd5b50600d54610100900460ff16610375565b3480156108ef57600080fd5b506103756108fe366004612fb6565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561092857600080fd5b506103a0611e5c565b34801561093d57600080fd5b5061037561094c366004612fd0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561098657600080fd5b50610428610995366004612fb6565b611e77565b3480156109a657600080fd5b506018546103a0565b60006109ba82611f0f565b92915050565b6060600180546109cf90613586565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb90613586565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610ad05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610af782611371565b9050806001600160a01b0316836001600160a01b03161415610b655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ac7565b336001600160a01b0382161480610b815750610b81813361094c565b610bf35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ac7565b610bfd8383611f34565b505050565b6000600f5460011415610c2457601254601354610c1f9190613543565b905090565b600f5460031415610c4c57601254601554601654610c429190613543565b610c1f9190613543565b50600090565b6000546001600160a01b03163314610c7c5760405162461bcd60e51b8152600401610ac790613441565b6003600f55565b6000600f546001148015610ca75750601254601354610ca29190613543565b601554145b15610cb25750600290565b601254601654610cc29190613543565b601454600954610cd29190613543565b1415610cde5750600590565b50600f5490565b6060610cf96000546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610d5657600954821115610d565760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881a59081a5b9d985b1a5960821b6044820152606401610ac7565b600d5460ff16610d83575050604080518082019091526007815266191959985d5b1d60ca1b602082015290565b60006016546001610d9491906134f8565b67ffffffffffffffff811115610dba57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610de3578160200160208202803683370190505b5060175490915060015b6016548111610e345780838281518110610e1757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610e2d6001826134f8565b9050610ded565b5060015b6016548111610f405760006016548383604051602001610e62929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c610e8591906135dc565b9050838181518110610ea757634e487b7160e01b600052603260045260246000fd5b6020026020010151848381518110610ecf57634e487b7160e01b600052603260045260246000fd5b6020026020010151858481518110610ef757634e487b7160e01b600052603260045260246000fd5b60200260200101868481518110610f1e57634e487b7160e01b600052603260045260246000fd5b60209081029190910101919091525250610f396001826134f8565b9050610e38565b50610f71828581518110610f6457634e487b7160e01b600052603260045260246000fd5b6020026020010151611fa2565b949350505050565b610f8333826120bc565b610f9f5760405162461bcd60e51b8152600401610ac790613476565b610bfd8383836121af565b6000546001600160a01b03163314610fd45760405162461bcd60e51b8152600401610ac790613441565b60005b81518110156110c4576001601f600084848151811061100657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507fac53dce04edfb472e0f52a6ad95c2393d1fedefb32b538e84dcfc4df15e248a882828151811061108657634e487b7160e01b600052603260045260246000fd5b60200260200101516040516110aa91906001600160a01b0391909116815260200190565b60405180910390a16110bd6001826134f8565b9050610fd7565b5050565b6000546001600160a01b031633146110f25760405162461bcd60e51b8152600401610ac790613441565b6004600f55565b600061110483611419565b82106111665760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ac7565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b031633146111b95760405162461bcd60e51b8152600401610ac790613441565b6001600f55565b6000546001600160a01b031633146111ea5760405162461bcd60e51b8152600401610ac790613441565b6040514790339082156108fc029083906000818181858888f193505050501580156110c4573d6000803e3d6000fd5b610bfd8383836040518060200160405280600081525061197e565b6000546001600160a01b0316331461125e5760405162461bcd60e51b8152600401610ac790613441565b6002600f55565b6060601a80546109cf90613586565b600061127f60095490565b82106112e25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ac7565b6009828154811061130357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600d54600090610100900460ff168015610c1f575050600d5460ff1690565b6000546001600160a01b0316331461135e5760405162461bcd60e51b8152600401610ac790613441565b80516110c490601a906020840190612e1f565b6000818152600360205260408120546001600160a01b0316806109ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ac7565b6000546001600160a01b031633146114125760405162461bcd60e51b8152600401610ac790613441565b6000600f55565b60006001600160a01b0382166114845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ac7565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610ac790613441565b6114d4600061235a565b565b6000600f54600114156114ea575060155490565b600f5460031415610c4c57610c1f611e5c565b6000546001600160a01b031633146115275760405162461bcd60e51b8152600401610ac790613441565b601955565b60006002600c5414156115815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ac7565b6002600c55813332146115cd5760405162461bcd60e51b81526020600482015260146024820152734170657320646f6e2774206c696b6520626f747360601b6044820152606401610ac7565b600f5460011415611670576010548111156116225760405162461bcd60e51b8152602060048201526015602482015274273ab6b132b9102a37b5b2b71034b73b30b634b21760591b6044820152606401610ac7565b6018546116309082906123aa565b3410156116705760405162461bcd60e51b815260206004820152600e60248201526d2830bcb6b2b73a1032b93937b91760911b6044820152606401610ac7565b600f5460031415611713576011548111156116c55760405162461bcd60e51b8152602060048201526015602482015274273ab6b132b9102a37b5b2b71034b73b30b634b21760591b6044820152606401610ac7565b6019546116d39082906123aa565b3410156117135760405162461bcd60e51b815260206004820152600e60248201526d2830bcb6b2b73a1032b93937b91760911b6044820152606401610ac7565b600f54600114806117265750600f546003145b61176a5760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b6044820152606401610ac7565b611776338460006123bd565b6001600c559392505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146117fa5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610ac7565b6110c48282612560565b6060600280546109cf90613586565b6000600f54600114611826575060195490565b5060185490565b6001600160a01b0382163314156118865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ac7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461191c5760405162461bcd60e51b8152600401610ac790613441565b600d5460ff161561196f5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e206f6e6c792072657665616c206f6e63652e000000000000006044820152606401610ac7565b600d805460ff19166001179055565b61198833836120bc565b6119a45760405162461bcd60e51b8152600401610ac790613476565b6119b0848484846125ec565b50505050565b6000546001600160a01b031633146119e05760405162461bcd60e51b8152600401610ac790613441565b6012548183516119f09190613524565b6014546119fd91906134f8565b1115611a4b5760405162461bcd60e51b815260206004820152601e60248201527f45786365656420616972646f7020616c6c6f77616e6365206c696d69742e00006044820152606401610ac7565b60005b8251811015610bfd57611a8a838281518110611a7a57634e487b7160e01b600052603260045260246000fd5b60200260200101518360016123bd565b50611a966001826134f8565b9050611a4e565b6000546001600160a01b03163314611ac75760405162461bcd60e51b8152600401610ac790613441565b600d805461ff00191661010017905560178190556040517ff27f46dd6a99c3c5e629976813e10e1d44d162a388a8fd4d9d3aa7f569b6a6a890611b0d9042815260200190565b60405180910390a150565b6060611b2360095490565b821115611b655760405162461bcd60e51b815260206004820152601060248201526f2a37b5b2b7103737ba1032bc34b9ba1760811b6044820152606401610ac7565b611b6d611315565b611c0157601b8054611b7e90613586565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90613586565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b50505050506109ba565b601a611c0c83610ce5565b604051602001611c1d9291906132be565b60405160208183030381529060405292915050565b6000546001600160a01b03163314611c5c5760405162461bcd60e51b8152600401610ac790613441565b600d54610100900460ff1615611cc55760405162461bcd60e51b815260206004820152602860248201527f596f75206861766520616c72656164792067656e65726174656420612072616e604482015267191bdb481cd9595960c21b6064820152608401610ac7565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015611d2e57600080fd5b505afa158015611d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d66919061325e565b1015611d7157600080fd5b611d85600e54671bc16d674ec8000061261f565b50600d805461ff0019166101001790556040517f01b54cb5e972cb28a7b6973acb80e1f2e5db76d3981a9b9023838d7ffed2198d90611dc79042815260200190565b60405180910390a1565b6000546001600160a01b03163314611dfb5760405162461bcd60e51b8152600401610ac790613441565b60015b6009548111611e5957807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611e3283611b18565b604051611e3f91906133dc565b60405180910390a2611e526001826134f8565b9050611dfe565b50565b6000601454601554611e6d60095490565b610c429190613543565b6000546001600160a01b03163314611ea15760405162461bcd60e51b8152600401610ac790613441565b6001600160a01b038116611f065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac7565b611e598161235a565b60006001600160e01b0319821663780e9d6360e01b14806109ba57506109ba826127aa565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f6982611371565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606081611fc65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ff05780611fda816135c1565b9150611fe99050600a83613510565b9150611fca565b60008167ffffffffffffffff81111561201957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612043576020820181803683370190505b5090505b8415610f7157612058600183613543565b9150612065600a866135dc565b6120709060306134f8565b60f81b81838151811061209357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120b5600a86613510565b9450612047565b6000818152600360205260408120546001600160a01b03166121355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ac7565b600061214083611371565b9050806001600160a01b0316846001600160a01b0316148061217b5750836001600160a01b031661217084610a52565b6001600160a01b0316145b80610f7157506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16610f71565b826001600160a01b03166121c282611371565b6001600160a01b03161461222a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ac7565b6001600160a01b03821661228c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac7565b6122978383836127fa565b6122a2600082611f34565b6001600160a01b03831660009081526004602052604081208054600192906122cb908490613543565b90915550506001600160a01b03821660009081526004602052604081208054600192906122f99084906134f8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006123b68284613524565b9392505050565b60006123c7610c83565b60011415612497576001600160a01b0384166000908152601f602052604090205460ff166124415760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792077686974656c6973742061646472657373657320616c6c6f7765646044820152601760f91b6064820152608401610ac7565b61244b8484612805565b6124975760405162461bcd60e51b815260206004820152601c60248201527f4d61782070726573616c6520616d6f756e742065786365656465642e000000006044820152606401610ac7565b60006124a1610c83565b1180156124ac575081155b156124f8576124ba83612838565b6124f85760405162461bcd60e51b815260206004820152600f60248201526e10d85b9b9bdd081bdd995c9cd95b1b608a1b6044820152606401610ac7565b60005b8381101561254a57600061250e60095490565b90506016548110156125375761252e866125298360016134f8565b61285c565b61253786612876565b506125436001826134f8565b90506124fb565b506125568484846128a7565b5060019392505050565b80156125b157601781905560408051428152602081018490529081018290527f7cf2ba1fcd1dbd93bd5377ab55b5d9d5480768c2e1e262fdb65c55f3e2f70095906060015b60405180910390a15050565b600160175560408051428152602081018490527ff8b01d56b3f22a17e096b4bffebc2b0bbd792d68273fb147f128afc95571832191016125a5565b6125f78484846121af565b61260384848484612913565b6119b05760405162461bcd60e51b8152600401610ac7906133ef565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f00000000000000000000000000000000000000000000000000000000000000008486600060405160200161268f929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016126bc939291906133b5565b602060405180830381600087803b1580156126d657600080fd5b505af11580156126ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270e919061318b565b506000838152600b6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a09091019092528151918301919091209387905291905261276a9060016134f8565b6000858152600b6020526040902055610f718482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160e01b031982166380ac58cd60e01b14806127db57506001600160e01b03198216635b5e139f60e01b145b806109ba57506301ffc9a760e01b6001600160e01b03198316146109ba565b610bfd838383612a20565b6010546001600160a01b0383166000908152601d602052604081205490919061282f9084906134f8565b11159392505050565b6000612842610c02565b6128548361284e6114d6565b90612ad8565b111592915050565b6110c4828260405180602001604052806000815250612ae4565b6001600160a01b0381166000908152601c6020526040812080546001929061289f9084906134f8565b909155505050565b80156128c95781601460008282546128bf91906134f8565b9091555050505050565b600f5460011415610bfd5781601560008282546128e691906134f8565b90915550506001600160a01b0383166000908152601d6020526040812080548492906128bf9084906134f8565b60006001600160a01b0384163b15612a1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612957903390899088908890600401613378565b602060405180830381600087803b15801561297157600080fd5b505af19250505080156129a1575060408051601f3d908101601f1916820190925261299e918101906131e4565b60015b6129fb573d8080156129cf576040519150601f19603f3d011682016040523d82523d6000602084013e6129d4565b606091505b5080516129f35760405162461bcd60e51b8152600401610ac7906133ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f71565b506001949350505050565b6001600160a01b038316612a7b57612a7681600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612a9e565b816001600160a01b0316836001600160a01b031614612a9e57612a9e8382612b17565b6001600160a01b038216612ab557610bfd81612bb4565b826001600160a01b0316826001600160a01b031614610bfd57610bfd8282612c8d565b60006123b682846134f8565b612aee8383612cd1565b612afb6000848484612913565b610bfd5760405162461bcd60e51b8152600401610ac7906133ef565b60006001612b2484611419565b612b2e9190613543565b600083815260086020526040902054909150808214612b81576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612bc690600190613543565b6000838152600a602052604081205460098054939450909284908110612bfc57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110612c2b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612c7157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c9883611419565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216612d275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ac7565b6000818152600360205260409020546001600160a01b031615612d8c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ac7565b612d98600083836127fa565b6001600160a01b0382166000908152600460205260408120805460019290612dc19084906134f8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612e2b90613586565b90600052602060002090601f016020900481019282612e4d5760008555612e93565b82601f10612e6657805160ff1916838001178555612e93565b82800160010185558215612e93579182015b82811115612e93578251825591602001919060010190612e78565b50612e9f929150612ea3565b5090565b5b80821115612e9f5760008155600101612ea4565b600067ffffffffffffffff831115612ed257612ed261361c565b612ee5601f8401601f19166020016134c7565b9050828152838383011115612ef957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612f2757600080fd5b919050565b600082601f830112612f3c578081fd5b8135602067ffffffffffffffff821115612f5857612f5861361c565b8160051b612f678282016134c7565b838152828101908684018388018501891015612f81578687fd5b8693505b85841015612faa57612f9681612f10565b835260019390930192918401918401612f85565b50979650505050505050565b600060208284031215612fc7578081fd5b6123b682612f10565b60008060408385031215612fe2578081fd5b612feb83612f10565b9150612ff960208401612f10565b90509250929050565b600080600060608486031215613016578081fd5b61301f84612f10565b925061302d60208501612f10565b9150604084013590509250925092565b60008060008060808587031215613052578081fd5b61305b85612f10565b935061306960208601612f10565b925060408501359150606085013567ffffffffffffffff81111561308b578182fd5b8501601f8101871361309b578182fd5b6130aa87823560208401612eb8565b91505092959194509250565b600080604083850312156130c8578182fd5b6130d183612f10565b915060208301356130e181613632565b809150509250929050565b600080604083850312156130fe578182fd5b61310783612f10565b946020939093013593505050565b600060208284031215613126578081fd5b813567ffffffffffffffff81111561313c578182fd5b610f7184828501612f2c565b6000806040838503121561315a578182fd5b823567ffffffffffffffff811115613170578283fd5b61317c85828601612f2c565b95602094909401359450505050565b60006020828403121561319c578081fd5b81516123b681613632565b600080604083850312156131b9578182fd5b50508035926020909101359150565b6000602082840312156131d9578081fd5b81356123b681613640565b6000602082840312156131f5578081fd5b81516123b681613640565b600060208284031215613211578081fd5b813567ffffffffffffffff811115613227578182fd5b8201601f81018413613237578182fd5b610f7184823560208401612eb8565b600060208284031215613257578081fd5b5035919050565b60006020828403121561326f578081fd5b5051919050565b6000815180845261328e81602086016020860161355a565b601f01601f19169290920160200192915050565b600081516132b481856020860161355a565b9290920192915050565b600080845482600182811c9150808316806132da57607f831692505b60208084108214156132fa57634e487b7160e01b87526022600452602487fd5b81801561330e576001811461331f5761334b565b60ff1986168952848901965061334b565b60008b815260209020885b868110156133435781548b82015290850190830161332a565b505084890196505b50505050505061336f61335e82866132a2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133ab90830184613276565b9695505050505050565b60018060a01b038416815282602082015260606040820152600061336f6060830184613276565b6020815260006123b66020830184613276565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134f0576134f061361c565b604052919050565b6000821982111561350b5761350b6135f0565b500190565b60008261351f5761351f613606565b500490565b600081600019048311821515161561353e5761353e6135f0565b500290565b600082821015613555576135556135f0565b500390565b60005b8381101561357557818101518382015260200161355d565b838111156119b05750506000910152565b600181811c9082168061359a57607f821691505b602082108114156135bb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135d5576135d56135f0565b5060010190565b6000826135eb576135eb613606565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611e5957600080fd5b6001600160e01b031981168114611e5957600080fdfea2646970667358221220d7c24c56622dfbb3a1e1432e88943580a8ba7d4018a730e1e8150ecca3d4dbe664736f6c63430008040033000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000f100000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000002b67000000000000000000000000000000000000000000000000000000000000001346696e652d4173732043727970746f4170657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446414341000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d6467466670553157717556485554774239676943724b37656b7562534b68633637316f4c3642557a704b57590000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c806367ecc9f2116101c6578063a85f70f3116100f7578063d5abeb0111610095578063e66e995d1161006f578063e66e995d1461091c578063e985e9c514610931578063f2fde38b1461097a578063f560d4151461099a57600080fd5b8063d5abeb01146108b0578063da064a12146108c6578063e46f3162146108e357600080fd5b8063c32a50f9116100d1578063c32a50f914610846578063c87b56dd14610866578063ccc5d84714610886578063d111515d1461089b57600080fd5b8063a85f70f3146107f0578063b88d4fde14610806578063c204642c1461082657600080fd5b8063926427441161016457806398d5fdca1161013e57806398d5fdca146107915780639b6860c8146107a6578063a22cb465146107bb578063a475b5dd146107db57600080fd5b8063926427441461074957806394985ddd1461075c57806395d89b411461077c57600080fd5b806377d3a3b9116101a057806377d3a3b9146106e0578063791a2519146106f55780637d94792a146107155780638da5cb5b1461072b57600080fd5b806367ecc9f21461069657806370a08231146106ab578063715018a6146106cb57600080fd5b80632f745c59116102a05780634e7fc34b1161023e57806354214f691161021857806354214f691461062b57806355f804b3146106405780635ce97dbb146106605780636352211e1461067657600080fd5b80634e7fc34b146105c05780634e99b800146105f65780634f6ccce71461060b57600080fd5b806342842e0e1161027a57806342842e0e1461053d57806346da8e731461055d57806349ba5175146105955780634c64384c146105aa57600080fd5b80632f745c59146104f3578063338dbf59146105135780633ccfd60b1461052857600080fd5b80630c1c972a1161030d57806318160ddd116102e757806318160ddd1461048957806323b872dd1461049e5780632617dd4d146104be5780632af89179146104de57600080fd5b80630c1c972a1461043f5780630d43ebc2146104545780630ef7cc8e1461046957600080fd5b806301ffc9a71461035557806305d5c5951461038a57806306fdde03146103ae578063081812fc146103d0578063095ea7b3146104085780630ba391501461042a575b600080fd5b34801561036157600080fd5b506103756103703660046131c8565b6109af565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103a060125481565b604051908152602001610381565b3480156103ba57600080fd5b506103c36109c0565b60405161038191906133dc565b3480156103dc57600080fd5b506103f06103eb366004613246565b610a52565b6040516001600160a01b039091168152602001610381565b34801561041457600080fd5b506104286104233660046130ec565b610aec565b005b34801561043657600080fd5b506103a0610c02565b34801561044b57600080fd5b50610428610c52565b34801561046057600080fd5b506103a0610c83565b34801561047557600080fd5b506103c3610484366004613246565b610ce5565b34801561049557600080fd5b506009546103a0565b3480156104aa57600080fd5b506104286104b9366004613002565b610f79565b3480156104ca57600080fd5b506104286104d9366004613115565b610faa565b3480156104ea57600080fd5b506104286110c8565b3480156104ff57600080fd5b506103a061050e3660046130ec565b6110f9565b34801561051f57600080fd5b5061042861118f565b34801561053457600080fd5b506104286111c0565b34801561054957600080fd5b50610428610558366004613002565b611219565b34801561056957600080fd5b50610375610578366004612fb6565b6001600160a01b03166000908152601c6020526040902054151590565b3480156105a157600080fd5b50610428611234565b3480156105b657600080fd5b506103a060135481565b3480156105cc57600080fd5b506103a06105db366004612fb6565b6001600160a01b03166000908152601c602052604090205490565b34801561060257600080fd5b506103c3611265565b34801561061757600080fd5b506103a0610626366004613246565b611274565b34801561063757600080fd5b50610375611315565b34801561064c57600080fd5b5061042861065b366004613200565b611334565b34801561066c57600080fd5b506103a060145481565b34801561068257600080fd5b506103f0610691366004613246565b611371565b3480156106a257600080fd5b506104286113e8565b3480156106b757600080fd5b506103a06106c6366004612fb6565b611419565b3480156106d757600080fd5b506104286114a0565b3480156106ec57600080fd5b506103a06114d6565b34801561070157600080fd5b50610428610710366004613246565b6114fd565b34801561072157600080fd5b506103a060175481565b34801561073757600080fd5b506000546001600160a01b03166103f0565b610375610757366004613246565b61152c565b34801561076857600080fd5b506104286107773660046131a7565b611782565b34801561078857600080fd5b506103c3611804565b34801561079d57600080fd5b506103a0611813565b3480156107b257600080fd5b506019546103a0565b3480156107c757600080fd5b506104286107d63660046130b6565b61182d565b3480156107e757600080fd5b506104286118f2565b3480156107fc57600080fd5b506103a060155481565b34801561081257600080fd5b5061042861082136600461303d565b61197e565b34801561083257600080fd5b50610428610841366004613148565b6119b6565b34801561085257600080fd5b50610428610861366004613246565b611a9d565b34801561087257600080fd5b506103c3610881366004613246565b611b18565b34801561089257600080fd5b50610428611c32565b3480156108a757600080fd5b50610428611dd1565b3480156108bc57600080fd5b506103a060165481565b3480156108d257600080fd5b50600d54610100900460ff16610375565b3480156108ef57600080fd5b506103756108fe366004612fb6565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561092857600080fd5b506103a0611e5c565b34801561093d57600080fd5b5061037561094c366004612fd0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561098657600080fd5b50610428610995366004612fb6565b611e77565b3480156109a657600080fd5b506018546103a0565b60006109ba82611f0f565b92915050565b6060600180546109cf90613586565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb90613586565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610ad05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610af782611371565b9050806001600160a01b0316836001600160a01b03161415610b655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ac7565b336001600160a01b0382161480610b815750610b81813361094c565b610bf35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ac7565b610bfd8383611f34565b505050565b6000600f5460011415610c2457601254601354610c1f9190613543565b905090565b600f5460031415610c4c57601254601554601654610c429190613543565b610c1f9190613543565b50600090565b6000546001600160a01b03163314610c7c5760405162461bcd60e51b8152600401610ac790613441565b6003600f55565b6000600f546001148015610ca75750601254601354610ca29190613543565b601554145b15610cb25750600290565b601254601654610cc29190613543565b601454600954610cd29190613543565b1415610cde5750600590565b50600f5490565b6060610cf96000546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610d5657600954821115610d565760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881a59081a5b9d985b1a5960821b6044820152606401610ac7565b600d5460ff16610d83575050604080518082019091526007815266191959985d5b1d60ca1b602082015290565b60006016546001610d9491906134f8565b67ffffffffffffffff811115610dba57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610de3578160200160208202803683370190505b5060175490915060015b6016548111610e345780838281518110610e1757634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610e2d6001826134f8565b9050610ded565b5060015b6016548111610f405760006016548383604051602001610e62929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c610e8591906135dc565b9050838181518110610ea757634e487b7160e01b600052603260045260246000fd5b6020026020010151848381518110610ecf57634e487b7160e01b600052603260045260246000fd5b6020026020010151858481518110610ef757634e487b7160e01b600052603260045260246000fd5b60200260200101868481518110610f1e57634e487b7160e01b600052603260045260246000fd5b60209081029190910101919091525250610f396001826134f8565b9050610e38565b50610f71828581518110610f6457634e487b7160e01b600052603260045260246000fd5b6020026020010151611fa2565b949350505050565b610f8333826120bc565b610f9f5760405162461bcd60e51b8152600401610ac790613476565b610bfd8383836121af565b6000546001600160a01b03163314610fd45760405162461bcd60e51b8152600401610ac790613441565b60005b81518110156110c4576001601f600084848151811061100657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507fac53dce04edfb472e0f52a6ad95c2393d1fedefb32b538e84dcfc4df15e248a882828151811061108657634e487b7160e01b600052603260045260246000fd5b60200260200101516040516110aa91906001600160a01b0391909116815260200190565b60405180910390a16110bd6001826134f8565b9050610fd7565b5050565b6000546001600160a01b031633146110f25760405162461bcd60e51b8152600401610ac790613441565b6004600f55565b600061110483611419565b82106111665760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ac7565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b031633146111b95760405162461bcd60e51b8152600401610ac790613441565b6001600f55565b6000546001600160a01b031633146111ea5760405162461bcd60e51b8152600401610ac790613441565b6040514790339082156108fc029083906000818181858888f193505050501580156110c4573d6000803e3d6000fd5b610bfd8383836040518060200160405280600081525061197e565b6000546001600160a01b0316331461125e5760405162461bcd60e51b8152600401610ac790613441565b6002600f55565b6060601a80546109cf90613586565b600061127f60095490565b82106112e25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ac7565b6009828154811061130357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600d54600090610100900460ff168015610c1f575050600d5460ff1690565b6000546001600160a01b0316331461135e5760405162461bcd60e51b8152600401610ac790613441565b80516110c490601a906020840190612e1f565b6000818152600360205260408120546001600160a01b0316806109ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ac7565b6000546001600160a01b031633146114125760405162461bcd60e51b8152600401610ac790613441565b6000600f55565b60006001600160a01b0382166114845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ac7565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610ac790613441565b6114d4600061235a565b565b6000600f54600114156114ea575060155490565b600f5460031415610c4c57610c1f611e5c565b6000546001600160a01b031633146115275760405162461bcd60e51b8152600401610ac790613441565b601955565b60006002600c5414156115815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ac7565b6002600c55813332146115cd5760405162461bcd60e51b81526020600482015260146024820152734170657320646f6e2774206c696b6520626f747360601b6044820152606401610ac7565b600f5460011415611670576010548111156116225760405162461bcd60e51b8152602060048201526015602482015274273ab6b132b9102a37b5b2b71034b73b30b634b21760591b6044820152606401610ac7565b6018546116309082906123aa565b3410156116705760405162461bcd60e51b815260206004820152600e60248201526d2830bcb6b2b73a1032b93937b91760911b6044820152606401610ac7565b600f5460031415611713576011548111156116c55760405162461bcd60e51b8152602060048201526015602482015274273ab6b132b9102a37b5b2b71034b73b30b634b21760591b6044820152606401610ac7565b6019546116d39082906123aa565b3410156117135760405162461bcd60e51b815260206004820152600e60248201526d2830bcb6b2b73a1032b93937b91760911b6044820152606401610ac7565b600f54600114806117265750600f546003145b61176a5760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b6044820152606401610ac7565b611776338460006123bd565b6001600c559392505050565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795216146117fa5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610ac7565b6110c48282612560565b6060600280546109cf90613586565b6000600f54600114611826575060195490565b5060185490565b6001600160a01b0382163314156118865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ac7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461191c5760405162461bcd60e51b8152600401610ac790613441565b600d5460ff161561196f5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e206f6e6c792072657665616c206f6e63652e000000000000006044820152606401610ac7565b600d805460ff19166001179055565b61198833836120bc565b6119a45760405162461bcd60e51b8152600401610ac790613476565b6119b0848484846125ec565b50505050565b6000546001600160a01b031633146119e05760405162461bcd60e51b8152600401610ac790613441565b6012548183516119f09190613524565b6014546119fd91906134f8565b1115611a4b5760405162461bcd60e51b815260206004820152601e60248201527f45786365656420616972646f7020616c6c6f77616e6365206c696d69742e00006044820152606401610ac7565b60005b8251811015610bfd57611a8a838281518110611a7a57634e487b7160e01b600052603260045260246000fd5b60200260200101518360016123bd565b50611a966001826134f8565b9050611a4e565b6000546001600160a01b03163314611ac75760405162461bcd60e51b8152600401610ac790613441565b600d805461ff00191661010017905560178190556040517ff27f46dd6a99c3c5e629976813e10e1d44d162a388a8fd4d9d3aa7f569b6a6a890611b0d9042815260200190565b60405180910390a150565b6060611b2360095490565b821115611b655760405162461bcd60e51b815260206004820152601060248201526f2a37b5b2b7103737ba1032bc34b9ba1760811b6044820152606401610ac7565b611b6d611315565b611c0157601b8054611b7e90613586565b80601f0160208091040260200160405190810160405280929190818152602001828054611baa90613586565b8015611bf75780601f10611bcc57610100808354040283529160200191611bf7565b820191906000526020600020905b815481529060010190602001808311611bda57829003601f168201915b50505050506109ba565b601a611c0c83610ce5565b604051602001611c1d9291906132be565b60405160208183030381529060405292915050565b6000546001600160a01b03163314611c5c5760405162461bcd60e51b8152600401610ac790613441565b600d54610100900460ff1615611cc55760405162461bcd60e51b815260206004820152602860248201527f596f75206861766520616c72656164792067656e65726174656420612072616e604482015267191bdb481cd9595960c21b6064820152608401610ac7565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b158015611d2e57600080fd5b505afa158015611d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d66919061325e565b1015611d7157600080fd5b611d85600e54671bc16d674ec8000061261f565b50600d805461ff0019166101001790556040517f01b54cb5e972cb28a7b6973acb80e1f2e5db76d3981a9b9023838d7ffed2198d90611dc79042815260200190565b60405180910390a1565b6000546001600160a01b03163314611dfb5760405162461bcd60e51b8152600401610ac790613441565b60015b6009548111611e5957807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611e3283611b18565b604051611e3f91906133dc565b60405180910390a2611e526001826134f8565b9050611dfe565b50565b6000601454601554611e6d60095490565b610c429190613543565b6000546001600160a01b03163314611ea15760405162461bcd60e51b8152600401610ac790613441565b6001600160a01b038116611f065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac7565b611e598161235a565b60006001600160e01b0319821663780e9d6360e01b14806109ba57506109ba826127aa565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f6982611371565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606081611fc65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ff05780611fda816135c1565b9150611fe99050600a83613510565b9150611fca565b60008167ffffffffffffffff81111561201957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612043576020820181803683370190505b5090505b8415610f7157612058600183613543565b9150612065600a866135dc565b6120709060306134f8565b60f81b81838151811061209357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120b5600a86613510565b9450612047565b6000818152600360205260408120546001600160a01b03166121355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ac7565b600061214083611371565b9050806001600160a01b0316846001600160a01b0316148061217b5750836001600160a01b031661217084610a52565b6001600160a01b0316145b80610f7157506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16610f71565b826001600160a01b03166121c282611371565b6001600160a01b03161461222a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ac7565b6001600160a01b03821661228c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac7565b6122978383836127fa565b6122a2600082611f34565b6001600160a01b03831660009081526004602052604081208054600192906122cb908490613543565b90915550506001600160a01b03821660009081526004602052604081208054600192906122f99084906134f8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006123b68284613524565b9392505050565b60006123c7610c83565b60011415612497576001600160a01b0384166000908152601f602052604090205460ff166124415760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792077686974656c6973742061646472657373657320616c6c6f7765646044820152601760f91b6064820152608401610ac7565b61244b8484612805565b6124975760405162461bcd60e51b815260206004820152601c60248201527f4d61782070726573616c6520616d6f756e742065786365656465642e000000006044820152606401610ac7565b60006124a1610c83565b1180156124ac575081155b156124f8576124ba83612838565b6124f85760405162461bcd60e51b815260206004820152600f60248201526e10d85b9b9bdd081bdd995c9cd95b1b608a1b6044820152606401610ac7565b60005b8381101561254a57600061250e60095490565b90506016548110156125375761252e866125298360016134f8565b61285c565b61253786612876565b506125436001826134f8565b90506124fb565b506125568484846128a7565b5060019392505050565b80156125b157601781905560408051428152602081018490529081018290527f7cf2ba1fcd1dbd93bd5377ab55b5d9d5480768c2e1e262fdb65c55f3e2f70095906060015b60405180910390a15050565b600160175560408051428152602081018490527ff8b01d56b3f22a17e096b4bffebc2b0bbd792d68273fb147f128afc95571832191016125a5565b6125f78484846121af565b61260384848484612913565b6119b05760405162461bcd60e51b8152600401610ac7906133ef565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79528486600060405160200161268f929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016126bc939291906133b5565b602060405180830381600087803b1580156126d657600080fd5b505af11580156126ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270e919061318b565b506000838152600b6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a09091019092528151918301919091209387905291905261276a9060016134f8565b6000858152600b6020526040902055610f718482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160e01b031982166380ac58cd60e01b14806127db57506001600160e01b03198216635b5e139f60e01b145b806109ba57506301ffc9a760e01b6001600160e01b03198316146109ba565b610bfd838383612a20565b6010546001600160a01b0383166000908152601d602052604081205490919061282f9084906134f8565b11159392505050565b6000612842610c02565b6128548361284e6114d6565b90612ad8565b111592915050565b6110c4828260405180602001604052806000815250612ae4565b6001600160a01b0381166000908152601c6020526040812080546001929061289f9084906134f8565b909155505050565b80156128c95781601460008282546128bf91906134f8565b9091555050505050565b600f5460011415610bfd5781601560008282546128e691906134f8565b90915550506001600160a01b0383166000908152601d6020526040812080548492906128bf9084906134f8565b60006001600160a01b0384163b15612a1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612957903390899088908890600401613378565b602060405180830381600087803b15801561297157600080fd5b505af19250505080156129a1575060408051601f3d908101601f1916820190925261299e918101906131e4565b60015b6129fb573d8080156129cf576040519150601f19603f3d011682016040523d82523d6000602084013e6129d4565b606091505b5080516129f35760405162461bcd60e51b8152600401610ac7906133ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f71565b506001949350505050565b6001600160a01b038316612a7b57612a7681600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612a9e565b816001600160a01b0316836001600160a01b031614612a9e57612a9e8382612b17565b6001600160a01b038216612ab557610bfd81612bb4565b826001600160a01b0316826001600160a01b031614610bfd57610bfd8282612c8d565b60006123b682846134f8565b612aee8383612cd1565b612afb6000848484612913565b610bfd5760405162461bcd60e51b8152600401610ac7906133ef565b60006001612b2484611419565b612b2e9190613543565b600083815260086020526040902054909150808214612b81576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612bc690600190613543565b6000838152600a602052604081205460098054939450909284908110612bfc57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110612c2b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612c7157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c9883611419565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216612d275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ac7565b6000818152600360205260409020546001600160a01b031615612d8c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ac7565b612d98600083836127fa565b6001600160a01b0382166000908152600460205260408120805460019290612dc19084906134f8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612e2b90613586565b90600052602060002090601f016020900481019282612e4d5760008555612e93565b82601f10612e6657805160ff1916838001178555612e93565b82800160010185558215612e93579182015b82811115612e93578251825591602001919060010190612e78565b50612e9f929150612ea3565b5090565b5b80821115612e9f5760008155600101612ea4565b600067ffffffffffffffff831115612ed257612ed261361c565b612ee5601f8401601f19166020016134c7565b9050828152838383011115612ef957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612f2757600080fd5b919050565b600082601f830112612f3c578081fd5b8135602067ffffffffffffffff821115612f5857612f5861361c565b8160051b612f678282016134c7565b838152828101908684018388018501891015612f81578687fd5b8693505b85841015612faa57612f9681612f10565b835260019390930192918401918401612f85565b50979650505050505050565b600060208284031215612fc7578081fd5b6123b682612f10565b60008060408385031215612fe2578081fd5b612feb83612f10565b9150612ff960208401612f10565b90509250929050565b600080600060608486031215613016578081fd5b61301f84612f10565b925061302d60208501612f10565b9150604084013590509250925092565b60008060008060808587031215613052578081fd5b61305b85612f10565b935061306960208601612f10565b925060408501359150606085013567ffffffffffffffff81111561308b578182fd5b8501601f8101871361309b578182fd5b6130aa87823560208401612eb8565b91505092959194509250565b600080604083850312156130c8578182fd5b6130d183612f10565b915060208301356130e181613632565b809150509250929050565b600080604083850312156130fe578182fd5b61310783612f10565b946020939093013593505050565b600060208284031215613126578081fd5b813567ffffffffffffffff81111561313c578182fd5b610f7184828501612f2c565b6000806040838503121561315a578182fd5b823567ffffffffffffffff811115613170578283fd5b61317c85828601612f2c565b95602094909401359450505050565b60006020828403121561319c578081fd5b81516123b681613632565b600080604083850312156131b9578182fd5b50508035926020909101359150565b6000602082840312156131d9578081fd5b81356123b681613640565b6000602082840312156131f5578081fd5b81516123b681613640565b600060208284031215613211578081fd5b813567ffffffffffffffff811115613227578182fd5b8201601f81018413613237578182fd5b610f7184823560208401612eb8565b600060208284031215613257578081fd5b5035919050565b60006020828403121561326f578081fd5b5051919050565b6000815180845261328e81602086016020860161355a565b601f01601f19169290920160200192915050565b600081516132b481856020860161355a565b9290920192915050565b600080845482600182811c9150808316806132da57607f831692505b60208084108214156132fa57634e487b7160e01b87526022600452602487fd5b81801561330e576001811461331f5761334b565b60ff1986168952848901965061334b565b60008b815260209020885b868110156133435781548b82015290850190830161332a565b505084890196505b50505050505061336f61335e82866132a2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133ab90830184613276565b9695505050505050565b60018060a01b038416815282602082015260606040820152600061336f6060830184613276565b6020815260006123b66020830184613276565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134f0576134f061361c565b604052919050565b6000821982111561350b5761350b6135f0565b500190565b60008261351f5761351f613606565b500490565b600081600019048311821515161561353e5761353e6135f0565b500290565b600082821015613555576135556135f0565b500390565b60005b8381101561357557818101518382015260200161355d565b838111156119b05750506000910152565b600181811c9082168061359a57607f821691505b602082108114156135bb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135d5576135d56135f0565b5060010190565b6000826135eb576135eb613606565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611e5957600080fd5b6001600160e01b031981168114611e5957600080fdfea2646970667358221220d7c24c56622dfbb3a1e1432e88943580a8ba7d4018a730e1e8150ecca3d4dbe664736f6c63430008040033

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

000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000f100000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000002b67000000000000000000000000000000000000000000000000000000000000001346696e652d4173732043727970746f4170657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446414341000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d6467466670553157717556485554774239676943724b37656b7562534b68633637316f4c3642557a704b57590000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [1] : linkToken (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : tokenName (string): Fine-Ass CryptoApes
Arg [4] : tokenSymbol (string): FACA
Arg [5] : baseURI (string):
Arg [6] : defaultURI (string): https://ipfs.io/ipfs/QmdgFfpU1WquVHUTwB9giCrK7ekubSKhc671oL6BUzpKWY
Arg [7] : maximumAirdrop (uint256): 241
Arg [8] : maximumPrivateSale (uint256): 2222
Arg [9] : maximumSupply (uint256): 11111

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 00000000000000000000000000000000000000000000000000000000000000f1
Arg [8] : 00000000000000000000000000000000000000000000000000000000000008ae
Arg [9] : 0000000000000000000000000000000000000000000000000000000000002b67
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [11] : 46696e652d4173732043727970746f4170657300000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 4641434100000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [16] : 68747470733a2f2f697066732e696f2f697066732f516d646746667055315771
Arg [17] : 7556485554774239676943724b37656b7562534b68633637316f4c3642557a70
Arg [18] : 4b57590000000000000000000000000000000000000000000000000000000000


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.