ETH Price: $3,487.91 (-0.07%)
Gas: 2 Gwei

Token

FudgyPenguins (FPG)
 

Overview

Max Total Supply

115 FPG

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
12 FPG
0x392fa612154ccadd6b3b34048d4de84a4e2e0d8f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FudgyPenguins

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 19 : FudgyPenguins.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract FudgyPenguins is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;
    Counters.Counter private _publicTokenTracker;

    uint256 public constant MAX_ELEMENTS = 8888;
    uint256 public maxPublic = 7777;
    uint256 public constant MAX_BY_MINT = 20;
    string public baseTokenURI;
    
    IERC721 internal constant OG_PUDGY_CONTRACT = IERC721(0xBd3531dA5CF5857e7CfAA92426877b022e612cf8);
    uint256[] public fudgiesThatAreOG;
    uint256[] public OGPudgiesReserved;
    mapping(uint256 => bool) internal OGAlreadyClaimed;
    mapping(address => bool) public whitelistClaimed;
    
    bytes32 public merkleRoot;
    

    event CreatePenguin(uint256 indexed id);
    constructor(string memory baseURI) ERC721("FudgyPenguins", "FPG") {
        setBaseURI(baseURI);
        pause(true);
    }

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
    modifier whitelisted(bytes32[] calldata _merkleProof) {
        require(!whitelistClaimed[msg.sender], "Address has already claimed");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Sorry, you are not whitelisted");
        _;
    }

    function _totalSupply() internal view returns (uint256) {
        return _tokenIdTracker.current();
    }
    function _totalPublicSupply() internal view returns (uint256) {
        return _publicTokenTracker.current();
    }
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
    function whitelistMint(address _to, bytes32[] calldata _merkleProof) public whitelisted(_merkleProof) saleIsOpen {
        uint256 total = _totalSupply();
        require(total < MAX_ELEMENTS, "Max limit");
        whitelistClaimed[msg.sender] = true;
        _mintAnElement(_to);
    }
    function whitelistMintPudgy(address _to, bytes32[] calldata _merkleProof, uint256 _specificPudgy) public whitelisted(_merkleProof) saleIsOpen {
        uint256 total = _totalSupply();
        require(total < MAX_ELEMENTS, "Max limit");
        require(msg.sender == OG_PUDGY_CONTRACT.ownerOf(_specificPudgy), "You do not own the original Pudgy you are trying to mint");
        require(!OGAlreadyClaimed[_specificPudgy], "This pudgy was already claimed");
        whitelistClaimed[msg.sender] = true;
        
        _mintASpecificFudgy(_to, _specificPudgy);
    }
    
    function mint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        uint256 public_total = _totalPublicSupply();
        require(total + _count <= MAX_ELEMENTS, "Max limit");
        require(public_total + _count <= maxPublic, "Max limit");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _publicTokenTracker.increment();
            _mintAnElement(_to);
        }
    }
    function setMerkleRoot(bytes32 newMerkleRoot) public onlyOwner {
        merkleRoot = newMerkleRoot;
    }
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreatePenguin(id);
    }
    function mintMyPudgies(address _to, uint256[] memory _pudgies) public payable saleIsOpen {
        uint256 total = _totalSupply();
        uint256 public_total = _totalPublicSupply();
        uint256 count = _pudgies.length;
        require(total + count <= MAX_ELEMENTS, "Max limit");
        require(public_total + count <= maxPublic, "Max limit");
        require(count <= MAX_BY_MINT, "Exceeds number");
        require(msg.value >= (1 * 10**16 * count), "Value below price");

        for (uint256 i = 0; i < count; i++){
            require(msg.sender == OG_PUDGY_CONTRACT.ownerOf(_pudgies[i]), "You do not own the original Pudgy you are trying to mint");
            require(!OGAlreadyClaimed[_pudgies[i]], "This pudgy was already claimed");
            _publicTokenTracker.increment();
            _mintASpecificFudgy(_to, _pudgies[i]);
        }
    }
    function _mintASpecificFudgy(address _to, uint256 _og) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        fudgiesThatAreOG.push(id);
        OGPudgiesReserved.push(_og);
        OGAlreadyClaimed[_og] = true;
        _safeMint(_to, id);
        emit CreatePenguin(id);
    }
    function price(uint256 _count) public view returns (uint256) {
        if (_totalPublicSupply() < 1111){
            return 1 * 10**16 * _count;
        } else if (_totalPublicSupply() < 3333) {
            return 2 * 10**16 * _count;
        } else {
            return 3 * 10**16 * _count;
        }
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setMaxPublic(uint256 _maxPublic) public onlyOwner {
        maxPublic = _maxPublic;
    }

    function tokensOwnedByAddress(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _withdraw(owner(), address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 19 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 8 of 19 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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 9 of 19 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 19 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 19 of 19 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreatePenguin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"OGPudgiesReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"fudgiesThatAreOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_pudgies","type":"uint256[]"}],"name":"mintMyPudgies","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOwnedByAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_specificPudgy","type":"uint256"}],"name":"whitelistMintPudgy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611e61600d553480156200001757600080fd5b5060405162003fc038038062003fc08339810160408190526200003a9162000400565b604080518082018252600d81526c467564677950656e6775696e7360981b60208083019182528351808501909452600384526246504760e81b9084015281519192916200008a916000916200035a565b508051620000a09060019060208401906200035a565b505050620000bd620000b7620000e860201b60201c565b620000ec565b600a805460ff60a01b19169055620000d5816200013e565b620000e16001620001a6565b506200052f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200018d5760405162461bcd60e51b8152602060048201819052602482015260008051602062003fa083398151915260448201526064015b60405180910390fd5b8051620001a290600e9060208401906200035a565b5050565b600a546001600160a01b03163314620001f15760405162461bcd60e51b8152602060048201819052602482015260008051602062003fa0833981519152604482015260640162000184565b600181151514156200020a576200020762000214565b50565b62000207620002c3565b62000228600a54600160a01b900460ff1690565b156200026a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000184565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002a63390565b6040516001600160a01b03909116815260200160405180910390a1565b620002d7600a54600160a01b900460ff1690565b620003255760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640162000184565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33620002a6565b8280546200036890620004dc565b90600052602060002090601f0160209004810192826200038c5760008555620003d7565b82601f10620003a757805160ff1916838001178555620003d7565b82800160010185558215620003d7579182015b82811115620003d7578251825591602001919060010190620003ba565b50620003e5929150620003e9565b5090565b5b80821115620003e55760008155600101620003ea565b600060208083850312156200041457600080fd5b82516001600160401b03808211156200042c57600080fd5b818501915085601f8301126200044157600080fd5b81518181111562000456576200045662000519565b604051601f8201601f19908116603f0116810190838211818310171562000481576200048162000519565b8160405282815288868487010111156200049a57600080fd5b600093505b82841015620004be57848401860151818501870152928501926200049f565b82841115620004d05760008684830101525b98975050505050505050565b600181811c90821680620004f157607f821691505b602082108114156200051357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613a61806200053f6000396000f3fe6080604052600436106102c65760003560e01c80635c975abb11610179578063a22cb465116100d6578063d547cfb71161008a578063e985e9c511610064578063e985e9c51461075f578063f2fde38b146107a8578063fbdb8494146107c857600080fd5b8063d547cfb7146106fa578063db4bec441461070f578063e2eae08f1461073f57600080fd5b8063b88d4fde116100bb578063b88d4fde1461068d578063bda02095146106ad578063c87b56dd146106da57600080fd5b8063a22cb4651461064d578063a6b6e4331461066d57600080fd5b80637dc429751161012d5780638ad5de28116101125780638ad5de28146106055780638da5cb5b1461061a57806395d89b411461063857600080fd5b80637dc42975146105da578063853828b6146105f057600080fd5b806370a082311161015e57806370a0823114610585578063715018a6146105a55780637cb64759146105ba57600080fd5b80635c975abb146105465780636352211e1461056557600080fd5b80632eb4a7ab1161022757806342842e0e116101db5780634f6ccce7116101c05780634f6ccce7146104f157806355f804b31461051157806359a7715a1461053157600080fd5b806342842e0e146104b157806342966c68146104d157600080fd5b80633502a7161161020c5780633502a71614610475578063387b8a3c1461048b57806340c10f191461049e57600080fd5b80632eb4a7ab1461043f5780632f745c591461045557600080fd5b8063095ea7b31161027e57806318160ddd1161026357806318160ddd146103ea57806323b872dd146103ff57806326a49e371461041f57600080fd5b8063095ea7b31461039c578063142e50c1146103bc57600080fd5b806306799b48116102af57806306799b481461032257806306fdde0314610342578063081812fc1461036457600080fd5b806301ffc9a7146102cb57806302329a2914610300575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046136f8565b6107e8565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b5061032061031b3660046136c4565b6107f9565b005b34801561032e57600080fd5b5061032061033d366004613545565b610876565b34801561034e57600080fd5b50610357610c3b565b6040516102f79190613856565b34801561037057600080fd5b5061038461037f3660046136df565b610ccd565b6040516001600160a01b0390911681526020016102f7565b3480156103a857600080fd5b506103206103b7366004613698565b610d62565b3480156103c857600080fd5b506103dc6103d73660046136df565b610e94565b6040519081526020016102f7565b3480156103f657600080fd5b506008546103dc565b34801561040b57600080fd5b5061032061041a36600461342f565b610eb5565b34801561042b57600080fd5b506103dc61043a3660046136df565b610f3d565b34801561044b57600080fd5b506103dc60135481565b34801561046157600080fd5b506103dc610470366004613698565b610f99565b34801561048157600080fd5b506103dc6122b881565b6103206104993660046135a1565b611041565b6103206104ac366004613698565b611446565b3480156104bd57600080fd5b506103206104cc36600461342f565b611673565b3480156104dd57600080fd5b506103206104ec3660046136df565b61168e565b3480156104fd57600080fd5b506103dc61050c3660046136df565b611712565b34801561051d57600080fd5b5061032061052c366004613732565b6117b6565b34801561053d57600080fd5b506103dc611827565b34801561055257600080fd5b50600a54600160a01b900460ff166102eb565b34801561057157600080fd5b506103846105803660046136df565b611836565b34801561059157600080fd5b506103dc6105a03660046133bc565b6118c1565b3480156105b157600080fd5b5061032061195b565b3480156105c657600080fd5b506103206105d53660046136df565b6119c1565b3480156105e657600080fd5b506103dc600d5481565b3480156105fc57600080fd5b50610320611a20565b34801561061157600080fd5b506103dc601481565b34801561062657600080fd5b50600a546001600160a01b0316610384565b34801561064457600080fd5b50610357611aa0565b34801561065957600080fd5b50610320610668366004613663565b611aaf565b34801561067957600080fd5b506103206106883660046134f0565b611aba565b34801561069957600080fd5b506103206106a8366004613470565b611cfc565b3480156106b957600080fd5b506106cd6106c83660046133bc565b611d8a565b6040516102f79190613812565b3480156106e657600080fd5b506103576106f53660046136df565b611e2c565b34801561070657600080fd5b50610357611f15565b34801561071b57600080fd5b506102eb61072a3660046133bc565b60126020526000908152604090205460ff1681565b34801561074b57600080fd5b506103dc61075a3660046136df565b611fa3565b34801561076b57600080fd5b506102eb61077a3660046133f6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b457600080fd5b506103206107c33660046133bc565b611fb3565b3480156107d457600080fd5b506103206107e33660046136df565b612092565b60006107f3826120f1565b92915050565b600a546001600160a01b031633146108585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001811515141561086e5761086b61212f565b50565b61086b6121d4565b336000908152601260205260409020548390839060ff16156108da5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d65640000000000604482015260640161084f565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610954838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612261565b6109a05760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c20796f7520617265206e6f742077686974656c69737465640000604482015260640161084f565b6122b86109ab612277565b11156109e45760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b03163314610a4357600a54600160a01b900460ff1615610a435760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b6000610a4d612277565b90506122b88110610a8c5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b6040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810186905273bd3531da5cf5857e7cfaa92426877b022e612cf890636352211e9060240160206040518083038186803b158015610af057600080fd5b505afa158015610b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2891906133d9565b6001600160a01b0316336001600160a01b031614610bae5760405162461bcd60e51b815260206004820152603860248201527f596f7520646f206e6f74206f776e20746865206f726967696e616c205075646760448201527f7920796f752061726520747279696e6720746f206d696e740000000000000000606482015260840161084f565b60008581526011602052604090205460ff1615610c0d5760405162461bcd60e51b815260206004820152601e60248201527f546869732070756467792077617320616c726561647920636c61696d65640000604482015260640161084f565b336000908152601260205260409020805460ff19166001179055610c318886612282565b5050505050505050565b606060008054610c4a90613928565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7690613928565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b506000908152600460205260409020546001600160a01b031690565b6000610d6d82611836565b9050806001600160a01b0316836001600160a01b03161415610df75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161084f565b336001600160a01b0382161480610e135750610e13813361077a565b610e855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084f565b610e8f838361234f565b505050565b600f8181548110610ea457600080fd5b600091825260209091200154905081565b610ec0335b826123bd565b610f325760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161084f565b610e8f8383836124b4565b6000610457610f4a61268c565b1015610f61576107f382662386f26fc100006138c6565b610d05610f6c61268c565b1015610f83576107f38266470de4df8200006138c6565b6107f382666a94d74f4300006138c6565b919050565b6000610fa4836118c1565b82106110185760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161084f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6122b861104c612277565b11156110855760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b031633146110e457600a54600160a01b900460ff16156110e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b60006110ee612277565b905060006110fa61268c565b83519091506122b861110c828561389a565b11156111465760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b600d54611153828461389a565b111561118d5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b60148111156111de5760405162461bcd60e51b815260206004820152600e60248201527f45786365656473206e756d626572000000000000000000000000000000000000604482015260640161084f565b6111ef81662386f26fc100006138c6565b34101561123e5760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f77207072696365000000000000000000000000000000604482015260640161084f565b60005b8181101561143e5773bd3531da5cf5857e7cfaa92426877b022e612cf86001600160a01b0316636352211e86838151811061127e5761127e6139d4565b60200260200101516040518263ffffffff1660e01b81526004016112a491815260200190565b60206040518083038186803b1580156112bc57600080fd5b505afa1580156112d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f491906133d9565b6001600160a01b0316336001600160a01b03161461137a5760405162461bcd60e51b815260206004820152603860248201527f596f7520646f206e6f74206f776e20746865206f726967696e616c205075646760448201527f7920796f752061726520747279696e6720746f206d696e740000000000000000606482015260840161084f565b60116000868381518110611390576113906139d4565b60209081029190910181015182528101919091526040016000205460ff16156113fb5760405162461bcd60e51b815260206004820152601e60248201527f546869732070756467792077617320616c726561647920636c61696d65640000604482015260640161084f565b611409600c80546001019055565b61142c8686838151811061141f5761141f6139d4565b6020026020010151612282565b8061143681613963565b915050611241565b505050505050565b6122b8611451612277565b111561148a5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b031633146114e957600a54600160a01b900460ff16156114e95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b60006114f3612277565b905060006114ff61268c565b90506122b861150e848461389a565b11156115485760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b600d54611555848361389a565b111561158f5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b60148311156115e05760405162461bcd60e51b815260206004820152600e60248201527f45786365656473206e756d626572000000000000000000000000000000000000604482015260640161084f565b6115e983610f3d565b3410156116385760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f77207072696365000000000000000000000000000000604482015260640161084f565b60005b8381101561166c57611651600c80546001019055565b61165a85612697565b8061166481613963565b91505061163b565b5050505050565b610e8f83838360405180602001604052806000815250611cfc565b61169733610eba565b6117095760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000606482015260840161084f565b61086b816126ea565b600061171d60085490565b82106117915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161084f565b600882815481106117a4576117a46139d4565b90600052602060002001549050919050565b600a546001600160a01b031633146118105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b805161182390600e90602084019061326f565b5050565b6000611831612277565b905090565b6000818152600260205260408120546001600160a01b0316806107f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161084f565b60006001600160a01b03821661193f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161084f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146119b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b6119bf6000612791565b565b600a546001600160a01b03163314611a1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b601355565b600a546001600160a01b03163314611a7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b4780611a8557600080fd5b61086b611a9a600a546001600160a01b031690565b476127e3565b606060018054610c4a90613928565b611823338383612886565b336000908152601260205260409020548290829060ff1615611b1e5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d65640000000000604482015260640161084f565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b98838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612261565b611be45760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c20796f7520617265206e6f742077686974656c69737465640000604482015260640161084f565b6122b8611bef612277565b1115611c285760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b03163314611c8757600a54600160a01b900460ff1615611c875760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b6000611c91612277565b90506122b88110611cd05760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b336000908152601260205260409020805460ff19166001179055611cf387612697565b50505050505050565b611d0633836123bd565b611d785760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161084f565b611d8484848484612955565b50505050565b60606000611d97836118c1565b905060008167ffffffffffffffff811115611db457611db46139ea565b604051908082528060200260200182016040528015611ddd578160200160208202803683370190505b50905060005b82811015611e2457611df58582610f99565b828281518110611e0757611e076139d4565b602090810291909101015280611e1c81613963565b915050611de3565b509392505050565b6000818152600260205260409020546060906001600160a01b0316611eb95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161084f565b6000611ec36129d3565b90506000815111611ee35760405180602001604052806000815250611f0e565b80611eed846129e2565b604051602001611efe9291906137a7565b6040516020818303038152906040525b9392505050565b600e8054611f2290613928565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4e90613928565b8015611f9b5780601f10611f7057610100808354040283529160200191611f9b565b820191906000526020600020905b815481529060010190602001808311611f7e57829003601f168201915b505050505081565b60108181548110610ea457600080fd5b600a546001600160a01b0316331461200d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b6001600160a01b0381166120895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161084f565b61086b81612791565b600a546001600160a01b031633146120ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b600d55565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107f357506107f382612b14565b600a54600160a01b900460ff161561217c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121b73390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff1661222d5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161084f565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336121b7565b60008261226e8584612baf565b14949350505050565b6000611831600b5490565b600061228c612277565b905061229c600b80546001019055565b600f805460018181019092557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201829055601080548083019091557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018390556000838152601160205260409020805460ff1916909117905561231f8382612c53565b60405181907f645f26e653c951cec836533f8fe0616d301c20a17153debc17d7c3dbe4f32b2890600090a2505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061238482611836565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166124365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b600061244183611836565b9050806001600160a01b0316846001600160a01b0316148061247c5750836001600160a01b031661247184610ccd565b6001600160a01b0316145b806124ac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124c782611836565b6001600160a01b0316146125435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161084f565b6001600160a01b0382166125be5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161084f565b6125c9838383612c6d565b6125d460008261234f565b6001600160a01b03831660009081526003602052604081208054600192906125fd9084906138e5565b90915550506001600160a01b038216600090815260036020526040812080546001929061262b90849061389a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611831600c5490565b60006126a1612277565b90506126b1600b80546001019055565b6126bb8282612c53565b60405181907f645f26e653c951cec836533f8fe0616d301c20a17153debc17d7c3dbe4f32b2890600090a25050565b60006126f582611836565b905061270381600084612c6d565b61270e60008361234f565b6001600160a01b03811660009081526003602052604081208054600192906127379084906138e5565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b5050905080610e8f5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161084f565b816001600160a01b0316836001600160a01b031614156128e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6129608484846124b4565b61296c84848484612c78565b611d845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161084f565b6060600e8054610c4a90613928565b606081612a2257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a4c5780612a3681613963565b9150612a459050600a836138b2565b9150612a26565b60008167ffffffffffffffff811115612a6757612a676139ea565b6040519080825280601f01601f191660200182016040528015612a91576020820181803683370190505b5090505b84156124ac57612aa66001836138e5565b9150612ab3600a8661397e565b612abe90603061389a565b60f81b818381518110612ad357612ad36139d4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b0d600a866138b2565b9450612a95565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b7757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107f357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107f3565b600081815b8451811015611e24576000858281518110612bd157612bd16139d4565b60200260200101519050808311612c13576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612c40565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612c4b81613963565b915050612bb4565b611823828260405180602001604052806000815250612dd0565b610e8f838383612e4e565b60006001600160a01b0384163b15612dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cbc9033908990889088906004016137d6565b602060405180830381600087803b158015612cd657600080fd5b505af1925050508015612d06575060408051601f3d908101601f19168201909252612d0391810190613715565b60015b612dab573d808015612d34576040519150601f19603f3d011682016040523d82523d6000602084013e612d39565b606091505b508051612da35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161084f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124ac565b506001949350505050565b612dda8383612ed9565b612de76000848484612c78565b610e8f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161084f565b612e59838383613027565b600a54600160a01b900460ff1615610e8f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c6520706175736564000000000000000000000000000000000000000000606482015260840161084f565b6001600160a01b038216612f2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084f565b6000818152600260205260409020546001600160a01b031615612f945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084f565b612fa060008383612c6d565b6001600160a01b0382166000908152600360205260408120805460019290612fc990849061389a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166130825761307d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6130a5565b816001600160a01b0316836001600160a01b0316146130a5576130a583826130df565b6001600160a01b0382166130bc57610e8f8161317c565b826001600160a01b0316826001600160a01b031614610e8f57610e8f828261322b565b600060016130ec846118c1565b6130f691906138e5565b600083815260076020526040902054909150808214613149576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061318e906001906138e5565b600083815260096020526040812054600880549394509092849081106131b6576131b66139d4565b9060005260206000200154905080600883815481106131d7576131d76139d4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061320f5761320f6139be565b6001900381819060005260206000200160009055905550505050565b6000613236836118c1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461327b90613928565b90600052602060002090601f01602090048101928261329d57600085556132e3565b82601f106132b657805160ff19168380011785556132e3565b828001600101855582156132e3579182015b828111156132e35782518255916020019190600101906132c8565b506132ef9291506132f3565b5090565b5b808211156132ef57600081556001016132f4565b600067ffffffffffffffff831115613322576133226139ea565b613335601f8401601f1916602001613869565b905082815283838301111561334957600080fd5b828260208301376000602084830101529392505050565b60008083601f84011261337257600080fd5b50813567ffffffffffffffff81111561338a57600080fd5b6020830191508360208260051b85010111156133a557600080fd5b9250929050565b80358015158114610f9457600080fd5b6000602082840312156133ce57600080fd5b8135611f0e81613a00565b6000602082840312156133eb57600080fd5b8151611f0e81613a00565b6000806040838503121561340957600080fd5b823561341481613a00565b9150602083013561342481613a00565b809150509250929050565b60008060006060848603121561344457600080fd5b833561344f81613a00565b9250602084013561345f81613a00565b929592945050506040919091013590565b6000806000806080858703121561348657600080fd5b843561349181613a00565b935060208501356134a181613a00565b925060408501359150606085013567ffffffffffffffff8111156134c457600080fd5b8501601f810187136134d557600080fd5b6134e487823560208401613308565b91505092959194509250565b60008060006040848603121561350557600080fd5b833561351081613a00565b9250602084013567ffffffffffffffff81111561352c57600080fd5b61353886828701613360565b9497909650939450505050565b6000806000806060858703121561355b57600080fd5b843561356681613a00565b9350602085013567ffffffffffffffff81111561358257600080fd5b61358e87828801613360565b9598909750949560400135949350505050565b600080604083850312156135b457600080fd5b82356135bf81613a00565b915060208381013567ffffffffffffffff808211156135dd57600080fd5b818601915086601f8301126135f157600080fd5b813581811115613603576136036139ea565b8060051b9150613614848301613869565b8181528481019084860184860187018b101561362f57600080fd5b600095505b83861015613652578035835260019590950194918601918601613634565b508096505050505050509250929050565b6000806040838503121561367657600080fd5b823561368181613a00565b915061368f602084016133ac565b90509250929050565b600080604083850312156136ab57600080fd5b82356136b681613a00565b946020939093013593505050565b6000602082840312156136d657600080fd5b611f0e826133ac565b6000602082840312156136f157600080fd5b5035919050565b60006020828403121561370a57600080fd5b8135611f0e81613a15565b60006020828403121561372757600080fd5b8151611f0e81613a15565b60006020828403121561374457600080fd5b813567ffffffffffffffff81111561375b57600080fd5b8201601f8101841361376c57600080fd5b6124ac84823560208401613308565b600081518084526137938160208601602086016138fc565b601f01601f19169290920160200192915050565b600083516137b98184602088016138fc565b8351908301906137cd8183602088016138fc565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613808608083018461377b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561384a5783518352928401929184019160010161382e565b50909695505050505050565b602081526000611f0e602083018461377b565b604051601f8201601f1916810167ffffffffffffffff81118282101715613892576138926139ea565b604052919050565b600082198211156138ad576138ad613992565b500190565b6000826138c1576138c16139a8565b500490565b60008160001904831182151516156138e0576138e0613992565b500290565b6000828210156138f7576138f7613992565b500390565b60005b838110156139175781810151838201526020016138ff565b83811115611d845750506000910152565b600181811c9082168061393c57607f821691505b6020821081141561395d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561397757613977613992565b5060010190565b60008261398d5761398d6139a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461086b57600080fd5b6001600160e01b03198116811461086b57600080fdfea26469706673582212201bbfa1d797b22434cdd42fd696bbff369bbad3c2cac1bfec788e46347e4b7d8664736f6c634300080600334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c65760003560e01c80635c975abb11610179578063a22cb465116100d6578063d547cfb71161008a578063e985e9c511610064578063e985e9c51461075f578063f2fde38b146107a8578063fbdb8494146107c857600080fd5b8063d547cfb7146106fa578063db4bec441461070f578063e2eae08f1461073f57600080fd5b8063b88d4fde116100bb578063b88d4fde1461068d578063bda02095146106ad578063c87b56dd146106da57600080fd5b8063a22cb4651461064d578063a6b6e4331461066d57600080fd5b80637dc429751161012d5780638ad5de28116101125780638ad5de28146106055780638da5cb5b1461061a57806395d89b411461063857600080fd5b80637dc42975146105da578063853828b6146105f057600080fd5b806370a082311161015e57806370a0823114610585578063715018a6146105a55780637cb64759146105ba57600080fd5b80635c975abb146105465780636352211e1461056557600080fd5b80632eb4a7ab1161022757806342842e0e116101db5780634f6ccce7116101c05780634f6ccce7146104f157806355f804b31461051157806359a7715a1461053157600080fd5b806342842e0e146104b157806342966c68146104d157600080fd5b80633502a7161161020c5780633502a71614610475578063387b8a3c1461048b57806340c10f191461049e57600080fd5b80632eb4a7ab1461043f5780632f745c591461045557600080fd5b8063095ea7b31161027e57806318160ddd1161026357806318160ddd146103ea57806323b872dd146103ff57806326a49e371461041f57600080fd5b8063095ea7b31461039c578063142e50c1146103bc57600080fd5b806306799b48116102af57806306799b481461032257806306fdde0314610342578063081812fc1461036457600080fd5b806301ffc9a7146102cb57806302329a2914610300575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046136f8565b6107e8565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b5061032061031b3660046136c4565b6107f9565b005b34801561032e57600080fd5b5061032061033d366004613545565b610876565b34801561034e57600080fd5b50610357610c3b565b6040516102f79190613856565b34801561037057600080fd5b5061038461037f3660046136df565b610ccd565b6040516001600160a01b0390911681526020016102f7565b3480156103a857600080fd5b506103206103b7366004613698565b610d62565b3480156103c857600080fd5b506103dc6103d73660046136df565b610e94565b6040519081526020016102f7565b3480156103f657600080fd5b506008546103dc565b34801561040b57600080fd5b5061032061041a36600461342f565b610eb5565b34801561042b57600080fd5b506103dc61043a3660046136df565b610f3d565b34801561044b57600080fd5b506103dc60135481565b34801561046157600080fd5b506103dc610470366004613698565b610f99565b34801561048157600080fd5b506103dc6122b881565b6103206104993660046135a1565b611041565b6103206104ac366004613698565b611446565b3480156104bd57600080fd5b506103206104cc36600461342f565b611673565b3480156104dd57600080fd5b506103206104ec3660046136df565b61168e565b3480156104fd57600080fd5b506103dc61050c3660046136df565b611712565b34801561051d57600080fd5b5061032061052c366004613732565b6117b6565b34801561053d57600080fd5b506103dc611827565b34801561055257600080fd5b50600a54600160a01b900460ff166102eb565b34801561057157600080fd5b506103846105803660046136df565b611836565b34801561059157600080fd5b506103dc6105a03660046133bc565b6118c1565b3480156105b157600080fd5b5061032061195b565b3480156105c657600080fd5b506103206105d53660046136df565b6119c1565b3480156105e657600080fd5b506103dc600d5481565b3480156105fc57600080fd5b50610320611a20565b34801561061157600080fd5b506103dc601481565b34801561062657600080fd5b50600a546001600160a01b0316610384565b34801561064457600080fd5b50610357611aa0565b34801561065957600080fd5b50610320610668366004613663565b611aaf565b34801561067957600080fd5b506103206106883660046134f0565b611aba565b34801561069957600080fd5b506103206106a8366004613470565b611cfc565b3480156106b957600080fd5b506106cd6106c83660046133bc565b611d8a565b6040516102f79190613812565b3480156106e657600080fd5b506103576106f53660046136df565b611e2c565b34801561070657600080fd5b50610357611f15565b34801561071b57600080fd5b506102eb61072a3660046133bc565b60126020526000908152604090205460ff1681565b34801561074b57600080fd5b506103dc61075a3660046136df565b611fa3565b34801561076b57600080fd5b506102eb61077a3660046133f6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b457600080fd5b506103206107c33660046133bc565b611fb3565b3480156107d457600080fd5b506103206107e33660046136df565b612092565b60006107f3826120f1565b92915050565b600a546001600160a01b031633146108585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001811515141561086e5761086b61212f565b50565b61086b6121d4565b336000908152601260205260409020548390839060ff16156108da5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d65640000000000604482015260640161084f565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610954838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612261565b6109a05760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c20796f7520617265206e6f742077686974656c69737465640000604482015260640161084f565b6122b86109ab612277565b11156109e45760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b03163314610a4357600a54600160a01b900460ff1615610a435760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b6000610a4d612277565b90506122b88110610a8c5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b6040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810186905273bd3531da5cf5857e7cfaa92426877b022e612cf890636352211e9060240160206040518083038186803b158015610af057600080fd5b505afa158015610b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2891906133d9565b6001600160a01b0316336001600160a01b031614610bae5760405162461bcd60e51b815260206004820152603860248201527f596f7520646f206e6f74206f776e20746865206f726967696e616c205075646760448201527f7920796f752061726520747279696e6720746f206d696e740000000000000000606482015260840161084f565b60008581526011602052604090205460ff1615610c0d5760405162461bcd60e51b815260206004820152601e60248201527f546869732070756467792077617320616c726561647920636c61696d65640000604482015260640161084f565b336000908152601260205260409020805460ff19166001179055610c318886612282565b5050505050505050565b606060008054610c4a90613928565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7690613928565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b506000908152600460205260409020546001600160a01b031690565b6000610d6d82611836565b9050806001600160a01b0316836001600160a01b03161415610df75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161084f565b336001600160a01b0382161480610e135750610e13813361077a565b610e855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084f565b610e8f838361234f565b505050565b600f8181548110610ea457600080fd5b600091825260209091200154905081565b610ec0335b826123bd565b610f325760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161084f565b610e8f8383836124b4565b6000610457610f4a61268c565b1015610f61576107f382662386f26fc100006138c6565b610d05610f6c61268c565b1015610f83576107f38266470de4df8200006138c6565b6107f382666a94d74f4300006138c6565b919050565b6000610fa4836118c1565b82106110185760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161084f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6122b861104c612277565b11156110855760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b031633146110e457600a54600160a01b900460ff16156110e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b60006110ee612277565b905060006110fa61268c565b83519091506122b861110c828561389a565b11156111465760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b600d54611153828461389a565b111561118d5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b60148111156111de5760405162461bcd60e51b815260206004820152600e60248201527f45786365656473206e756d626572000000000000000000000000000000000000604482015260640161084f565b6111ef81662386f26fc100006138c6565b34101561123e5760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f77207072696365000000000000000000000000000000604482015260640161084f565b60005b8181101561143e5773bd3531da5cf5857e7cfaa92426877b022e612cf86001600160a01b0316636352211e86838151811061127e5761127e6139d4565b60200260200101516040518263ffffffff1660e01b81526004016112a491815260200190565b60206040518083038186803b1580156112bc57600080fd5b505afa1580156112d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f491906133d9565b6001600160a01b0316336001600160a01b03161461137a5760405162461bcd60e51b815260206004820152603860248201527f596f7520646f206e6f74206f776e20746865206f726967696e616c205075646760448201527f7920796f752061726520747279696e6720746f206d696e740000000000000000606482015260840161084f565b60116000868381518110611390576113906139d4565b60209081029190910181015182528101919091526040016000205460ff16156113fb5760405162461bcd60e51b815260206004820152601e60248201527f546869732070756467792077617320616c726561647920636c61696d65640000604482015260640161084f565b611409600c80546001019055565b61142c8686838151811061141f5761141f6139d4565b6020026020010151612282565b8061143681613963565b915050611241565b505050505050565b6122b8611451612277565b111561148a5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b031633146114e957600a54600160a01b900460ff16156114e95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b60006114f3612277565b905060006114ff61268c565b90506122b861150e848461389a565b11156115485760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b600d54611555848361389a565b111561158f5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b60148311156115e05760405162461bcd60e51b815260206004820152600e60248201527f45786365656473206e756d626572000000000000000000000000000000000000604482015260640161084f565b6115e983610f3d565b3410156116385760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f77207072696365000000000000000000000000000000604482015260640161084f565b60005b8381101561166c57611651600c80546001019055565b61165a85612697565b8061166481613963565b91505061163b565b5050505050565b610e8f83838360405180602001604052806000815250611cfc565b61169733610eba565b6117095760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000606482015260840161084f565b61086b816126ea565b600061171d60085490565b82106117915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161084f565b600882815481106117a4576117a46139d4565b90600052602060002001549050919050565b600a546001600160a01b031633146118105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b805161182390600e90602084019061326f565b5050565b6000611831612277565b905090565b6000818152600260205260408120546001600160a01b0316806107f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161084f565b60006001600160a01b03821661193f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161084f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146119b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b6119bf6000612791565b565b600a546001600160a01b03163314611a1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b601355565b600a546001600160a01b03163314611a7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b4780611a8557600080fd5b61086b611a9a600a546001600160a01b031690565b476127e3565b606060018054610c4a90613928565b611823338383612886565b336000908152601260205260409020548290829060ff1615611b1e5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d65640000000000604482015260640161084f565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b98838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612261565b611be45760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c20796f7520617265206e6f742077686974656c69737465640000604482015260640161084f565b6122b8611bef612277565b1115611c285760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161084f565b600a546001600160a01b03163314611c8757600a54600160a01b900460ff1615611c875760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b6000611c91612277565b90506122b88110611cd05760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161084f565b336000908152601260205260409020805460ff19166001179055611cf387612697565b50505050505050565b611d0633836123bd565b611d785760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161084f565b611d8484848484612955565b50505050565b60606000611d97836118c1565b905060008167ffffffffffffffff811115611db457611db46139ea565b604051908082528060200260200182016040528015611ddd578160200160208202803683370190505b50905060005b82811015611e2457611df58582610f99565b828281518110611e0757611e076139d4565b602090810291909101015280611e1c81613963565b915050611de3565b509392505050565b6000818152600260205260409020546060906001600160a01b0316611eb95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161084f565b6000611ec36129d3565b90506000815111611ee35760405180602001604052806000815250611f0e565b80611eed846129e2565b604051602001611efe9291906137a7565b6040516020818303038152906040525b9392505050565b600e8054611f2290613928565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4e90613928565b8015611f9b5780601f10611f7057610100808354040283529160200191611f9b565b820191906000526020600020905b815481529060010190602001808311611f7e57829003601f168201915b505050505081565b60108181548110610ea457600080fd5b600a546001600160a01b0316331461200d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b6001600160a01b0381166120895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161084f565b61086b81612791565b600a546001600160a01b031633146120ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084f565b600d55565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107f357506107f382612b14565b600a54600160a01b900460ff161561217c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161084f565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121b73390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff1661222d5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161084f565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336121b7565b60008261226e8584612baf565b14949350505050565b6000611831600b5490565b600061228c612277565b905061229c600b80546001019055565b600f805460018181019092557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201829055601080548083019091557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018390556000838152601160205260409020805460ff1916909117905561231f8382612c53565b60405181907f645f26e653c951cec836533f8fe0616d301c20a17153debc17d7c3dbe4f32b2890600090a2505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061238482611836565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166124365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b600061244183611836565b9050806001600160a01b0316846001600160a01b0316148061247c5750836001600160a01b031661247184610ccd565b6001600160a01b0316145b806124ac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124c782611836565b6001600160a01b0316146125435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161084f565b6001600160a01b0382166125be5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161084f565b6125c9838383612c6d565b6125d460008261234f565b6001600160a01b03831660009081526003602052604081208054600192906125fd9084906138e5565b90915550506001600160a01b038216600090815260036020526040812080546001929061262b90849061389a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611831600c5490565b60006126a1612277565b90506126b1600b80546001019055565b6126bb8282612c53565b60405181907f645f26e653c951cec836533f8fe0616d301c20a17153debc17d7c3dbe4f32b2890600090a25050565b60006126f582611836565b905061270381600084612c6d565b61270e60008361234f565b6001600160a01b03811660009081526003602052604081208054600192906127379084906138e5565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b5050905080610e8f5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161084f565b816001600160a01b0316836001600160a01b031614156128e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6129608484846124b4565b61296c84848484612c78565b611d845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161084f565b6060600e8054610c4a90613928565b606081612a2257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a4c5780612a3681613963565b9150612a459050600a836138b2565b9150612a26565b60008167ffffffffffffffff811115612a6757612a676139ea565b6040519080825280601f01601f191660200182016040528015612a91576020820181803683370190505b5090505b84156124ac57612aa66001836138e5565b9150612ab3600a8661397e565b612abe90603061389a565b60f81b818381518110612ad357612ad36139d4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b0d600a866138b2565b9450612a95565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b7757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107f357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107f3565b600081815b8451811015611e24576000858281518110612bd157612bd16139d4565b60200260200101519050808311612c13576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612c40565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612c4b81613963565b915050612bb4565b611823828260405180602001604052806000815250612dd0565b610e8f838383612e4e565b60006001600160a01b0384163b15612dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cbc9033908990889088906004016137d6565b602060405180830381600087803b158015612cd657600080fd5b505af1925050508015612d06575060408051601f3d908101601f19168201909252612d0391810190613715565b60015b612dab573d808015612d34576040519150601f19603f3d011682016040523d82523d6000602084013e612d39565b606091505b508051612da35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161084f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124ac565b506001949350505050565b612dda8383612ed9565b612de76000848484612c78565b610e8f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161084f565b612e59838383613027565b600a54600160a01b900460ff1615610e8f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c6520706175736564000000000000000000000000000000000000000000606482015260840161084f565b6001600160a01b038216612f2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084f565b6000818152600260205260409020546001600160a01b031615612f945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084f565b612fa060008383612c6d565b6001600160a01b0382166000908152600360205260408120805460019290612fc990849061389a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166130825761307d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6130a5565b816001600160a01b0316836001600160a01b0316146130a5576130a583826130df565b6001600160a01b0382166130bc57610e8f8161317c565b826001600160a01b0316826001600160a01b031614610e8f57610e8f828261322b565b600060016130ec846118c1565b6130f691906138e5565b600083815260076020526040902054909150808214613149576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061318e906001906138e5565b600083815260096020526040812054600880549394509092849081106131b6576131b66139d4565b9060005260206000200154905080600883815481106131d7576131d76139d4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061320f5761320f6139be565b6001900381819060005260206000200160009055905550505050565b6000613236836118c1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461327b90613928565b90600052602060002090601f01602090048101928261329d57600085556132e3565b82601f106132b657805160ff19168380011785556132e3565b828001600101855582156132e3579182015b828111156132e35782518255916020019190600101906132c8565b506132ef9291506132f3565b5090565b5b808211156132ef57600081556001016132f4565b600067ffffffffffffffff831115613322576133226139ea565b613335601f8401601f1916602001613869565b905082815283838301111561334957600080fd5b828260208301376000602084830101529392505050565b60008083601f84011261337257600080fd5b50813567ffffffffffffffff81111561338a57600080fd5b6020830191508360208260051b85010111156133a557600080fd5b9250929050565b80358015158114610f9457600080fd5b6000602082840312156133ce57600080fd5b8135611f0e81613a00565b6000602082840312156133eb57600080fd5b8151611f0e81613a00565b6000806040838503121561340957600080fd5b823561341481613a00565b9150602083013561342481613a00565b809150509250929050565b60008060006060848603121561344457600080fd5b833561344f81613a00565b9250602084013561345f81613a00565b929592945050506040919091013590565b6000806000806080858703121561348657600080fd5b843561349181613a00565b935060208501356134a181613a00565b925060408501359150606085013567ffffffffffffffff8111156134c457600080fd5b8501601f810187136134d557600080fd5b6134e487823560208401613308565b91505092959194509250565b60008060006040848603121561350557600080fd5b833561351081613a00565b9250602084013567ffffffffffffffff81111561352c57600080fd5b61353886828701613360565b9497909650939450505050565b6000806000806060858703121561355b57600080fd5b843561356681613a00565b9350602085013567ffffffffffffffff81111561358257600080fd5b61358e87828801613360565b9598909750949560400135949350505050565b600080604083850312156135b457600080fd5b82356135bf81613a00565b915060208381013567ffffffffffffffff808211156135dd57600080fd5b818601915086601f8301126135f157600080fd5b813581811115613603576136036139ea565b8060051b9150613614848301613869565b8181528481019084860184860187018b101561362f57600080fd5b600095505b83861015613652578035835260019590950194918601918601613634565b508096505050505050509250929050565b6000806040838503121561367657600080fd5b823561368181613a00565b915061368f602084016133ac565b90509250929050565b600080604083850312156136ab57600080fd5b82356136b681613a00565b946020939093013593505050565b6000602082840312156136d657600080fd5b611f0e826133ac565b6000602082840312156136f157600080fd5b5035919050565b60006020828403121561370a57600080fd5b8135611f0e81613a15565b60006020828403121561372757600080fd5b8151611f0e81613a15565b60006020828403121561374457600080fd5b813567ffffffffffffffff81111561375b57600080fd5b8201601f8101841361376c57600080fd5b6124ac84823560208401613308565b600081518084526137938160208601602086016138fc565b601f01601f19169290920160200192915050565b600083516137b98184602088016138fc565b8351908301906137cd8183602088016138fc565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613808608083018461377b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561384a5783518352928401929184019160010161382e565b50909695505050505050565b602081526000611f0e602083018461377b565b604051601f8201601f1916810167ffffffffffffffff81118282101715613892576138926139ea565b604052919050565b600082198211156138ad576138ad613992565b500190565b6000826138c1576138c16139a8565b500490565b60008160001904831182151516156138e0576138e0613992565b500290565b6000828210156138f7576138f7613992565b500390565b60005b838110156139175781810151838201526020016138ff565b83811115611d845750506000910152565b600181811c9082168061393c57607f821691505b6020821081141561395d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561397757613977613992565b5060010190565b60008261398d5761398d6139a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461086b57600080fd5b6001600160e01b03198116811461086b57600080fdfea26469706673582212201bbfa1d797b22434cdd42fd696bbff369bbad3c2cac1bfec788e46347e4b7d8664736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.