ETH Price: $3,488.06 (+3.62%)
Gas: 3 Gwei

Token

CryptoSpirits (SPIRITS)
 

Overview

Max Total Supply

1,660 SPIRITS

Holders

402

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Wilderness to Blockchain: Deployer
Balance
1 SPIRITS
0x4257564c6a110A896168A42eFee4C5aE3dfD26F0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Spirits

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 14 of 15: Spirits.sol
pragma solidity ^0.7.0;

import "./IERC165.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./EnumerableMap.sol";
import "./EnumerableSet.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./Context.sol";
import "./Ownable.sol";
import "./ISPT.sol";
import "./ISpirits.sol";
import "./IERC721Enumerable.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

/**
 * @title CryptoSpirits contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract Spirits is Context, Ownable, ERC165, ISpirits, IERC721Metadata {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    uint256 public constant SALE_START_TIMESTAMP = 1625245200; // Friday, July 2, 2021 6:00:00 PM BST

    // time after which CryptoSpirits artworks are randomized and assigned to NFTs
    uint256 public constant DISTRIBUTION_TIMESTAMP = SALE_START_TIMESTAMP + (86400 * 5); // 5 is number of days
    
    uint256 public constant REVEAL_STAGE_INTERVAL = (86400 * 1); // 1 day between reveal unlocks

    uint256 public constant MAX_NFT_SUPPLY = 7777;

    uint256 public usernameChangePrice = 10 * (10 ** 18);
    
    uint256 public nodenameChangePrice = 10 * (10 ** 18);

    uint256 public startingIndexBlock;

    uint256 public startingIndex;
    
    bool private _salePaused = false;
    
    uint256 public price_bracket_1 = 0.08 * (10 ** 18);
    uint256 public price_bracket_2 = 0.15 * (10 ** 18);
    uint256 public price_bracket_3 = 0.22 * (10 ** 18);
    
    // Mapping from token ID to reward multiplier numerator and denominator
    mapping (uint256 => uint256) private _tokenRewardMultiplierNum;
    mapping (uint256 => uint256) private _tokenRewardMultiplierDen;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Mapping from address to username
    mapping (address => string) private _usernames;

    // Mapping if certain name string has already been reserved
    mapping (string => bool) private _usernameReserved;
    
     // Mapping from token ID to the timestamp the NFT was minted
    mapping (uint256 => uint256) private _mintedTimestamp;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;
    
    // node name changes
    bool public nodeNameChangesEnabled = false;

    // token name
    string private _name;

    // token symbol
    string private _symbol;
    
    // base URI
    string private _baseURI;
    
    // contract URI
    string private _contractURI;

    // name change token address
    address private _sptAddress;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *
     *     => 0x06fdde03 ^ 0x95d89b41 == 0x93254542
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x93254542;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    // Events
    event NodeNameChange (uint256 indexed nodeId, string newName);
    event UsernameChange (address user, string newName);
    event NodeRegistered (uint256 indexed nodeId, string name, address owner);
    event NodeUnregistered (uint256 indexed nodeId, string name, address owner);
    
    /**
     * @dev Initializes the contract which sets a name and a symbol to the token collection.
     */
    constructor () {
        _name = "CryptoSpirits";
        _symbol = "SPIRITS";
        _sptAddress = 0x3e4E8ECB65cB5bA5E791BB955F8Bbc5c9Ad421c7;
        
        // for third-party metadata fetching
        _baseURI = "https://spirit.app:7777/api/opensea/";
        _contractURI = "https://spirit.app:7777/api/contractmeta";

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }
    
    /*
        Node Code
    */
    // Mapping from holder address to their (enumerable) set of owned nodes
    mapping (address => EnumerableSet.UintSet) private _ownerNodes;
    
    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _nodeOwners;
    
    // Mapping from node ID to name
    mapping (uint256 => string) private _nodeNames;
    
     // Mapping from node ID to the timestamp the node was registered
    mapping (uint256 => uint256) private _nodeRegTimes;
    
    // Mapping from node ID to the timestamp the node was unregistered
    mapping (uint256 => uint256) private _nodeUnregTimes;
    
    // Mapping from node ID to the type of node
    mapping (uint256 => uint256) private _nodeTypes;
    
    // Mapping from node ID to the bool of whether it is valid
    mapping (uint256 => bool) private _nodeValid;
    
    // Mapping from token ID to the node Id
    mapping (uint256 => uint256) private _tokenNodeIds;
    
    // Mapping from node ID to the containing token Ids
    mapping (uint256 => uint256[]) private _nodeTokenIds;
    
    // Mapping if certain name string has already been reserved
    mapping (string => bool) private _nodeNameReserved;
    
    // number of active (registered) nodes
    uint256 private _activeNodes = 0;
    
    function registerNode(uint256[] memory tokenIds, string memory _nodeName, uint256 _nodeType) public returns (uint256) {
        require((tokenIds.length == 5 && (_nodeType == 1 || _nodeType == 3)) || (tokenIds.length == 15 && _nodeType == 2) || (tokenIds.length == 6 && _nodeType == 4), "Invalid number of tokenIds for type of node");
        require(validateName(_nodeName), "Not a valid node name");
        require(!isNodeNameReserved(_nodeName), "Name already reserved");
        address sender = _msgSender();
        for (uint i = 0; i < tokenIds.length; i++) {
            // for each token, check it only appears once in the array
            for (uint j = i + 1; j < tokenIds.length; j++) {
               require(tokenIds[i] != tokenIds[j], "Duplicate token index");
            }
            require(sender == ownerOf(tokenIds[i]), "Caller does not own tokenId");
            require(nodeIdFromTokenId(tokenIds[i]) == 0, "Token already registered to node");
            require(revealStageByIndex(tokenIds[i]) >= 4, "All Spirits must be fully awakened to be registered to a node");
        }
        
        // register node
        uint256 nodeId = totalNodes().add(1);
        _nodeOwners.set(nodeId, sender);
        _ownerNodes[sender].add(nodeId);
        _nodeTypes[nodeId] = _nodeType;
        _nodeRegTimes[nodeId] = block.timestamp;
        _nodeUnregTimes[nodeId] = 0;
        _nodeTokenIds[nodeId] = tokenIds;
        
        // air and earth nodes auto approved
        if(_nodeType == 1 || _nodeType == 2) {
            _nodeValid[nodeId] = true;
        }
        // water and fire nodes require manual approval
        else {
            _nodeValid[nodeId] = false;
        }
        
        for (uint i = 0; i < tokenIds.length; i++) {
            _tokenNodeIds[tokenIds[i]] = nodeId;
        }

        toggleReserveNodeName(_nodeName, true);
        _nodeNames[nodeId] = _nodeName;
        _activeNodes = _activeNodes.add(1);
        emit NodeRegistered(nodeId, _nodeName, sender);
        return nodeId;
    }
    
    function unregisterNode(uint256 nodeId) public {
        address sender = _msgSender();
        require(sender == ownerOfNode(nodeId), "Caller does not own node");
        require(nodeActive(nodeId), "Node is already unregistered");
        _unregisterNode(nodeId, sender);
    }
    
    function _unregisterNode(uint256 nodeId, address owner) internal returns (uint256) {
        require(nodeActive(nodeId), "Node is already unregistered");
        // _ownerNodes[owner].remove(nodeId);
        // _nodeOwners.remove(nodeId);
        _nodeUnregTimes[nodeId] = block.timestamp;
        uint256[] memory tokenIds = _nodeTokenIds[nodeId];
        for (uint i = 0; i < tokenIds.length; i++) {
            uint256 token = tokenIds[i];
            _tokenNodeIds[token] = 0;
        }
        // dereserve old name
        toggleReserveNodeName(_nodeNames[nodeId], false);
        if(_activeNodes >= 1) {
            _activeNodes = _activeNodes.sub(1);
        }
        emit NodeUnregistered(nodeId, _nodeNames[nodeId], owner);
        return _nodeUnregTimes[nodeId];
    }
    
    /* returns a plethora of node info */
    function nodeInfo(uint256 nodeId) public view override returns (address, string memory, uint256, uint256, uint256, bool, uint256[] memory) {
        require(nodeExists(nodeId), "Node with specified id does not exist");
        return (ownerOfNode(nodeId), _nodeNames[nodeId], _nodeRegTimes[nodeId], _nodeUnregTimes[nodeId], _nodeTypes[nodeId], _nodeValid[nodeId], _nodeTokenIds[nodeId]);
    }
    
    /* returns count of active (registered and not unregistered) nodes */
    function totalActiveNodes() public view override returns (uint256) {
        return _activeNodes;
    }

    /* returns count of nodes owned by owner */
    function nodeBalanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _ownerNodes[owner].length();
    }
    
    /* returns node owner */
    function ownerOfNode(uint256 nodeId) public view override returns (address) {
        return _nodeOwners.get(nodeId, "ERC721: owner query for nonexistent node");
    }
    
    /* returns node owned by owner at a given index */
    function nodeOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        return _ownerNodes[owner].at(index);
    }
    
    /* returns total number of nodes registered (active and inactive) */
    function totalNodes() public view override returns (uint256) {
        // _tokenOwners are indexed by nodeIds, so .length() returns the number of nodeIds
        return _nodeOwners.length();
    }
    
    /* returns the type of node (1 / 2 / 3 / 4) */
    function nodeType(uint256 nodeId) public view override returns (uint256) {
        return _nodeTypes[nodeId];
    }
    
     /* returns the size of the node (no. of tokens it contains) */
    function nodeSize(uint256 nodeId) public view override returns (uint256) {
        return _nodeTokenIds[nodeId].length;
    }
    
    /* returns whether the node has been validated */
    function nodeValid(uint256 nodeId) public view override returns (bool) {
        return _nodeValid[nodeId];
    }
    
    /* returns the timestamp the node was registered */
    function nodeRegTime(uint256 nodeId) public view override returns (uint256) {
        return _nodeRegTimes[nodeId];
    }
    
    /* returns the timestamp the node was unregistered (returns 0 if still active) */
    function nodeUnregTime(uint256 nodeId) public view override returns (uint256) {
        return _nodeUnregTimes[nodeId];
    }
    
    /* returns the name of the node with ID */
    function nodeName(uint256 nodeId) public view override returns (string memory) {
        return _nodeNames[nodeId];
    }
    
    /* returns whether the node is still registered */
    function nodeActive(uint256 nodeId) public view override returns (bool) {
        return _nodeRegTimes[nodeId] != 0 && _nodeUnregTimes[nodeId] == 0;
    }
    
    /* returns the timestamp the node was unregistered (returns 0 if still active) */
    function nodeTokenIds(uint256 nodeId) public view override returns (uint256[] memory) {
        return _nodeTokenIds[nodeId];
    }
    
    /* returns is the node name has been reserved */
    function isNodeNameReserved(string memory nameString) public view override returns (bool) {
        return _nodeNameReserved[toLower(nameString)];
    }
    
    /* returns the nodeId of the registered node of the tokenId */
    function nodeIdFromTokenId(uint256 tokenId) public view override returns (uint256) {
        return _tokenNodeIds[tokenId];
    }
    
    function nodeExists(uint256 nodeId) public view override returns (bool) {
        return _nodeOwners.contains(nodeId);
    }
    
    /**
     * @dev See {IERC721-balanceOf}.
     */
    function username(address owner) public view override returns (string memory) {
        return _usernames[owner];
    }
    
    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _holderTokens[owner].length();
    }
    
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev Returns if the name has been reserved.
     */
    function isUserNameReserved(string memory nameString) public view override returns (bool) {
        return _usernameReserved[toLower(nameString)];
    }
    
    /**
     * @dev Returns the timestamp of the block in which the NFT was minted
     */
    function mintedTimestampByIndex(uint256 index) public view override returns (uint256) {
        return _mintedTimestamp[index];
    }
    
    /**
     * @dev Returns an URI for a given token ID
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "Token with specified ID does not exist");
        return Strings.Concatenate(
            baseTokenURI(),
            Strings.UintToString(tokenId)
        );
    }
        
    /**
     * @dev Gets the base token URI
     * @return string representing the base token URI
     */
    function baseTokenURI() public view returns (string memory) {
        return _baseURI;
    }
    
    /**
     * @dev Gets the contract URI for contract level metadata
     * @return string representing the contract URI
     */
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    /**
    * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
    */
    function changeBaseURI(string memory baseURI) onlyOwner external {
       _baseURI = baseURI;
    }
    
    /**
    * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
    */
    function changeContractURI(string memory newContractURI) onlyOwner external {
       _contractURI = newContractURI;
    }
    
    /**
    * @dev Pauses / Unpauses the sale to Disable/Enable minting of new NFTs (Callable by owner only)
    */
    function toggleSalePause(bool salePaused) onlyOwner external {
       _salePaused = salePaused;
    }
    
    /**
    * @dev Changes the price for a sale bracket - prices can never be less than current price (Callable by owner only)
    */
    function changeBracketPrice(uint bracket, uint256 price) onlyOwner external {
        require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended");
        require(bracket > 0 && bracket < 4, "Bracket must be in the range 1-3");
        require(price > 0, "Price must be set and greater than 0");
        
        if(bracket == 1) {
            price_bracket_1 = price;
        }
        else if(bracket == 2) {
            price_bracket_2 = price;
        }
        else if(bracket == 3) {
            price_bracket_3 = price;
        }
    }
    
    /**
    * @dev Changes the price for a name change (if in future the price needs adjusting due to token speculation) (Callable by owner only)
    */
    function changeUsernameChangePrice(uint256 price) onlyOwner external {
        usernameChangePrice = price;
    }
    
     /**
    * @dev Changes the price for a name change (if in future the price needs adjusting due to token speculation) (Callable by owner only)
    */
    function changeNodeNameChangePrice(uint256 price) onlyOwner external {
        nodenameChangePrice = price;
    }
    
     /**
    * @dev Changes the price for a name change (if in future the price needs adjusting due to token speculation) (Callable by owner only)
    */
    function toggleNodeNameChangesEnabled(bool enabled) onlyOwner external {
        nodeNameChangesEnabled = enabled;
    }
    
    /**
    * @dev validates a node to enable/disable claiming of rewards (Callable by owner only)
    */
    function validateNode(uint256 nodeId, bool isValid) onlyOwner external {
        _nodeValid[nodeId] = isValid;
    }
    
    /**
    * @dev sets the reward multiplier for a token (Callable by owner only)
    */
    function setTokenRewardMultiplier(uint256 tokenId, uint256 newNum, uint256 newDen) onlyOwner external {
        _tokenRewardMultiplierNum[tokenId] = newNum;
        _tokenRewardMultiplierDen[tokenId] = newDen;
    }
    
     /**
     * @dev Returns the reward multiplier (numerator and denominator) for a given tokenId
     */
    function tokenRewardMultiplier(uint256 tokenId) external view override returns (uint256, uint256) {
        uint256 num = _tokenRewardMultiplierNum[tokenId];
        uint256 den = _tokenRewardMultiplierDen[tokenId];
        return (num, den);
    }
    
    /**
    * @dev validates a node to enable claiming of rewards (Callable by owner only)
    */
    function testTokenRewardMultiplier(uint256 newNum, uint256 newDen) public pure override returns (uint256) {
        uint256 ONE = 1 * (10 ** 18);
        uint256 TEN = ONE * 10;
        uint256 newRate = (ONE.mul(newNum)).div(newDen);
        require(newRate != ONE, "emission will not change");
        require(newRate > ONE, "emission will decrease");
        require(newRate < TEN, "emission will increase over 10x");
        return newRate;
    }
    
    /**
     * @dev Returns stage of reveal for a Spirit
     * 0 - token is not yet minted
     */
    function revealStageByIndex(uint256 index) public view override returns (uint256) {
        uint256 mintTime = _mintedTimestamp[index];
        require(mintTime > 0, "Mint time must be set and greater than 0");
        require(mintTime <= block.timestamp, "Mint time cannot be greater than current time");
        
        if(mintTime < DISTRIBUTION_TIMESTAMP) {
            mintTime = DISTRIBUTION_TIMESTAMP;
        }
        
        if(block.timestamp <= mintTime) {
            // not passed distribution period - no reveal stages
            return 1;
        }
        
        uint256 elapsed = block.timestamp.sub(mintTime);
        
        uint unlocked = 1;
        for(uint i = 1; i < 4; i++) {
            if(elapsed >= i.mul(REVEAL_STAGE_INTERVAL)) {
                unlocked++;
            }
            else {
                break;
            }
        }
        return unlocked;
    }

    /**
     * @dev Gets current NFT Price
     */
    function getNFTPrice() public view returns (uint256) {
        require(block.timestamp >= SALE_START_TIMESTAMP, "Sale has not started");
        
        uint currentSupply = totalSupply();

        if (currentSupply >= 6000) {
            return price_bracket_3;      // 6000 - 7777
        } 
        else if (currentSupply >= 2000) {
            return price_bracket_2;      // 2000 - 5999
        } 
        else {
            return price_bracket_1;      // 0 - 1999
        }
    }

    /**
    * @dev Mints Spirits
    */
    function mintNFT(uint256 numberOfNfts) public payable {
        require(block.timestamp >= SALE_START_TIMESTAMP, "Sale has not started");
        require(!_salePaused, "Sale has been paused");
        require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended");
        require(numberOfNfts > 0, "numberOfNfts cannot be 0");
        require(numberOfNfts <= 25, "You may not buy more than 25 NFTs at once");
        require(totalSupply().add(numberOfNfts) <= MAX_NFT_SUPPLY, "Exceeds MAX_NFT_SUPPLY");
        require(getNFTPrice().mul(numberOfNfts) == msg.value, "Ether value sent is not correct");

        for (uint i = 0; i < numberOfNfts; i++) {
            uint mintIndex = totalSupply();
            /* final supply check */
            require(mintIndex < MAX_NFT_SUPPLY, "Sale has already ended");
            _mintedTimestamp[mintIndex] = block.timestamp;
            _tokenRewardMultiplierNum[mintIndex] = 1;
            _tokenRewardMultiplierDen[mintIndex] = 1;
            _safeMint(msg.sender, mintIndex);
        }

        /**
        * Source of randomness
        */
        if (startingIndexBlock == 0 && (totalSupply() >= MAX_NFT_SUPPLY || block.timestamp >= DISTRIBUTION_TIMESTAMP)) {
            startingIndexBlock = block.number;
        }
    }

    /**
     * @dev Finalize starting index
     */
    function finalizeStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");
        
        if(startingIndexBlock == 0) {
            require(block.timestamp >= DISTRIBUTION_TIMESTAMP, "Distribution period must be over to set the startingIndexBlock");
            startingIndexBlock = block.number;
        }
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        uint256 randomHash = uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty)));
        
        startingIndex = randomHash % MAX_NFT_SUPPLY;
        // Prevent default sequence / overflow
        if (startingIndex == 0 || startingIndex >= MAX_NFT_SUPPLY) {
            startingIndex = 1;
        } 
    }

    /**
     * @dev Changes the username for a user
     */
    function changeUsername(string memory newName) public {
        address sender = _msgSender();
        require(validateName(newName) == true, "Not a valid new name");
        require(sha256(bytes(newName)) != sha256(bytes(_usernames[sender])), "New username is same as the current one");
        require(isUserNameReserved(newName) == false, "Username already reserved");

        ISPT(_sptAddress).transferFrom(msg.sender, _sptAddress, usernameChangePrice);
        // If already named, dereserve old name
        if (bytes(_usernames[sender]).length > 0) {
            toggleReserveUsername(_usernames[sender], false);
        }
        toggleReserveUsername(newName, true);
        _usernames[sender] = newName;
        emit UsernameChange(sender, newName);
    }
    
    /**
     * @dev Changes the name for CryptoSpirits tokenId
     */
    function changeNodeName(uint256 nodeId, string memory newName) public {
        require(nodeNameChangesEnabled == true, "Node name changes are currently disabled");
        address owner = ownerOfNode(nodeId);
        require(_msgSender() == owner, "ERC721: caller is not the node owner");
        require(validateName(newName) == true, "Not a valid new name");
        require(sha256(bytes(newName)) != sha256(bytes(_nodeNames[nodeId])), "New name is same as the current one");
        require(isNodeNameReserved(newName) == false, "Name already reserved");

        ISPT(_sptAddress).transferFrom(msg.sender, _sptAddress, nodenameChangePrice);
        // If already named, dereserve old name
        if (bytes(_nodeNames[nodeId]).length > 0) {
            toggleReserveNodeName(_nodeNames[nodeId], false);
        }
        toggleReserveNodeName(newName, true);
        _nodeNames[nodeId] = newName;
        emit NodeNameChange(nodeId, newName);
    }
    
    /**
     * @dev Withdraw ether from this contract (Callable by owner)
    */
    function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    /**
     * @dev Withdraw from the SPT contract (Callable by owner)
     * Note: Only spent SPTs (i.e. from name changes) are withdrawable here
    */
    function withdrawSPT() onlyOwner public {
        uint balance = ISPT(_sptAddress).balanceOf(_sptAddress);
        ISPT(_sptAddress).transferFrom(_sptAddress, msg.sender, balance);
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }


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

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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 {
        uint256 nodeId = nodeIdFromTokenId(tokenId);
        if(nodeId > 0 && nodeActive(nodeId) && to != ownerOfNode(nodeId)) {
            // unregister any active nodes this token is linked to
            _unregisterNode(nodeId, from);
        }
    }

    /**
     * @dev Reserves the name if isReserve is set to true, de-reserves if set to false
     */
    function toggleReserveUsername(string memory str, bool isReserve) internal {
        _usernameReserved[toLower(str)] = isReserve;
    }
    
    /**
     * @dev Reserves the name if isReserve is set to true, de-reserves if set to false
     */
    function toggleReserveNodeName(string memory str, bool isReserve) internal {
        _nodeNameReserved[toLower(str)] = isReserve;
    }

    /**
     * @dev Check if the name string is valid (Alphanumeric and spaces without leading or trailing space)
     */
    function validateName(string memory str) public pure returns (bool){
        bytes memory b = bytes(str);
        if(b.length < 1) return false;
        if(b.length > 16) return false; // Cannot be longer than 16 characters
        if(b[0] == 0x20) return false; // Leading space
        if (b[b.length - 1] == 0x20) return false; // Trailing space

        bytes1 lastChar = b[0];

        for(uint i; i<b.length; i++){
            bytes1 char = b[i];

            if (char == 0x20 || lastChar == 0x20) return false; // Cannot contain spaces

            if(
                !(char >= 0x30 && char <= 0x39) && //9-0
                !(char >= 0x41 && char <= 0x5A) && //A-Z
                !(char >= 0x61 && char <= 0x7A) //a-z
            )
                return false;

            lastChar = char;
        }

        return true;
    }

    /**
     * @dev Converts the string to lowercase
     */
    function toLower(string memory str) public pure returns (string memory){
        bytes memory bStr = bytes(str);
        bytes memory bLower = new bytes(bStr.length);
        for (uint i = 0; i < bStr.length; i++) {
            // Uppercase character
            if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) {
                bLower[i] = bytes1(uint8(bStr[i]) + 32);
            } else {
                bLower[i] = bStr[i];
            }
        }
        return string(bLower);
    }
}

File 1 of 15: Address.sol
pragma solidity ^0.7.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 15: Context.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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

File 3 of 15: EnumerableMap.sol
pragma solidity ^0.7.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint256(value)));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

File 4 of 15: EnumerableSet.sol
pragma solidity ^0.7.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 5 of 15: ERC165.sol
pragma solidity ^0.7.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

File 6 of 15: IERC165.sol
pragma solidity ^0.7.0;

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

File 7 of 15: IERC20.sol
pragma solidity ^0.7.0;

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

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

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

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

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

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


    /**
     * TODO: Add comment
     */
    function burn(uint256 burnQuantity) external returns (bool);

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

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

File 8 of 15: IERC721.sol
import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15: IERC721Enumerable.sol
import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 10 of 15: ISpirits.sol
pragma solidity ^0.7.0;

import "./IERC721Enumerable.sol";

interface ISpirits is IERC721Enumerable {
    
    function revealStageByIndex(uint256 index) external view returns (uint256);
    function mintedTimestampByIndex(uint256 index) external view returns (uint256);
    
    function nodeInfo(uint256 nodeId) external view returns (address, string memory, uint256, uint256, uint256, bool, uint256[] memory);
    function nodeBalanceOf(address owner) external view returns (uint256);
    function ownerOfNode(uint256 nodeId) external view returns (address);
    function nodeOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
    function totalNodes() external view returns (uint256);
    function totalActiveNodes() external view returns (uint256);
    function nodeType(uint256 nodeId) external view returns (uint256);
    function nodeSize(uint256 nodeId) external view returns (uint256);
    function nodeValid(uint256 nodeId) external view returns (bool);
    function nodeRegTime(uint256 nodeId) external view returns (uint256);
    function nodeUnregTime(uint256 nodeId) external view returns (uint256);
    function nodeName(uint256 nodeId) external view returns (string memory);
    function nodeActive(uint256 nodeId) external view returns (bool);
    function nodeTokenIds(uint256 nodeId) external view returns (uint256[] memory);
    function isNodeNameReserved(string memory nameString) external view returns (bool);
    function nodeIdFromTokenId(uint256 tokenId) external view returns (uint256);
    function nodeExists(uint256 nodeId) external view returns (bool);
    function isUserNameReserved(string memory nameString) external view returns (bool);
    function username(address owner) external view returns (string memory);
    function tokenRewardMultiplier(uint256 tokenId) external view returns (uint256, uint256);
    function testTokenRewardMultiplier(uint256 newNum, uint256 newDen) external pure returns (uint256);
}

File 11 of 15: ISPT.sol
pragma solidity ^0.7.0;

import "./IERC20.sol";

interface ISPT is IERC20 {
    
    function totalBurned() external view returns (uint256);
    function totalFromSpirits() external view returns (uint256);
    function totalFromAddons() external view returns (uint256);
    function totalAccumulatedSupply() external view returns (uint256);
    
    function accumulated(uint256 tokenIndex) external view returns (uint256);
    function totalAccumulated(uint256 tokenIndex, bool useRewardMultiplier) external view returns (uint256);
    function totalClaimed(uint256 tokenIndex) external view returns (uint256);
    
    function accumulatedNode(uint256 nodeId) external view returns (uint256);
    function totalAccumulatedNode(uint256 nodeId) external view returns (uint256);
    function lastClaimNode(uint256 nodeId) external view returns (uint256);
    function timeSinceLastClaimNode(uint256 nodeId) external view returns (uint256);
    function nodeEmissionMultiplier(uint256 nodeType) external view returns (uint256);
    function nodeEmissionRate(uint256 regTime) external view returns (uint256);
    function totalClaimedNode(uint256 nodeId) external view returns (uint256);
    function nodeEmissionEnds() external pure returns (uint256);
    function canClaimFromNode(uint256 nodeId) external view returns (bool);
    
    function totalAccumulatedDevFund() external view returns (uint256);
    function totalClaimableDevFund() external view returns (uint256);
    function totalClaimedDevFund() external view returns (uint256);
}

File 12 of 15: Ownable.sol
pragma solidity ^0.7.0;

import "./Context.sol";

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 13 of 15: SafeMath.sol
pragma solidity ^0.7.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

File 15 of 15: Strings.sol
pragma solidity ^0.7.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
    
    function Concatenate(string memory a, string memory b) public pure returns (string memory concatenatedString) {
        bytes memory bytesA = bytes(a);
        bytes memory bytesB = bytes(b);
        string memory concatenatedAB = new string(bytesA.length + bytesB.length);
        bytes memory bytesAB = bytes(concatenatedAB);
        uint concatendatedIndex = 0;
        uint index = 0;
        for (index = 0; index < bytesA.length; index++) {
          bytesAB[concatendatedIndex++] = bytesA[index];
        }
        for (index = 0; index < bytesB.length; index++) {
          bytesAB[concatendatedIndex++] = bytesB[index];
        }
          
        return string(bytesAB);
    }

    function UintToString(uint value) public pure returns (string memory uintAsString) {
        uint tempValue = value;
        
        if (tempValue == 0) {
          return "0";
        }
        uint j = tempValue;
        uint length;
        while (j != 0) {
          length++;
          j /= 10;
        }
        bytes memory byteString = new bytes(length);
        uint index = length - 1;
        while (tempValue != 0) {
          byteString[index--] = byte(uint8(48 + tempValue % 10));
          tempValue /= 10;
        }
        return string(byteString);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nodeId","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NodeNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nodeId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NodeRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nodeId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NodeUnregistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"UsernameChange","type":"event"},{"inputs":[],"name":"DISTRIBUTION_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_STAGE_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bracket","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changeBracketPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"changeContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeNodeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changeNodeNameChangePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"changeUsername","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changeUsernameChangePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNodeNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isUserNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"mintedTimestampByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nodeBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"nodeIdFromTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nodeNameChangesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"nodeOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeRegTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeUnregTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"nodeValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nodenameChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"ownerOfNode","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_bracket_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_bracket_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_bracket_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string","name":"_nodeName","type":"string"},{"internalType":"uint256","name":"_nodeType","type":"uint256"}],"name":"registerNode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"revealStageByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"newNum","type":"uint256"},{"internalType":"uint256","name":"newDen","type":"uint256"}],"name":"setTokenRewardMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"},{"internalType":"uint256","name":"newDen","type":"uint256"}],"name":"testTokenRewardMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleNodeNameChangesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"salePaused","type":"bool"}],"name":"toggleSalePause","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":"tokenRewardMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"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":"totalActiveNodes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNodes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"}],"name":"unregisterNode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"username","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usernameChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"nodeId","type":"uint256"},{"internalType":"bool","name":"isValid","type":"bool"}],"name":"validateNode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSPT","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052678ac7230489e8000060028190556003556006805460ff1990811690915567011c37937e080000600755670214e8348c4f000060085567030d98d59a96000060095560148054909116905560006025553480156200006157600080fd5b5060006200006e620001f5565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ca6301ffc9a760e01b620001f9565b60408051808201909152600d8082526c43727970746f5370697269747360981b6020909201918252620001009160159162000281565b50604080518082019091526007808252665350495249545360c81b6020909201918252620001319160169162000281565b50601980546001600160a01b031916733e4e8ecb65cb5ba5e791bb955f8bbc5c9ad421c717905560408051606081019091526024808252620061bc60208301398051620001879160179160209091019062000281565b50604051806060016040528060288152602001620061e0602891398051620001b89160189160209091019062000281565b50620001cb6380ac58cd60e01b620001f9565b620001dd634992a2a160e11b620001f9565b620001ef63780e9d6360e01b620001f9565b6200031d565b3390565b6001600160e01b0319808216141562000259576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c457805160ff1916838001178555620002f4565b82800160010185558215620002f4579182015b82811115620002f4578251825591602001919060010190620002d7565b506200030292915062000306565b5090565b5b8082111562000302576000815560010162000307565b615e8f806200032d6000396000f3fe6080604052600436106104475760003560e01c8063715018a611610234578063b02439ae1161012e578063e04e710f116100b6578063e9eba8401161007a578063e9eba840146116b1578063eabc709c146116db578063eedfb44314611705578063f2fde38b1461172f578063fb107a4f1461176257610447565b8063e04e710f14611586578063e36d64981461159b578063e6e9077c146115b0578063e8a3d48514611661578063e985e9c51461167657610447565b8063c1d3bdfb116100fd578063c1d3bdfb146114eb578063c6fcea4e14611500578063c87b56dd14611532578063cb774d471461155c578063d547cfb71461157157610447565b8063b02439ae146112c8578063b5077f44146113d9578063b88d4fde146113ee578063c158f3b6146114bf57610447565b80639416b423116101bc5780639ffdb65a116101805780639ffdb65a1461114c578063a22cb465146111fd578063a7f5980714611238578063acd7cf5b14611262578063ae3a3f4e1461129857610447565b80639416b42314611047578063946807fd146110f85780639592d4241461110d57806395d89b41146111225780639bb847f61461113757610447565b8063811067f711610203578063811067f714610e7d578063860df4ab14610fb257806388fc082514610feb5780638da5cb5b14611015578063926427441461102a57610447565b8063715018a614610d7857806374df39c914610d8d57806377c846af14610da25780637b05c38f14610e5357610447565b806339a0c6f9116103455780634b74f994116102cd5780635ac69e05116102915780635ac69e0514610cc75780636352211e14610cdc5780636e29fd7814610d065780636eab86fd14610d3057806370a0823114610d4557610447565b80634b74f99414610af55780634ba7ece514610bad5780634f6ccce714610bc25780635699b90414610bec5780635a9c226414610c9d57610447565b8063419532a811610314578063419532a8146109fd57806341a84a0014610a4057806342842e0e14610a6a5780634561a1f014610aad57806349a5747714610ae057610447565b806339a0c6f91461085c5780633ccfd60b1461090d5780633eef1db31461092257806341155d471461094c57610447565b806312a7e81e116103d357806323b872dd1161039757806323b872dd1461078c5780632c61d1d4146107cf5780632f745c59146107e4578063324090851461081d578063364d36721461084757610447565b806312a7e81e14610677578063180c5764146106a357806318160ddd146106d35780631c794b84146106e85780632263a6241461071257610447565b806306fdde031161041a57806306fdde031461058d578063071859fb146105a2578063081812fc146105cc578063095ea7b3146106125780630c89ec5c1461064d57610447565b806301ffc9a71461044c57806303cb9fac14610494578063051712d6146104d05780630610a7a2146104e5575b600080fd5b34801561045857600080fd5b506104806004803603602081101561046f57600080fd5b50356001600160e01b031916611777565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b503561179a565b60408051918252519081900360200190f35b3480156104dc57600080fd5b506104806117ac565b3480156104f157600080fd5b506105186004803603602081101561050857600080fd5b50356001600160a01b03166117b5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561055257818101518382015260200161053a565b50505050905090810190601f16801561057f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059957600080fd5b50610518611860565b3480156105ae57600080fd5b50610480600480360360208110156105c557600080fd5b50356118f7565b3480156105d857600080fd5b506105f6600480360360208110156105ef57600080fd5b5035611926565b604080516001600160a01b039092168252519081900360200190f35b34801561061e57600080fd5b5061064b6004803603604081101561063557600080fd5b506001600160a01b038135169060200135611988565b005b34801561065957600080fd5b5061064b6004803603602081101561067057600080fd5b5035611a63565b34801561068357600080fd5b5061064b6004803603602081101561069a57600080fd5b50351515611ac0565b3480156106af57600080fd5b5061064b600480360360408110156106c657600080fd5b5080359060200135611b2b565b3480156106df57600080fd5b506104be611cb2565b3480156106f457600080fd5b506104be6004803603602081101561070b57600080fd5b5035611cc3565b34801561071e57600080fd5b5061073c6004803603602081101561073557600080fd5b5035611cd4565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610778578181015183820152602001610760565b505050509050019250505060405180910390f35b34801561079857600080fd5b5061064b600480360360608110156107af57600080fd5b506001600160a01b03813581169160208101359091169060400135611d35565b3480156107db57600080fd5b506104be611d8c565b3480156107f057600080fd5b506104be6004803603604081101561080757600080fd5b506001600160a01b038135169060200135611d92565b34801561082957600080fd5b5061064b6004803603602081101561084057600080fd5b5035611dbb565b34801561085357600080fd5b506104be611e18565b34801561086857600080fd5b5061064b6004803603602081101561087f57600080fd5b810190602081018135600160201b81111561089957600080fd5b8201836020820111156108ab57600080fd5b803590602001918460018302840111600160201b831117156108cc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e1f945050505050565b34801561091957600080fd5b5061064b611e8a565b34801561092e57600080fd5b506104be6004803603602081101561094557600080fd5b5035611f11565b34801561095857600080fd5b506104806004803603602081101561096f57600080fd5b810190602081018135600160201b81111561098957600080fd5b82018360208201111561099b57600080fd5b803590602001918460018302840111600160201b831117156109bc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611f23945050505050565b348015610a0957600080fd5b50610a2760048036036020811015610a2057600080fd5b5035611f96565b6040805192835260208301919091528051918290030190f35b348015610a4c57600080fd5b506104be60048036036020811015610a6357600080fd5b5035611fb5565b348015610a7657600080fd5b5061064b60048036036060811015610a8d57600080fd5b506001600160a01b03813581169160208101359091169060400135611fc7565b348015610ab957600080fd5b506104be60048036036020811015610ad057600080fd5b50356001600160a01b0316611fe2565b348015610aec57600080fd5b506104be61204a565b348015610b0157600080fd5b5061064b60048036036040811015610b1857600080fd5b81359190810190604081016020820135600160201b811115610b3957600080fd5b820183602082011115610b4b57600080fd5b803590602001918460018302840111600160201b83111715610b6c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612050945050505050565b348015610bb957600080fd5b506104be612530565b348015610bce57600080fd5b506104be60048036036020811015610be557600080fd5b5035612538565b348015610bf857600080fd5b5061064b60048036036020811015610c0f57600080fd5b810190602081018135600160201b811115610c2957600080fd5b820183602082011115610c3b57600080fd5b803590602001918460018302840111600160201b83111715610c5c57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061254e945050505050565b348015610ca957600080fd5b5061051860048036036020811015610cc057600080fd5b50356125b9565b348015610cd357600080fd5b506104be612623565b348015610ce857600080fd5b506105f660048036036020811015610cff57600080fd5b5035612629565b348015610d1257600080fd5b506104be60048036036020811015610d2957600080fd5b5035612651565b348015610d3c57600080fd5b5061064b612663565b348015610d5157600080fd5b506104be60048036036020811015610d6857600080fd5b50356001600160a01b03166127bc565b348015610d8457600080fd5b5061064b612824565b348015610d9957600080fd5b5061064b6128c6565b348015610dae57600080fd5b5061064b60048036036020811015610dc557600080fd5b810190602081018135600160201b811115610ddf57600080fd5b820183602082011115610df157600080fd5b803590602001918460018302840111600160201b83111715610e1257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612a0f945050505050565b348015610e5f57600080fd5b506105f660048036036020811015610e7657600080fd5b5035612e98565b348015610e8957600080fd5b506104be60048036036060811015610ea057600080fd5b810190602081018135600160201b811115610eba57600080fd5b820183602082011115610ecc57600080fd5b803590602001918460208302840111600160201b83111715610eed57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610f3c57600080fd5b820183602082011115610f4e57600080fd5b803590602001918460018302840111600160201b83111715610f6f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250612ec0915050565b348015610fbe57600080fd5b506104be60048036036040811015610fd557600080fd5b506001600160a01b0381351690602001356133e0565b348015610ff757600080fd5b5061064b6004803603602081101561100e57600080fd5b5035613402565b34801561102157600080fd5b506105f66134e0565b61064b6004803603602081101561104057600080fd5b50356134ef565b34801561105357600080fd5b506105186004803603602081101561106a57600080fd5b810190602081018135600160201b81111561108457600080fd5b82018360208201111561109657600080fd5b803590602001918460018302840111600160201b831117156110b757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613810945050505050565b34801561110457600080fd5b506104be613932565b34801561111957600080fd5b506104be61393a565b34801561112e57600080fd5b50610518613946565b34801561114357600080fd5b506104be6139a7565b34801561115857600080fd5b506104806004803603602081101561116f57600080fd5b810190602081018135600160201b81111561118957600080fd5b82018360208201111561119b57600080fd5b803590602001918460018302840111600160201b831117156111bc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506139ad945050505050565b34801561120957600080fd5b5061064b6004803603604081101561122057600080fd5b506001600160a01b0381351690602001351515613b7d565b34801561124457600080fd5b506104806004803603602081101561125b57600080fd5b5035613c82565b34801561126e57600080fd5b5061064b6004803603606081101561128557600080fd5b5080359060208101359060400135613c97565b3480156112a457600080fd5b506104be600480360360408110156112bb57600080fd5b5080359060200135613d0d565b3480156112d457600080fd5b506112f2600480360360208110156112eb57600080fd5b5035613e37565b60405180886001600160a01b0316815260200180602001878152602001868152602001858152602001841515815260200180602001838103835289818151815260200191508051906020019080838360005b8381101561135c578181015183820152602001611344565b50505050905090810190601f1680156113895780820380516001836020036101000a031916815260200191505b508381038252845181528451602091820191808701910280838360005b838110156113be5781810151838201526020016113a6565b50505050905001995050505050505050505060405180910390f35b3480156113e557600080fd5b506104be613fcc565b3480156113fa57600080fd5b5061064b6004803603608081101561141157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561144b57600080fd5b82018360208201111561145d57600080fd5b803590602001918460018302840111600160201b8311171561147e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613fd2945050505050565b3480156114cb57600080fd5b5061064b600480360360208110156114e257600080fd5b50351515614030565b3480156114f757600080fd5b506104be61409b565b34801561150c57600080fd5b5061064b6004803603604081101561152357600080fd5b508035906020013515156140a1565b34801561153e57600080fd5b506105186004803603602081101561155557600080fd5b5035614119565b34801561156857600080fd5b506104be6144a9565b34801561157d57600080fd5b506105186144af565b34801561159257600080fd5b506104be614510565b3480156115a757600080fd5b506104be614516565b3480156115bc57600080fd5b50610480600480360360208110156115d357600080fd5b810190602081018135600160201b8111156115ed57600080fd5b8201836020820111156115ff57600080fd5b803590602001918460018302840111600160201b8311171561162057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061451c945050505050565b34801561166d57600080fd5b50610518614529565b34801561168257600080fd5b506104806004803603604081101561169957600080fd5b506001600160a01b038135811691602001351661458a565b3480156116bd57600080fd5b506104be600480360360208110156116d457600080fd5b50356145b8565b3480156116e757600080fd5b50610480600480360360208110156116fe57600080fd5b50356146b5565b34801561171157600080fd5b506104be6004803603602081101561172857600080fd5b50356146c2565b34801561173b57600080fd5b5061064b6004803603602081101561175257600080fd5b50356001600160a01b03166146d4565b34801561176e57600080fd5b506104be6147cc565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b6000908152601e602052604090205490565b60145460ff1681565b6001600160a01b03811660009081526010602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156118545780601f1061182957610100808354040283529160200191611854565b820191906000526020600020905b81548152906001019060200180831161183757829003601f168201915b50505050509050919050565b60158054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b505050505090505b90565b6000818152601e60205260408120541580159061192057506000828152601f6020526040902054155b92915050565b60006119318261485e565b61196c5760405162461bcd60e51b815260040180806020018281038252602c815260200180615c95602c913960400191505060405180910390fd5b506000908152600f60205260409020546001600160a01b031690565b600061199382612629565b9050806001600160a01b0316836001600160a01b031614156119e65760405162461bcd60e51b8152600401808060200182810382526021815260200180615d926021913960400191505060405180910390fd5b806001600160a01b03166119f861486b565b6001600160a01b03161480611a195750611a1981611a1461486b565b61458a565b611a545760405162461bcd60e51b8152600401808060200182810382526038815260200180615b6f6038913960400191505060405180910390fd5b611a5e838361486f565b505050565b611a6b61486b565b6000546001600160a01b03908116911614611abb576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600255565b611ac861486b565b6000546001600160a01b03908116911614611b18576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6014805460ff1916911515919091179055565b611b3361486b565b6000546001600160a01b03908116911614611b83576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b611e61611b8e611cb2565b10611bd9576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b600082118015611be95750600482105b611c3a576040805162461bcd60e51b815260206004820181905260248201527f427261636b6574206d75737420626520696e207468652072616e676520312d33604482015290519081900360640190fd5b60008111611c795760405162461bcd60e51b8152600401808060200182810382526024815260200180615a626024913960400191505060405180910390fd5b8160011415611c8c576007819055611cae565b8160021415611c9f576008819055611cae565b8160031415611cae5760098190555b5050565b6000611cbe600d6148dd565b905090565b600090815260208052604090205490565b60008181526023602090815260409182902080548351818402810184019094528084526060939283018282801561185457602002820191906000526020600020905b815481526020019060010190808311611d165750505050509050919050565b611d46611d4061486b565b826148e8565b611d815760405162461bcd60e51b8152600401808060200182810382526031815260200180615e016031913960400191505060405180910390fd5b611a5e83838361498c565b60035481565b6001600160a01b0382166000908152600c60205260408120611db49083614ad8565b9392505050565b611dc361486b565b6000546001600160a01b03908116911614611e13576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600355565b6201518081565b611e2761486b565b6000546001600160a01b03908116911614611e77576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b8051611cae9060179060208401906158e0565b611e9261486b565b6000546001600160a01b03908116911614611ee2576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015611cae573d6000803e3d6000fd5b60009081526023602052604090205490565b60006011611f3083613810565b6040518082805190602001908083835b60208310611f5f5780518252601f199092019160209182019101611f40565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff16949350505050565b6000908152600a6020908152604080832054600b909252909120549091565b6000908152601f602052604090205490565b611a5e83838360405180602001604052806000815250613fd2565b60006001600160a01b0382166120295760405162461bcd60e51b815260040180806020018281038252602a815260200180615ba7602a913960400191505060405180910390fd5b6001600160a01b0382166000908152601a60205260409020611920906148dd565b60255490565b60145460ff1615156001146120965760405162461bcd60e51b8152600401808060200182810382526028815260200180615cc16028913960400191505060405180910390fd5b60006120a183612e98565b9050806001600160a01b03166120b561486b565b6001600160a01b0316146120fa5760405162461bcd60e51b8152600401808060200182810382526024815260200180615aad6024913960400191505060405180910390fd5b612103826139ad565b1515600114612150576040805162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b604482015290519081900360640190fd5b6002601d600085815260200190815260200160002060405180828054600181600116156101000203166002900480156121c05780601f1061219e5761010080835404028352918201916121c0565b820191906000526020600020905b8154815290600101906020018083116121ac575b5050915050602060405180830381855afa1580156121e2573d6000803e3d6000fd5b5050506040513d60208110156121f757600080fd5b505160405183516002918591819060208401908083835b6020831061222d5780518252601f19909201916020918201910161220e565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa15801561226c573d6000803e3d6000fd5b5050506040513d602081101561228157600080fd5b505114156122c05760405162461bcd60e51b8152600401808060200182810382526023815260200180615d6f6023913960400191505060405180910390fd5b6122c98261451c565b15612313576040805162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b604482015290519081900360640190fd5b601954600354604080516323b872dd60e01b81523360048201526001600160a01b039093166024840181905260448401929092525190916323b872dd9160648083019260209291908290030181600087803b15801561237157600080fd5b505af1158015612385573d6000803e3d6000fd5b505050506040513d602081101561239b57600080fd5b50506000838152601d60205260409020546002600019610100600184161502019091160415612466576000838152601d602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452612466939283018282801561245a5780601f1061242f5761010080835404028352916020019161245a565b820191906000526020600020905b81548152906001019060200180831161243d57829003601f168201915b50505050506000614ae4565b612471826001614ae4565b6000838152601d602090815260409091208351612490928501906158e0565b50827f655f02bafadd06a8aa3ad97da6c1b505333657a18d76e292d1c48b01b517f0b2836040518080602001828103825283818151815260200191508051906020019080838360005b838110156124f15781810151838201526020016124d9565b50505050905090810190601f16801561251e5780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b6360e5dd9081565b600080612546600d84614b60565b509392505050565b61255661486b565b6000546001600160a01b039081169116146125a6576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b8051611cae9060189060208401906158e0565b6000818152601d602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156118545780601f1061182957610100808354040283529160200191611854565b60025481565b600061192082604051806060016040528060298152602001615bd160299139600d9190614b7c565b60009081526012602052604090205490565b61266b61486b565b6000546001600160a01b039081169116146126bb576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b601954604080516370a0823160e01b81526001600160a01b039092166004830181905290516000926370a08231916024808301926020929190829003018186803b15801561270857600080fd5b505afa15801561271c573d6000803e3d6000fd5b505050506040513d602081101561273257600080fd5b5051601954604080516323b872dd60e01b81526001600160a01b0390921660048301819052336024840152604483018490529051929350916323b872dd916064808201926020929091908290030181600087803b15801561279257600080fd5b505af11580156127a6573d6000803e3d6000fd5b505050506040513d6020811015611a5e57600080fd5b60006001600160a01b0382166128035760405162461bcd60e51b815260040180806020018281038252602a815260200180615ba7602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600c60205260409020611920906148dd565b61282c61486b565b6000546001600160a01b0390811691161461287c576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6005541561291b576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b60045461296a576360e5dd904210156129655760405162461bcd60e51b815260040180806020018281038252603e8152602001806159cc603e913960400191505060405180910390fd5b436004555b6004546129be576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b6040805142602080830191909152448284015282518083038401815260609092019092528051910120611e61810660058190551580612a015750611e6160055410155b15612a0c5760016005555b50565b6000612a1961486b565b9050612a24826139ad565b1515600114612a71576040805162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b604482015290519081900360640190fd5b600260106000836001600160a01b03166001600160a01b031681526020019081526020016000206040518082805460018160011615610100020316600290048015612af35780601f10612ad1576101008083540402835291820191612af3565b820191906000526020600020905b815481529060010190602001808311612adf575b5050915050602060405180830381855afa158015612b15573d6000803e3d6000fd5b5050506040513d6020811015612b2a57600080fd5b505160405183516002918591819060208401908083835b60208310612b605780518252601f199092019160209182019101612b41565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa158015612b9f573d6000803e3d6000fd5b5050506040513d6020811015612bb457600080fd5b50511415612bf35760405162461bcd60e51b8152600401808060200182810382526027815260200180615a866027913960400191505060405180910390fd5b612bfc82611f23565b15612c4e576040805162461bcd60e51b815260206004820152601960248201527f557365726e616d6520616c726561647920726573657276656400000000000000604482015290519081900360640190fd5b601954600254604080516323b872dd60e01b81523360048201526001600160a01b039093166024840181905260448401929092525190916323b872dd9160648083019260209291908290030181600087803b158015612cac57600080fd5b505af1158015612cc0573d6000803e3d6000fd5b505050506040513d6020811015612cd657600080fd5b50506001600160a01b0381166000908152601060205260409020546002600019610100600184161502019091160415612db5576001600160a01b03811660009081526010602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452612db59392830182828015612da95780601f10612d7e57610100808354040283529160200191612da9565b820191906000526020600020905b815481529060010190602001808311612d8c57829003601f168201915b50505050506000614b89565b612dc0826001614b89565b6001600160a01b03811660009081526010602090815260409091208351612de9928501906158e0565b507fdf70cf5f3b423817b483a2ff1bc68dea5641494316d9923779865d70ff5f3556818360405180836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612e59578181015183820152602001612e41565b50505050905090810190601f168015612e865780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b600061192082604051806060016040528060288152602001615e3260289139601b9190614b7c565b600083516005148015612edd57508160011480612edd5750816003145b80612ef457508351600f148015612ef45750816002145b80612f0b575083516006148015612f0b5750816004145b612f465760405162461bcd60e51b815260040180806020018281038252602b815260200180615c49602b913960400191505060405180910390fd5b612f4f836139ad565b612f98576040805162461bcd60e51b81526020600482015260156024820152744e6f7420612076616c6964206e6f6465206e616d6560581b604482015290519081900360640190fd5b612fa18361451c565b15612feb576040805162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b604482015290519081900360640190fd5b6000612ff561486b565b905060005b85518110156131df57600181015b865181101561308c5786818151811061301d57fe5b602002602001015187838151811061303157fe5b60200260200101511415613084576040805162461bcd60e51b8152602060048201526015602482015274088eae0d8d2c6c2e8ca40e8ded6cadc40d2dcc8caf605b1b604482015290519081900360640190fd5b600101613008565b506130a986828151811061309c57fe5b6020026020010151612629565b6001600160a01b0316826001600160a01b03161461310e576040805162461bcd60e51b815260206004820152601b60248201527f43616c6c657220646f6573206e6f74206f776e20746f6b656e49640000000000604482015290519081900360640190fd5b61312a86828151811061311d57fe5b60200260200101516146c2565b1561317c576040805162461bcd60e51b815260206004820181905260248201527f546f6b656e20616c7265616479207265676973746572656420746f206e6f6465604482015290519081900360640190fd5b600461319a87838151811061318d57fe5b60200260200101516145b8565b10156131d75760405162461bcd60e51b815260040180806020018281038252603d815260200180615d32603d913960400191505060405180910390fd5b600101612ffa565b5060006131f560016131ef61393a565b90614b95565b9050613203601b8284614bef565b506001600160a01b0382166000908152601a602052604090206132269082614c05565b50600081815260208080526040808320879055601e8252808320429055601f82528083208390556023825290912087516132629289019061595a565b5083600114806132725750836002145b15613295576000818152602160205260409020805460ff191660011790556132ac565b6000818152602160205260409020805460ff191690555b60005b86518110156132ec5781602260008984815181106132c957fe5b6020908102919091018101518252810191909152604001600020556001016132af565b506132f8856001614ae4565b6000818152601d602090815260409091208651613317928801906158e0565b50602554613326906001614b95565b602581905550807f5c9c5303f57f56c908db1da4c2a4f1d0457e0bb16d2ee8f3836514c61220e99986846040518080602001836001600160a01b03168152602001828103825284818151815260200191508051906020019080838360005b8381101561339c578181015183820152602001613384565b50505050905090810190601f1680156133c95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a295945050505050565b6001600160a01b0382166000908152601a60205260408120611db49083614ad8565b600061340c61486b565b905061341782612e98565b6001600160a01b0316816001600160a01b03161461347c576040805162461bcd60e51b815260206004820152601860248201527f43616c6c657220646f6573206e6f74206f776e206e6f64650000000000000000604482015290519081900360640190fd5b613485826118f7565b6134d6576040805162461bcd60e51b815260206004820152601c60248201527f4e6f646520697320616c726561647920756e7265676973746572656400000000604482015290519081900360640190fd5b611a5e8282614c11565b6000546001600160a01b031690565b6360df461042101561353f576040805162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b60065460ff161561358e576040805162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81899595b881c185d5cd95960621b604482015290519081900360640190fd5b611e61613599611cb2565b106135e4576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b60008111613639576040805162461bcd60e51b815260206004820152601860248201527f6e756d6265724f664e6674732063616e6e6f7420626520300000000000000000604482015290519081900360640190fd5b60198111156136795760405162461bcd60e51b8152600401808060200182810382526029815260200180615db36029913960400191505060405180910390fd5b611e61613688826131ef611cb2565b11156136d4576040805162461bcd60e51b815260206004820152601660248201527545786365656473204d41585f4e46545f535550504c5960501b604482015290519081900360640190fd5b346136e7826136e16147cc565b90614e7d565b14613739576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b60005b818110156137dc57600061374e611cb2565b9050611e61811061379f576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b6000818152601260209081526040808320429055600a8252808320600190819055600b909252909120556137d33382614ed6565b5060010161373c565b506004541580156138045750611e616137f3611cb2565b10158061380457506360e5dd904210155b15612a0c574360045550565b6060808290506060815167ffffffffffffffff8111801561383057600080fd5b506040519080825280601f01601f19166020018201604052801561385b576020820181803683370190505b50905060005b825181101561254657604183828151811061387857fe5b016020015160f81c108015906138a25750605a83828151811061389757fe5b016020015160f81c11155b156138ef578281815181106138b357fe5b602001015160f81c60f81b60f81c60200160f81b8282815181106138d357fe5b60200101906001600160f81b031916908160001a90535061392a565b8281815181106138fb57fe5b602001015160f81c60f81b82828151811061391257fe5b60200101906001600160f81b031916908160001a9053505b600101613861565b6360df461081565b6000611cbe601b6148dd565b60168054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b60095481565b600060608290506001815110156139c8576000915050611795565b6010815111156139dc576000915050611795565b806000815181106139e957fe5b6020910101516001600160f81b031916600160fd1b1415613a0e576000915050611795565b80600182510381518110613a1e57fe5b6020910101516001600160f81b031916600160fd1b1415613a43576000915050611795565b600081600081518110613a5257fe5b01602001516001600160f81b031916905060005b8251811015613b72576000838281518110613a7d57fe5b01602001516001600160f81b0319169050600160fd1b811480613aad5750600160fd1b6001600160f81b03198416145b15613abf576000945050505050611795565b600360fc1b6001600160f81b0319821610801590613aeb5750603960f81b6001600160f81b0319821611155b158015613b215750604160f81b6001600160f81b0319821610801590613b1f5750602d60f91b6001600160f81b0319821611155b155b8015613b565750606160f81b6001600160f81b0319821610801590613b545750603d60f91b6001600160f81b0319821611155b155b15613b68576000945050505050611795565b9150600101613a66565b506001949350505050565b613b8561486b565b6001600160a01b0316826001600160a01b03161415613beb576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060136000613bf861486b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155613c3c61486b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60009081526021602052604090205460ff1690565b613c9f61486b565b6000546001600160a01b03908116911614613cef576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6000928352600a6020908152604080852093909355600b9052912055565b6000670de0b6b3a7640000678ac7230489e8000082613d3685613d308589614e7d565b90614ef0565b905082811415613d8d576040805162461bcd60e51b815260206004820152601860248201527f656d697373696f6e2077696c6c206e6f74206368616e67650000000000000000604482015290519081900360640190fd5b828111613dda576040805162461bcd60e51b8152602060048201526016602482015275656d697373696f6e2077696c6c20646563726561736560501b604482015290519081900360640190fd5b818110613e2e576040805162461bcd60e51b815260206004820152601f60248201527f656d697373696f6e2077696c6c20696e637265617365206f7665722031307800604482015290519081900360640190fd5b95945050505050565b600060606000806000806060613e4c886146b5565b613e875760405162461bcd60e51b8152600401808060200182810382526025815260200180615ddc6025913960400191505060405180910390fd5b613e9088612e98565b6000898152601d60209081526040808320601e835281842054601f8085528386205485805284872054602187528588205460238852978690208554875160026000196001841615610100020190921691909104948501899004890281018901909752838752949793969195909460ff90941693929091889190830182828015613f5a5780601f10613f2f57610100808354040283529160200191613f5a565b820191906000526020600020905b815481529060010190602001808311613f3d57829003601f168201915b5050505050955080805480602002602001604051908101604052809291908181526020018280548015613fac57602002820191906000526020600020905b815481526020019060010190808311613f98575b505050505090509650965096509650965096509650919395979092949650565b611e6181565b613fe3613fdd61486b565b836148e8565b61401e5760405162461bcd60e51b8152600401808060200182810382526031815260200180615e016031913960400191505060405180910390fd5b61402a84848484614f32565b50505050565b61403861486b565b6000546001600160a01b03908116911614614088576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6006805460ff1916911515919091179055565b60085481565b6140a961486b565b6000546001600160a01b039081169116146140f9576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600091825260216020526040909120805460ff1916911515919091179055565b60606141248261485e565b61415f5760405162461bcd60e51b8152600401808060200182810382526026815260200180615ad16026913960400191505060405180910390fd5b73666b2a8558121464dfc3bd5a330626d879e325c363f8dc05586141816144af565b73666b2a8558121464dfc3bd5a330626d879e325c363a76d54ff866040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b1580156141d057600080fd5b505af41580156141e4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561420d57600080fd5b8101908080516040519392919084600160201b82111561422c57600080fd5b90830190602082018581111561424157600080fd5b8251600160201b81118282018810171561425a57600080fd5b82525081516020918201929091019080838360005b8381101561428757818101518382015260200161426f565b50505050905090810190601f1680156142b45780820380516001836020036101000a031916815260200191505b506040525050506040518363ffffffff1660e01b8152600401808060200180602001838103835285818151815260200191508051906020019080838360005b8381101561430b5781810151838201526020016142f3565b50505050905090810190601f1680156143385780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561436b578181015183820152602001614353565b50505050905090810190601f1680156143985780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038186803b1580156143b757600080fd5b505af41580156143cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156143f457600080fd5b8101908080516040519392919084600160201b82111561441357600080fd5b90830190602082018581111561442857600080fd5b8251600160201b81118282018810171561444157600080fd5b82525081516020918201929091019080838360005b8381101561446e578181015183820152602001614456565b50505050905090810190601f16801561449b5780820380516001836020036101000a031916815260200191505b506040525050509050919050565b60055481565b60178054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b60075481565b60045481565b60006024611f3083613810565b60188054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205460ff1690565b600081815260126020526040812054806146035760405162461bcd60e51b8152600401808060200182810382526028815260200180615b1b6028913960400191505060405180910390fd5b428111156146425760405162461bcd60e51b815260040180806020018281038252602d815260200180615bfa602d913960400191505060405180910390fd5b6360e5dd9081101561465557506360e5dd905b804211614666576001915050611795565b60006146724283614f84565b90506001805b60048110156146ac5761468e8162015180614e7d565b831061469f576001909101906146a4565b6146ac565b600101614678565b50949350505050565b6000611920601b83614fc6565b60009081526022602052604090205490565b6146dc61486b565b6000546001600160a01b0390811691161461472c576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6001600160a01b0381166147715760405162461bcd60e51b8152600401808060200182810382526026815260200180615a3c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006360df461042101561481e576040805162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000614828611cb2565b9050611770811061483d5750506009546118f4565b6107d081106148505750506008546118f4565b50506007546118f4565b5090565b6000611920600d83614fc6565b3390565b6000818152600f6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906148a482612629565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061192082614fd2565b60006148f38261485e565b61492e5760405162461bcd60e51b815260040180806020018281038252602c815260200180615b43602c913960400191505060405180910390fd5b600061493983612629565b9050806001600160a01b0316846001600160a01b031614806149745750836001600160a01b031661496984611926565b6001600160a01b0316145b806149845750614984818561458a565b949350505050565b826001600160a01b031661499f82612629565b6001600160a01b0316146149e45760405162461bcd60e51b8152600401808060200182810382526029815260200180615d096029913960400191505060405180910390fd5b6001600160a01b038216614a295760405162461bcd60e51b8152600401808060200182810382526024815260200180615af76024913960400191505060405180910390fd5b614a34838383614fd6565b614a3f60008261486f565b6001600160a01b0383166000908152600c60205260409020614a619082615033565b506001600160a01b0382166000908152600c60205260409020614a849082614c05565b50614a91600d8284614bef565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611db4838361503f565b806024614af084613810565b6040518082805190602001908083835b60208310614b1f5780518252601f199092019160209182019101614b00565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220805460ff19169315159390931790925550505050565b6000808080614b6f86866150a3565b9097909650945050505050565b600061498484848461511e565b806011614af084613810565b600082820183811015611db4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061498484846001600160a01b0385166151e8565b6000611db4838361527f565b6000614c1c836118f7565b614c6d576040805162461bcd60e51b815260206004820152601c60248201527f4e6f646520697320616c726561647920756e7265676973746572656400000000604482015290519081900360640190fd5b6000838152601f602090815260408083204290556023825291829020805483518184028101840190945280845260609392830182828015614ccd57602002820191906000526020600020905b815481526020019060010190808311614cb9575b5050505050905060005b8151811015614d12576000828281518110614cee57fe5b60209081029190910181015160009081526022909152604081205550600101614cd7565b506000848152601d602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452614d7e939283018282801561245a5780601f1061242f5761010080835404028352916020019161245a565b600160255410614d9a57602554614d96906001614f84565b6025555b6000848152601d602090815260409182902082516001600160a01b0387169281019290925282825280546002600019610100600184161502019091160492820183905286927f8618317980f672b0f16ee204b39b9a8415354086f3cabf8bfbcc159721ec608e9287918190606082019085908015614e595780601f10614e2e57610100808354040283529160200191614e59565b820191906000526020600020905b815481529060010190602001808311614e3c57829003601f168201915b5050935050505060405180910390a25050506000908152601f602052604090205490565b600082614e8c57506000611920565b82820282848281614e9957fe5b0414611db45760405162461bcd60e51b8152600401808060200182810382526021815260200180615c746021913960400191505060405180910390fd5b611cae8282604051806020016040528060008152506152c9565b6000611db483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061531b565b614f3d84848461498c565b614f4984848484615380565b61402a5760405162461bcd60e51b8152600401808060200182810382526032815260200180615a0a6032913960400191505060405180910390fd5b6000611db483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506154e8565b6000611db48383615542565b5490565b6000614fe1826146c2565b9050600081118015614ff75750614ff7816118f7565b801561501d575061500781612e98565b6001600160a01b0316836001600160a01b031614155b1561402a5761502c8185614c11565b5050505050565b6000611db4838361555a565b815460009082106150815760405162461bcd60e51b81526004018080602001828103825260228152602001806159aa6022913960400191505060405180910390fd5b82600001828154811061509057fe5b9060005260206000200154905092915050565b8154600090819083106150e75760405162461bcd60e51b8152600401808060200182810382526022815260200180615c276022913960400191505060405180910390fd5b60008460000184815481106150f857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816151b95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561517e578181015183820152602001615166565b50505050905090810190601f1680156151ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106151cc57fe5b9060005260206000209060020201600101549150509392505050565b60008281526001840160205260408120548061524d575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611db4565b8285600001600183038154811061526057fe5b9060005260206000209060020201600101819055506000915050611db4565b600061528b8383615542565b6152c157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611920565b506000611920565b6152d38383615620565b6152e06000848484615380565b611a5e5760405162461bcd60e51b8152600401808060200182810382526032815260200180615a0a6032913960400191505060405180910390fd5b6000818361536a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561517e578181015183820152602001615166565b50600083858161537657fe5b0495945050505050565b6000615394846001600160a01b031661574e565b6153a057506001614984565b60606154ae630a85bd0160e11b6153b561486b565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561541c578181015183820152602001615404565b50505050905090810190601f1680156154495780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001615a0a603291396001600160a01b0388169190615754565b905060008180602001905160208110156154c757600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000818484111561553a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561517e578181015183820152602001615166565b505050900390565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015615616578354600019808301919081019060009087908390811061558d57fe5b90600052602060002001549050808760000184815481106155aa57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806155da57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611920565b6000915050611920565b6001600160a01b03821661567b576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6156848161485e565b156156d6576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6156e260008383614fd6565b6001600160a01b0382166000908152600c602052604090206157049082614c05565b50615711600d8284614bef565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b60606149848484600085856157688561574e565b6157b9576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106157f85780518252601f1990920191602091820191016157d9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461585a576040519150601f19603f3d011682016040523d82523d6000602084013e61585f565b606091505b509150915061586f82828661587a565b979650505050505050565b60608315615889575081611db4565b8251156158995782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561517e578181015183820152602001615166565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061592157805160ff191683800117855561594e565b8280016001018555821561594e579182015b8281111561594e578251825591602001919060010190615933565b5061485a929150615994565b82805482825590600052602060002090810192821561594e579160200282018281111561594e578251825591602001919060010190615933565b5b8082111561485a576000815560010161599556fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473446973747269627574696f6e20706572696f64206d757374206265206f76657220746f2073657420746865207374617274696e67496e646578426c6f636b4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735072696365206d7573742062652073657420616e642067726561746572207468616e20304e657720757365726e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a2063616c6c6572206973206e6f7420746865206e6f6465206f776e6572546f6b656e20776974682073706563696669656420494420646f6573206e6f742065786973744552433732313a207472616e7366657220746f20746865207a65726f20616464726573734d696e742074696d65206d7573742062652073657420616e642067726561746572207468616e20304552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e742074696d652063616e6e6f742062652067726561746572207468616e2063757272656e742074696d65456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473496e76616c6964206e756d626572206f6620746f6b656e49647320666f722074797065206f66206e6f6465536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4e6f6465206e616d65206368616e676573206172652063757272656e746c792064697361626c65644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e416c6c2053706972697473206d7573742062652066756c6c79206177616b656e656420746f206265207265676973746572656420746f2061206e6f64654e6577206e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a20617070726f76616c20746f2063757272656e74206f776e6572596f75206d6179206e6f7420627579206d6f7265207468616e203235204e465473206174206f6e63654e6f646520776974682073706563696669656420696420646f6573206e6f742065786973744552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e74206e6f6465a26469706673582212206c5bdf97bca4e2b7f52756ad5964b42acd9253b29956831a8628340e80f93be564736f6c6343000700003368747470733a2f2f7370697269742e6170703a373737372f6170692f6f70656e7365612f68747470733a2f2f7370697269742e6170703a373737372f6170692f636f6e74726163746d657461

Deployed Bytecode

0x6080604052600436106104475760003560e01c8063715018a611610234578063b02439ae1161012e578063e04e710f116100b6578063e9eba8401161007a578063e9eba840146116b1578063eabc709c146116db578063eedfb44314611705578063f2fde38b1461172f578063fb107a4f1461176257610447565b8063e04e710f14611586578063e36d64981461159b578063e6e9077c146115b0578063e8a3d48514611661578063e985e9c51461167657610447565b8063c1d3bdfb116100fd578063c1d3bdfb146114eb578063c6fcea4e14611500578063c87b56dd14611532578063cb774d471461155c578063d547cfb71461157157610447565b8063b02439ae146112c8578063b5077f44146113d9578063b88d4fde146113ee578063c158f3b6146114bf57610447565b80639416b423116101bc5780639ffdb65a116101805780639ffdb65a1461114c578063a22cb465146111fd578063a7f5980714611238578063acd7cf5b14611262578063ae3a3f4e1461129857610447565b80639416b42314611047578063946807fd146110f85780639592d4241461110d57806395d89b41146111225780639bb847f61461113757610447565b8063811067f711610203578063811067f714610e7d578063860df4ab14610fb257806388fc082514610feb5780638da5cb5b14611015578063926427441461102a57610447565b8063715018a614610d7857806374df39c914610d8d57806377c846af14610da25780637b05c38f14610e5357610447565b806339a0c6f9116103455780634b74f994116102cd5780635ac69e05116102915780635ac69e0514610cc75780636352211e14610cdc5780636e29fd7814610d065780636eab86fd14610d3057806370a0823114610d4557610447565b80634b74f99414610af55780634ba7ece514610bad5780634f6ccce714610bc25780635699b90414610bec5780635a9c226414610c9d57610447565b8063419532a811610314578063419532a8146109fd57806341a84a0014610a4057806342842e0e14610a6a5780634561a1f014610aad57806349a5747714610ae057610447565b806339a0c6f91461085c5780633ccfd60b1461090d5780633eef1db31461092257806341155d471461094c57610447565b806312a7e81e116103d357806323b872dd1161039757806323b872dd1461078c5780632c61d1d4146107cf5780632f745c59146107e4578063324090851461081d578063364d36721461084757610447565b806312a7e81e14610677578063180c5764146106a357806318160ddd146106d35780631c794b84146106e85780632263a6241461071257610447565b806306fdde031161041a57806306fdde031461058d578063071859fb146105a2578063081812fc146105cc578063095ea7b3146106125780630c89ec5c1461064d57610447565b806301ffc9a71461044c57806303cb9fac14610494578063051712d6146104d05780630610a7a2146104e5575b600080fd5b34801561045857600080fd5b506104806004803603602081101561046f57600080fd5b50356001600160e01b031916611777565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b503561179a565b60408051918252519081900360200190f35b3480156104dc57600080fd5b506104806117ac565b3480156104f157600080fd5b506105186004803603602081101561050857600080fd5b50356001600160a01b03166117b5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561055257818101518382015260200161053a565b50505050905090810190601f16801561057f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059957600080fd5b50610518611860565b3480156105ae57600080fd5b50610480600480360360208110156105c557600080fd5b50356118f7565b3480156105d857600080fd5b506105f6600480360360208110156105ef57600080fd5b5035611926565b604080516001600160a01b039092168252519081900360200190f35b34801561061e57600080fd5b5061064b6004803603604081101561063557600080fd5b506001600160a01b038135169060200135611988565b005b34801561065957600080fd5b5061064b6004803603602081101561067057600080fd5b5035611a63565b34801561068357600080fd5b5061064b6004803603602081101561069a57600080fd5b50351515611ac0565b3480156106af57600080fd5b5061064b600480360360408110156106c657600080fd5b5080359060200135611b2b565b3480156106df57600080fd5b506104be611cb2565b3480156106f457600080fd5b506104be6004803603602081101561070b57600080fd5b5035611cc3565b34801561071e57600080fd5b5061073c6004803603602081101561073557600080fd5b5035611cd4565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610778578181015183820152602001610760565b505050509050019250505060405180910390f35b34801561079857600080fd5b5061064b600480360360608110156107af57600080fd5b506001600160a01b03813581169160208101359091169060400135611d35565b3480156107db57600080fd5b506104be611d8c565b3480156107f057600080fd5b506104be6004803603604081101561080757600080fd5b506001600160a01b038135169060200135611d92565b34801561082957600080fd5b5061064b6004803603602081101561084057600080fd5b5035611dbb565b34801561085357600080fd5b506104be611e18565b34801561086857600080fd5b5061064b6004803603602081101561087f57600080fd5b810190602081018135600160201b81111561089957600080fd5b8201836020820111156108ab57600080fd5b803590602001918460018302840111600160201b831117156108cc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e1f945050505050565b34801561091957600080fd5b5061064b611e8a565b34801561092e57600080fd5b506104be6004803603602081101561094557600080fd5b5035611f11565b34801561095857600080fd5b506104806004803603602081101561096f57600080fd5b810190602081018135600160201b81111561098957600080fd5b82018360208201111561099b57600080fd5b803590602001918460018302840111600160201b831117156109bc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611f23945050505050565b348015610a0957600080fd5b50610a2760048036036020811015610a2057600080fd5b5035611f96565b6040805192835260208301919091528051918290030190f35b348015610a4c57600080fd5b506104be60048036036020811015610a6357600080fd5b5035611fb5565b348015610a7657600080fd5b5061064b60048036036060811015610a8d57600080fd5b506001600160a01b03813581169160208101359091169060400135611fc7565b348015610ab957600080fd5b506104be60048036036020811015610ad057600080fd5b50356001600160a01b0316611fe2565b348015610aec57600080fd5b506104be61204a565b348015610b0157600080fd5b5061064b60048036036040811015610b1857600080fd5b81359190810190604081016020820135600160201b811115610b3957600080fd5b820183602082011115610b4b57600080fd5b803590602001918460018302840111600160201b83111715610b6c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612050945050505050565b348015610bb957600080fd5b506104be612530565b348015610bce57600080fd5b506104be60048036036020811015610be557600080fd5b5035612538565b348015610bf857600080fd5b5061064b60048036036020811015610c0f57600080fd5b810190602081018135600160201b811115610c2957600080fd5b820183602082011115610c3b57600080fd5b803590602001918460018302840111600160201b83111715610c5c57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061254e945050505050565b348015610ca957600080fd5b5061051860048036036020811015610cc057600080fd5b50356125b9565b348015610cd357600080fd5b506104be612623565b348015610ce857600080fd5b506105f660048036036020811015610cff57600080fd5b5035612629565b348015610d1257600080fd5b506104be60048036036020811015610d2957600080fd5b5035612651565b348015610d3c57600080fd5b5061064b612663565b348015610d5157600080fd5b506104be60048036036020811015610d6857600080fd5b50356001600160a01b03166127bc565b348015610d8457600080fd5b5061064b612824565b348015610d9957600080fd5b5061064b6128c6565b348015610dae57600080fd5b5061064b60048036036020811015610dc557600080fd5b810190602081018135600160201b811115610ddf57600080fd5b820183602082011115610df157600080fd5b803590602001918460018302840111600160201b83111715610e1257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612a0f945050505050565b348015610e5f57600080fd5b506105f660048036036020811015610e7657600080fd5b5035612e98565b348015610e8957600080fd5b506104be60048036036060811015610ea057600080fd5b810190602081018135600160201b811115610eba57600080fd5b820183602082011115610ecc57600080fd5b803590602001918460208302840111600160201b83111715610eed57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610f3c57600080fd5b820183602082011115610f4e57600080fd5b803590602001918460018302840111600160201b83111715610f6f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250612ec0915050565b348015610fbe57600080fd5b506104be60048036036040811015610fd557600080fd5b506001600160a01b0381351690602001356133e0565b348015610ff757600080fd5b5061064b6004803603602081101561100e57600080fd5b5035613402565b34801561102157600080fd5b506105f66134e0565b61064b6004803603602081101561104057600080fd5b50356134ef565b34801561105357600080fd5b506105186004803603602081101561106a57600080fd5b810190602081018135600160201b81111561108457600080fd5b82018360208201111561109657600080fd5b803590602001918460018302840111600160201b831117156110b757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613810945050505050565b34801561110457600080fd5b506104be613932565b34801561111957600080fd5b506104be61393a565b34801561112e57600080fd5b50610518613946565b34801561114357600080fd5b506104be6139a7565b34801561115857600080fd5b506104806004803603602081101561116f57600080fd5b810190602081018135600160201b81111561118957600080fd5b82018360208201111561119b57600080fd5b803590602001918460018302840111600160201b831117156111bc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506139ad945050505050565b34801561120957600080fd5b5061064b6004803603604081101561122057600080fd5b506001600160a01b0381351690602001351515613b7d565b34801561124457600080fd5b506104806004803603602081101561125b57600080fd5b5035613c82565b34801561126e57600080fd5b5061064b6004803603606081101561128557600080fd5b5080359060208101359060400135613c97565b3480156112a457600080fd5b506104be600480360360408110156112bb57600080fd5b5080359060200135613d0d565b3480156112d457600080fd5b506112f2600480360360208110156112eb57600080fd5b5035613e37565b60405180886001600160a01b0316815260200180602001878152602001868152602001858152602001841515815260200180602001838103835289818151815260200191508051906020019080838360005b8381101561135c578181015183820152602001611344565b50505050905090810190601f1680156113895780820380516001836020036101000a031916815260200191505b508381038252845181528451602091820191808701910280838360005b838110156113be5781810151838201526020016113a6565b50505050905001995050505050505050505060405180910390f35b3480156113e557600080fd5b506104be613fcc565b3480156113fa57600080fd5b5061064b6004803603608081101561141157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561144b57600080fd5b82018360208201111561145d57600080fd5b803590602001918460018302840111600160201b8311171561147e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613fd2945050505050565b3480156114cb57600080fd5b5061064b600480360360208110156114e257600080fd5b50351515614030565b3480156114f757600080fd5b506104be61409b565b34801561150c57600080fd5b5061064b6004803603604081101561152357600080fd5b508035906020013515156140a1565b34801561153e57600080fd5b506105186004803603602081101561155557600080fd5b5035614119565b34801561156857600080fd5b506104be6144a9565b34801561157d57600080fd5b506105186144af565b34801561159257600080fd5b506104be614510565b3480156115a757600080fd5b506104be614516565b3480156115bc57600080fd5b50610480600480360360208110156115d357600080fd5b810190602081018135600160201b8111156115ed57600080fd5b8201836020820111156115ff57600080fd5b803590602001918460018302840111600160201b8311171561162057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061451c945050505050565b34801561166d57600080fd5b50610518614529565b34801561168257600080fd5b506104806004803603604081101561169957600080fd5b506001600160a01b038135811691602001351661458a565b3480156116bd57600080fd5b506104be600480360360208110156116d457600080fd5b50356145b8565b3480156116e757600080fd5b50610480600480360360208110156116fe57600080fd5b50356146b5565b34801561171157600080fd5b506104be6004803603602081101561172857600080fd5b50356146c2565b34801561173b57600080fd5b5061064b6004803603602081101561175257600080fd5b50356001600160a01b03166146d4565b34801561176e57600080fd5b506104be6147cc565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b6000908152601e602052604090205490565b60145460ff1681565b6001600160a01b03811660009081526010602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156118545780601f1061182957610100808354040283529160200191611854565b820191906000526020600020905b81548152906001019060200180831161183757829003601f168201915b50505050509050919050565b60158054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b505050505090505b90565b6000818152601e60205260408120541580159061192057506000828152601f6020526040902054155b92915050565b60006119318261485e565b61196c5760405162461bcd60e51b815260040180806020018281038252602c815260200180615c95602c913960400191505060405180910390fd5b506000908152600f60205260409020546001600160a01b031690565b600061199382612629565b9050806001600160a01b0316836001600160a01b031614156119e65760405162461bcd60e51b8152600401808060200182810382526021815260200180615d926021913960400191505060405180910390fd5b806001600160a01b03166119f861486b565b6001600160a01b03161480611a195750611a1981611a1461486b565b61458a565b611a545760405162461bcd60e51b8152600401808060200182810382526038815260200180615b6f6038913960400191505060405180910390fd5b611a5e838361486f565b505050565b611a6b61486b565b6000546001600160a01b03908116911614611abb576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600255565b611ac861486b565b6000546001600160a01b03908116911614611b18576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6014805460ff1916911515919091179055565b611b3361486b565b6000546001600160a01b03908116911614611b83576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b611e61611b8e611cb2565b10611bd9576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b600082118015611be95750600482105b611c3a576040805162461bcd60e51b815260206004820181905260248201527f427261636b6574206d75737420626520696e207468652072616e676520312d33604482015290519081900360640190fd5b60008111611c795760405162461bcd60e51b8152600401808060200182810382526024815260200180615a626024913960400191505060405180910390fd5b8160011415611c8c576007819055611cae565b8160021415611c9f576008819055611cae565b8160031415611cae5760098190555b5050565b6000611cbe600d6148dd565b905090565b600090815260208052604090205490565b60008181526023602090815260409182902080548351818402810184019094528084526060939283018282801561185457602002820191906000526020600020905b815481526020019060010190808311611d165750505050509050919050565b611d46611d4061486b565b826148e8565b611d815760405162461bcd60e51b8152600401808060200182810382526031815260200180615e016031913960400191505060405180910390fd5b611a5e83838361498c565b60035481565b6001600160a01b0382166000908152600c60205260408120611db49083614ad8565b9392505050565b611dc361486b565b6000546001600160a01b03908116911614611e13576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600355565b6201518081565b611e2761486b565b6000546001600160a01b03908116911614611e77576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b8051611cae9060179060208401906158e0565b611e9261486b565b6000546001600160a01b03908116911614611ee2576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015611cae573d6000803e3d6000fd5b60009081526023602052604090205490565b60006011611f3083613810565b6040518082805190602001908083835b60208310611f5f5780518252601f199092019160209182019101611f40565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff16949350505050565b6000908152600a6020908152604080832054600b909252909120549091565b6000908152601f602052604090205490565b611a5e83838360405180602001604052806000815250613fd2565b60006001600160a01b0382166120295760405162461bcd60e51b815260040180806020018281038252602a815260200180615ba7602a913960400191505060405180910390fd5b6001600160a01b0382166000908152601a60205260409020611920906148dd565b60255490565b60145460ff1615156001146120965760405162461bcd60e51b8152600401808060200182810382526028815260200180615cc16028913960400191505060405180910390fd5b60006120a183612e98565b9050806001600160a01b03166120b561486b565b6001600160a01b0316146120fa5760405162461bcd60e51b8152600401808060200182810382526024815260200180615aad6024913960400191505060405180910390fd5b612103826139ad565b1515600114612150576040805162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b604482015290519081900360640190fd5b6002601d600085815260200190815260200160002060405180828054600181600116156101000203166002900480156121c05780601f1061219e5761010080835404028352918201916121c0565b820191906000526020600020905b8154815290600101906020018083116121ac575b5050915050602060405180830381855afa1580156121e2573d6000803e3d6000fd5b5050506040513d60208110156121f757600080fd5b505160405183516002918591819060208401908083835b6020831061222d5780518252601f19909201916020918201910161220e565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa15801561226c573d6000803e3d6000fd5b5050506040513d602081101561228157600080fd5b505114156122c05760405162461bcd60e51b8152600401808060200182810382526023815260200180615d6f6023913960400191505060405180910390fd5b6122c98261451c565b15612313576040805162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b604482015290519081900360640190fd5b601954600354604080516323b872dd60e01b81523360048201526001600160a01b039093166024840181905260448401929092525190916323b872dd9160648083019260209291908290030181600087803b15801561237157600080fd5b505af1158015612385573d6000803e3d6000fd5b505050506040513d602081101561239b57600080fd5b50506000838152601d60205260409020546002600019610100600184161502019091160415612466576000838152601d602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452612466939283018282801561245a5780601f1061242f5761010080835404028352916020019161245a565b820191906000526020600020905b81548152906001019060200180831161243d57829003601f168201915b50505050506000614ae4565b612471826001614ae4565b6000838152601d602090815260409091208351612490928501906158e0565b50827f655f02bafadd06a8aa3ad97da6c1b505333657a18d76e292d1c48b01b517f0b2836040518080602001828103825283818151815260200191508051906020019080838360005b838110156124f15781810151838201526020016124d9565b50505050905090810190601f16801561251e5780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b6360e5dd9081565b600080612546600d84614b60565b509392505050565b61255661486b565b6000546001600160a01b039081169116146125a6576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b8051611cae9060189060208401906158e0565b6000818152601d602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156118545780601f1061182957610100808354040283529160200191611854565b60025481565b600061192082604051806060016040528060298152602001615bd160299139600d9190614b7c565b60009081526012602052604090205490565b61266b61486b565b6000546001600160a01b039081169116146126bb576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b601954604080516370a0823160e01b81526001600160a01b039092166004830181905290516000926370a08231916024808301926020929190829003018186803b15801561270857600080fd5b505afa15801561271c573d6000803e3d6000fd5b505050506040513d602081101561273257600080fd5b5051601954604080516323b872dd60e01b81526001600160a01b0390921660048301819052336024840152604483018490529051929350916323b872dd916064808201926020929091908290030181600087803b15801561279257600080fd5b505af11580156127a6573d6000803e3d6000fd5b505050506040513d6020811015611a5e57600080fd5b60006001600160a01b0382166128035760405162461bcd60e51b815260040180806020018281038252602a815260200180615ba7602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600c60205260409020611920906148dd565b61282c61486b565b6000546001600160a01b0390811691161461287c576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6005541561291b576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b60045461296a576360e5dd904210156129655760405162461bcd60e51b815260040180806020018281038252603e8152602001806159cc603e913960400191505060405180910390fd5b436004555b6004546129be576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b6040805142602080830191909152448284015282518083038401815260609092019092528051910120611e61810660058190551580612a015750611e6160055410155b15612a0c5760016005555b50565b6000612a1961486b565b9050612a24826139ad565b1515600114612a71576040805162461bcd60e51b81526020600482015260146024820152734e6f7420612076616c6964206e6577206e616d6560601b604482015290519081900360640190fd5b600260106000836001600160a01b03166001600160a01b031681526020019081526020016000206040518082805460018160011615610100020316600290048015612af35780601f10612ad1576101008083540402835291820191612af3565b820191906000526020600020905b815481529060010190602001808311612adf575b5050915050602060405180830381855afa158015612b15573d6000803e3d6000fd5b5050506040513d6020811015612b2a57600080fd5b505160405183516002918591819060208401908083835b60208310612b605780518252601f199092019160209182019101612b41565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa158015612b9f573d6000803e3d6000fd5b5050506040513d6020811015612bb457600080fd5b50511415612bf35760405162461bcd60e51b8152600401808060200182810382526027815260200180615a866027913960400191505060405180910390fd5b612bfc82611f23565b15612c4e576040805162461bcd60e51b815260206004820152601960248201527f557365726e616d6520616c726561647920726573657276656400000000000000604482015290519081900360640190fd5b601954600254604080516323b872dd60e01b81523360048201526001600160a01b039093166024840181905260448401929092525190916323b872dd9160648083019260209291908290030181600087803b158015612cac57600080fd5b505af1158015612cc0573d6000803e3d6000fd5b505050506040513d6020811015612cd657600080fd5b50506001600160a01b0381166000908152601060205260409020546002600019610100600184161502019091160415612db5576001600160a01b03811660009081526010602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452612db59392830182828015612da95780601f10612d7e57610100808354040283529160200191612da9565b820191906000526020600020905b815481529060010190602001808311612d8c57829003601f168201915b50505050506000614b89565b612dc0826001614b89565b6001600160a01b03811660009081526010602090815260409091208351612de9928501906158e0565b507fdf70cf5f3b423817b483a2ff1bc68dea5641494316d9923779865d70ff5f3556818360405180836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612e59578181015183820152602001612e41565b50505050905090810190601f168015612e865780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b600061192082604051806060016040528060288152602001615e3260289139601b9190614b7c565b600083516005148015612edd57508160011480612edd5750816003145b80612ef457508351600f148015612ef45750816002145b80612f0b575083516006148015612f0b5750816004145b612f465760405162461bcd60e51b815260040180806020018281038252602b815260200180615c49602b913960400191505060405180910390fd5b612f4f836139ad565b612f98576040805162461bcd60e51b81526020600482015260156024820152744e6f7420612076616c6964206e6f6465206e616d6560581b604482015290519081900360640190fd5b612fa18361451c565b15612feb576040805162461bcd60e51b815260206004820152601560248201527413985b5948185b1c9958591e481c995cd95c9d9959605a1b604482015290519081900360640190fd5b6000612ff561486b565b905060005b85518110156131df57600181015b865181101561308c5786818151811061301d57fe5b602002602001015187838151811061303157fe5b60200260200101511415613084576040805162461bcd60e51b8152602060048201526015602482015274088eae0d8d2c6c2e8ca40e8ded6cadc40d2dcc8caf605b1b604482015290519081900360640190fd5b600101613008565b506130a986828151811061309c57fe5b6020026020010151612629565b6001600160a01b0316826001600160a01b03161461310e576040805162461bcd60e51b815260206004820152601b60248201527f43616c6c657220646f6573206e6f74206f776e20746f6b656e49640000000000604482015290519081900360640190fd5b61312a86828151811061311d57fe5b60200260200101516146c2565b1561317c576040805162461bcd60e51b815260206004820181905260248201527f546f6b656e20616c7265616479207265676973746572656420746f206e6f6465604482015290519081900360640190fd5b600461319a87838151811061318d57fe5b60200260200101516145b8565b10156131d75760405162461bcd60e51b815260040180806020018281038252603d815260200180615d32603d913960400191505060405180910390fd5b600101612ffa565b5060006131f560016131ef61393a565b90614b95565b9050613203601b8284614bef565b506001600160a01b0382166000908152601a602052604090206132269082614c05565b50600081815260208080526040808320879055601e8252808320429055601f82528083208390556023825290912087516132629289019061595a565b5083600114806132725750836002145b15613295576000818152602160205260409020805460ff191660011790556132ac565b6000818152602160205260409020805460ff191690555b60005b86518110156132ec5781602260008984815181106132c957fe5b6020908102919091018101518252810191909152604001600020556001016132af565b506132f8856001614ae4565b6000818152601d602090815260409091208651613317928801906158e0565b50602554613326906001614b95565b602581905550807f5c9c5303f57f56c908db1da4c2a4f1d0457e0bb16d2ee8f3836514c61220e99986846040518080602001836001600160a01b03168152602001828103825284818151815260200191508051906020019080838360005b8381101561339c578181015183820152602001613384565b50505050905090810190601f1680156133c95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a295945050505050565b6001600160a01b0382166000908152601a60205260408120611db49083614ad8565b600061340c61486b565b905061341782612e98565b6001600160a01b0316816001600160a01b03161461347c576040805162461bcd60e51b815260206004820152601860248201527f43616c6c657220646f6573206e6f74206f776e206e6f64650000000000000000604482015290519081900360640190fd5b613485826118f7565b6134d6576040805162461bcd60e51b815260206004820152601c60248201527f4e6f646520697320616c726561647920756e7265676973746572656400000000604482015290519081900360640190fd5b611a5e8282614c11565b6000546001600160a01b031690565b6360df461042101561353f576040805162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b60065460ff161561358e576040805162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81899595b881c185d5cd95960621b604482015290519081900360640190fd5b611e61613599611cb2565b106135e4576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b60008111613639576040805162461bcd60e51b815260206004820152601860248201527f6e756d6265724f664e6674732063616e6e6f7420626520300000000000000000604482015290519081900360640190fd5b60198111156136795760405162461bcd60e51b8152600401808060200182810382526029815260200180615db36029913960400191505060405180910390fd5b611e61613688826131ef611cb2565b11156136d4576040805162461bcd60e51b815260206004820152601660248201527545786365656473204d41585f4e46545f535550504c5960501b604482015290519081900360640190fd5b346136e7826136e16147cc565b90614e7d565b14613739576040805162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015290519081900360640190fd5b60005b818110156137dc57600061374e611cb2565b9050611e61811061379f576040805162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b604482015290519081900360640190fd5b6000818152601260209081526040808320429055600a8252808320600190819055600b909252909120556137d33382614ed6565b5060010161373c565b506004541580156138045750611e616137f3611cb2565b10158061380457506360e5dd904210155b15612a0c574360045550565b6060808290506060815167ffffffffffffffff8111801561383057600080fd5b506040519080825280601f01601f19166020018201604052801561385b576020820181803683370190505b50905060005b825181101561254657604183828151811061387857fe5b016020015160f81c108015906138a25750605a83828151811061389757fe5b016020015160f81c11155b156138ef578281815181106138b357fe5b602001015160f81c60f81b60f81c60200160f81b8282815181106138d357fe5b60200101906001600160f81b031916908160001a90535061392a565b8281815181106138fb57fe5b602001015160f81c60f81b82828151811061391257fe5b60200101906001600160f81b031916908160001a9053505b600101613861565b6360df461081565b6000611cbe601b6148dd565b60168054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b60095481565b600060608290506001815110156139c8576000915050611795565b6010815111156139dc576000915050611795565b806000815181106139e957fe5b6020910101516001600160f81b031916600160fd1b1415613a0e576000915050611795565b80600182510381518110613a1e57fe5b6020910101516001600160f81b031916600160fd1b1415613a43576000915050611795565b600081600081518110613a5257fe5b01602001516001600160f81b031916905060005b8251811015613b72576000838281518110613a7d57fe5b01602001516001600160f81b0319169050600160fd1b811480613aad5750600160fd1b6001600160f81b03198416145b15613abf576000945050505050611795565b600360fc1b6001600160f81b0319821610801590613aeb5750603960f81b6001600160f81b0319821611155b158015613b215750604160f81b6001600160f81b0319821610801590613b1f5750602d60f91b6001600160f81b0319821611155b155b8015613b565750606160f81b6001600160f81b0319821610801590613b545750603d60f91b6001600160f81b0319821611155b155b15613b68576000945050505050611795565b9150600101613a66565b506001949350505050565b613b8561486b565b6001600160a01b0316826001600160a01b03161415613beb576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060136000613bf861486b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155613c3c61486b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60009081526021602052604090205460ff1690565b613c9f61486b565b6000546001600160a01b03908116911614613cef576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6000928352600a6020908152604080852093909355600b9052912055565b6000670de0b6b3a7640000678ac7230489e8000082613d3685613d308589614e7d565b90614ef0565b905082811415613d8d576040805162461bcd60e51b815260206004820152601860248201527f656d697373696f6e2077696c6c206e6f74206368616e67650000000000000000604482015290519081900360640190fd5b828111613dda576040805162461bcd60e51b8152602060048201526016602482015275656d697373696f6e2077696c6c20646563726561736560501b604482015290519081900360640190fd5b818110613e2e576040805162461bcd60e51b815260206004820152601f60248201527f656d697373696f6e2077696c6c20696e637265617365206f7665722031307800604482015290519081900360640190fd5b95945050505050565b600060606000806000806060613e4c886146b5565b613e875760405162461bcd60e51b8152600401808060200182810382526025815260200180615ddc6025913960400191505060405180910390fd5b613e9088612e98565b6000898152601d60209081526040808320601e835281842054601f8085528386205485805284872054602187528588205460238852978690208554875160026000196001841615610100020190921691909104948501899004890281018901909752838752949793969195909460ff90941693929091889190830182828015613f5a5780601f10613f2f57610100808354040283529160200191613f5a565b820191906000526020600020905b815481529060010190602001808311613f3d57829003601f168201915b5050505050955080805480602002602001604051908101604052809291908181526020018280548015613fac57602002820191906000526020600020905b815481526020019060010190808311613f98575b505050505090509650965096509650965096509650919395979092949650565b611e6181565b613fe3613fdd61486b565b836148e8565b61401e5760405162461bcd60e51b8152600401808060200182810382526031815260200180615e016031913960400191505060405180910390fd5b61402a84848484614f32565b50505050565b61403861486b565b6000546001600160a01b03908116911614614088576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6006805460ff1916911515919091179055565b60085481565b6140a961486b565b6000546001600160a01b039081169116146140f9576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b600091825260216020526040909120805460ff1916911515919091179055565b60606141248261485e565b61415f5760405162461bcd60e51b8152600401808060200182810382526026815260200180615ad16026913960400191505060405180910390fd5b73666b2a8558121464dfc3bd5a330626d879e325c363f8dc05586141816144af565b73666b2a8558121464dfc3bd5a330626d879e325c363a76d54ff866040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b1580156141d057600080fd5b505af41580156141e4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561420d57600080fd5b8101908080516040519392919084600160201b82111561422c57600080fd5b90830190602082018581111561424157600080fd5b8251600160201b81118282018810171561425a57600080fd5b82525081516020918201929091019080838360005b8381101561428757818101518382015260200161426f565b50505050905090810190601f1680156142b45780820380516001836020036101000a031916815260200191505b506040525050506040518363ffffffff1660e01b8152600401808060200180602001838103835285818151815260200191508051906020019080838360005b8381101561430b5781810151838201526020016142f3565b50505050905090810190601f1680156143385780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561436b578181015183820152602001614353565b50505050905090810190601f1680156143985780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038186803b1580156143b757600080fd5b505af41580156143cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156143f457600080fd5b8101908080516040519392919084600160201b82111561441357600080fd5b90830190602082018581111561442857600080fd5b8251600160201b81118282018810171561444157600080fd5b82525081516020918201929091019080838360005b8381101561446e578181015183820152602001614456565b50505050905090810190601f16801561449b5780820380516001836020036101000a031916815260200191505b506040525050509050919050565b60055481565b60178054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b60075481565b60045481565b60006024611f3083613810565b60188054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156118ec5780601f106118c1576101008083540402835291602001916118ec565b6001600160a01b03918216600090815260136020908152604080832093909416825291909152205460ff1690565b600081815260126020526040812054806146035760405162461bcd60e51b8152600401808060200182810382526028815260200180615b1b6028913960400191505060405180910390fd5b428111156146425760405162461bcd60e51b815260040180806020018281038252602d815260200180615bfa602d913960400191505060405180910390fd5b6360e5dd9081101561465557506360e5dd905b804211614666576001915050611795565b60006146724283614f84565b90506001805b60048110156146ac5761468e8162015180614e7d565b831061469f576001909101906146a4565b6146ac565b600101614678565b50949350505050565b6000611920601b83614fc6565b60009081526022602052604090205490565b6146dc61486b565b6000546001600160a01b0390811691161461472c576040805162461bcd60e51b81526020600482018190526024820152600080516020615ce9833981519152604482015290519081900360640190fd5b6001600160a01b0381166147715760405162461bcd60e51b8152600401808060200182810382526026815260200180615a3c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006360df461042101561481e576040805162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000614828611cb2565b9050611770811061483d5750506009546118f4565b6107d081106148505750506008546118f4565b50506007546118f4565b5090565b6000611920600d83614fc6565b3390565b6000818152600f6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906148a482612629565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061192082614fd2565b60006148f38261485e565b61492e5760405162461bcd60e51b815260040180806020018281038252602c815260200180615b43602c913960400191505060405180910390fd5b600061493983612629565b9050806001600160a01b0316846001600160a01b031614806149745750836001600160a01b031661496984611926565b6001600160a01b0316145b806149845750614984818561458a565b949350505050565b826001600160a01b031661499f82612629565b6001600160a01b0316146149e45760405162461bcd60e51b8152600401808060200182810382526029815260200180615d096029913960400191505060405180910390fd5b6001600160a01b038216614a295760405162461bcd60e51b8152600401808060200182810382526024815260200180615af76024913960400191505060405180910390fd5b614a34838383614fd6565b614a3f60008261486f565b6001600160a01b0383166000908152600c60205260409020614a619082615033565b506001600160a01b0382166000908152600c60205260409020614a849082614c05565b50614a91600d8284614bef565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611db4838361503f565b806024614af084613810565b6040518082805190602001908083835b60208310614b1f5780518252601f199092019160209182019101614b00565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220805460ff19169315159390931790925550505050565b6000808080614b6f86866150a3565b9097909650945050505050565b600061498484848461511e565b806011614af084613810565b600082820183811015611db4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061498484846001600160a01b0385166151e8565b6000611db4838361527f565b6000614c1c836118f7565b614c6d576040805162461bcd60e51b815260206004820152601c60248201527f4e6f646520697320616c726561647920756e7265676973746572656400000000604482015290519081900360640190fd5b6000838152601f602090815260408083204290556023825291829020805483518184028101840190945280845260609392830182828015614ccd57602002820191906000526020600020905b815481526020019060010190808311614cb9575b5050505050905060005b8151811015614d12576000828281518110614cee57fe5b60209081029190910181015160009081526022909152604081205550600101614cd7565b506000848152601d602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452614d7e939283018282801561245a5780601f1061242f5761010080835404028352916020019161245a565b600160255410614d9a57602554614d96906001614f84565b6025555b6000848152601d602090815260409182902082516001600160a01b0387169281019290925282825280546002600019610100600184161502019091160492820183905286927f8618317980f672b0f16ee204b39b9a8415354086f3cabf8bfbcc159721ec608e9287918190606082019085908015614e595780601f10614e2e57610100808354040283529160200191614e59565b820191906000526020600020905b815481529060010190602001808311614e3c57829003601f168201915b5050935050505060405180910390a25050506000908152601f602052604090205490565b600082614e8c57506000611920565b82820282848281614e9957fe5b0414611db45760405162461bcd60e51b8152600401808060200182810382526021815260200180615c746021913960400191505060405180910390fd5b611cae8282604051806020016040528060008152506152c9565b6000611db483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061531b565b614f3d84848461498c565b614f4984848484615380565b61402a5760405162461bcd60e51b8152600401808060200182810382526032815260200180615a0a6032913960400191505060405180910390fd5b6000611db483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506154e8565b6000611db48383615542565b5490565b6000614fe1826146c2565b9050600081118015614ff75750614ff7816118f7565b801561501d575061500781612e98565b6001600160a01b0316836001600160a01b031614155b1561402a5761502c8185614c11565b5050505050565b6000611db4838361555a565b815460009082106150815760405162461bcd60e51b81526004018080602001828103825260228152602001806159aa6022913960400191505060405180910390fd5b82600001828154811061509057fe5b9060005260206000200154905092915050565b8154600090819083106150e75760405162461bcd60e51b8152600401808060200182810382526022815260200180615c276022913960400191505060405180910390fd5b60008460000184815481106150f857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816151b95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561517e578181015183820152602001615166565b50505050905090810190601f1680156151ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106151cc57fe5b9060005260206000209060020201600101549150509392505050565b60008281526001840160205260408120548061524d575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611db4565b8285600001600183038154811061526057fe5b9060005260206000209060020201600101819055506000915050611db4565b600061528b8383615542565b6152c157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611920565b506000611920565b6152d38383615620565b6152e06000848484615380565b611a5e5760405162461bcd60e51b8152600401808060200182810382526032815260200180615a0a6032913960400191505060405180910390fd5b6000818361536a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561517e578181015183820152602001615166565b50600083858161537657fe5b0495945050505050565b6000615394846001600160a01b031661574e565b6153a057506001614984565b60606154ae630a85bd0160e11b6153b561486b565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561541c578181015183820152602001615404565b50505050905090810190601f1680156154495780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001615a0a603291396001600160a01b0388169190615754565b905060008180602001905160208110156154c757600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000818484111561553a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561517e578181015183820152602001615166565b505050900390565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015615616578354600019808301919081019060009087908390811061558d57fe5b90600052602060002001549050808760000184815481106155aa57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806155da57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611920565b6000915050611920565b6001600160a01b03821661567b576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6156848161485e565b156156d6576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6156e260008383614fd6565b6001600160a01b0382166000908152600c602052604090206157049082614c05565b50615711600d8284614bef565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b60606149848484600085856157688561574e565b6157b9576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106157f85780518252601f1990920191602091820191016157d9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461585a576040519150601f19603f3d011682016040523d82523d6000602084013e61585f565b606091505b509150915061586f82828661587a565b979650505050505050565b60608315615889575081611db4565b8251156158995782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561517e578181015183820152602001615166565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061592157805160ff191683800117855561594e565b8280016001018555821561594e579182015b8281111561594e578251825591602001919060010190615933565b5061485a929150615994565b82805482825590600052602060002090810192821561594e579160200282018281111561594e578251825591602001919060010190615933565b5b8082111561485a576000815560010161599556fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473446973747269627574696f6e20706572696f64206d757374206265206f76657220746f2073657420746865207374617274696e67496e646578426c6f636b4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735072696365206d7573742062652073657420616e642067726561746572207468616e20304e657720757365726e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a2063616c6c6572206973206e6f7420746865206e6f6465206f776e6572546f6b656e20776974682073706563696669656420494420646f6573206e6f742065786973744552433732313a207472616e7366657220746f20746865207a65726f20616464726573734d696e742074696d65206d7573742062652073657420616e642067726561746572207468616e20304552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e742074696d652063616e6e6f742062652067726561746572207468616e2063757272656e742074696d65456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473496e76616c6964206e756d626572206f6620746f6b656e49647320666f722074797065206f66206e6f6465536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4e6f6465206e616d65206368616e676573206172652063757272656e746c792064697361626c65644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e416c6c2053706972697473206d7573742062652066756c6c79206177616b656e656420746f206265207265676973746572656420746f2061206e6f64654e6577206e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a20617070726f76616c20746f2063757272656e74206f776e6572596f75206d6179206e6f7420627579206d6f7265207468616e203235204e465473206174206f6e63654e6f646520776974682073706563696669656420696420646f6573206e6f742065786973744552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e74206e6f6465a26469706673582212206c5bdf97bca4e2b7f52756ad5964b42acd9253b29956831a8628340e80f93be564736f6c63430007000033

Libraries Used


Deployed Bytecode Sourcemap

1728:39076:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938:142:2;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;938:142:2;-1:-1:-1;;;;;;938:142:2;;:::i;:::-;;;;;;;;;;;;;;;;;;14023:123:13;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14023:123:13;;:::i;:::-;;;;;;;;;;;;;;;;4259:42;;;;;;;;;;;;;:::i;15648:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15648:121:13;-1:-1:-1;;;;;15648:121:13;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16354:92;;;;;;;;;;;;;:::i;14623:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14623:156:13;;:::i;29390:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29390:213:13;;:::i;:::-;;;;-1:-1:-1;;;;;29390:213:13;;;;;;;;;;;;;;28934:390;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28934:390:13;;;;;;;;:::i;:::-;;20386:115;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20386:115:13;;:::i;20954:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20954:122:13;;;;:::i;19656:562::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19656:562:13;;;;;;;:::i;16925:203::-;;;;;;;;;;;;;:::i;13447:117::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13447:117:13;;:::i;14878:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14878:133:13;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30264:305;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30264:305:13;;;;;;;;;;;;;;;;;:::i;2546:52::-;;;;;;;;;;;;;:::i;16695:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16695:154:13;;;;;;;;:::i;20670:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20670:115:13;;:::i;2327:59::-;;;;;;;;;;;;;:::i;18922:101::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18922:101:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18922:101:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18922:101:13;;-1:-1:-1;18922:101:13;;-1:-1:-1;;;;;18922:101:13:i;28382:131::-;;;;;;;;;;;;;:::i;13645:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13645:127:13;;:::i;17447:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17447:154:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17447:154:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17447:154:13;;-1:-1:-1;17447:154:13;;-1:-1:-1;;;;;17447:154:13:i;21760:252::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21760:252:13;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14245:127;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14245:127:13;;:::i;30640:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30640:151:13;;;;;;;;;;;;;;;;;:::i;12453:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12453:215:13;-1:-1:-1;;;;;12453:215:13;;:::i;12291:105::-;;;;;;;;;;;;;:::i;27317:969::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27317:969:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27317:969:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27317:969:13;;-1:-1:-1;27317:969:13;;-1:-1:-1;;;;;27317:969:13:i;2208:83::-;;;;;;;;;;;;;:::i;17205:164::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17205:164:13;;:::i;19150:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19150:123:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19150:123:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19150:123:13;;-1:-1:-1;19150:123:13;;-1:-1:-1;;;;;19150:123:13:i;14432:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14432:123:13;;:::i;2481:52::-;;;;;;;;;;;;;:::i;16118:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16118:169:13;;:::i;17707:135::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17707:135:13;;:::i;28683:189::-;;;;;;;;;;;;;:::i;15837:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15837:215:13;-1:-1:-1;;;;;15837:215:13;;:::i;1188:148:11:-;;;;;;;;;;;;;:::i;25604:776:13:-;;;;;;;;;;;;;:::i;26451:780::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;26451:780:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;26451:780:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26451:780:13;;-1:-1:-1;26451:780:13;;-1:-1:-1;;;;;26451:780:13:i;12710:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12710:169:13;;:::i;8564:2084::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8564:2084:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8564:2084:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8564:2084:13;;;;;;;;-1:-1:-1;8564:2084:13;;-1:-1:-1;;;;;8564:2084:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8564:2084:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8564:2084:13;;-1:-1:-1;;8564:2084:13;;;-1:-1:-1;8564:2084:13;;-1:-1:-1;;8564:2084:13:i;12947:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12947:151:13;;;;;;;;:::i;10660:284::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10660:284:13;;:::i;546:79:11:-;;;;;;;;;;;;;:::i;24243:1298:13:-;;;;;;;;;;;;;;;;-1:-1:-1;24243:1298:13;;:::i;40295:506::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40295:506:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40295:506:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40295:506:13;;-1:-1:-1;40295:506:13;;-1:-1:-1;;;;;40295:506:13:i;2019:57::-;;;;;;;;;;;;;:::i;13184:199::-;;;;;;;;;;;;;:::i;16515:96::-;;;;;;;;;;;;;:::i;2849:50::-;;;;;;;;;;;;;:::i;39359:864::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39359:864:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39359:864:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39359:864:13;;-1:-1:-1;39359:864:13;;-1:-1:-1;;;;;39359:864:13:i;29675:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29675:295:13;;;;;;;;;;:::i;13839:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13839:115:13;;:::i;21420:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21420:218:13;;;;;;;;;;;;:::i;22125:458::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22125:458:13;;;;;;;:::i;11808:396::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11808:396:13;;:::i;:::-;;;;;-1:-1:-1;;;;;11808:396:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11808:396:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2427:45;;;;;;;;;;;;;:::i;30862:285::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30862:285:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30862:285:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30862:285:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30862:285:13;;-1:-1:-1;30862:285:13;;-1:-1:-1;;;;;30862:285:13:i;19404:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19404:103:13;;;;:::i;2792:50::-;;;;;;;;;;;;;:::i;21197:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21197:118:13;;;;;;;;;:::i;18052:280::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18052:280:13;;:::i;2649:28::-;;;;;;;;;;;;;:::i;18458:94::-;;;;;;;;;;;;;:::i;2735:50::-;;;;;;;;;;;;;:::i;2607:33::-;;;;;;;;;;;;;:::i;15077:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15077:154:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15077:154:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15077:154:13;;-1:-1:-1;15077:154:13;;-1:-1:-1;;;;;15077:154:13:i;18698:97::-;;;;;;;;;;;;;:::i;30041:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30041:156:13;;;;;;;;;;:::i;22699:930::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22699:930:13;;:::i;15454:126::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15454:126:13;;:::i;15311:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15311:131:13;;:::i;1491:244:11:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1491:244:11;-1:-1:-1;;;;;1491:244:11;;:::i;23691:501:13:-;;;;;;;;;;;;;:::i;938:142:2:-;-1:-1:-1;;;;;;1039:33:2;;1015:4;1039:33;;;:20;:33;;;;;;;;938:142;;;;:::o;14023:123:13:-;14090:7;14117:21;;;:13;:21;;;;;;;14023:123::o;4259:42::-;;;;;;:::o;15648:121::-;-1:-1:-1;;;;;15744:17:13;;;;;;:10;:17;;;;;;;;;15737:24;;;;;;-1:-1:-1;;15737:24:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15711:13;;15737:24;;;15744:17;15737:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15648:121;;;:::o;16354:92::-;16433:5;16426:12;;;;;;;;-1:-1:-1;;16426:12:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16400:13;;16426:12;;16433:5;;16426:12;;16433:5;16426:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16354:92;;:::o;14623:156::-;14689:4;14713:21;;;:13;:21;;;;;;:26;;;;:58;;-1:-1:-1;14743:23:13;;;;:15;:23;;;;;;:28;14713:58;14706:65;14623:156;-1:-1:-1;;14623:156:13:o;29390:213::-;29458:7;29486:16;29494:7;29486;:16::i;:::-;29478:73;;;;-1:-1:-1;;;29478:73:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29571:24:13;;;;:15;:24;;;;;;-1:-1:-1;;;;;29571:24:13;;29390:213::o;28934:390::-;29015:13;29031:16;29039:7;29031;:16::i;:::-;29015:32;;29072:5;-1:-1:-1;;;;;29066:11:13;:2;-1:-1:-1;;;;;29066:11:13;;;29058:57;;;;-1:-1:-1;;;29058:57:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29152:5;-1:-1:-1;;;;;29136:21:13;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29136:21:13;;:62;;;;29161:37;29178:5;29185:12;:10;:12::i;:::-;29161:16;:37::i;:::-;29128:154;;;;-1:-1:-1;;;29128:154:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29295:21;29304:2;29308:7;29295:8;:21::i;:::-;28934:390;;;:::o;20386:115::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;20466:19:13::1;:27:::0;20386:115::o;20954:122::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;21036:22:13::1;:32:::0;;-1:-1:-1;;21036:32:13::1;::::0;::::1;;::::0;;;::::1;::::0;;20954:122::o;19656:562::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;2468:4:13::1;19751:13;:11;:13::i;:::-;:30;19743:65;;;::::0;;-1:-1:-1;;;19743:65:13;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;19743:65:13;;;;;;;;;;;;;::::1;;19837:1;19827:7;:11;:26;;;;;19852:1;19842:7;:11;19827:26;19819:71;;;::::0;;-1:-1:-1;;;19819:71:13;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;19917:1;19909:5;:9;19901:58;;;;-1:-1:-1::0;;;19901:58:13::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19983:7;19994:1;19983:12;19980:231;;;20012:15;:23:::0;;;19980:231:::1;;;20065:7;20076:1;20065:12;20062:149;;;20094:15;:23:::0;;;20062:149:::1;;;20147:7;20158:1;20147:12;20144:67;;;20176:15;:23:::0;;;20144:67:::1;19656:562:::0;;:::o;16925:203::-;16978:7;17099:21;:12;:19;:21::i;:::-;17092:28;;16925:203;:::o;13447:117::-;13511:7;13538:18;;;:10;:18;;;;;;;13447:117::o;14878:133::-;14982:21;;;;:13;:21;;;;;;;;;14975:28;;;;;;;;;;;;;;;;;14946:16;;14975:28;;;14982:21;14975:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14878:133;;;:::o;30264:305::-;30425:41;30444:12;:10;:12::i;:::-;30458:7;30425:18;:41::i;:::-;30417:103;;;;-1:-1:-1;;;30417:103:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30533:28;30543:4;30549:2;30553:7;30533:9;:28::i;2546:52::-;;;;:::o;16695:154::-;-1:-1:-1;;;;;16811:20:13;;16784:7;16811:20;;;:13;:20;;;;;:30;;16835:5;16811:23;:30::i;:::-;16804:37;16695:154;-1:-1:-1;;;16695:154:13:o;20670:115::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;20750:19:13::1;:27:::0;20670:115::o;2327:59::-;2376:9;2327:59;:::o;18922:101::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;18997:18:13;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;28382:131::-:0;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;28477:28:13::1;::::0;28445:21:::1;::::0;28477:10:::1;::::0;:28;::::1;;;::::0;28445:21;;28430:12:::1;28477:28:::0;28430:12;28477:28;28445:21;28477:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;13645:127:::0;13709:7;13736:21;;;:13;:21;;;;;:28;;13645:127::o;17447:154::-;17531:4;17555:17;17573:19;17581:10;17573:7;:19::i;:::-;17555:38;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17555:38:13;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17555:38:13;;;;;;;;;;;;;;;;-1:-1:-1;17555:38:13;;;;;;;;;;;;;;17447:154;-1:-1:-1;;;;17447:154:13:o;21760:252::-;21840:7;21883:34;;;:25;:34;;;;;;;;;21942:25;:34;;;;;;;21883;;21760:252::o;14245:127::-;14314:7;14341:23;;;:15;:23;;;;;;;14245:127::o;30640:151::-;30744:39;30761:4;30767:2;30771:7;30744:39;;;;;;;;;;;;:16;:39::i;12453:215::-;12521:7;-1:-1:-1;;;;;12549:19:13;;12541:74;;;;-1:-1:-1;;;12541:74:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12633:18:13;;;;;;:11;:18;;;;;:27;;:25;:27::i;12291:105::-;12376:12;;12291:105;:::o;27317:969::-;27406:22;;;;:30;;:22;:30;27398:83;;;;-1:-1:-1;;;27398:83:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27492:13;27508:19;27520:6;27508:11;:19::i;:::-;27492:35;;27562:5;-1:-1:-1;;;;;27546:21:13;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27546:21:13;;27538:70;;;;-1:-1:-1;;;27538:70:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27627:21;27640:7;27627:12;:21::i;:::-;:29;;27652:4;27627:29;27619:62;;;;;-1:-1:-1;;;27619:62:13;;;;;;;;;;;;-1:-1:-1;;;27619:62:13;;;;;;;;;;;;;;;27726:33;27739:10;:18;27750:6;27739:18;;;;;;;;;;;27726:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27726:33:13;27700:22;;;;;;27713:7;;27700:22;;27726:33;27700:22;;;;;;;;;;;;;;;;-1:-1:-1;;27700:22:13;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27700:22:13;;;;;;;;;;;;;;;;;;-1:-1:-1;27700:22:13;;-1:-1:-1;;27700:22:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27700:22:13;:59;;27692:107;;;;-1:-1:-1;;;27692:107:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27818:27;27837:7;27818:18;:27::i;:::-;:36;27810:70;;;;;-1:-1:-1;;;27810:70:13;;;;;;;;;;;;-1:-1:-1;;;27810:70:13;;;;;;;;;;;;;;;27898:11;;27949:19;;27893:76;;;-1:-1:-1;;;27893:76:13;;27924:10;27893:76;;;;-1:-1:-1;;;;;27898:11:13;;;27893:76;;;;;;;;;;;;;;27898:11;;27893:30;;:76;;;;;;;;;;;;;;27898:11;;27893:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28068:1:13;28039:18;;;:10;27893:76;28039:18;;;;28033:32;;-1:-1:-1;;28033:32:13;;;;;;;;;;;:36;28029:117;;28108:18;;;;:10;:18;;;;;;;;;28086:48;;;;;;-1:-1:-1;;28086:48:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28108:18;28086:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28128:5;28086:21;:48::i;:::-;28156:36;28178:7;28187:4;28156:21;:36::i;:::-;28203:18;;;;:10;:18;;;;;;;;:28;;;;;;;;:::i;:::-;;28262:6;28247:31;28270:7;28247:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27317:969;;;:::o;2208:83::-;2257:34;2208:83;:::o;17205:164::-;17272:7;;17314:22;:12;17330:5;17314:15;:22::i;:::-;-1:-1:-1;17292:44:13;17205:164;-1:-1:-1;;;17205:164:13:o;19150:123::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;19236:29:13;;::::1;::::0;:12:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;14432:123::-:0;14529:18;;;;:10;:18;;;;;;;;;14522:25;;;;;;-1:-1:-1;;14522:25:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14496:13;;14522:25;;;14529:18;14522:25;;;;;;;;;;;;;;;;;;;;;;;;2481:52;;;;:::o;16118:169::-;16182:7;16209:70;16226:7;16209:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;17707:135::-;17784:7;17811:23;;;:16;:23;;;;;;;17707:135::o;28683:189::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;28754:11:13::1;::::0;28749:40:::1;::::0;;-1:-1:-1;;;28749:40:13;;-1:-1:-1;;;;;28754:11:13;;::::1;28749:40;::::0;::::1;::::0;;;;;28734:12:::1;::::0;28749:27:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;28754:11;28749:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28749:40:13;28805:11:::1;::::0;28800:64:::1;::::0;;-1:-1:-1;;;28800:64:13;;-1:-1:-1;;;;;28805:11:13;;::::1;28800:64;::::0;::::1;::::0;;;28844:10:::1;28800:64:::0;;;;;;;;;;;;28749:40;;-1:-1:-1;28805:11:13;28800:30:::1;::::0;:64;;;;;28749:40:::1;::::0;28800:64;;;;;;;;28805:11:::1;::::0;28800:64;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;15837:215:::0;15901:7;-1:-1:-1;;;;;15929:19:13;;15921:74;;;;-1:-1:-1;;;15921:74:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16015:20:13;;;;;;:13;:20;;;;;:29;;:27;:29::i;1188:148:11:-;768:12;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;1295:1:::1;1279:6:::0;;1258:40:::1;::::0;-1:-1:-1;;;;;1279:6:11;;::::1;::::0;1258:40:::1;::::0;1295:1;;1258:40:::1;1326:1;1309:19:::0;;-1:-1:-1;;;;;;1309:19:11::1;::::0;;1188:148::o;25604:776:13:-;25663:13;;:18;25655:60;;;;;-1:-1:-1;;;25655:60:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;25739:18;;25736:219;;2257:34;25787:15;:41;;25779:116;;;;-1:-1:-1;;;25779:116:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25931:12;25910:18;:33;25736:219;25973:18;;25965:68;;;;;-1:-1:-1;;;25965:68:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26093:51;;;26110:15;26093:51;;;;;;;;26127:16;26093:51;;;;;;;;;;;;;;;;;;;;26083:62;;;;;2468:4;26083:62;26183:27;26167:13;:43;;;26273:18;;:53;;;2468:4;26295:13;;:31;;26273:53;26269:103;;;26359:1;26343:13;:17;26269:103;25604:776;:::o;26451:780::-;26516:14;26533:12;:10;:12::i;:::-;26516:29;;26564:21;26577:7;26564:12;:21::i;:::-;:29;;26589:4;26564:29;26556:62;;;;;-1:-1:-1;;;26556:62:13;;;;;;;;;;;;-1:-1:-1;;;26556:62:13;;;;;;;;;;;;;;;26663:33;26676:10;:18;26687:6;-1:-1:-1;;;;;26676:18:13;-1:-1:-1;;;;;26676:18:13;;;;;;;;;;;;26663:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26663:33:13;26637:22;;;;;;26650:7;;26637:22;;26663:33;26637:22;;;;;;;;;;;;;;;;-1:-1:-1;;26637:22:13;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26637:22:13;;;;;;;;;;;;;;;;;;-1:-1:-1;26637:22:13;;-1:-1:-1;;26637:22:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26637:22:13;:59;;26629:111;;;;-1:-1:-1;;;26629:111:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26759:27;26778:7;26759:18;:27::i;:::-;:36;26751:74;;;;;-1:-1:-1;;;26751:74:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;26843:11;;26894:19;;26838:76;;;-1:-1:-1;;;26838:76:13;;26869:10;26838:76;;;;-1:-1:-1;;;;;26843:11:13;;;26838:76;;;;;;;;;;;;;;26843:11;;26838:30;;:76;;;;;;;;;;;;;;26843:11;;26838:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;26984:18:13;;27013:1;26984:18;;;:10;26838:76;26984:18;;;;26978:32;;-1:-1:-1;;26978:32:13;;;;;;;;;;;:36;26974:117;;-1:-1:-1;;;;;27053:18:13;;;;;;:10;:18;;;;;;;;;27031:48;;;;;;-1:-1:-1;;27031:48:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27053:18;27031:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27073:5;27031:21;:48::i;:::-;27101:36;27123:7;27132:4;27101:21;:36::i;:::-;-1:-1:-1;;;;;27148:18:13;;;;;;:10;:18;;;;;;;;:28;;;;;;;;:::i;:::-;;27192:31;27207:6;27215:7;27192:31;;;;-1:-1:-1;;;;;27192:31:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26451:780;;:::o;12710:169::-;12777:7;12804:67;12820:6;12804:67;;;;;;;;;;;;;;;;;:11;;:67;:15;:67::i;8564:2084::-;8673:7;8702:8;:15;8721:1;8702:20;:58;;;;;8727:9;8740:1;8727:14;:32;;;;8745:9;8758:1;8745:14;8727:32;8701:105;;;;8766:8;:15;8785:2;8766:21;:39;;;;;8791:9;8804:1;8791:14;8766:39;8701:149;;;;8811:8;:15;8830:1;8811:20;:38;;;;;8835:9;8848:1;8835:14;8811:38;8693:205;;;;-1:-1:-1;;;8693:205:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8917:23;8930:9;8917:12;:23::i;:::-;8909:57;;;;;-1:-1:-1;;;8909:57:13;;;;;;;;;;;;-1:-1:-1;;;8909:57:13;;;;;;;;;;;;;;;8986:29;9005:9;8986:18;:29::i;:::-;8985:30;8977:64;;;;;-1:-1:-1;;;8977:64:13;;;;;;;;;;;;-1:-1:-1;;;8977:64:13;;;;;;;;;;;;;;;9052:14;9069:12;:10;:12::i;:::-;9052:29;;9097:6;9092:587;9113:8;:15;9109:1;:19;9092:587;;;9240:1;9236:5;;9222:141;9247:8;:15;9243:1;:19;9222:141;;;9310:8;9319:1;9310:11;;;;;;;;;;;;;;9295:8;9304:1;9295:11;;;;;;;;;;;;;;:26;;9287:60;;;;;-1:-1:-1;;;9287:60:13;;;;;;;;;;;;-1:-1:-1;;;9287:60:13;;;;;;;;;;;;;;;9264:3;;9222:141;;;;9395:20;9403:8;9412:1;9403:11;;;;;;;;;;;;;;9395:7;:20::i;:::-;-1:-1:-1;;;;;9385:30:13;:6;-1:-1:-1;;;;;9385:30:13;;9377:70;;;;;-1:-1:-1;;;9377:70:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;9470:30;9488:8;9497:1;9488:11;;;;;;;;;;;;;;9470:17;:30::i;:::-;:35;9462:80;;;;;-1:-1:-1;;;9462:80:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9600:1;9565:31;9584:8;9593:1;9584:11;;;;;;;;;;;;;;9565:18;:31::i;:::-;:36;;9557:110;;;;-1:-1:-1;;;9557:110:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9130:3;;9092:587;;;;9725:14;9742:19;9759:1;9742:12;:10;:12::i;:::-;:16;;:19::i;:::-;9725:36;-1:-1:-1;9772:31:13;:11;9725:36;9796:6;9772:15;:31::i;:::-;-1:-1:-1;;;;;;9814:19:13;;;;;;:11;:19;;;;;:31;;9838:6;9814:23;:31::i;:::-;-1:-1:-1;9856:18:13;;;;:10;:18;;;;;;;:30;;;9897:13;:21;;;;;9921:15;9897:39;;9947:15;:23;;;;;:27;;;9985:13;:21;;;;;:32;;;;;;;;:::i;:::-;;10087:9;10100:1;10087:14;:32;;;;10105:9;10118:1;10105:14;10087:32;10084:214;;;10136:18;;;;:10;:18;;;;;:25;;-1:-1:-1;;10136:25:13;10157:4;10136:25;;;10084:214;;;10281:5;10260:18;;;:10;:18;;;;;:26;;-1:-1:-1;;10260:26:13;;;10084:214;10323:6;10318:105;10339:8;:15;10335:1;:19;10318:105;;;10405:6;10376:13;:26;10390:8;10399:1;10390:11;;;;;;;;;;;;;;;;;;;10376:26;;;;;;;;;;-1:-1:-1;10376:26:13;:35;10356:3;;10318:105;;;;10435:38;10457:9;10468:4;10435:21;:38::i;:::-;10484:18;;;;:10;:18;;;;;;;;:30;;;;;;;;:::i;:::-;-1:-1:-1;10540:12:13;;:19;;10557:1;10540:16;:19::i;:::-;10525:12;:34;;;;10590:6;10575:41;10598:9;10609:6;10575:41;;;;;;;-1:-1:-1;;;;;10575:41:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10634:6;8564:2084;-1:-1:-1;;;;;8564:2084:13:o;12947:151::-;-1:-1:-1;;;;;13062:18:13;;13035:7;13062:18;;;:11;:18;;;;;:28;;13084:5;13062:21;:28::i;10660:284::-;10718:14;10735:12;:10;:12::i;:::-;10718:29;;10776:19;10788:6;10776:11;:19::i;:::-;-1:-1:-1;;;;;10766:29:13;:6;-1:-1:-1;;;;;10766:29:13;;10758:66;;;;;-1:-1:-1;;;10758:66:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;10843:18;10854:6;10843:10;:18::i;:::-;10835:59;;;;;-1:-1:-1;;;10835:59:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;10905:31;10921:6;10929;10905:15;:31::i;546:79:11:-;584:7;611:6;-1:-1:-1;;;;;611:6:11;546:79;:::o;24243:1298:13:-;2066:10;24316:15;:39;;24308:72;;;;;-1:-1:-1;;;24308:72:13;;;;;;;;;;;;-1:-1:-1;;;24308:72:13;;;;;;;;;;;;;;;24400:11;;;;24399:12;24391:45;;;;;-1:-1:-1;;;24391:45:13;;;;;;;;;;;;-1:-1:-1;;;24391:45:13;;;;;;;;;;;;;;;2468:4;24455:13;:11;:13::i;:::-;:30;24447:65;;;;;-1:-1:-1;;;24447:65:13;;;;;;;;;;;;-1:-1:-1;;;24447:65:13;;;;;;;;;;;;;;;24546:1;24531:12;:16;24523:53;;;;;-1:-1:-1;;;24523:53:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;24611:2;24595:12;:18;;24587:72;;;;-1:-1:-1;;;24587:72:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2468:4;24678:31;24696:12;24678:13;:11;:13::i;:31::-;:49;;24670:84;;;;;-1:-1:-1;;;24670:84:13;;;;;;;;;;;;-1:-1:-1;;;24670:84:13;;;;;;;;;;;;;;;24808:9;24773:31;24791:12;24773:13;:11;:13::i;:::-;:17;;:31::i;:::-;:44;24765:88;;;;;-1:-1:-1;;;24765:88:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;24871:6;24866:428;24887:12;24883:1;:16;24866:428;;;24921:14;24938:13;:11;:13::i;:::-;24921:30;;2468:4;25012:9;:26;25004:61;;;;;-1:-1:-1;;;25004:61:13;;;;;;;;;;;;-1:-1:-1;;;25004:61:13;;;;;;;;;;;;;;;25080:27;;;;:16;:27;;;;;;;;25110:15;25080:45;;25140:25;:36;;;;;25179:1;25140:40;;;;25195:25;:36;;;;;;:40;25250:32;25260:10;25097:9;25250;:32::i;:::-;-1:-1:-1;24901:3:13;;24866:428;;;-1:-1:-1;25367:18:13;;:23;:105;;;;;2468:4;25395:13;:11;:13::i;:::-;:31;;:76;;;-1:-1:-1;2257:34:13;25430:15;:41;;25395:76;25363:171;;;25510:12;25489:18;:33;24243:1298;:::o;40295:506::-;40352:13;40377:17;40403:3;40377:30;;40418:19;40450:4;:11;40440:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40440:22:13;;40418:44;;40478:6;40473:289;40494:4;:11;40490:1;:15;40473:289;;;40586:2;40574:4;40579:1;40574:7;;;;;;;;;;;;;;40568:20;;;;40567:48;;;40612:2;40600:4;40605:1;40600:7;;;;;;;;;;;;;;40594:20;;40567:48;40563:188;;;40661:4;40666:1;40661:7;;;;;;;;;;;;;;;;40655:14;;40672:2;40655:19;40648:27;;40636:6;40643:1;40636:9;;;;;;;;;;;:39;-1:-1:-1;;;;;40636:39:13;;;;;;;;;40563:188;;;40728:4;40733:1;40728:7;;;;;;;;;;;;;;;;40716:6;40723:1;40716:9;;;;;;;;;;;:19;-1:-1:-1;;;;;40716:19:13;;;;;;;;;40563:188;40507:3;;40473:289;;2019:57;2066:10;2019:57;:::o;13184:199::-;13236:7;13355:20;:11;:18;:20::i;16515:96::-;16596:7;16589:14;;;;;;;;-1:-1:-1;;16589:14:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16563:13;;16589:14;;16596:7;;16589:14;;16596:7;16589:14;;;;;;;;;;;;;;;;;;;;;;;;2849:50;;;;:::o;39359:864::-;39421:4;39437:14;39460:3;39437:27;;39489:1;39478;:8;:12;39475:29;;;39499:5;39492:12;;;;;39475:29;39529:2;39518:1;:8;:13;39515:30;;;39540:5;39533:12;;;;;39515:30;39598:1;39600;39598:4;;;;;;;;;;;;;-1:-1:-1;;;;;;39598:4:13;-1:-1:-1;;;39598:12:13;39595:29;;;39619:5;39612:12;;;;;39595:29;39656:1;39669;39658;:8;:12;39656:15;;;;;;;;;;;;;-1:-1:-1;;;;;;39656:15:13;-1:-1:-1;;;39656:23:13;39652:41;;;39688:5;39681:12;;;;;39652:41;39724:15;39742:1;39744;39742:4;;;;;;;;;;;;-1:-1:-1;;;;;;39742:4:13;;-1:-1:-1;39763:6:13;39759:433;39773:1;:8;39771:1;:10;39759:433;;;39802:11;39816:1;39818;39816:4;;;;;;;;;;;;-1:-1:-1;;;;;;39816:4:13;;-1:-1:-1;;;;39841:12:13;;;:32;;-1:-1:-1;;;;;;;;;;39857:16:13;;;39841:32;39837:50;;;39882:5;39875:12;;;;;;;;39837:50;-1:-1:-1;;;;;;;;;39952:12:13;;;;;;:28;;-1:-1:-1;;;;;;;;;;39968:12:13;;;;39952:28;39950:31;:89;;;;-1:-1:-1;;;;;;;;;;40010:12:13;;;;;;:28;;-1:-1:-1;;;;;;;;;;40026:12:13;;;;40010:28;40008:31;39950:89;:147;;;;-1:-1:-1;;;;;;;;;;40068:12:13;;;;;;:28;;-1:-1:-1;;;;;;;;;;40084:12:13;;;;40068:28;40066:31;39950:147;39929:219;;;40143:5;40136:12;;;;;;;;39929:219;40176:4;-1:-1:-1;39783:3:13;;39759:433;;;-1:-1:-1;40211:4:13;;39359:864;-1:-1:-1;;;;39359:864:13:o;29675:295::-;29790:12;:10;:12::i;:::-;-1:-1:-1;;;;;29778:24:13;:8;-1:-1:-1;;;;;29778:24:13;;;29770:62;;;;;-1:-1:-1;;;29770:62:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;29890:8;29845:18;:32;29864:12;:10;:12::i;:::-;-1:-1:-1;;;;;29845:32:13;;;;;;;;;;;;;;;;;-1:-1:-1;29845:32:13;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29845:53:13;;;;;;;;;;;29929:12;:10;:12::i;:::-;-1:-1:-1;;;;;29914:48:13;;29953:8;29914:48;;;;;;;;;;;;;;;;;;;;29675:295;;:::o;13839:115::-;13904:4;13928:18;;;:10;:18;;;;;;;;;13839:115::o;21420:218::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;21533:34:13::1;::::0;;;:25:::1;:34;::::0;;;;;;;:43;;;;21587:25:::1;:34:::0;;;;:43;21420:218::o;22125:458::-;22222:7;22256:14;22295:8;22222:7;22332:29;22354:6;22333:15;22256:14;22341:6;22333:7;:15::i;:::-;22332:21;;:29::i;:::-;22314:47;;22391:3;22380:7;:14;;22372:51;;;;;-1:-1:-1;;;22372:51:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;22452:3;22442:7;:13;22434:48;;;;;-1:-1:-1;;;22434:48:13;;;;;;;;;;;;-1:-1:-1;;;22434:48:13;;;;;;;;;;;;;;;22511:3;22501:7;:13;22493:57;;;;;-1:-1:-1;;;22493:57:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;22568:7;22125:458;-1:-1:-1;;;;;22125:458:13:o;11808:396::-;11872:7;11881:13;11896:7;11905;11914;11923:4;11929:16;11966:18;11977:6;11966:10;:18::i;:::-;11958:68;;;;-1:-1:-1;;;11958:68:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12045:19;12057:6;12045:11;:19::i;:::-;12066:18;;;;:10;:18;;;;;;;;12086:13;:21;;;;;;12109:15;:23;;;;;;;12134:18;;;;;;;12154:10;:18;;;;;;12174:13;:21;;;;;;12037:159;;;;;-1:-1:-1;;12154:18:13;12037:159;;;12154:18;12037:159;;;;;;;;;;;;;;;;;;;;;;;;;;;12066:18;;12086:21;;12109:23;;12134:18;;12154;;;;;12174:21;12037:159;;12066:18;;12037:159;;;12066:18;12037:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11808:396;;;;;;;;;:::o;2427:45::-;2468:4;2427:45;:::o;30862:285::-;30994:41;31013:12;:10;:12::i;:::-;31027:7;30994:18;:41::i;:::-;30986:103;;;;-1:-1:-1;;;30986:103:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31100:39;31114:4;31120:2;31124:7;31133:5;31100:13;:39::i;:::-;30862:285;;;;:::o;19404:103::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;19475:11:13::1;:24:::0;;-1:-1:-1;;19475:24:13::1;::::0;::::1;;::::0;;;::::1;::::0;;19404:103::o;2792:50::-;;;;:::o;21197:118::-;768:12:11;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;21279:18:13::1;::::0;;;:10:::1;:18;::::0;;;;;:28;;-1:-1:-1;;21279:28:13::1;::::0;::::1;;::::0;;;::::1;::::0;;21197:118::o;18052:280::-;18110:13;18144:16;18152:7;18144;:16::i;:::-;18136:67;;;;-1:-1:-1;;;18136:67:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18221:7;:19;18255:14;:12;:14::i;:::-;18284:7;:20;18305:7;18284:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18284:29:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18284:29:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18284:29:13;;;;;;-1:-1:-1;18284:29:13;;;;;;;;;;-1:-1:-1;18284:29:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18221:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18221:103:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18221:103:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18221:103:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18221:103:13;;;;;;-1:-1:-1;18221:103:13;;;;;;;;;;-1:-1:-1;18221:103:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18214:110;;18052:280;;;:::o;2649:28::-;;;;:::o;18458:94::-;18536:8;18529:15;;;;;;;;-1:-1:-1;;18529:15:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18503:13;;18529:15;;18536:8;;18529:15;;18536:8;18529:15;;;;;;;;;;;;;;;;;;;;;;;;2735:50;;;;:::o;2607:33::-;;;;:::o;15077:154::-;15161:4;15185:17;15203:19;15211:10;15203:7;:19::i;18698:97::-;18775:12;18768:19;;;;;;;;-1:-1:-1;;18768:19:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18742:13;;18768:19;;18775:12;;18768:19;;18775:12;18768:19;;;;;;;;;;;;;;;;;;;;;;;;30041:156;-1:-1:-1;;;;;30154:25:13;;;30130:4;30154:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30041:156::o;22699:930::-;22772:7;22811:23;;;:16;:23;;;;;;22853:12;22845:65;;;;-1:-1:-1;;;22845:65:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22941:15;22929:8;:27;;22921:85;;;;-1:-1:-1;;;22921:85:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2257:34;23030:33;;23027:98;;;-1:-1:-1;2257:34:13;23027:98;23167:8;23148:15;:27;23145:133;;23265:1;23258:8;;;;;23145:133;23298:15;23316:29;:15;23336:8;23316:19;:29::i;:::-;23298:47;-1:-1:-1;23382:1:13;;23394:202;23414:1;23410;:5;23394:202;;;23451:28;:1;2376:9;23451:5;:28::i;:::-;23440:7;:39;23437:148;;23500:10;;;;;23437:148;;;23564:5;;23437:148;23417:3;;23394:202;;;-1:-1:-1;23613:8:13;22699:930;-1:-1:-1;;;;22699:930:13:o;15454:126::-;15520:4;15544:28;:11;15565:6;15544:20;:28::i;15311:131::-;15385:7;15412:22;;;:13;:22;;;;;;;15311:131::o;1491:244:11:-;768:12;:10;:12::i;:::-;758:6;;-1:-1:-1;;;;;758:6:11;;;:22;;;750:67;;;;;-1:-1:-1;;;750:67:11;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;750:67:11;;;;;;;;;;;;;;;-1:-1:-1;;;;;1580:22:11;::::1;1572:73;;;;-1:-1:-1::0;;;1572:73:11::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682:6;::::0;;1661:38:::1;::::0;-1:-1:-1;;;;;1661:38:11;;::::1;::::0;1682:6;::::1;::::0;1661:38:::1;::::0;::::1;1710:6;:17:::0;;-1:-1:-1;;;;;;1710:17:11::1;-1:-1:-1::0;;;;;1710:17:11;;;::::1;::::0;;;::::1;::::0;;1491:244::o;23691:501:13:-;23735:7;2066:10;23763:15;:39;;23755:72;;;;;-1:-1:-1;;;23755:72:13;;;;;;;;;;;;-1:-1:-1;;;23755:72:13;;;;;;;;;;;;;;;23848:18;23869:13;:11;:13::i;:::-;23848:34;;23916:4;23899:13;:21;23895:290;;-1:-1:-1;;23944:15:13;;23937:22;;23895:290;24028:4;24011:13;:21;24007:178;;-1:-1:-1;;24056:15:13;;24049:22;;24007:178;-1:-1:-1;;24141:15:13;;24134:22;;24007:178;23691:501;;:::o;32614:119::-;32671:4;32695:30;:12;32717:7;32695:21;:30::i;543:106:1:-;631:10;543:106;:::o;37597:158:13:-;37663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37663:29:13;-1:-1:-1;;;;;37663:29:13;;;;;;;;:24;;37717:16;37663:24;37717:7;:16::i;:::-;-1:-1:-1;;;;;37708:39:13;;;;;;;;;;;37597:158;;:::o;7189:123:3:-;7258:7;7285:19;7293:3;7285:7;:19::i;32900:333:13:-;32985:4;33010:16;33018:7;33010;:16::i;:::-;33002:73;;;;-1:-1:-1;;;33002:73:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33086:13;33102:16;33110:7;33102;:16::i;:::-;33086:32;;33148:5;-1:-1:-1;;;;;33137:16:13;:7;-1:-1:-1;;;;;33137:16:13;;:51;;;;33181:7;-1:-1:-1;;;;;33157:31:13;:20;33169:7;33157:11;:20::i;:::-;-1:-1:-1;;;;;33157:31:13;;33137:51;:87;;;;33192:32;33209:5;33216:7;33192:16;:32::i;:::-;33129:96;32900:333;-1:-1:-1;;;;32900:333:13:o;35844:574::-;35962:4;-1:-1:-1;;;;;35942:24:13;:16;35950:7;35942;:16::i;:::-;-1:-1:-1;;;;;35942:24:13;;35934:78;;;;-1:-1:-1;;;35934:78:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36031:16:13;;36023:65;;;;-1:-1:-1;;;36023:65:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36101:39;36122:4;36128:2;36132:7;36101:20;:39::i;:::-;36205:29;36222:1;36226:7;36205:8;:29::i;:::-;-1:-1:-1;;;;;36247:19:13;;;;;;:13;:19;;;;;:35;;36274:7;36247:26;:35::i;:::-;-1:-1:-1;;;;;;36293:17:13;;;;;;:13;:17;;;;;:30;;36315:7;36293:21;:30::i;:::-;-1:-1:-1;36336:29:13;:12;36353:7;36362:2;36336:16;:29::i;:::-;;36402:7;36398:2;-1:-1:-1;;;;;36383:27:13;36392:4;-1:-1:-1;;;;;36383:27:13;;;;;;;;;;;35844:574;;;:::o;7853:137:4:-;7924:7;7959:22;7963:3;7975:5;7959:3;:22::i;39089:137:13:-;39209:9;39175:17;39193:12;39201:3;39193:7;:12::i;:::-;39175:31;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39175:31:13;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39175:31:13;;;;;;;;;;;;;;;;-1:-1:-1;39175:31:13;;;;;;;;;;:43;;-1:-1:-1;;39175:43:13;;;;;;;;;;;-1:-1:-1;;;;39089:137:13:o;7651:227:3:-;7731:7;;;;7791:22;7795:3;7807:5;7791:3;:22::i;:::-;7760:53;;;;-1:-1:-1;7651:227:3;-1:-1:-1;;;;;7651:227:3:o;8313:204::-;8420:7;8463:44;8468:3;8488;8494:12;8463:4;:44::i;38834:137:13:-;38954:9;38920:17;38938:12;38946:3;38938:7;:12::i;867:181:12:-;925:7;957:5;;;981:6;;;;973:46;;;;;-1:-1:-1;;;973:46:12;;;;;;;;;;;;;;;;;;;;;;;;;;;6382:176:3;6471:4;6495:55;6500:3;6520;-1:-1:-1;;;;;6534:14:3;;6495:4;:55::i;6633:131:4:-;6700:4;6724:32;6729:3;6749:5;6724:4;:32::i;10956:797:13:-;11030:7;11058:18;11069:6;11058:10;:18::i;:::-;11050:59;;;;;-1:-1:-1;;;11050:59:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;11207:23;;;;:15;:23;;;;;;;;11233:15;11207:41;;11287:13;:21;;;;;;11259:49;;;;;;;;;;;;;;;;;:25;;:49;;;11287:21;11259:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11324:6;11319:136;11340:8;:15;11336:1;:19;11319:136;;;11377:13;11393:8;11402:1;11393:11;;;;;;;;;;;;;;;;;;;11442:1;11419:20;;;:13;:20;;;;;;:24;-1:-1:-1;11357:3:13;;11319:136;;;-1:-1:-1;11518:18:13;;;;:10;:18;;;;;;;;;11496:48;;;;;;-1:-1:-1;;11496:48:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11518:18;11496:48;;;;;;;;;;;;;;;;;;;;;;;;;11574:1;11558:12;;:17;11555:83;;11607:12;;:19;;11624:1;11607:16;:19::i;:::-;11592:12;:34;11555:83;11678:18;;;;:10;:18;;;;;;;;;11653:51;;-1:-1:-1;;;;;11653:51:13;;;;;;;;;;;;;;;-1:-1:-1;;11653:51:13;;;;;;;;;;;;;;;;;11670:6;;11653:51;;11698:5;;11653:51;;;;;;11678:18;;11653:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11722:23:13;;;;:15;:23;;;;;;;10956:797::o;2221:471:12:-;2279:7;2524:6;2520:47;;-1:-1:-1;2554:1:12;2547:8;;2520:47;2591:5;;;2595:1;2591;:5;:1;2615:5;;;;;:10;2607:56;;;;-1:-1:-1;;;2607:56:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33576:110:13;33652:26;33662:2;33666:7;33652:26;;;;;;;;;;;;:9;:26::i;3168:132:12:-;3226:7;3253:39;3257:1;3260;3253:39;;;;;;;;;;;;;;;;;:3;:39::i;32029:272:13:-;32143:28;32153:4;32159:2;32163:7;32143:9;:28::i;:::-;32190:48;32213:4;32219:2;32223:7;32232:5;32190:22;:48::i;:::-;32182:111;;;;-1:-1:-1;;;32182:111:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1331:136:12;1389:7;1416:43;1420:1;1423;1416:43;;;;;;;;;;;;;;;;;:3;:43::i;6950:151:3:-;7034:4;7058:35;7068:3;7088;7058:9;:35::i;4572:110::-;4655:19;;4572:110::o;38368:352:13:-;38469:14;38486:26;38504:7;38486:17;:26::i;:::-;38469:43;;38535:1;38526:6;:10;:32;;;;;38540:18;38551:6;38540:10;:18::i;:::-;38526:61;;;;;38568:19;38580:6;38568:11;:19::i;:::-;-1:-1:-1;;;;;38562:25:13;:2;-1:-1:-1;;;;;38562:25:13;;;38526:61;38523:190;;;38672:29;38688:6;38696:4;38672:15;:29::i;:::-;;38368:352;;;;:::o;6940:137:4:-;7010:4;7034:35;7042:3;7062:5;7034:7;:35::i;4517:204::-;4612:18;;4584:7;;4612:26;-1:-1:-1;4604:73:4;;;;-1:-1:-1;;;4604:73:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:3;:11;;4707:5;4695:18;;;;;;;;;;;;;;;;4688:25;;4517:204;;;;:::o;5037:279:3:-;5141:19;;5104:7;;;;5141:27;-1:-1:-1;5133:74:3;;;;-1:-1:-1;;;5133:74:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5220:22;5245:3;:12;;5258:5;5245:19;;;;;;;;;;;;;;;;;;5220:44;;5283:5;:10;;;5295:5;:12;;;5275:33;;;;;5037:279;;;;;:::o;5739:319::-;5833:7;5872:17;;;:12;;;:17;;;;;;5923:12;5908:13;5900:36;;;;-1:-1:-1;;;5900:36:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5990:3;:12;;6014:1;6003:8;:12;5990:26;;;;;;;;;;;;;;;;;;:33;;;5983:40;;;5739:319;;;;;:::o;1852:692::-;1928:4;2063:17;;;:12;;;:17;;;;;;2097:13;2093:444;;-1:-1:-1;;2182:38:3;;;;;;;;;;;;;;;;;;2164:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;2379:19;;2359:17;;;:12;;;:17;;;;;;;:39;2413:11;;2093:444;2493:5;2457:3;:12;;2481:1;2470:8;:12;2457:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2520:5;2513:12;;;;;1629:414:4;1692:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:327;;-1:-1:-1;1752:23:4;;;;;;;;:11;:23;;;;;;;;;;;;;1935:18;;1913:19;;;:12;;;:19;;;;;;:40;;;;1968:11;;1709:327;-1:-1:-1;2019:5:4;2012:12;;33913:250:13;34009:18;34015:2;34019:7;34009:5;:18::i;:::-;34046:54;34077:1;34081:2;34085:7;34094:5;34046:22;:54::i;:::-;34038:117;;;;-1:-1:-1;;;34038:117:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3796:278:12;3882:7;3917:12;3910:5;3902:28;;;;-1:-1:-1;;;3902:28:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3941:9;3957:1;3953;:5;;;;;;;3796:278;-1:-1:-1;;;;;3796:278:12:o;36985:604:13:-;37106:4;37133:15;:2;-1:-1:-1;;;;;37133:13:13;;:15::i;:::-;37128:60;;-1:-1:-1;37172:4:13;37165:11;;37128:60;37198:23;37224:252;-1:-1:-1;;;37337:12:13;:10;:12::i;:::-;37364:4;37383:7;37405:5;37240:181;;;;;;-1:-1:-1;;;;;37240:181:13;;;;;;-1:-1:-1;;;;;37240:181:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37240:181:13;;;;;;;-1:-1:-1;;;;;37240:181:13;;;;;;;;;;;37224:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37224:15:13;;;:252;:15;:252::i;:::-;37198:278;;37487:13;37514:10;37503:32;;;;;;;;;;;;;;;-1:-1:-1;37503:32:13;-1:-1:-1;;;;;;37554:26:13;-1:-1:-1;;;37554:26:13;;-1:-1:-1;;;36985:604:13;;;;;;:::o;1770:192:12:-;1856:7;1892:12;1884:6;;;;1876:29;;;;-1:-1:-1;;;1876:29:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1928:5:12;;;1770:192::o;4352:125:3:-;4423:4;4447:17;;;:12;;;;;:17;;;;;;:22;;;4352:125::o;2219:1544:4:-;2285:4;2424:19;;;:12;;;:19;;;;;;2460:15;;2456:1300;;2895:18;;-1:-1:-1;;2846:14:4;;;;2895:22;;;;2822:21;;2895:3;;:22;;3182;;;;;;;;;;;;;;3162:42;;3328:9;3299:3;:11;;3311:13;3299:26;;;;;;;;;;;;;;;;;;;:38;;;;3405:23;;;3447:1;3405:12;;;:23;;;;;;3431:17;;;3405:43;;3557:17;;3405:3;;3557:17;;;;;;;;;;;;;;;;;;;;;;3652:3;:12;;:19;3665:5;3652:19;;;;;;;;;;;3645:26;;;3695:4;3688:11;;;;;;;;2456:1300;3739:5;3732:12;;;;;34499:404:13;-1:-1:-1;;;;;34579:16:13;;34571:61;;;;;-1:-1:-1;;;34571:61:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34652:16;34660:7;34652;:16::i;:::-;34651:17;34643:58;;;;;-1:-1:-1;;;34643:58:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;34714:45;34743:1;34747:2;34751:7;34714:20;:45::i;:::-;-1:-1:-1;;;;;34772:17:13;;;;;;:13;:17;;;;;:30;;34794:7;34772:21;:30::i;:::-;-1:-1:-1;34815:29:13;:12;34832:7;34841:2;34815:16;:29::i;:::-;-1:-1:-1;34862:33:13;;34887:7;;-1:-1:-1;;;;;34862:33:13;;;34879:1;;34862:33;;34879:1;;34862:33;34499:404;;:::o;708:422:0:-;1075:20;1114:8;;;708:422::o;3626:195::-;3729:12;3761:52;3783:6;3791:4;3797:1;3800:12;3729;4930:18;4941:6;4930:10;:18::i;:::-;4922:60;;;;;-1:-1:-1;;;4922:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5056:12;5070:23;5097:6;-1:-1:-1;;;;;5097:11:0;5117:5;5125:4;5097:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5097:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5055:75;;;;5148:52;5166:7;5175:10;5187:12;5148:17;:52::i;:::-;5141:59;4678:530;-1:-1:-1;;;;;;;4678:530:0:o;7218:742::-;7333:12;7362:7;7358:595;;;-1:-1:-1;7393:10:0;7386:17;;7358:595;7507:17;;:21;7503:439;;7770:10;7764:17;7831:15;7818:10;7814:2;7810:19;7803:44;7718:148;7906:20;;-1:-1:-1;;;7906:20:0;;;;;;;;;;;;;;;;;7913:12;;7906:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://6c5bdf97bca4e2b7f52756ad5964b42acd9253b29956831a8628340e80f93be5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.