ETH Price: $3,355.59 (-2.73%)
Gas: 4 Gwei

Contract

0x9939369c5FAA3A4Feda72A4899655B51408Fc4a0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60a06040155211902022-09-12 13:50:30659 days ago1662990630IN
 Create: UnlockdNFTV3
0 ETH0.0615622815.48453487

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UnlockdNFTV3

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 600 runs

Other Settings:
default evmVersion
File 1 of 20 : UnlockdNFTV3.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";


/// @dev tokenId structure
///      1   - 40  (40)    : 1o1 collection
///      41  - 70  (30)    : Team player collection
///      71  - 490 (450)   : Key Supporter collection
///      491 - 3500 (3010) : Generic NFT collection
///      3010 = 903(private) + rest (public)
// TODO: check total amount is increased correctly
//       renounce ownership to Gnosis multisig after 1o1 collection mint
//       mint remain nfts(Key Supporter) to treasury
//       move fund to treasury from UnlockdNFT contract
contract UnlockdNFTV3 is
    ERC721EnumerableUpgradeable,
    OwnableUpgradeable,
    ReentrancyGuardUpgradeable,
    UUPSUpgradeable
{
    mapping(address => uint64) public teamPlayersCount;
    mapping(address => uint64) public keySupporterCount;
    mapping(address => uint64) public publicWhiteListCount;
    mapping(address => uint64) public genericPublicSaleCount;

    mapping(address => bool) public hasBeenTeamPlayer;
    mapping(address => bool) public hasBeenKeySupporter;
    mapping(address => bool) public hasBeenWhitelisted;

    string private baseURI;
    bool private _reentrancyGuard;

    uint64 public mintFee;
    uint64 private teamPlayerSaleIndex;
    uint64 public keySupporterSaleIndex;
    uint64 public publicWhiteListSaleIndex;
    uint64 public genericNFTPublicSaleIndex;
    uint64 private constant totalCollections = 3500;

    address public treasury;

    bool public rareMintStatus;
    bool public isTeamPlayerMint;
    bool public isKeySupporterMint;
    bool public isPublicWhitelistMint;
    bool public isGenericMint;

    // events
    event PremintRare(address[]);
    event WhitelistMint(address, uint64);
    event CommonMint(address, uint64);
    event SetMintingStatus(
        bool isTeamPlayerMint,
        bool isKeySupporterMint,
        bool isPublicWhitelistMint,
        bool isGenericMint
    );
    string public contractURI_;

    // rarity
    // depends on network
    function initialize(
        uint64 _mintFee,
        address[] calldata _rareOwners,
        address _treasury,
        address _multisigAddress
    ) public initializer {
        __ERC721_init("The Lockeys", "LOCKEY");
        __Ownable_init();
        __UUPSUpgradeable_init();
        oneOoneNFTMint(_rareOwners);
        mintFee = _mintFee;
        /// NOTE: id 0~32 are reserved for rare minters
        /// @dev public sale starts after beta
        treasury = _treasury;
        transferOwnership(_multisigAddress);

        teamPlayerSaleIndex = 51;
        keySupporterSaleIndex = 76;
        publicWhiteListSaleIndex = 526;
        genericNFTPublicSaleIndex = 2526;
    }

    function teamPlayersCountSetter(
        address[] calldata _teamPlayerAddresses,
        uint64[] calldata _count
    ) external onlyOwner {
        require(_teamPlayerAddresses.length == _count.length, "param mismatch");
        uint64 length = uint64(_count.length);
        for (uint64 i = 0; i < length; ++i) {
            // NOTE: increasing the count number, not set it as value
            teamPlayersCount[_teamPlayerAddresses[i]] += _count[i];
            hasBeenTeamPlayer[_teamPlayerAddresses[i]] = true;
        }
    }

    function keySupporterCountSetter(
        address[] calldata _keySupporterAddresses,
        uint64[] calldata _count
    ) external onlyOwner {
        require(
            _keySupporterAddresses.length == _count.length,
            "param mismatch"
        );
        uint64 length = uint64(_count.length);
        for (uint64 i = 0; i < length; ++i) {
            // NOTE: increasing the count number, not set it as value
            keySupporterCount[_keySupporterAddresses[i]] += _count[i];
            hasBeenKeySupporter[_keySupporterAddresses[i]] = true;
        }
    }

    function publicWhiteListCountSetter(
        address[] calldata _publicWhiteListAddresses
    ) external onlyOwner {
        uint64 length = uint64(_publicWhiteListAddresses.length);
        for (uint64 i = 0; i < length; ++i) {
            // NOTE: increasing the count number, not set it as value
            publicWhiteListCount[_publicWhiteListAddresses[i]] = 5;
            hasBeenWhitelisted[_publicWhiteListAddresses[i]] = true;
        }
    }

    function setMintingStatus(
        bool _isTeamPlayerMint,
        bool _isKeySupporterMint,
        bool _isPublicWhitelistMint,
        bool _isGenericMint
    ) external onlyOwner {
        isTeamPlayerMint = _isTeamPlayerMint;
        isKeySupporterMint = _isKeySupporterMint;
        isPublicWhitelistMint = _isPublicWhitelistMint;
        isGenericMint = _isGenericMint;

        emit SetMintingStatus(
            _isTeamPlayerMint,
            _isKeySupporterMint,
            _isPublicWhitelistMint,
            _isGenericMint
        );
    }

    function mintGetter(address user)
        external
        view
        returns (
            uint256 nftsLeftToMint,
            string memory phase,
            bool hasMintedPhase
        )
    {
        if(isKeySupporterMint) {
            phase = "keySupporter";
            if(!hasBeenKeySupporter[user]){ //user is not able to mint in keysupporter
                nftsLeftToMint = 0;
                hasMintedPhase = false;
            } else {
                if(keySupporterCount[user] == 0) {
                    nftsLeftToMint = 0; //user is able and has already minted all their nfts in keySupporter
                    hasMintedPhase = true;
                } else{
                    hasMintedPhase = false;
                    //Check total phase index to tackle edge cases
                    if((keySupporterSaleIndex + keySupporterCount[user]) < 526) {
                        nftsLeftToMint = keySupporterCount[user];
                    }else{
                        nftsLeftToMint = 526 - keySupporterSaleIndex - 1;
                    }
                }
            }
            return (nftsLeftToMint, phase, hasMintedPhase);
        }
        if(isPublicWhitelistMint) {
            phase = "whitelist";
            if(!hasBeenWhitelisted[user]){ //user is not able to mint in whitelist
                nftsLeftToMint = 0;
                hasMintedPhase = false;
            } else {
                if(publicWhiteListCount[user] == 0) {
                    nftsLeftToMint = 0; //user is able and has already minted all their nfts in whitelist
                    hasMintedPhase = true;
                } else{
                    hasMintedPhase = false;
                    //Check total phase index to tackle edge cases
                    if((publicWhiteListSaleIndex + publicWhiteListCount[user]) < 2526) {
                        nftsLeftToMint = publicWhiteListCount[user];
                    }else{
                        nftsLeftToMint = 2526 - publicWhiteListSaleIndex - 1;
                    }
                }
            }
            return (nftsLeftToMint, phase, hasMintedPhase);
        }

        if(isGenericMint) {
            phase = "publicMint";
            if(genericPublicSaleCount[user] == 50){
                nftsLeftToMint = 0; //user has already minted all their nfts in whitelist
                hasMintedPhase = true; 
            } else {
                hasMintedPhase = false; 
                //Check total phase index to tackle edge cases
                if(publicWhiteListSaleIndex + genericPublicSaleCount[user] < 2526) {
                    nftsLeftToMint = 50 - genericPublicSaleCount[user];
                }else{
                    nftsLeftToMint = 2526 - publicWhiteListSaleIndex;
                }
            }
            return (nftsLeftToMint, phase, hasMintedPhase);
        }
    }

    function oneOoneNFTMint(address[] memory rareOwners) internal onlyOwner {
        /// @dev mint rare items
        require(rareOwners.length == 50, "wrong input length");
        require(rareMintStatus == false, "rare mint already done");

        for (uint64 i = 1; i <= 50; ++i) {
            _mint(rareOwners[i - 1], i);
        }
        rareMintStatus = true;
        emit PremintRare(rareOwners);
    }

    function teamNFTMint(address _to, uint64 _count)
        public
        nonReentrant
    {
        require(isTeamPlayerMint, "minting not started");
        require(teamPlayersCount[_msgSender()] >= _count, "already minted");
        require(teamPlayerSaleIndex < 76, "team players all minted");
        /// whitelsted user, should mint supporter nft
        teamPlayersCount[_msgSender()] -= _count;
        for (uint64 i = 0; i < _count; i++) {
            _mint(_to, teamPlayerSaleIndex);
            teamPlayerSaleIndex++;
        }
    }

    function keySupporterNFTMint(address _to, uint64 _count)
        public
        payable
        nonReentrant
    {
        require(isKeySupporterMint, "minting not started");
        require(keySupporterCount[_msgSender()] >= _count, "already minted");
        require(keySupporterSaleIndex < 491, "key supporters all minted");
        // check if mintFee is enough
        keySupporterCount[_msgSender()] -= _count;

        for (uint64 i = 0; i < _count; ++i) {
            _mint(_to, keySupporterSaleIndex);
            ++keySupporterSaleIndex;
        }

        /// whitelsted user, should mint supporter nft
        // _mint(_msgSender(), teamPlayerSaleIndex);
        // teamPlayerSaleIndex++;
    }

    function publicWhiteListNFTMint(address _to, uint64 _count)
        public
        payable
        nonReentrant
    {
        //require(isPublicWhitelistMint, "minting not started");
        require(publicWhiteListSaleIndex < 2526, "all tokens minted");
        require(isGenericMint, "minting not started");
            require(
                genericPublicSaleCount[_msgSender()] + _count <= 50,
                "reached maximum amount"
            );
        require(mintFee * _count <= msg.value, "!enough mintFee");
        for (uint64 i = 0; i < _count; ++i) {
            _mint(_to, publicWhiteListSaleIndex);
            ++publicWhiteListSaleIndex;
        }
        genericPublicSaleCount[_msgSender()] += _count;
        _reentrancyGuard = false;
    }

    function mintNFT(
        address _toTeamAddress,
        uint64 _teamCount,
        address _toKeySupporterAddress,
        uint64 _keySupporterCount,
        address _toPublicWhiteListAddress,
        uint64 _publicWhiteListCount,
        uint64 _count
    ) external payable {
        if (_teamCount > 0) {
            teamNFTMint(_toTeamAddress, _teamCount);
        }

        if (_keySupporterCount > 0) {
            keySupporterNFTMint(_toKeySupporterAddress, _keySupporterCount);
        }

        if (_publicWhiteListCount > 0) {
            publicWhiteListNFTMint(
                _toPublicWhiteListAddress,
                _publicWhiteListCount
            );
        }

        if (_count > 0) {
            publicWhiteListNFTMint(
                _toPublicWhiteListAddress,
                _count
            );
        }
    }

    function totalMintedCount() external view returns (uint64 totalMinted) {
        totalMinted =
            teamPlayerSaleIndex -
            1 +
            keySupporterSaleIndex -
            76 +
            publicWhiteListSaleIndex -
            526 +
            genericNFTPublicSaleIndex -
            2526;
    }

    function setIndexes(
        uint64 _teamPlayerSaleIndex,
        uint64 _keySupporterSaleIndex,
        uint64 _publicWhiteListSaleIndex,
        uint64 _genericNFTPublicSaleIndex
    ) external onlyOwner {
        teamPlayerSaleIndex = _teamPlayerSaleIndex;
        keySupporterSaleIndex = _keySupporterSaleIndex;
        publicWhiteListSaleIndex = _publicWhiteListSaleIndex;
        genericNFTPublicSaleIndex = _genericNFTPublicSaleIndex;
    }
    function transferToTreasury() external nonReentrant onlyOwner {
        (bool sent, ) = treasury.call{value: address(this).balance}("");
        require(sent, "failed to send eth to treasury");
    }

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

    function setContractURI(string memory uri) external onlyOwner {
        contractURI_ = uri;
    }

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

    function contractURI() public view returns (string memory) {
        return contractURI_;
    }

    function _authorizeUpgrade(address) internal override onlyOwner {}

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        if (tokenId > totalCollections) {
            revert("tokenId is not valid");
        }
    }

    function totalSupply() public view virtual override returns (uint256 totalMinted) {
        totalMinted =
            teamPlayerSaleIndex -
            1 +
            keySupporterSaleIndex -
            76 +
            publicWhiteListSaleIndex -
            526 +
            genericNFTPublicSaleIndex -
            2526;
    }

    // Function to receive Ether. msg.data must be empty
    receive() external payable {}

    // Fallback function is called when msg.data is not empty
    fallback() external payable {}

    // modifier disableContractMint() {
    //     require(
    //         _msgSender() == tx.origin,
    //         "Minting from smart contracts is disallowed"
    //     );
    //     _;
    // }
}

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

pragma solidity ^0.8.0;

import "../ERC721Upgradeable.sol";
import "./IERC721EnumerableUpgradeable.sol";
import "../../../proxy/utils/Initializable.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 ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable {
    function __ERC721Enumerable_init() internal onlyInitializing {
    }

    function __ERC721Enumerable_init_unchained() internal onlyInitializing {
    }
    // 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(IERC165Upgradeable, ERC721Upgradeable) returns (bool) {
        return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Upgradeable.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 < ERC721EnumerableUpgradeable.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 = ERC721Upgradeable.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 = ERC721Upgradeable.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();
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[46] private __gap;
}

File 3 of 20 : OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 4 of 20 : UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/UUPSUpgradeable.sol)

pragma solidity ^0.8.0;

import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.sol";
import "./Initializable.sol";

/**
 * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
 * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
 *
 * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
 * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
 * `UUPSUpgradeable` with a custom implementation of upgrades.
 *
 * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
 *
 * _Available since v4.1._
 */
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
    function __UUPSUpgradeable_init() internal onlyInitializing {
    }

    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
    }
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
    address private immutable __self = address(this);

    /**
     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is
     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
     * fail.
     */
    modifier onlyProxy() {
        require(address(this) != __self, "Function must be called through delegatecall");
        require(_getImplementation() == __self, "Function must be called through active proxy");
        _;
    }

    /**
     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be
     * callable on the implementing contract but not through proxies.
     */
    modifier notDelegated() {
        require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
        _;
    }

    /**
     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
     * implementation. It is used to validate that the this implementation remains valid after an upgrade.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
     */
    function proxiableUUID() external view virtual override notDelegated returns (bytes32) {
        return _IMPLEMENTATION_SLOT;
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeTo(address newImplementation) external virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
     * encoded in `data`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, data, true);
    }

    /**
     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
     * {upgradeTo} and {upgradeToAndCall}.
     *
     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
     *
     * ```solidity
     * function _authorizeUpgrade(address) internal override onlyOwner {}
     * ```
     */
    function _authorizeUpgrade(address newImplementation) internal virtual;

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 5 of 20 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

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

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

    uint256 private _status;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 6 of 20 : ERC721Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../utils/StringsUpgradeable.sol";
import "../../utils/introspection/ERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable {
    using AddressUpgradeable for address;
    using StringsUpgradeable 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.
     */
    function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner 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: caller is not token 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) {
        address owner = ERC721Upgradeable.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[44] private __gap;
}

File 7 of 20 : IERC721EnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

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

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

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

File 8 of 20 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
     * initialization step. This is essential to configure modules that are added through upgrades and that require
     * initialization.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }
}

File 9 of 20 : IERC721Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 10 of 20 : IERC721ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

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

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

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

File 12 of 20 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 20 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 14 of 20 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

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

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 16 of 20 : IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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 17 of 20 : draft-IERC1822Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822ProxiableUpgradeable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}

File 18 of 20 : ERC1967UpgradeUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)

pragma solidity ^0.8.2;

import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import "../utils/Initializable.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 *
 * _Available since v4.1._
 *
 * @custom:oz-upgrades-unsafe-allow delegatecall
 */
abstract contract ERC1967UpgradeUpgradeable is Initializable {
    function __ERC1967Upgrade_init() internal onlyInitializing {
    }

    function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
    }
    // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Returns the current implementation address.
     */
    function _getImplementation() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Perform implementation upgrade
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Perform implementation upgrade with additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCall(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        _upgradeTo(newImplementation);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(newImplementation, data);
        }
    }

    /**
     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCallUUPS(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        // Upgrades from old implementations will perform a rollback test. This test requires the new
        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
        // this special case will break upgrade paths from old UUPS implementation to new ones.
        if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
            } catch {
                revert("ERC1967Upgrade: new implementation is not UUPS");
            }
            _upgradeToAndCall(newImplementation, data, forceCall);
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        require(newAdmin != address(0), "ERC1967: new admin is the zero address");
        StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function _changeAdmin(address newAdmin) internal {
        emit AdminChanged(_getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Emitted when the beacon is upgraded.
     */
    event BeaconUpgraded(address indexed beacon);

    /**
     * @dev Returns the current beacon.
     */
    function _getBeacon() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
    }

    /**
     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
     *
     * Emits a {BeaconUpgraded} event.
     */
    function _upgradeBeaconToAndCall(
        address newBeacon,
        bytes memory data,
        bool forceCall
    ) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
        }
    }

    /**
     * @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) private returns (bytes memory) {
        require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed");
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 19 of 20 : IBeaconUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeaconUpgradeable {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 20 of 20 : StorageSlotUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlotUpgradeable {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint64","name":"","type":"uint64"}],"name":"CommonMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"","type":"address[]"}],"name":"PremintRare","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isTeamPlayerMint","type":"bool"},{"indexed":false,"internalType":"bool","name":"isKeySupporterMint","type":"bool"},{"indexed":false,"internalType":"bool","name":"isPublicWhitelistMint","type":"bool"},{"indexed":false,"internalType":"bool","name":"isGenericMint","type":"bool"}],"name":"SetMintingStatus","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":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint64","name":"","type":"uint64"}],"name":"WhitelistMint","type":"event"},{"stateMutability":"payable","type":"fallback"},{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genericNFTPublicSaleIndex","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genericPublicSaleCount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"","type":"address"}],"name":"hasBeenKeySupporter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasBeenTeamPlayer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasBeenWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintFee","type":"uint64"},{"internalType":"address[]","name":"_rareOwners","type":"address[]"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_multisigAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"isGenericMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isKeySupporterMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTeamPlayerMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keySupporterCount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_keySupporterAddresses","type":"address[]"},{"internalType":"uint64[]","name":"_count","type":"uint64[]"}],"name":"keySupporterCountSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint64","name":"_count","type":"uint64"}],"name":"keySupporterNFTMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"keySupporterSaleIndex","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"mintGetter","outputs":[{"internalType":"uint256","name":"nftsLeftToMint","type":"uint256"},{"internalType":"string","name":"phase","type":"string"},{"internalType":"bool","name":"hasMintedPhase","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toTeamAddress","type":"address"},{"internalType":"uint64","name":"_teamCount","type":"uint64"},{"internalType":"address","name":"_toKeySupporterAddress","type":"address"},{"internalType":"uint64","name":"_keySupporterCount","type":"uint64"},{"internalType":"address","name":"_toPublicWhiteListAddress","type":"address"},{"internalType":"uint64","name":"_publicWhiteListCount","type":"uint64"},{"internalType":"uint64","name":"_count","type":"uint64"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicWhiteListCount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_publicWhiteListAddresses","type":"address[]"}],"name":"publicWhiteListCountSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint64","name":"_count","type":"uint64"}],"name":"publicWhiteListNFTMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicWhiteListSaleIndex","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rareMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_teamPlayerSaleIndex","type":"uint64"},{"internalType":"uint64","name":"_keySupporterSaleIndex","type":"uint64"},{"internalType":"uint64","name":"_publicWhiteListSaleIndex","type":"uint64"},{"internalType":"uint64","name":"_genericNFTPublicSaleIndex","type":"uint64"}],"name":"setIndexes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isTeamPlayerMint","type":"bool"},{"internalType":"bool","name":"_isKeySupporterMint","type":"bool"},{"internalType":"bool","name":"_isPublicWhitelistMint","type":"bool"},{"internalType":"bool","name":"_isGenericMint","type":"bool"}],"name":"setMintingStatus","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":"address","name":"_to","type":"address"},{"internalType":"uint64","name":"_count","type":"uint64"}],"name":"teamNFTMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"teamPlayersCount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_teamPlayerAddresses","type":"address[]"},{"internalType":"uint64[]","name":"_count","type":"uint64[]"}],"name":"teamPlayersCountSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintedCount","outputs":[{"internalType":"uint64","name":"totalMinted","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"totalMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523060805234801561001457600080fd5b5060805161470761004c60003960008181611be801528181611c6d01528181611d7f01528181611e040152611f9201526147076000f3fe60806040526004361061033f5760003560e01c80635f4b45cc116101ae578063adad2999116100eb578063ddc0fd6f1161008f578063e985e9c51161006c578063e985e9c514610a45578063f2fde38b14610a8e578063f4dd99e014610aae578063fcabc0b314610ac157005b8063ddc0fd6f146109e6578063e67d3f1e14610a08578063e8a3d48514610a3057005b8063c87b56dd116100c8578063c87b56dd14610936578063ca48aba714610956578063d4c8949e1461097e578063dbbc3295146109af57005b8063adad2999146108e1578063b88d4fde14610903578063bb2eabff1461092357005b80638da5cb5b116101525780639cfa61b41161012f5780639cfa61b41461086d578063a22cb4651461088d578063abea431d146108ad578063ac405d5e146108ce57005b80638da5cb5b1461081a578063938e3d7b1461083857806395d89b411461085857005b80636ff861621161018b5780636ff861621461079f57806370a08231146107b4578063715018a6146107d4578063831bdcf5146107e957005b80635f4b45cc1461073e57806361d027b31461075e5780636352211e1461077f57005b806326ba27e31161027c5780633f9169d2116102205780634f6ccce7116101fd5780634f6ccce7146106b857806352d1902d146106d857806355f804b3146106ed578063569145b91461070d57005b80633f9169d21461066357806342842e0e146106855780634f1ef286146106a557005b8063318a741311610259578063318a7413146105d55780633552ac23146105f757806335a6907a1461062e5780633659cfe61461064357005b806326ba27e3146105805780632ea6a0c7146105955780632f745c59146105b557005b806313966db5116102e357806318160ddd116102c057806318160ddd146104e65780631ee466ea1461050957806323b872dd1461054057806323e382171461056057005b806313966db51461045957806316086eb014610497578063160c94b6146104c657005b806306ac9c871161031c57806306ac9c87146103bf57806306fdde03146103df578063081812fc14610401578063095ea7b31461043957005b806301ffc9a714610348578063035c45fa1461037d57806303aa70581461039f57005b3661034657005b005b34801561035457600080fd5b50610368610363366004613da9565b610af8565b60405190151581526020015b60405180910390f35b34801561038957600080fd5b5061019b5461036890600160b81b900460ff1681565b3480156103ab57600080fd5b506103466103ba366004613df9565b610b23565b3480156103cb57600080fd5b506103466103da366004613e3c565b610d7d565b3480156103eb57600080fd5b506103f4610e9f565b6040516103749190613ee8565b34801561040d57600080fd5b5061042161041c366004613efb565b610f31565b6040516001600160a01b039091168152602001610374565b34801561044557600080fd5b50610346610454366004613f14565b610f58565b34801561046557600080fd5b506101995461047f9061010090046001600160401b031681565b6040516001600160401b039091168152602001610374565b3480156104a357600080fd5b506104b76104b2366004613f3e565b61106e565b60405161037493929190613f59565b3480156104d257600080fd5b506103466104e1366004613fcf565b611407565b3480156104f257600080fd5b506104fb6115a1565b604051908152602001610374565b34801561051557600080fd5b5061047f610524366004613f3e565b610194602052600090815260409020546001600160401b031681565b34801561054c57600080fd5b5061034661055b36600461403a565b611636565b34801561056c57600080fd5b5061034661057b366004614076565b6116ae565b34801561058c57600080fd5b5061047f6117b1565b3480156105a157600080fd5b506103466105b03660046140b7565b61183d565b3480156105c157600080fd5b506104fb6105d0366004613f14565b611aa6565b3480156105e157600080fd5b5061019b5461036890600160a81b900460ff1681565b34801561060357600080fd5b5061047f610612366004613f3e565b610193602052600090815260409020546001600160401b031681565b34801561063a57600080fd5b506103f4611b4e565b34801561064f57600080fd5b5061034661065e366004613f3e565b611bdd565b34801561066f57600080fd5b5061019b5461036890600160b01b900460ff1681565b34801561069157600080fd5b506103466106a036600461403a565b611d59565b6103466106b33660046141d7565b611d74565b3480156106c457600080fd5b506104fb6106d3366004613efb565b611ee1565b3480156106e457600080fd5b506104fb611f85565b3480156106f957600080fd5b50610346610708366004614224565b61204a565b34801561071957600080fd5b50610368610728366004613f3e565b6101976020526000908152604090205460ff1681565b34801561074a57600080fd5b50610346610759366004613fcf565b612066565b34801561076a57600080fd5b5061019b54610421906001600160a01b031681565b34801561078b57600080fd5b5061042161079a366004613efb565b6121f8565b3480156107ab57600080fd5b5061034661225d565b3480156107c057600080fd5b506104fb6107cf366004613f3e565b612369565b3480156107e057600080fd5b506103466123ef565b3480156107f557600080fd5b50610368610804366004613f3e565b6101966020526000908152604090205460ff1681565b34801561082657600080fd5b5060c9546001600160a01b0316610421565b34801561084457600080fd5b50610346610853366004614224565b612403565b34801561086457600080fd5b506103f461241f565b34801561087957600080fd5b5061034661088836600461426c565b61242e565b34801561089957600080fd5b506103466108a83660046142b5565b6124d0565b3480156108b957600080fd5b5061019a5461047f906001600160401b031681565b6103466108dc3660046142df565b6124db565b3480156108ed57600080fd5b5061019b5461036890600160a01b900460ff1681565b34801561090f57600080fd5b5061034661091e366004614365565b612548565b610346610931366004613df9565b6125c1565b34801561094257600080fd5b506103f4610951366004613efb565b61280a565b34801561096257600080fd5b5061019a5461047f90600160401b90046001600160401b031681565b34801561098a57600080fd5b50610368610999366004613f3e565b6101956020526000908152604090205460ff1681565b3480156109bb57600080fd5b5061047f6109ca366004613f3e565b610192602052600090815260409020546001600160401b031681565b3480156109f257600080fd5b5061019b5461036890600160c01b900460ff1681565b348015610a1457600080fd5b506101995461047f90600160881b90046001600160401b031681565b348015610a3c57600080fd5b506103f4612871565b348015610a5157600080fd5b50610368610a603660046143cc565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b348015610a9a57600080fd5b50610346610aa9366004613f3e565b612881565b610346610abc366004613df9565b6128f7565b348015610acd57600080fd5b5061047f610adc366004613f3e565b610191602052600090815260409020546001600160401b031681565b60006001600160e01b0319821663780e9d6360e01b1480610b1d5750610b1d82612bd8565b92915050565b600260fb541415610b7b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260fb5561019b54600160a81b900460ff16610bd05760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b6044820152606401610b72565b33600090815261019160205260409020546001600160401b0382811691161015610c2d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610b72565b61019954604c600160481b9091046001600160401b031610610c915760405162461bcd60e51b815260206004820152601760248201527f7465616d20706c617965727320616c6c206d696e7465640000000000000000006044820152606401610b72565b336000908152610191602052604081208054839290610cba9084906001600160401b031661440c565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555060005b816001600160401b0316816001600160401b03161015610d735761019954610d1a908490600160481b90046001600160401b0316612c28565b6101998054600160481b90046001600160401b0316906009610d3b83614434565b91906101000a8154816001600160401b0302191690836001600160401b03160217905550508080610d6b90614434565b915050610ce1565b5050600160fb5550565b610d85612d76565b61019b80547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16600160a81b8615159081027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff1691909117600160b01b861515908102919091177fffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffff16600160b81b8615159081027fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff1691909117600160c01b861515908102919091179094556040805193845260208401929092529082015260608101919091527f0a5b33802455566a95a9c7f412b934c4e7ce788ff899f89ee9b6b8af31ce972f9060800160405180910390a150505050565b606060658054610eae9061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda9061445b565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b5050505050905090565b6000610f3c82612dd0565b506000908152606960205260409020546001600160a01b031690565b6000610f63826121f8565b9050806001600160a01b0316836001600160a01b03161415610fd15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b72565b336001600160a01b0382161480610fed5750610fed8133610a60565b61105f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b72565b6110698383612e34565b505050565b60006060600061019b60169054906101000a900460ff16156111da57604080518082018252600c81527f6b6579537570706f7274657200000000000000000000000000000000000000006020808301919091526001600160a01b0387166000908152610196909152919091205490925060ff166110f057506000915081611400565b6001600160a01b038416600090815261019260205260409020546001600160401b03166111235750600091506001611400565b506001600160a01b038316600090815261019260205260408120546101995461020e91611164916001600160401b0391821691600160881b90910416614496565b6001600160401b0316101561119d576001600160a01b038416600090815261019260205260409020546001600160401b03169250611400565b610199546001906111c090600160881b90046001600160401b031661020e61440c565b6111ca919061440c565b6001600160401b03169250611400565b61019b54600160b81b900460ff16156113005760408051808201825260098152681dda1a5d195b1a5cdd60ba1b6020808301919091526001600160a01b0387166000908152610197909152919091205490925060ff1661123f57506000915081611400565b6001600160a01b038416600090815261019360205260409020546001600160401b03166112725750600091506001611400565b506001600160a01b0383166000908152610193602052604081205461019a546109de916112ab916001600160401b039182169116614496565b6001600160401b031610156112e4576001600160a01b038416600090815261019360205260409020546001600160401b03169250611400565b61019a546001906111c0906001600160401b03166109de61440c565b61019b54600160c01b900460ff161561140057604080518082018252600a8152691c1d589b1a58d35a5b9d60b21b6020808301919091526001600160a01b038716600090815261019490915291909120549092506001600160401b0316603214156113715750600091506001611400565b506001600160a01b0383166000908152610194602052604081205461019a546109de916113aa916001600160401b039182169116614496565b6001600160401b031610156113e7576001600160a01b038416600090815261019460205260409020546111ca906001600160401b0316603261440c565b61019a546111ca906001600160401b03166109de61440c565b9193909250565b61140f612d76565b82811461144f5760405162461bcd60e51b815260206004820152600e60248201526d0e0c2e4c2da40dad2e6dac2e8c6d60931b6044820152606401610b72565b8060005b816001600160401b0316816001600160401b03161015611599578383826001600160401b0316818110611488576114886144c1565b905060200201602081019061149d91906144d7565b61019260008888856001600160401b03168181106114bd576114bd6144c1565b90506020020160208101906114d29190613f3e565b6001600160a01b031681526020810191909152604001600090812080549091906115069084906001600160401b0316614496565b92506101000a8154816001600160401b0302191690836001600160401b03160217905550600161019660008888856001600160401b031681811061154c5761154c6144c1565b90506020020160208101906115619190613f3e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561159281614434565b9050611453565b505050505050565b61019a54610199546000916109de916001600160401b03600160401b830481169261020e9290821691604c91600160881b81048216916115ec91600191600160481b9091041661440c565b6115f69190614496565b611600919061440c565b61160a9190614496565b611614919061440c565b61161e9190614496565b611628919061440c565b6001600160401b0316905090565b6116403382612ea2565b6116a35760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b72565b611069838383612f21565b6116b6612d76565b8060005b816001600160401b0316816001600160401b031610156117ab57600561019360008686856001600160401b03168181106116f6576116f66144c1565b905060200201602081019061170b9190613f3e565b6001600160a01b0316815260208101919091526040016000908120805467ffffffffffffffff19166001600160401b03938416179055600191610197919087908790861681811061175e5761175e6144c1565b90506020020160208101906117739190613f3e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556117a481614434565b90506116ba565b50505050565b61019a54610199546000916109de916001600160401b03600160401b830481169261020e9290821691604c91600160881b81048216916117fc91600191600160481b9091041661440c565b6118069190614496565b611810919061440c565b61181a9190614496565b611824919061440c565b61182e9190614496565b611838919061440c565b905090565b600054610100900460ff161580801561185d5750600054600160ff909116105b806118775750303b158015611877575060005460ff166001145b6118e95760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610b72565b6000805460ff19166001179055801561190c576000805461ff0019166101001790555b6119696040518060400160405280600b81526020017f546865204c6f636b657973000000000000000000000000000000000000000000815250604051806040016040528060068152602001654c4f434b455960d01b8152506130c8565b61197161313d565b6119796131b0565b6119b585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061321b92505050565b610199805468ffffffffffffffff0019166101006001600160401b0389160217905561019b80546001600160a01b0319166001600160a01b0385161790556119fc82612881565b610199805478ffffffffffffffffffffffffffffffff0000000000000000001916714c000000000000003300000000000000000017905561019a80546fffffffffffffffffffffffffffffffff19166909de000000000000020e1790558015611599576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050565b6000611ab183612369565b8210611b255760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b72565b506001600160a01b03919091166000908152609760209081526040808320938352929052205490565b61019c8054611b5c9061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b889061445b565b8015611bd55780601f10611baa57610100808354040283529160200191611bd5565b820191906000526020600020905b815481529060010190602001808311611bb857829003601f168201915b505050505081565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611c6b5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608401610b72565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611cc67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614611d315760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610b72565b611d3a81613393565b60408051600080825260208201909252611d569183919061339b565b50565b61106983838360405180602001604052806000815250612548565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611e025760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608401610b72565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611e5d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614611ec85760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610b72565b611ed182613393565b611edd8282600161339b565b5050565b6000611eec60995490565b8210611f605760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b72565b60998281548110611f7357611f736144c1565b90600052602060002001549050919050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146120255760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610b72565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b612052612d76565b8051611edd90610198906020840190613cfa565b61206e612d76565b8281146120ae5760405162461bcd60e51b815260206004820152600e60248201526d0e0c2e4c2da40dad2e6dac2e8c6d60931b6044820152606401610b72565b8060005b816001600160401b0316816001600160401b03161015611599578383826001600160401b03168181106120e7576120e76144c1565b90506020020160208101906120fc91906144d7565b61019160008888856001600160401b031681811061211c5761211c6144c1565b90506020020160208101906121319190613f3e565b6001600160a01b031681526020810191909152604001600090812080549091906121659084906001600160401b0316614496565b92506101000a8154816001600160401b0302191690836001600160401b03160217905550600161019560008888856001600160401b03168181106121ab576121ab6144c1565b90506020020160208101906121c09190613f3e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556121f181614434565b90506120b2565b6000818152606760205260408120546001600160a01b031680610b1d5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b72565b600260fb5414156122b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b72565b600260fb556122bd612d76565b61019b546040516000916001600160a01b03169047908381818185875af1925050503d806000811461230b576040519150601f19603f3d011682016040523d82523d6000602084013e612310565b606091505b50509050806123615760405162461bcd60e51b815260206004820152601e60248201527f6661696c656420746f2073656e642065746820746f20747265617375727900006044820152606401610b72565b50600160fb55565b60006001600160a01b0382166123d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b72565b506001600160a01b031660009081526068602052604090205490565b6123f7612d76565b6124016000613536565b565b61240b612d76565b8051611edd9061019c906020840190613cfa565b606060668054610eae9061445b565b612436612d76565b61019980546001600160401b03948516600160881b027fffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffff968616600160481b029690961678ffffffffffffffffffffffffffffffff00000000000000000019909116179490941790935561019a8054938316600160401b026fffffffffffffffffffffffffffffffff199094169190921617919091179055565b611edd338383613588565b6001600160401b038616156124f4576124f48787610b23565b6001600160401b0384161561250d5761250d85856125c1565b6001600160401b038216156125265761252683836128f7565b6001600160401b0381161561253f5761253f83826128f7565b50505050505050565b6125523383612ea2565b6125b55760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b72565b6117ab84848484613657565b600260fb5414156126145760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b72565b600260fb5561019b54600160b01b900460ff166126695760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b6044820152606401610b72565b33600090815261019260205260409020546001600160401b03828116911610156126c65760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610b72565b610199546101eb600160881b9091046001600160401b03161061272b5760405162461bcd60e51b815260206004820152601960248201527f6b657920737570706f727465727320616c6c206d696e746564000000000000006044820152606401610b72565b3360009081526101926020526040812080548392906127549084906001600160401b031661440c565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555060005b816001600160401b0316816001600160401b03161015610d7357610199546127b4908490600160881b90046001600160401b0316612c28565b61019980546011906127d590600160881b90046001600160401b0316614434565b91906101000a8154816001600160401b0302191690836001600160401b031602179055508061280390614434565b905061277b565b606061281582612dd0565b600061281f6136d5565b9050600081511161283f576040518060200160405280600081525061286a565b80612849846136e5565b60405160200161285a9291906144f2565b6040516020818303038152906040525b9392505050565b606061019c8054610eae9061445b565b612889612d76565b6001600160a01b0381166128ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b72565b611d5681613536565b600260fb54141561294a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b72565b600260fb5561019a546109de6001600160401b03909116106129ae5760405162461bcd60e51b815260206004820152601160248201527f616c6c20746f6b656e73206d696e7465640000000000000000000000000000006044820152606401610b72565b61019b54600160c01b900460ff166129fe5760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b6044820152606401610b72565b3360009081526101946020526040902054603290612a269083906001600160401b0316614496565b6001600160401b03161115612a7d5760405162461bcd60e51b815260206004820152601660248201527f72656163686564206d6178696d756d20616d6f756e74000000000000000000006044820152606401610b72565b610199543490612a9c90839061010090046001600160401b0316614518565b6001600160401b03161115612af35760405162461bcd60e51b815260206004820152600f60248201527f21656e6f756768206d696e7446656500000000000000000000000000000000006044820152606401610b72565b60005b816001600160401b0316816001600160401b03161015612b775761019a54612b289084906001600160401b0316612c28565b61019a8054600090612b42906001600160401b0316614434565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555080612b7090614434565b9050612af6565b50336000908152610194602052604081208054839290612ba19084906001600160401b0316614496565b82546001600160401b039182166101009390930a92830291909202199091161790555050610199805460ff1916905550600160fb55565b60006001600160e01b031982166380ac58cd60e01b1480612c0957506001600160e01b03198216635b5e139f60e01b145b80610b1d57506301ffc9a760e01b6001600160e01b0319831614610b1d565b6001600160a01b038216612c7e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b72565b6000818152606760205260409020546001600160a01b031615612ce35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b72565b612cef600083836137fa565b6001600160a01b0382166000908152606860205260408120805460019290612d18908490614547565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60c9546001600160a01b031633146124015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b72565b6000818152606760205260409020546001600160a01b0316611d565760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b72565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612e69826121f8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612eae836121f8565b9050806001600160a01b0316846001600160a01b03161480612ef557506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b80612f195750836001600160a01b0316612f0e84610f31565b6001600160a01b0316145b949350505050565b826001600160a01b0316612f34826121f8565b6001600160a01b031614612f985760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b72565b6001600160a01b038216612ffa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b72565b6130058383836137fa565b613010600082612e34565b6001600160a01b038316600090815260686020526040812080546001929061303990849061455f565b90915550506001600160a01b0382166000908152606860205260408120805460019290613067908490614547565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600054610100900460ff166131335760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b611edd828261384c565b600054610100900460ff166131a85760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b6124016138de565b600054610100900460ff166124015760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b613223612d76565b80516032146132745760405162461bcd60e51b815260206004820152601260248201527f77726f6e6720696e707574206c656e67746800000000000000000000000000006044820152606401610b72565b61019b54600160a01b900460ff16156132cf5760405162461bcd60e51b815260206004820152601660248201527f72617265206d696e7420616c726561647920646f6e65000000000000000000006044820152606401610b72565b60015b6032816001600160401b03161161333257613322826132f260018461440c565b6001600160401b03168151811061330b5761330b6144c1565b6020026020010151826001600160401b0316612c28565b61332b81614434565b90506132d2565b5061019b805474ff00000000000000000000000000000000000000001916600160a01b1790556040517f25e286e046d957eb893bb537d76c1dc93e46182714554a2001af619ae281d29290613388908390614576565b60405180910390a150565b611d56612d76565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156133ce5761106983613952565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561340757600080fd5b505afa925050508015613437575060408051601f3d908101601f19168201909252613434918101906145c3565b60015b6134a95760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610b72565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc811461352a5760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610b72565b50611069838383613a10565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156135ea5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b72565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613662848484612f21565b61366e84848484613a35565b6117ab5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b72565b60606101988054610eae9061445b565b6060816137095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613733578061371d816145dc565b915061372c9050600a8361460d565b915061370d565b6000816001600160401b0381111561374d5761374d61412c565b6040519080825280601f01601f191660200182016040528015613777576020820181803683370190505b5090505b8415612f195761378c60018361455f565b9150613799600a86614621565b6137a4906030614547565b60f81b8183815181106137b9576137b96144c1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506137f3600a8661460d565b945061377b565b610dac8111156110695760405162461bcd60e51b815260206004820152601460248201527f746f6b656e4964206973206e6f742076616c69640000000000000000000000006044820152606401610b72565b600054610100900460ff166138b75760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b81516138ca906065906020850190613cfa565b508051611069906066906020840190613cfa565b600054610100900460ff166139495760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b61240133613536565b6001600160a01b0381163b6139cf5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610b72565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b613a1983613b8d565b600082511180613a265750805b15611069576117ab8383613bcd565b60006001600160a01b0384163b15613b8257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a79903390899088908890600401614635565b602060405180830381600087803b158015613a9357600080fd5b505af1925050508015613ac3575060408051601f3d908101601f19168201909252613ac091810190614671565b60015b613b68573d808015613af1576040519150601f19603f3d011682016040523d82523d6000602084013e613af6565b606091505b508051613b605760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b72565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f19565b506001949350505050565b613b9681613952565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b613c355760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610b72565b600080846001600160a01b031684604051613c50919061468e565b600060405180830381855af49150503d8060008114613c8b576040519150601f19603f3d011682016040523d82523d6000602084013e613c90565b606091505b5091509150613cb882826040518060600160405280602781526020016146ab60279139613cc1565b95945050505050565b60608315613cd057508161286a565b825115613ce05782518084602001fd5b8160405162461bcd60e51b8152600401610b729190613ee8565b828054613d069061445b565b90600052602060002090601f016020900481019282613d285760008555613d6e565b82601f10613d4157805160ff1916838001178555613d6e565b82800160010185558215613d6e579182015b82811115613d6e578251825591602001919060010190613d53565b50613d7a929150613d7e565b5090565b5b80821115613d7a5760008155600101613d7f565b6001600160e01b031981168114611d5657600080fd5b600060208284031215613dbb57600080fd5b813561286a81613d93565b80356001600160a01b0381168114613ddd57600080fd5b919050565b80356001600160401b0381168114613ddd57600080fd5b60008060408385031215613e0c57600080fd5b613e1583613dc6565b9150613e2360208401613de2565b90509250929050565b80358015158114613ddd57600080fd5b60008060008060808587031215613e5257600080fd5b613e5b85613e2c565b9350613e6960208601613e2c565b9250613e7760408601613e2c565b9150613e8560608601613e2c565b905092959194509250565b60005b83811015613eab578181015183820152602001613e93565b838111156117ab5750506000910152565b60008151808452613ed4816020860160208601613e90565b601f01601f19169290920160200192915050565b60208152600061286a6020830184613ebc565b600060208284031215613f0d57600080fd5b5035919050565b60008060408385031215613f2757600080fd5b613f3083613dc6565b946020939093013593505050565b600060208284031215613f5057600080fd5b61286a82613dc6565b838152606060208201526000613f726060830185613ebc565b90508215156040830152949350505050565b60008083601f840112613f9657600080fd5b5081356001600160401b03811115613fad57600080fd5b6020830191508360208260051b8501011115613fc857600080fd5b9250929050565b60008060008060408587031215613fe557600080fd5b84356001600160401b0380821115613ffc57600080fd5b61400888838901613f84565b9096509450602087013591508082111561402157600080fd5b5061402e87828801613f84565b95989497509550505050565b60008060006060848603121561404f57600080fd5b61405884613dc6565b925061406660208501613dc6565b9150604084013590509250925092565b6000806020838503121561408957600080fd5b82356001600160401b0381111561409f57600080fd5b6140ab85828601613f84565b90969095509350505050565b6000806000806000608086880312156140cf57600080fd5b6140d886613de2565b945060208601356001600160401b038111156140f357600080fd5b6140ff88828901613f84565b9095509350614112905060408701613dc6565b915061412060608701613dc6565b90509295509295909350565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561415c5761415c61412c565b604051601f8501601f19908116603f011681019082821181831017156141845761418461412c565b8160405280935085815286868601111561419d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126141c857600080fd5b61286a83833560208501614142565b600080604083850312156141ea57600080fd5b6141f383613dc6565b915060208301356001600160401b0381111561420e57600080fd5b61421a858286016141b7565b9150509250929050565b60006020828403121561423657600080fd5b81356001600160401b0381111561424c57600080fd5b8201601f8101841361425d57600080fd5b612f1984823560208401614142565b6000806000806080858703121561428257600080fd5b61428b85613de2565b935061429960208601613de2565b92506142a760408601613de2565b9150613e8560608601613de2565b600080604083850312156142c857600080fd5b6142d183613dc6565b9150613e2360208401613e2c565b600080600080600080600060e0888a0312156142fa57600080fd5b61430388613dc6565b965061431160208901613de2565b955061431f60408901613dc6565b945061432d60608901613de2565b935061433b60808901613dc6565b925061434960a08901613de2565b915061435760c08901613de2565b905092959891949750929550565b6000806000806080858703121561437b57600080fd5b61438485613dc6565b935061439260208601613dc6565b92506040850135915060608501356001600160401b038111156143b457600080fd5b6143c0878288016141b7565b91505092959194509250565b600080604083850312156143df57600080fd5b6143e883613dc6565b9150613e2360208401613dc6565b634e487b7160e01b600052601160045260246000fd5b60006001600160401b038381169083168181101561442c5761442c6143f6565b039392505050565b60006001600160401b0380831681811415614451576144516143f6565b6001019392505050565b600181811c9082168061446f57607f821691505b6020821081141561449057634e487b7160e01b600052602260045260246000fd5b50919050565b60006001600160401b038083168185168083038211156144b8576144b86143f6565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156144e957600080fd5b61286a82613de2565b60008351614504818460208801613e90565b8351908301906144b8818360208801613e90565b60006001600160401b038083168185168183048111821515161561453e5761453e6143f6565b02949350505050565b6000821982111561455a5761455a6143f6565b500190565b600082821015614571576145716143f6565b500390565b6020808252825182820181905260009190848201906040850190845b818110156145b75783516001600160a01b031683529284019291840191600101614592565b50909695505050505050565b6000602082840312156145d557600080fd5b5051919050565b60006000198214156145f0576145f06143f6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261461c5761461c6145f7565b500490565b600082614630576146306145f7565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526146676080830184613ebc565b9695505050505050565b60006020828403121561468357600080fd5b815161286a81613d93565b600082516146a0818460208701613e90565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220efd544716543632ac65e586a88d3e906462566ea74985d5146bfdd38543dc17964736f6c63430008090033

Deployed Bytecode

0x60806040526004361061033f5760003560e01c80635f4b45cc116101ae578063adad2999116100eb578063ddc0fd6f1161008f578063e985e9c51161006c578063e985e9c514610a45578063f2fde38b14610a8e578063f4dd99e014610aae578063fcabc0b314610ac157005b8063ddc0fd6f146109e6578063e67d3f1e14610a08578063e8a3d48514610a3057005b8063c87b56dd116100c8578063c87b56dd14610936578063ca48aba714610956578063d4c8949e1461097e578063dbbc3295146109af57005b8063adad2999146108e1578063b88d4fde14610903578063bb2eabff1461092357005b80638da5cb5b116101525780639cfa61b41161012f5780639cfa61b41461086d578063a22cb4651461088d578063abea431d146108ad578063ac405d5e146108ce57005b80638da5cb5b1461081a578063938e3d7b1461083857806395d89b411461085857005b80636ff861621161018b5780636ff861621461079f57806370a08231146107b4578063715018a6146107d4578063831bdcf5146107e957005b80635f4b45cc1461073e57806361d027b31461075e5780636352211e1461077f57005b806326ba27e31161027c5780633f9169d2116102205780634f6ccce7116101fd5780634f6ccce7146106b857806352d1902d146106d857806355f804b3146106ed578063569145b91461070d57005b80633f9169d21461066357806342842e0e146106855780634f1ef286146106a557005b8063318a741311610259578063318a7413146105d55780633552ac23146105f757806335a6907a1461062e5780633659cfe61461064357005b806326ba27e3146105805780632ea6a0c7146105955780632f745c59146105b557005b806313966db5116102e357806318160ddd116102c057806318160ddd146104e65780631ee466ea1461050957806323b872dd1461054057806323e382171461056057005b806313966db51461045957806316086eb014610497578063160c94b6146104c657005b806306ac9c871161031c57806306ac9c87146103bf57806306fdde03146103df578063081812fc14610401578063095ea7b31461043957005b806301ffc9a714610348578063035c45fa1461037d57806303aa70581461039f57005b3661034657005b005b34801561035457600080fd5b50610368610363366004613da9565b610af8565b60405190151581526020015b60405180910390f35b34801561038957600080fd5b5061019b5461036890600160b81b900460ff1681565b3480156103ab57600080fd5b506103466103ba366004613df9565b610b23565b3480156103cb57600080fd5b506103466103da366004613e3c565b610d7d565b3480156103eb57600080fd5b506103f4610e9f565b6040516103749190613ee8565b34801561040d57600080fd5b5061042161041c366004613efb565b610f31565b6040516001600160a01b039091168152602001610374565b34801561044557600080fd5b50610346610454366004613f14565b610f58565b34801561046557600080fd5b506101995461047f9061010090046001600160401b031681565b6040516001600160401b039091168152602001610374565b3480156104a357600080fd5b506104b76104b2366004613f3e565b61106e565b60405161037493929190613f59565b3480156104d257600080fd5b506103466104e1366004613fcf565b611407565b3480156104f257600080fd5b506104fb6115a1565b604051908152602001610374565b34801561051557600080fd5b5061047f610524366004613f3e565b610194602052600090815260409020546001600160401b031681565b34801561054c57600080fd5b5061034661055b36600461403a565b611636565b34801561056c57600080fd5b5061034661057b366004614076565b6116ae565b34801561058c57600080fd5b5061047f6117b1565b3480156105a157600080fd5b506103466105b03660046140b7565b61183d565b3480156105c157600080fd5b506104fb6105d0366004613f14565b611aa6565b3480156105e157600080fd5b5061019b5461036890600160a81b900460ff1681565b34801561060357600080fd5b5061047f610612366004613f3e565b610193602052600090815260409020546001600160401b031681565b34801561063a57600080fd5b506103f4611b4e565b34801561064f57600080fd5b5061034661065e366004613f3e565b611bdd565b34801561066f57600080fd5b5061019b5461036890600160b01b900460ff1681565b34801561069157600080fd5b506103466106a036600461403a565b611d59565b6103466106b33660046141d7565b611d74565b3480156106c457600080fd5b506104fb6106d3366004613efb565b611ee1565b3480156106e457600080fd5b506104fb611f85565b3480156106f957600080fd5b50610346610708366004614224565b61204a565b34801561071957600080fd5b50610368610728366004613f3e565b6101976020526000908152604090205460ff1681565b34801561074a57600080fd5b50610346610759366004613fcf565b612066565b34801561076a57600080fd5b5061019b54610421906001600160a01b031681565b34801561078b57600080fd5b5061042161079a366004613efb565b6121f8565b3480156107ab57600080fd5b5061034661225d565b3480156107c057600080fd5b506104fb6107cf366004613f3e565b612369565b3480156107e057600080fd5b506103466123ef565b3480156107f557600080fd5b50610368610804366004613f3e565b6101966020526000908152604090205460ff1681565b34801561082657600080fd5b5060c9546001600160a01b0316610421565b34801561084457600080fd5b50610346610853366004614224565b612403565b34801561086457600080fd5b506103f461241f565b34801561087957600080fd5b5061034661088836600461426c565b61242e565b34801561089957600080fd5b506103466108a83660046142b5565b6124d0565b3480156108b957600080fd5b5061019a5461047f906001600160401b031681565b6103466108dc3660046142df565b6124db565b3480156108ed57600080fd5b5061019b5461036890600160a01b900460ff1681565b34801561090f57600080fd5b5061034661091e366004614365565b612548565b610346610931366004613df9565b6125c1565b34801561094257600080fd5b506103f4610951366004613efb565b61280a565b34801561096257600080fd5b5061019a5461047f90600160401b90046001600160401b031681565b34801561098a57600080fd5b50610368610999366004613f3e565b6101956020526000908152604090205460ff1681565b3480156109bb57600080fd5b5061047f6109ca366004613f3e565b610192602052600090815260409020546001600160401b031681565b3480156109f257600080fd5b5061019b5461036890600160c01b900460ff1681565b348015610a1457600080fd5b506101995461047f90600160881b90046001600160401b031681565b348015610a3c57600080fd5b506103f4612871565b348015610a5157600080fd5b50610368610a603660046143cc565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b348015610a9a57600080fd5b50610346610aa9366004613f3e565b612881565b610346610abc366004613df9565b6128f7565b348015610acd57600080fd5b5061047f610adc366004613f3e565b610191602052600090815260409020546001600160401b031681565b60006001600160e01b0319821663780e9d6360e01b1480610b1d5750610b1d82612bd8565b92915050565b600260fb541415610b7b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260fb5561019b54600160a81b900460ff16610bd05760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b6044820152606401610b72565b33600090815261019160205260409020546001600160401b0382811691161015610c2d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610b72565b61019954604c600160481b9091046001600160401b031610610c915760405162461bcd60e51b815260206004820152601760248201527f7465616d20706c617965727320616c6c206d696e7465640000000000000000006044820152606401610b72565b336000908152610191602052604081208054839290610cba9084906001600160401b031661440c565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555060005b816001600160401b0316816001600160401b03161015610d735761019954610d1a908490600160481b90046001600160401b0316612c28565b6101998054600160481b90046001600160401b0316906009610d3b83614434565b91906101000a8154816001600160401b0302191690836001600160401b03160217905550508080610d6b90614434565b915050610ce1565b5050600160fb5550565b610d85612d76565b61019b80547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16600160a81b8615159081027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff1691909117600160b01b861515908102919091177fffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffff16600160b81b8615159081027fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff1691909117600160c01b861515908102919091179094556040805193845260208401929092529082015260608101919091527f0a5b33802455566a95a9c7f412b934c4e7ce788ff899f89ee9b6b8af31ce972f9060800160405180910390a150505050565b606060658054610eae9061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda9061445b565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b5050505050905090565b6000610f3c82612dd0565b506000908152606960205260409020546001600160a01b031690565b6000610f63826121f8565b9050806001600160a01b0316836001600160a01b03161415610fd15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b72565b336001600160a01b0382161480610fed5750610fed8133610a60565b61105f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b72565b6110698383612e34565b505050565b60006060600061019b60169054906101000a900460ff16156111da57604080518082018252600c81527f6b6579537570706f7274657200000000000000000000000000000000000000006020808301919091526001600160a01b0387166000908152610196909152919091205490925060ff166110f057506000915081611400565b6001600160a01b038416600090815261019260205260409020546001600160401b03166111235750600091506001611400565b506001600160a01b038316600090815261019260205260408120546101995461020e91611164916001600160401b0391821691600160881b90910416614496565b6001600160401b0316101561119d576001600160a01b038416600090815261019260205260409020546001600160401b03169250611400565b610199546001906111c090600160881b90046001600160401b031661020e61440c565b6111ca919061440c565b6001600160401b03169250611400565b61019b54600160b81b900460ff16156113005760408051808201825260098152681dda1a5d195b1a5cdd60ba1b6020808301919091526001600160a01b0387166000908152610197909152919091205490925060ff1661123f57506000915081611400565b6001600160a01b038416600090815261019360205260409020546001600160401b03166112725750600091506001611400565b506001600160a01b0383166000908152610193602052604081205461019a546109de916112ab916001600160401b039182169116614496565b6001600160401b031610156112e4576001600160a01b038416600090815261019360205260409020546001600160401b03169250611400565b61019a546001906111c0906001600160401b03166109de61440c565b61019b54600160c01b900460ff161561140057604080518082018252600a8152691c1d589b1a58d35a5b9d60b21b6020808301919091526001600160a01b038716600090815261019490915291909120549092506001600160401b0316603214156113715750600091506001611400565b506001600160a01b0383166000908152610194602052604081205461019a546109de916113aa916001600160401b039182169116614496565b6001600160401b031610156113e7576001600160a01b038416600090815261019460205260409020546111ca906001600160401b0316603261440c565b61019a546111ca906001600160401b03166109de61440c565b9193909250565b61140f612d76565b82811461144f5760405162461bcd60e51b815260206004820152600e60248201526d0e0c2e4c2da40dad2e6dac2e8c6d60931b6044820152606401610b72565b8060005b816001600160401b0316816001600160401b03161015611599578383826001600160401b0316818110611488576114886144c1565b905060200201602081019061149d91906144d7565b61019260008888856001600160401b03168181106114bd576114bd6144c1565b90506020020160208101906114d29190613f3e565b6001600160a01b031681526020810191909152604001600090812080549091906115069084906001600160401b0316614496565b92506101000a8154816001600160401b0302191690836001600160401b03160217905550600161019660008888856001600160401b031681811061154c5761154c6144c1565b90506020020160208101906115619190613f3e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561159281614434565b9050611453565b505050505050565b61019a54610199546000916109de916001600160401b03600160401b830481169261020e9290821691604c91600160881b81048216916115ec91600191600160481b9091041661440c565b6115f69190614496565b611600919061440c565b61160a9190614496565b611614919061440c565b61161e9190614496565b611628919061440c565b6001600160401b0316905090565b6116403382612ea2565b6116a35760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b72565b611069838383612f21565b6116b6612d76565b8060005b816001600160401b0316816001600160401b031610156117ab57600561019360008686856001600160401b03168181106116f6576116f66144c1565b905060200201602081019061170b9190613f3e565b6001600160a01b0316815260208101919091526040016000908120805467ffffffffffffffff19166001600160401b03938416179055600191610197919087908790861681811061175e5761175e6144c1565b90506020020160208101906117739190613f3e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556117a481614434565b90506116ba565b50505050565b61019a54610199546000916109de916001600160401b03600160401b830481169261020e9290821691604c91600160881b81048216916117fc91600191600160481b9091041661440c565b6118069190614496565b611810919061440c565b61181a9190614496565b611824919061440c565b61182e9190614496565b611838919061440c565b905090565b600054610100900460ff161580801561185d5750600054600160ff909116105b806118775750303b158015611877575060005460ff166001145b6118e95760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610b72565b6000805460ff19166001179055801561190c576000805461ff0019166101001790555b6119696040518060400160405280600b81526020017f546865204c6f636b657973000000000000000000000000000000000000000000815250604051806040016040528060068152602001654c4f434b455960d01b8152506130c8565b61197161313d565b6119796131b0565b6119b585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061321b92505050565b610199805468ffffffffffffffff0019166101006001600160401b0389160217905561019b80546001600160a01b0319166001600160a01b0385161790556119fc82612881565b610199805478ffffffffffffffffffffffffffffffff0000000000000000001916714c000000000000003300000000000000000017905561019a80546fffffffffffffffffffffffffffffffff19166909de000000000000020e1790558015611599576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050565b6000611ab183612369565b8210611b255760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b72565b506001600160a01b03919091166000908152609760209081526040808320938352929052205490565b61019c8054611b5c9061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b889061445b565b8015611bd55780601f10611baa57610100808354040283529160200191611bd5565b820191906000526020600020905b815481529060010190602001808311611bb857829003601f168201915b505050505081565b306001600160a01b037f0000000000000000000000009939369c5faa3a4feda72a4899655b51408fc4a0161415611c6b5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608401610b72565b7f0000000000000000000000009939369c5faa3a4feda72a4899655b51408fc4a06001600160a01b0316611cc67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614611d315760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610b72565b611d3a81613393565b60408051600080825260208201909252611d569183919061339b565b50565b61106983838360405180602001604052806000815250612548565b306001600160a01b037f0000000000000000000000009939369c5faa3a4feda72a4899655b51408fc4a0161415611e025760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608401610b72565b7f0000000000000000000000009939369c5faa3a4feda72a4899655b51408fc4a06001600160a01b0316611e5d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614611ec85760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b6163746976652070726f787960a01b6064820152608401610b72565b611ed182613393565b611edd8282600161339b565b5050565b6000611eec60995490565b8210611f605760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b72565b60998281548110611f7357611f736144c1565b90600052602060002001549050919050565b6000306001600160a01b037f0000000000000000000000009939369c5faa3a4feda72a4899655b51408fc4a016146120255760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610b72565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b612052612d76565b8051611edd90610198906020840190613cfa565b61206e612d76565b8281146120ae5760405162461bcd60e51b815260206004820152600e60248201526d0e0c2e4c2da40dad2e6dac2e8c6d60931b6044820152606401610b72565b8060005b816001600160401b0316816001600160401b03161015611599578383826001600160401b03168181106120e7576120e76144c1565b90506020020160208101906120fc91906144d7565b61019160008888856001600160401b031681811061211c5761211c6144c1565b90506020020160208101906121319190613f3e565b6001600160a01b031681526020810191909152604001600090812080549091906121659084906001600160401b0316614496565b92506101000a8154816001600160401b0302191690836001600160401b03160217905550600161019560008888856001600160401b03168181106121ab576121ab6144c1565b90506020020160208101906121c09190613f3e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556121f181614434565b90506120b2565b6000818152606760205260408120546001600160a01b031680610b1d5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b72565b600260fb5414156122b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b72565b600260fb556122bd612d76565b61019b546040516000916001600160a01b03169047908381818185875af1925050503d806000811461230b576040519150601f19603f3d011682016040523d82523d6000602084013e612310565b606091505b50509050806123615760405162461bcd60e51b815260206004820152601e60248201527f6661696c656420746f2073656e642065746820746f20747265617375727900006044820152606401610b72565b50600160fb55565b60006001600160a01b0382166123d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b72565b506001600160a01b031660009081526068602052604090205490565b6123f7612d76565b6124016000613536565b565b61240b612d76565b8051611edd9061019c906020840190613cfa565b606060668054610eae9061445b565b612436612d76565b61019980546001600160401b03948516600160881b027fffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffff968616600160481b029690961678ffffffffffffffffffffffffffffffff00000000000000000019909116179490941790935561019a8054938316600160401b026fffffffffffffffffffffffffffffffff199094169190921617919091179055565b611edd338383613588565b6001600160401b038616156124f4576124f48787610b23565b6001600160401b0384161561250d5761250d85856125c1565b6001600160401b038216156125265761252683836128f7565b6001600160401b0381161561253f5761253f83826128f7565b50505050505050565b6125523383612ea2565b6125b55760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b72565b6117ab84848484613657565b600260fb5414156126145760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b72565b600260fb5561019b54600160b01b900460ff166126695760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b6044820152606401610b72565b33600090815261019260205260409020546001600160401b03828116911610156126c65760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610b72565b610199546101eb600160881b9091046001600160401b03161061272b5760405162461bcd60e51b815260206004820152601960248201527f6b657920737570706f727465727320616c6c206d696e746564000000000000006044820152606401610b72565b3360009081526101926020526040812080548392906127549084906001600160401b031661440c565b92506101000a8154816001600160401b0302191690836001600160401b0316021790555060005b816001600160401b0316816001600160401b03161015610d7357610199546127b4908490600160881b90046001600160401b0316612c28565b61019980546011906127d590600160881b90046001600160401b0316614434565b91906101000a8154816001600160401b0302191690836001600160401b031602179055508061280390614434565b905061277b565b606061281582612dd0565b600061281f6136d5565b9050600081511161283f576040518060200160405280600081525061286a565b80612849846136e5565b60405160200161285a9291906144f2565b6040516020818303038152906040525b9392505050565b606061019c8054610eae9061445b565b612889612d76565b6001600160a01b0381166128ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b72565b611d5681613536565b600260fb54141561294a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b72565b600260fb5561019a546109de6001600160401b03909116106129ae5760405162461bcd60e51b815260206004820152601160248201527f616c6c20746f6b656e73206d696e7465640000000000000000000000000000006044820152606401610b72565b61019b54600160c01b900460ff166129fe5760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d1a5b99c81b9bdd081cdd185c9d1959606a1b6044820152606401610b72565b3360009081526101946020526040902054603290612a269083906001600160401b0316614496565b6001600160401b03161115612a7d5760405162461bcd60e51b815260206004820152601660248201527f72656163686564206d6178696d756d20616d6f756e74000000000000000000006044820152606401610b72565b610199543490612a9c90839061010090046001600160401b0316614518565b6001600160401b03161115612af35760405162461bcd60e51b815260206004820152600f60248201527f21656e6f756768206d696e7446656500000000000000000000000000000000006044820152606401610b72565b60005b816001600160401b0316816001600160401b03161015612b775761019a54612b289084906001600160401b0316612c28565b61019a8054600090612b42906001600160401b0316614434565b91906101000a8154816001600160401b0302191690836001600160401b0316021790555080612b7090614434565b9050612af6565b50336000908152610194602052604081208054839290612ba19084906001600160401b0316614496565b82546001600160401b039182166101009390930a92830291909202199091161790555050610199805460ff1916905550600160fb55565b60006001600160e01b031982166380ac58cd60e01b1480612c0957506001600160e01b03198216635b5e139f60e01b145b80610b1d57506301ffc9a760e01b6001600160e01b0319831614610b1d565b6001600160a01b038216612c7e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b72565b6000818152606760205260409020546001600160a01b031615612ce35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b72565b612cef600083836137fa565b6001600160a01b0382166000908152606860205260408120805460019290612d18908490614547565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60c9546001600160a01b031633146124015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b72565b6000818152606760205260409020546001600160a01b0316611d565760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b72565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612e69826121f8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612eae836121f8565b9050806001600160a01b0316846001600160a01b03161480612ef557506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b80612f195750836001600160a01b0316612f0e84610f31565b6001600160a01b0316145b949350505050565b826001600160a01b0316612f34826121f8565b6001600160a01b031614612f985760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b72565b6001600160a01b038216612ffa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b72565b6130058383836137fa565b613010600082612e34565b6001600160a01b038316600090815260686020526040812080546001929061303990849061455f565b90915550506001600160a01b0382166000908152606860205260408120805460019290613067908490614547565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600054610100900460ff166131335760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b611edd828261384c565b600054610100900460ff166131a85760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b6124016138de565b600054610100900460ff166124015760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b613223612d76565b80516032146132745760405162461bcd60e51b815260206004820152601260248201527f77726f6e6720696e707574206c656e67746800000000000000000000000000006044820152606401610b72565b61019b54600160a01b900460ff16156132cf5760405162461bcd60e51b815260206004820152601660248201527f72617265206d696e7420616c726561647920646f6e65000000000000000000006044820152606401610b72565b60015b6032816001600160401b03161161333257613322826132f260018461440c565b6001600160401b03168151811061330b5761330b6144c1565b6020026020010151826001600160401b0316612c28565b61332b81614434565b90506132d2565b5061019b805474ff00000000000000000000000000000000000000001916600160a01b1790556040517f25e286e046d957eb893bb537d76c1dc93e46182714554a2001af619ae281d29290613388908390614576565b60405180910390a150565b611d56612d76565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156133ce5761106983613952565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561340757600080fd5b505afa925050508015613437575060408051601f3d908101601f19168201909252613434918101906145c3565b60015b6134a95760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610b72565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc811461352a5760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610b72565b50611069838383613a10565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156135ea5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b72565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613662848484612f21565b61366e84848484613a35565b6117ab5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b72565b60606101988054610eae9061445b565b6060816137095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613733578061371d816145dc565b915061372c9050600a8361460d565b915061370d565b6000816001600160401b0381111561374d5761374d61412c565b6040519080825280601f01601f191660200182016040528015613777576020820181803683370190505b5090505b8415612f195761378c60018361455f565b9150613799600a86614621565b6137a4906030614547565b60f81b8183815181106137b9576137b96144c1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506137f3600a8661460d565b945061377b565b610dac8111156110695760405162461bcd60e51b815260206004820152601460248201527f746f6b656e4964206973206e6f742076616c69640000000000000000000000006044820152606401610b72565b600054610100900460ff166138b75760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b81516138ca906065906020850190613cfa565b508051611069906066906020840190613cfa565b600054610100900460ff166139495760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610b72565b61240133613536565b6001600160a01b0381163b6139cf5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610b72565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b613a1983613b8d565b600082511180613a265750805b15611069576117ab8383613bcd565b60006001600160a01b0384163b15613b8257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a79903390899088908890600401614635565b602060405180830381600087803b158015613a9357600080fd5b505af1925050508015613ac3575060408051601f3d908101601f19168201909252613ac091810190614671565b60015b613b68573d808015613af1576040519150601f19603f3d011682016040523d82523d6000602084013e613af6565b606091505b508051613b605760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b72565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f19565b506001949350505050565b613b9681613952565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b613c355760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610b72565b600080846001600160a01b031684604051613c50919061468e565b600060405180830381855af49150503d8060008114613c8b576040519150601f19603f3d011682016040523d82523d6000602084013e613c90565b606091505b5091509150613cb882826040518060600160405280602781526020016146ab60279139613cc1565b95945050505050565b60608315613cd057508161286a565b825115613ce05782518084602001fd5b8160405162461bcd60e51b8152600401610b729190613ee8565b828054613d069061445b565b90600052602060002090601f016020900481019282613d285760008555613d6e565b82601f10613d4157805160ff1916838001178555613d6e565b82800160010185558215613d6e579182015b82811115613d6e578251825591602001919060010190613d53565b50613d7a929150613d7e565b5090565b5b80821115613d7a5760008155600101613d7f565b6001600160e01b031981168114611d5657600080fd5b600060208284031215613dbb57600080fd5b813561286a81613d93565b80356001600160a01b0381168114613ddd57600080fd5b919050565b80356001600160401b0381168114613ddd57600080fd5b60008060408385031215613e0c57600080fd5b613e1583613dc6565b9150613e2360208401613de2565b90509250929050565b80358015158114613ddd57600080fd5b60008060008060808587031215613e5257600080fd5b613e5b85613e2c565b9350613e6960208601613e2c565b9250613e7760408601613e2c565b9150613e8560608601613e2c565b905092959194509250565b60005b83811015613eab578181015183820152602001613e93565b838111156117ab5750506000910152565b60008151808452613ed4816020860160208601613e90565b601f01601f19169290920160200192915050565b60208152600061286a6020830184613ebc565b600060208284031215613f0d57600080fd5b5035919050565b60008060408385031215613f2757600080fd5b613f3083613dc6565b946020939093013593505050565b600060208284031215613f5057600080fd5b61286a82613dc6565b838152606060208201526000613f726060830185613ebc565b90508215156040830152949350505050565b60008083601f840112613f9657600080fd5b5081356001600160401b03811115613fad57600080fd5b6020830191508360208260051b8501011115613fc857600080fd5b9250929050565b60008060008060408587031215613fe557600080fd5b84356001600160401b0380821115613ffc57600080fd5b61400888838901613f84565b9096509450602087013591508082111561402157600080fd5b5061402e87828801613f84565b95989497509550505050565b60008060006060848603121561404f57600080fd5b61405884613dc6565b925061406660208501613dc6565b9150604084013590509250925092565b6000806020838503121561408957600080fd5b82356001600160401b0381111561409f57600080fd5b6140ab85828601613f84565b90969095509350505050565b6000806000806000608086880312156140cf57600080fd5b6140d886613de2565b945060208601356001600160401b038111156140f357600080fd5b6140ff88828901613f84565b9095509350614112905060408701613dc6565b915061412060608701613dc6565b90509295509295909350565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561415c5761415c61412c565b604051601f8501601f19908116603f011681019082821181831017156141845761418461412c565b8160405280935085815286868601111561419d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126141c857600080fd5b61286a83833560208501614142565b600080604083850312156141ea57600080fd5b6141f383613dc6565b915060208301356001600160401b0381111561420e57600080fd5b61421a858286016141b7565b9150509250929050565b60006020828403121561423657600080fd5b81356001600160401b0381111561424c57600080fd5b8201601f8101841361425d57600080fd5b612f1984823560208401614142565b6000806000806080858703121561428257600080fd5b61428b85613de2565b935061429960208601613de2565b92506142a760408601613de2565b9150613e8560608601613de2565b600080604083850312156142c857600080fd5b6142d183613dc6565b9150613e2360208401613e2c565b600080600080600080600060e0888a0312156142fa57600080fd5b61430388613dc6565b965061431160208901613de2565b955061431f60408901613dc6565b945061432d60608901613de2565b935061433b60808901613dc6565b925061434960a08901613de2565b915061435760c08901613de2565b905092959891949750929550565b6000806000806080858703121561437b57600080fd5b61438485613dc6565b935061439260208601613dc6565b92506040850135915060608501356001600160401b038111156143b457600080fd5b6143c0878288016141b7565b91505092959194509250565b600080604083850312156143df57600080fd5b6143e883613dc6565b9150613e2360208401613dc6565b634e487b7160e01b600052601160045260246000fd5b60006001600160401b038381169083168181101561442c5761442c6143f6565b039392505050565b60006001600160401b0380831681811415614451576144516143f6565b6001019392505050565b600181811c9082168061446f57607f821691505b6020821081141561449057634e487b7160e01b600052602260045260246000fd5b50919050565b60006001600160401b038083168185168083038211156144b8576144b86143f6565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156144e957600080fd5b61286a82613de2565b60008351614504818460208801613e90565b8351908301906144b8818360208801613e90565b60006001600160401b038083168185168183048111821515161561453e5761453e6143f6565b02949350505050565b6000821982111561455a5761455a6143f6565b500190565b600082821015614571576145716143f6565b500390565b6020808252825182820181905260009190848201906040850190845b818110156145b75783516001600160a01b031683529284019291840191600101614592565b50909695505050505050565b6000602082840312156145d557600080fd5b5051919050565b60006000198214156145f0576145f06143f6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261461c5761461c6145f7565b500490565b600082614630576146306145f7565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526146676080830184613ebc565b9695505050505050565b60006020828403121561468357600080fd5b815161286a81613d93565b600082516146a0818460208701613e90565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220efd544716543632ac65e586a88d3e906462566ea74985d5146bfdd38543dc17964736f6c63430008090033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.