ETH Price: $2,409.19 (+0.21%)
Gas: 4.29 Gwei

Token

Reincarnation Pass (BBRP)
 

Overview

Max Total Supply

282 BBRP

Holders

199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
syrrius.eth
Balance
1 BBRP
0x296988fc6602320a383013a37fe7b188e4adad0d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MyGenesis

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : MainGenesis.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./extensions/ITemple.sol";
import "./extensions/IMyToken.sol";

contract MyGenesis is ERC721A, Ownable {
	// Set the minting rules: prices / quantities
	uint256 public MAX_NFT_PUBLIC		= 268;
	uint256 public NFTPrice			= 0.049 ether;
	uint256 public maxPerTransaction	= 2;

	// To pay dev support after the mint
	uint256 private devSup	= 2.2 ether;
	address private dev	= 0x3Fbf6Db5b6852633eF1ECFA369440e2EB42B4d12;

	// Boolean to activate the different Sales
	bool public isActive		= false;
	bool public isPresaleActive	= false;
	bool public isPublicSaleActive	= false;
	bool public isFreeMintActive	= false;

	// To set IPFS link
	mapping(uint => string) public baseURL;

	// Manage OG & WL NFT claimed & Giveaway
	uint256 count = 0;
	mapping(uint256 => mapping(address => uint256)) private whiteListClaimed;
	mapping(uint256 => mapping(address => bool)) private giveawayMintClaimed;

	// Link to the OG / WL & giveaway
	bytes32 public root;

	struct Genesis {
		bool isWear;		// an NFT is wearin it?
		uint256 lastTime;	// last time it has been worn?
		bool inTemple;      	// Is it staked in the Temple
	}

    	// Time delay between two times the Pass
	// has been weard
	uint256 private delay	= 518400;	// 6 days

    	// Map the token index to its Structure
	mapping(uint256 => Genesis) public nfts;

	// Link to MyNFT
	address private myNFT;
    	// Link to the temple service
	ITemple private Itemple;
    	// Link to MyToken contract
	IMyToken private myToken;

	// Deploy the contract
	constructor() ERC721A("Reincarnation Pass", "BBRP")
	{
		baseURL[0]	= "https://gateway.pinata.cloud/ipfs/Qmaj4vNgVHooTZHf3KE4jJaRdwAajbVa22xFVLAK2GQTyT/ReincarnationPass";
		safeMint(0x9Aac44cA96C37948b55587f8ee347A57400886e4, 1);
	}
	
	function resetList()
	external
	onlyOwner
	{
		count++;
	}
	
	function setSale(uint256 _price, uint256 max_, uint256 max_per_transaction, uint256 _root)
	external
	onlyOwner
	{
		(NFTPrice, MAX_NFT_PUBLIC,
		 maxPerTransaction, root)	= (_price, max_, max_per_transaction, bytes32(_root));
	}
	
	// Function toggleActive to activate/desactivate
	// the smart contract
	function toggleActive()
	external
	onlyOwner
	{
		isActive = !isActive;
	}

	// Function togglePublicSale
	// to activate/desactivate public sale
	function togglePublicSale()
	external
	onlyOwner
	{
		isPublicSaleActive = !isPublicSaleActive;
	}

	// Function togglePresale to activate/desactivate presale
	function togglePresale()
	external
	onlyOwner
	{
		isPresaleActive = !isPresaleActive;
	}

	//Function to activate/desactivate the free mint
	function toggleFreeMint()
	external
	onlyOwner
	{
		isFreeMintActive = !isFreeMintActive;
	}

	// Allow Mint
	function AllowMint(uint256 _numOfTokens, bool correctSale)
	private
	view
	{
		require(isActive, "Not Active");
		require(_numOfTokens <= maxPerTransaction, "Above Limit");
		require(totalSupply() + _numOfTokens <= MAX_NFT_PUBLIC, "Exceeds Supply");
		require(correctSale, "Wrong Sale");
	}
	
	// Check value to pay
	function isEnough(uint256 _numOfTokens, uint256 _value)
	private
	view
	{
		require(NFTPrice * _numOfTokens <= _value, "Not Enough Ether");
	}

	// Minting function which called the ERC721A safeMint function
	// to reduce the gas fee
	function safeMint(address _to, uint256 _quantity)
	internal
	{
		// Get current index
		uint256 currentIndex	= totalSupply();

		// Mint NFTs
		_safeMint(_to, _quantity);

		for (uint256 i = currentIndex; i < currentIndex + _quantity; i++)
			nfts[i]	= Genesis(false, 0, false);
	}

	//Function to mint all NFTs for giveaway
	function giveawayMint(address[] memory _to)
	external
	onlyOwner
	{
		for(uint i=0; i<_to.length; i++)
			safeMint(_to[i], 1); 
	}

	// Function to mint new NFTs during the public sale
	function mintNFT(uint256 _numOfTokens)
	external
	payable
	{
		AllowMint(_numOfTokens, !isPresaleActive);
		isEnough(_numOfTokens, msg.value);

		safeMint(msg.sender, _numOfTokens);
	}

	// Function to verify merkle proof
	function verify(bytes32[] memory proof, bytes32 leaf)
	private
	view
	returns (bool)
	{
		bytes32 computedHash = leaf;

		for (uint256 i = 0; i < proof.length; i++) {
			bytes32 proofElement = proof[i];

			if (computedHash <= proofElement)
				computedHash = sha256(abi.encodePacked(computedHash, proofElement));
			else
				computedHash = sha256(abi.encodePacked(proofElement, computedHash));
		}

		return computedHash == root;
	}

	// Function to mint new NFTs during the presale
	function mintNFTDuringPresale(uint256 _numOfTokens, bytes32[] memory _proof)
	external
	payable
	{
		AllowMint(_numOfTokens, isPresaleActive);
		require(verify(_proof, bytes32(uint256(uint160(msg.sender)))), "Not whitelisted");

		if (!isFreeMintActive){
			require(whiteListClaimed[count][msg.sender] + _numOfTokens <= maxPerTransaction, "Exceeds Max");
			isEnough(_numOfTokens, msg.value);
			whiteListClaimed[count][msg.sender] += _numOfTokens;
			safeMint(msg.sender, _numOfTokens);
		} else {
			require(_numOfTokens == 1, "Exceeds Max");
			require(!giveawayMintClaimed[count][msg.sender], "Already claimed");
			giveawayMintClaimed[count][msg.sender] = true;
			safeMint(msg.sender, _numOfTokens);
		}
	}

	// Allow the owner to transfer the fund at any address
	function withdraw(address _to)
	public
	onlyOwner
	{
		require(address(this).balance > 0, "Negative Balance");
		uint balance = address(this).balance;

		if(devSup > 0) {
			(bool sent, ) = dev.call{value: devSup}("");
			require(sent, "Failed to send Ether");
			balance = balance - devSup;
			devSup = 0;
		}

		(bool sent1, ) = _to.call{value: (balance * 990) / 1000}("");
		(bool sent2, ) = dev.call{value: (balance * 10) / 1000}("");
		require(sent1, "Failed to send Ether");
		require(sent2, "Failed to send Ether");
	}

	// Set the Golder Pass URL
	function setURL(string calldata url_, uint i_)
	external
	onlyOwner
	{
		baseURL[i_]	= url_;
	}

	// Set MyNFT address
	function setNFT(address _nft)
	external
	onlyOwner
	{
		myNFT	= _nft;
	}

	// Set Temple methods address
	function setTemple(address _temple)
	external
	onlyOwner
	{
		Itemple   = ITemple(_temple);
	}

	// Set Temple methods address
	function setToken(address _token)
	external
	onlyOwner
	{
		myToken   = IMyToken(_token);
	}

	function onlyNFTOwner(uint256 id, address from)
	private
	view
	{
		require(ownerOf(id) == from, "Not the NFT owner!");
	}

	function NFTinTemple(uint256 id, bool checkin)
	private
	view
	{
		require(nfts[id].inTemple == checkin, "Temple error");
	}
	
	function NFTisWear(uint256 id, bool check)
	private
	view
	{
		require(nfts[id].isWear == check, "Error with 'worn'");
	}

	function checkRequirements(uint256 id, address from, bool checkin)
	private
	view
	{
		onlyNFTOwner(id, from);
		NFTinTemple(id, checkin);
	}
	
	function checkIfStakeIsState()
	private
	view
	{
		require(address(Itemple) != address(0) && address(myToken) != address(0), "Not Yet Set!");
	}

	// Stake the NFT in the temple to earn MyTokens
	function stake(uint256 id)
	external
	{
		checkIfStakeIsState();
		checkRequirements(id, msg.sender, false);
		NFTisWear(id, false);

		nfts[id].inTemple   = Itemple.stake(id);
	}

	// Get Claimable From the Temple
	function claimBatch(uint256[] calldata ids)
	external
	{
		checkIfStakeIsState();
		
		uint256 toClaim	= 0;
		for (uint i=0; i<ids.length; i++)
		{
			Itemple.updateClaimable(ids[i]);
			toClaim	+= Itemple.claim(ids[i]);
		}
		
		// Add toClaim to the rewards already claimable
		myToken.addReward(ownerOf(ids[0]), toClaim);
	}

	// Push your NFT to be in a retreat
	function getInRetreat(uint256 id)
	external
	{
		checkRequirements(id, msg.sender, true);
		NFTisWear(id, false);

		// Get the current NFTs level
		Itemple.updateClaimable(id);

		Itemple.getInRetreat(id);
	}

	// Unstake the NFT from the Temple
	function _unstake(uint256 id)
	private
	returns(uint256)
	{
		// Get the current NFTs level
		Itemple.updateClaimable(id);

		// Update NFT features
		nfts[id].inTemple	= false;

		// Claim MyTokens and Unstake MyNFT
		return Itemple.unstake(id, nfts[id].isWear);
	}

	function wear(address from, uint256 id, bool toWear)
	external
	{
		require(msg.sender == myNFT && myNFT != address(0), "Wrong sender");
		onlyNFTOwner(id, from);
		NFTisWear(id, !toWear);
		
		if (toWear)
			require(nfts[id].lastTime + delay <= block.timestamp, "Need to Wait");
		
		nfts[id].isWear = toWear;
		if(nfts[id].inTemple && toWear)
			myToken.addReward(ownerOf(id), _unstake(id));
		
		if (!toWear)
			nfts[id].lastTime	= block.timestamp;
	}

	function unstake(uint256 id)
	external
	{
		checkRequirements(id, msg.sender, true);

		// Add toClaim to the rewards already claimable
		myToken.addReward(ownerOf(id), _unstake(id));
	}

	// Override transfer to verify not wear or not in the temple
	function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity)
	internal
	virtual
	override
	{
		for (uint i=startTokenId; i <= startTokenId+quantity; i++)
			require(!nfts[i].isWear && !nfts[i].inTemple, "Can't be transfered");
	}

	function tokenURI(uint256 tokenId)
	public
	view
	virtual
	override
	returns (string memory)
	{
		require(tokenId <= totalSupply(), "Wrong NFT Id!");
		if (tokenId >= 268)
			return string.concat(baseURL[1], Strings.toString(tokenId-268), ".json");
		
		return string.concat(baseURL[0], Strings.toString(tokenId), ".json");
	}
}

File 2 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 14 : ITemple.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

interface ITemple {
    function stake(uint256 id) external returns (bool);
    function updateClaimable(uint256 id) external;
    function claim(uint256 id) external returns (uint256);
    function getInRetreat(uint256 id) external;
    function unstake(uint256 id, bool isWearing) external returns (uint256);
}

File 6 of 14 : IMyToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

interface IMyToken {
    function addReward(address _to, uint256 amount) external;
}

File 7 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface 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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"claimBatch","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getInRetreat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nfts","outputs":[{"internalType":"bool","name":"isWear","type":"bool"},{"internalType":"uint256","name":"lastTime","type":"uint256"},{"internalType":"bool","name":"inTemple","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"address","name":"_nft","type":"address"}],"name":"setNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"max_","type":"uint256"},{"internalType":"uint256","name":"max_per_transaction","type":"uint256"},{"internalType":"uint256","name":"_root","type":"uint256"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_temple","type":"address"}],"name":"setTemple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url_","type":"string"},{"internalType":"uint256","name":"i_","type":"uint256"}],"name":"setURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"id","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"toWear","type":"bool"}],"name":"wear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261010c60095566ae153d89fe8000600a556002600b55671e87f85809dc0000600c55733fbf6db5b6852633ef1ecfa369440e2eb42b4d12600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60146101000a81548160ff0219169083151502179055506000600d60156101000a81548160ff0219169083151502179055506000600d60166101000a81548160ff0219169083151502179055506000600d60176101000a81548160ff0219169083151502179055506000600f556207e9006013553480156200010057600080fd5b506040518060400160405280601281526020017f5265696e6361726e6174696f6e205061737300000000000000000000000000008152506040518060400160405280600481526020017f424252500000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018592919062000a86565b5080600390805190602001906200019e92919062000a86565b50620001af6200024760201b60201c565b6000819055505050620001d7620001cb6200024c60201b60201c565b6200025460201b60201c565b6040518060a001604052806062815260200162006d4960629139600e600080815260200190815260200160002090805190602001906200021992919062000a86565b5062000241739aac44ca96c37948b55587f8ee347a57400886e460016200031a60201b60201c565b62000ee4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200032c620003fa60201b60201c565b90506200034083836200041960201b60201c565b60008190505b828262000354919062000b6f565b811015620003f457604051806060016040528060001515815260200160008152602001600015158152506014600083815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050508080620003eb9062000bcc565b91505062000346565b50505050565b60006200040c6200024760201b60201c565b6001546000540303905090565b6200043b8282604051806020016040528060008152506200043f60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004ad576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620004e9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004fe60008583866200082e60201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006cc8673ffffffffffffffffffffffffffffffffffffffff16620008fb60201b62002b111760201c565b156200079e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200074a60008784806001019550876200091e60201b60201c565b62000781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620006d35782600054146200079857600080fd5b6200080a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200079f575b81600081905550505062000828600085838662000a8060201b60201c565b50505050565b60008290505b818362000842919062000b6f565b8111620008f4576014600082815260200190815260200160002060000160009054906101000a900460ff161580156200089c57506014600082815260200190815260200160002060020160009054906101000a900460ff16155b620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062000c7b565b60405180910390fd5b8080620008eb9062000bcc565b91505062000834565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200094c6200024c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000970949392919062000d97565b6020604051808303816000875af1925050508015620009af57506040513d601f19601f82011682018060405250810190620009ac919062000e4d565b60015b62000a2d573d8060008114620009e2576040519150601f19603f3d011682016040523d82523d6000602084013e620009e7565b606091505b5060008151141562000a25576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000a949062000eae565b90600052602060002090601f01602090048101928262000ab8576000855562000b04565b82601f1062000ad357805160ff191683800117855562000b04565b8280016001018555821562000b04579182015b8281111562000b0357825182559160200191906001019062000ae6565b5b50905062000b13919062000b17565b5090565b5b8082111562000b3257600081600090555060010162000b18565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b7c8262000b36565b915062000b898362000b36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bc15762000bc062000b40565b5b828201905092915050565b600062000bd98262000b36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c0f5762000c0e62000b40565b5b600182019050919050565b600082825260208201905092915050565b7f43616e2774206265207472616e73666572656400000000000000000000000000600082015250565b600062000c6360138362000c1a565b915062000c708262000c2b565b602082019050919050565b6000602082019050818103600083015262000c968162000c54565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cca8262000c9d565b9050919050565b62000cdc8162000cbd565b82525050565b62000ced8162000b36565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000d2f57808201518184015260208101905062000d12565b8381111562000d3f576000848401525b50505050565b6000601f19601f8301169050919050565b600062000d638262000cf3565b62000d6f818562000cfe565b935062000d8181856020860162000d0f565b62000d8c8162000d45565b840191505092915050565b600060808201905062000dae600083018762000cd1565b62000dbd602083018662000cd1565b62000dcc604083018562000ce2565b818103606083015262000de0818462000d56565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000e278162000df0565b811462000e3357600080fd5b50565b60008151905062000e478162000e1c565b92915050565b60006020828403121562000e665762000e6562000deb565b5b600062000e768482850162000e36565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ec757607f821691505b6020821081141562000ede5762000edd62000e7f565b5b50919050565b615e558062000ef46000396000f3fe60806040526004361061027d5760003560e01c806362abebce1161014f578063a38bffda116100c1578063e222c7f91161007a578063e222c7f91461092c578063e985e9c514610943578063ebf0c71714610980578063ef3f6760146109ab578063f2fde38b146109c2578063f56e9c66146109eb5761027d565b8063a38bffda1461081e578063a694fc3a14610849578063b88d4fde14610872578063c87b56dd1461089b578063caa4ea2c146108d8578063d1d80f30146109015761027d565b80637a5b85c1116101135780637a5b85c11461073c5780638da5cb5b146107675780638f76696c1461079257806392642744146107ae57806395d89b41146107ca578063a22cb465146107f55761027d565b806362abebce1461066b5780636352211e1461069457806370a08231146106d1578063715018a61461070e57806372c0fa54146107255761027d565b806322f3e2d4116101f357806335460fb2116101ac57806335460fb21461055d57806342842e0e1461059a5780634b980d67146105c357806351cff8d9146105ee57806360d938dc1461061757806361122321146106425761027d565b806322f3e2d41461047357806323b872dd1461049e578063265aa621146104c757806329c68dc1146105065780632e17de781461051d57806334393743146105465761027d565b8063095ea7b311610245578063095ea7b314610379578063144fa6d7146103a257806318160ddd146103cb5780631e84c413146103f65780632033b2cc146104215780632214b9551461044a5761027d565b806301ffc9a71461028257806302d2cd39146102bf578063053a24d6146102e857806306fdde0314610311578063081812fc1461033c575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906144d7565b610a14565b6040516102b6919061451f565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190614598565b610af6565b005b3480156102f457600080fd5b5061030f600480360381019061030a919061471e565b610bb6565b005b34801561031d57600080fd5b50610326610c7a565b60405161033391906147ef565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190614847565b610d0c565b6040516103709190614883565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b919061489e565b610d88565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190614598565b610e8d565b005b3480156103d757600080fd5b506103e0610f4d565b6040516103ed91906148ed565b60405180910390f35b34801561040257600080fd5b5061040b610f64565b604051610418919061451f565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190614847565b610f77565b005b34801561045657600080fd5b50610471600480360381019061046c9190614934565b6110ab565b005b34801561047f57600080fd5b5061048861133e565b604051610495919061451f565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190614987565b611351565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190614847565b611361565b6040516104fd939291906149da565b60405180910390f35b34801561051257600080fd5b5061051b6113a5565b005b34801561052957600080fd5b50610544600480360381019061053f9190614847565b61144d565b005b34801561055257600080fd5b5061055b6114fb565b005b34801561056957600080fd5b50610584600480360381019061057f9190614847565b6115a3565b60405161059191906147ef565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190614987565b611643565b005b3480156105cf57600080fd5b506105d8611663565b6040516105e591906148ed565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190614598565b611669565b005b34801561062357600080fd5b5061062c6119d5565b604051610639919061451f565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190614a6c565b6119e8565b005b34801561067757600080fd5b50610692600480360381019061068d9190614b22565b611a8c565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190614847565b611cd7565b6040516106c89190614883565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614598565b611ced565b60405161070591906148ed565b60405180910390f35b34801561071a57600080fd5b50610723611dbd565b005b34801561073157600080fd5b5061073a611e45565b005b34801561074857600080fd5b50610751611eed565b60405161075e919061451f565b60405180910390f35b34801561077357600080fd5b5061077c611f00565b6040516107899190614883565b60405180910390f35b6107ac60048036038101906107a79190614c68565b611f2a565b005b6107c860048036038101906107c39190614847565b61223a565b005b3480156107d657600080fd5b506107df61226b565b6040516107ec91906147ef565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190614cc4565b6122fd565b005b34801561082a57600080fd5b50610833612475565b60405161084091906148ed565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190614847565b61247b565b005b34801561087e57600080fd5b5061089960048036038101906108949190614db9565b612568565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614847565b6125e0565b6040516108cf91906147ef565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190614e3c565b6126ca565b005b34801561090d57600080fd5b5061091661277b565b60405161092391906148ed565b60405180910390f35b34801561093857600080fd5b50610941612781565b005b34801561094f57600080fd5b5061096a60048036038101906109659190614ea3565b612829565b604051610977919061451f565b60405180910390f35b34801561098c57600080fd5b506109956128bd565b6040516109a29190614ef2565b60405180910390f35b3480156109b757600080fd5b506109c06128c3565b005b3480156109ce57600080fd5b506109e960048036038101906109e49190614598565b612959565b005b3480156109f757600080fd5b50610a126004803603810190610a0d9190614598565b612a51565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610adf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aef5750610aee82612b34565b5b9050919050565b610afe612b9e565b73ffffffffffffffffffffffffffffffffffffffff16610b1c611f00565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990614f59565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610bbe612b9e565b73ffffffffffffffffffffffffffffffffffffffff16610bdc611f00565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614f59565b60405180910390fd5b60005b8151811015610c7657610c63828281518110610c5457610c53614f79565b5b60200260200101516001612ba6565b8080610c6e90614fd7565b915050610c35565b5050565b606060028054610c899061504f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061504f565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000610d1782612c70565b610d4d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d9382611cd7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dfb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e1a612b9e565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d57610e4681610e41612b9e565b612829565b610e7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610e88838383612cbe565b505050565b610e95612b9e565b73ffffffffffffffffffffffffffffffffffffffff16610eb3611f00565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090614f59565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f57612d70565b6001546000540303905090565b600d60169054906101000a900460ff1681565b610f8381336001612d75565b610f8e816000612d8e565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d28e4355826040518263ffffffff1660e01b8152600401610fe991906148ed565b600060405180830381600087803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b50505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632033b2cc826040518263ffffffff1660e01b815260040161107691906148ed565b600060405180830381600087803b15801561109057600080fd5b505af11580156110a4573d6000803e3d6000fd5b5050505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156111575750600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906150cd565b60405180910390fd5b6111a08284612dfb565b6111ab828215612d8e565b8015611218574260135460146000858152602001908152602001600020600101546111d691906150ed565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e9061518f565b60405180910390fd5b5b806014600084815260200190815260200160002060000160006101000a81548160ff0219169083151502179055506014600083815260200190815260200160002060020160009054906101000a900460ff1680156112735750805b1561131857601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639feb8f506112bf84611cd7565b6112c885612e75565b6040518363ffffffff1660e01b81526004016112e59291906151af565b600060405180830381600087803b1580156112ff57600080fd5b505af1158015611313573d6000803e3d6000fd5b505050505b80611339574260146000848152602001908152602001600020600101819055505b505050565b600d60149054906101000a900460ff1681565b61135c838383612ffd565b505050565b60146020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020160009054906101000a900460ff16905083565b6113ad612b9e565b73ffffffffffffffffffffffffffffffffffffffff166113cb611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614f59565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b61145981336001612d75565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639feb8f506114a083611cd7565b6114a984612e75565b6040518363ffffffff1660e01b81526004016114c69291906151af565b600060405180830381600087803b1580156114e057600080fd5b505af11580156114f4573d6000803e3d6000fd5b5050505050565b611503612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611521611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614f59565b60405180910390fd5b600d60159054906101000a900460ff1615600d60156101000a81548160ff021916908315150217905550565b600e60205280600052604060002060009150905080546115c29061504f565b80601f01602080910402602001604051908101604052809291908181526020018280546115ee9061504f565b801561163b5780601f106116105761010080835404028352916020019161163b565b820191906000526020600020905b81548152906001019060200180831161161e57829003601f168201915b505050505081565b61165e83838360405180602001604052806000815250612568565b505050565b600b5481565b611671612b9e565b73ffffffffffffffffffffffffffffffffffffffff1661168f611f00565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90614f59565b60405180910390fd5b60004711611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90615224565b60405180910390fd5b60004790506000600c541115611822576000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5460405161178290615275565b60006040518083038185875af1925050503d80600081146117bf576040519150601f19603f3d011682016040523d82523d6000602084013e6117c4565b606091505b5050905080611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff906152d6565b60405180910390fd5b600c548261181691906152f6565b91506000600c81905550505b60008273ffffffffffffffffffffffffffffffffffffffff166103e86103de8461184c919061532a565b61185691906153b3565b60405161186290615275565b60006040518083038185875af1925050503d806000811461189f576040519150601f19603f3d011682016040523d82523d6000602084013e6118a4565b606091505b505090506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8600a856118f3919061532a565b6118fd91906153b3565b60405161190990615275565b60006040518083038185875af1925050503d8060008114611946576040519150601f19603f3d011682016040523d82523d6000602084013e61194b565b606091505b505090508161198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906152d6565b60405180910390fd5b806119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c6906152d6565b60405180910390fd5b50505050565b600d60159054906101000a900460ff1681565b6119f0612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611a0e611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614f59565b60405180910390fd5b8282600e60008481526020019081526020016000209190611a86929190614385565b50505050565b611a946134b3565b6000805b83839050811015611c2057601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d28e4355858584818110611af457611af3614f79565b5b905060200201356040518263ffffffff1660e01b8152600401611b1791906148ed565b600060405180830381600087803b158015611b3157600080fd5b505af1158015611b45573d6000803e3d6000fd5b50505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663379607f5858584818110611b9a57611b99614f79565b5b905060200201356040518263ffffffff1660e01b8152600401611bbd91906148ed565b6020604051808303816000875af1158015611bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0091906153f9565b82611c0b91906150ed565b91508080611c1890614fd7565b915050611a98565b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639feb8f50611c8285856000818110611c7657611c75614f79565b5b90506020020135611cd7565b836040518363ffffffff1660e01b8152600401611ca09291906151af565b600060405180830381600087803b158015611cba57600080fd5b505af1158015611cce573d6000803e3d6000fd5b50505050505050565b6000611ce2826135a2565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d55576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611dc5612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611de3611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090614f59565b60405180910390fd5b611e43600061382d565b565b611e4d612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614f59565b60405180910390fd5b600d60179054906101000a900460ff1615600d60176101000a81548160ff021916908315150217905550565b600d60179054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f4382600d60159054906101000a900460ff166138f3565b611f66813373ffffffffffffffffffffffffffffffffffffffff1660001b613a22565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90615472565b60405180910390fd5b600d60179054906101000a900460ff166120dd57600b548260106000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461201a91906150ed565b111561205b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612052906154de565b60405180910390fd5b6120658234613b69565b8160106000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c791906150ed565b925050819055506120d83383612ba6565b612236565b60018214612120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612117906154de565b60405180910390fd5b60116000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b79061554a565b60405180910390fd5b600160116000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122353383612ba6565b5b5050565b61225481600d60159054906101000a900460ff16156138f3565b61225e8134613b69565b6122683382612ba6565b50565b60606003805461227a9061504f565b80601f01602080910402602001604051908101604052809291908181526020018280546122a69061504f565b80156122f35780601f106122c8576101008083540402835291602001916122f3565b820191906000526020600020905b8154815290600101906020018083116122d657829003601f168201915b5050505050905090565b612305612b9e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612377612b9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612424612b9e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612469919061451f565b60405180910390a35050565b600a5481565b6124836134b3565b61248f81336000612d75565b61249a816000612d8e565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a694fc3a826040518263ffffffff1660e01b81526004016124f591906148ed565b6020604051808303816000875af1158015612514573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612538919061557f565b6014600083815260200190815260200160002060020160006101000a81548160ff02191690831515021790555050565b612573848484612ffd565b6125928373ffffffffffffffffffffffffffffffffffffffff16612b11565b156125da576125a384848484613bbd565b6125d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606125ea610f4d565b82111561262c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612623906155f8565b60405180910390fd5b61010c821061268657600e60006001815260200190815260200160002061265f61010c8461265a91906152f6565b613d0e565b60405160200161267092919061570e565b60405160208183030381529060405290506126c5565b600e60008081526020019081526020016000206126a283613d0e565b6040516020016126b392919061570e565b60405160208183030381529060405290505b919050565b6126d2612b9e565b73ffffffffffffffffffffffffffffffffffffffff166126f0611f00565b73ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614f59565b60405180910390fd5b8383838360001b600a600060096000600b60006012600088919050558791905055869190505585919050555050505050505050565b60095481565b612789612b9e565b73ffffffffffffffffffffffffffffffffffffffff166127a7611f00565b73ffffffffffffffffffffffffffffffffffffffff16146127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614f59565b60405180910390fd5b600d60169054906101000a900460ff1615600d60166101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b6128cb612b9e565b73ffffffffffffffffffffffffffffffffffffffff166128e9611f00565b73ffffffffffffffffffffffffffffffffffffffff161461293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614f59565b60405180910390fd5b600f600081548092919061295290614fd7565b9190505550565b612961612b9e565b73ffffffffffffffffffffffffffffffffffffffff1661297f611f00565b73ffffffffffffffffffffffffffffffffffffffff16146129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3c906157b3565b60405180910390fd5b612a4e8161382d565b50565b612a59612b9e565b73ffffffffffffffffffffffffffffffffffffffff16612a77611f00565b73ffffffffffffffffffffffffffffffffffffffff1614612acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac490614f59565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000612bb0610f4d565b9050612bbc8383613e6f565b60008190505b8282612bce91906150ed565b811015612c6a57604051806060016040528060001515815260200160008152602001600015158152506014600083815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050508080612c6290614fd7565b915050612bc2565b50505050565b600081612c7b612d70565b11158015612c8a575060005482105b8015612cb7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b612d7f8383612dfb565b612d898382613e8d565b505050565b8015156014600084815260200190815260200160002060000160009054906101000a900460ff16151514612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee9061581f565b60405180910390fd5b5050565b8073ffffffffffffffffffffffffffffffffffffffff16612e1b83611cd7565b73ffffffffffffffffffffffffffffffffffffffff1614612e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e689061588b565b60405180910390fd5b5050565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d28e4355836040518263ffffffff1660e01b8152600401612ed291906148ed565b600060405180830381600087803b158015612eec57600080fd5b505af1158015612f00573d6000803e3d6000fd5b5050505060006014600084815260200190815260200160002060020160006101000a81548160ff021916908315150217905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639ebea88c836014600086815260200190815260200160002060000160009054906101000a900460ff166040518363ffffffff1660e01b8152600401612fb39291906158ab565b6020604051808303816000875af1158015612fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ff691906153f9565b9050919050565b6000613008826135a2565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613073576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613094612b9e565b73ffffffffffffffffffffffffffffffffffffffff1614806130c357506130c2856130bd612b9e565b612829565b5b8061310857506130d1612b9e565b73ffffffffffffffffffffffffffffffffffffffff166130f084610d0c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613141576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131b58585856001613efa565b6131c160008487612cbe565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561344157600054821461344057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134ac8585856001613fbd565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156135615750600073ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b6135a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359790615920565b60405180910390fd5b565b6135aa61440b565b6000829050806135b8612d70565b116137f6576000548110156137f5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516137f357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136d7578092505050613828565b5b6001156137f257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146137ed578092505050613828565b6136d8565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600d60149054906101000a900460ff16613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139399061598c565b60405180910390fd5b600b54821115613987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397e906159f8565b60405180910390fd5b60095482613993610f4d565b61399d91906150ed565b11156139de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d590615a64565b60405180910390fd5b80613a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1590615ad0565b60405180910390fd5b5050565b60008082905060005b8451811015613b5a576000858281518110613a4957613a48614f79565b5b60200260200101519050808311613ad25760028382604051602001613a6f929190615b11565b604051602081830303815290604052604051613a8b9190615b79565b602060405180830381855afa158015613aa8573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190613acb9190615ba5565b9250613b46565b60028184604051602001613ae7929190615b11565b604051602081830303815290604052604051613b039190615b79565b602060405180830381855afa158015613b20573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190613b439190615ba5565b92505b508080613b5290614fd7565b915050613a2b565b50601254811491505092915050565b8082600a54613b78919061532a565b1115613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb090615c1e565b60405180910390fd5b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613be3612b9e565b8786866040518563ffffffff1660e01b8152600401613c059493929190615c88565b6020604051808303816000875af1925050508015613c4157506040513d601f19601f82011682018060405250810190613c3e9190615ce9565b60015b613cbb573d8060008114613c71576040519150601f19603f3d011682016040523d82523d6000602084013e613c76565b606091505b50600081511415613cb3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613d56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613e6a565b600082905060005b60008214613d88578080613d7190614fd7565b915050600a82613d8191906153b3565b9150613d5e565b60008167ffffffffffffffff811115613da457613da36145db565b5b6040519080825280601f01601f191660200182016040528015613dd65781602001600182028036833780820191505090505b5090505b60008514613e6357600182613def91906152f6565b9150600a85613dfe9190615d16565b6030613e0a91906150ed565b60f81b818381518110613e2057613e1f614f79565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613e5c91906153b3565b9450613dda565b8093505050505b919050565b613e89828260405180602001604052806000815250613fc3565b5050565b8015156014600084815260200190815260200160002060020160009054906101000a900460ff16151514613ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eed90615d93565b60405180910390fd5b5050565b60008290505b8183613f0c91906150ed565b8111613fb6576014600082815260200190815260200160002060000160009054906101000a900460ff16158015613f6457506014600082815260200190815260200160002060020160009054906101000a900460ff16155b613fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f9a90615dff565b60405180910390fd5b8080613fae90614fd7565b915050613f00565b5050505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614030576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561406b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6140786000858386613efa565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506142398673ffffffffffffffffffffffffffffffffffffffff16612b11565b156142fe575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46142ae6000878480600101955087613bbd565b6142e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061423f5782600054146142f957600080fd5b614369565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106142ff575b81600081905550505061437f6000858386613fbd565b50505050565b8280546143919061504f565b90600052602060002090601f0160209004810192826143b357600085556143fa565b82601f106143cc57803560ff19168380011785556143fa565b828001600101855582156143fa579182015b828111156143f95782358255916020019190600101906143de565b5b509050614407919061444e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561446757600081600090555060010161444f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6144b48161447f565b81146144bf57600080fd5b50565b6000813590506144d1816144ab565b92915050565b6000602082840312156144ed576144ec614475565b5b60006144fb848285016144c2565b91505092915050565b60008115159050919050565b61451981614504565b82525050565b60006020820190506145346000830184614510565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006145658261453a565b9050919050565b6145758161455a565b811461458057600080fd5b50565b6000813590506145928161456c565b92915050565b6000602082840312156145ae576145ad614475565b5b60006145bc84828501614583565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614613826145ca565b810181811067ffffffffffffffff82111715614632576146316145db565b5b80604052505050565b600061464561446b565b9050614651828261460a565b919050565b600067ffffffffffffffff821115614671576146706145db565b5b602082029050602081019050919050565b600080fd5b600061469a61469584614656565b61463b565b905080838252602082019050602084028301858111156146bd576146bc614682565b5b835b818110156146e657806146d28882614583565b8452602084019350506020810190506146bf565b5050509392505050565b600082601f830112614705576147046145c5565b5b8135614715848260208601614687565b91505092915050565b60006020828403121561473457614733614475565b5b600082013567ffffffffffffffff8111156147525761475161447a565b5b61475e848285016146f0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156147a1578082015181840152602081019050614786565b838111156147b0576000848401525b50505050565b60006147c182614767565b6147cb8185614772565b93506147db818560208601614783565b6147e4816145ca565b840191505092915050565b6000602082019050818103600083015261480981846147b6565b905092915050565b6000819050919050565b61482481614811565b811461482f57600080fd5b50565b6000813590506148418161481b565b92915050565b60006020828403121561485d5761485c614475565b5b600061486b84828501614832565b91505092915050565b61487d8161455a565b82525050565b60006020820190506148986000830184614874565b92915050565b600080604083850312156148b5576148b4614475565b5b60006148c385828601614583565b92505060206148d485828601614832565b9150509250929050565b6148e781614811565b82525050565b600060208201905061490260008301846148de565b92915050565b61491181614504565b811461491c57600080fd5b50565b60008135905061492e81614908565b92915050565b60008060006060848603121561494d5761494c614475565b5b600061495b86828701614583565b935050602061496c86828701614832565b925050604061497d8682870161491f565b9150509250925092565b6000806000606084860312156149a05761499f614475565b5b60006149ae86828701614583565b93505060206149bf86828701614583565b92505060406149d086828701614832565b9150509250925092565b60006060820190506149ef6000830186614510565b6149fc60208301856148de565b614a096040830184614510565b949350505050565b600080fd5b60008083601f840112614a2c57614a2b6145c5565b5b8235905067ffffffffffffffff811115614a4957614a48614a11565b5b602083019150836001820283011115614a6557614a64614682565b5b9250929050565b600080600060408486031215614a8557614a84614475565b5b600084013567ffffffffffffffff811115614aa357614aa261447a565b5b614aaf86828701614a16565b93509350506020614ac286828701614832565b9150509250925092565b60008083601f840112614ae257614ae16145c5565b5b8235905067ffffffffffffffff811115614aff57614afe614a11565b5b602083019150836020820283011115614b1b57614b1a614682565b5b9250929050565b60008060208385031215614b3957614b38614475565b5b600083013567ffffffffffffffff811115614b5757614b5661447a565b5b614b6385828601614acc565b92509250509250929050565b600067ffffffffffffffff821115614b8a57614b896145db565b5b602082029050602081019050919050565b6000819050919050565b614bae81614b9b565b8114614bb957600080fd5b50565b600081359050614bcb81614ba5565b92915050565b6000614be4614bdf84614b6f565b61463b565b90508083825260208201905060208402830185811115614c0757614c06614682565b5b835b81811015614c305780614c1c8882614bbc565b845260208401935050602081019050614c09565b5050509392505050565b600082601f830112614c4f57614c4e6145c5565b5b8135614c5f848260208601614bd1565b91505092915050565b60008060408385031215614c7f57614c7e614475565b5b6000614c8d85828601614832565b925050602083013567ffffffffffffffff811115614cae57614cad61447a565b5b614cba85828601614c3a565b9150509250929050565b60008060408385031215614cdb57614cda614475565b5b6000614ce985828601614583565b9250506020614cfa8582860161491f565b9150509250929050565b600080fd5b600067ffffffffffffffff821115614d2457614d236145db565b5b614d2d826145ca565b9050602081019050919050565b82818337600083830152505050565b6000614d5c614d5784614d09565b61463b565b905082815260208101848484011115614d7857614d77614d04565b5b614d83848285614d3a565b509392505050565b600082601f830112614da057614d9f6145c5565b5b8135614db0848260208601614d49565b91505092915050565b60008060008060808587031215614dd357614dd2614475565b5b6000614de187828801614583565b9450506020614df287828801614583565b9350506040614e0387828801614832565b925050606085013567ffffffffffffffff811115614e2457614e2361447a565b5b614e3087828801614d8b565b91505092959194509250565b60008060008060808587031215614e5657614e55614475565b5b6000614e6487828801614832565b9450506020614e7587828801614832565b9350506040614e8687828801614832565b9250506060614e9787828801614832565b91505092959194509250565b60008060408385031215614eba57614eb9614475565b5b6000614ec885828601614583565b9250506020614ed985828601614583565b9150509250929050565b614eec81614b9b565b82525050565b6000602082019050614f076000830184614ee3565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f43602083614772565b9150614f4e82614f0d565b602082019050919050565b60006020820190508181036000830152614f7281614f36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614fe282614811565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501557615014614fa8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061506757607f821691505b6020821081141561507b5761507a615020565b5b50919050565b7f57726f6e672073656e6465720000000000000000000000000000000000000000600082015250565b60006150b7600c83614772565b91506150c282615081565b602082019050919050565b600060208201905081810360008301526150e6816150aa565b9050919050565b60006150f882614811565b915061510383614811565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561513857615137614fa8565b5b828201905092915050565b7f4e65656420746f20576169740000000000000000000000000000000000000000600082015250565b6000615179600c83614772565b915061518482615143565b602082019050919050565b600060208201905081810360008301526151a88161516c565b9050919050565b60006040820190506151c46000830185614874565b6151d160208301846148de565b9392505050565b7f4e656761746976652042616c616e636500000000000000000000000000000000600082015250565b600061520e601083614772565b9150615219826151d8565b602082019050919050565b6000602082019050818103600083015261523d81615201565b9050919050565b600081905092915050565b50565b600061525f600083615244565b915061526a8261524f565b600082019050919050565b600061528082615252565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006152c0601483614772565b91506152cb8261528a565b602082019050919050565b600060208201905081810360008301526152ef816152b3565b9050919050565b600061530182614811565b915061530c83614811565b92508282101561531f5761531e614fa8565b5b828203905092915050565b600061533582614811565b915061534083614811565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561537957615378614fa8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006153be82614811565b91506153c983614811565b9250826153d9576153d8615384565b5b828204905092915050565b6000815190506153f38161481b565b92915050565b60006020828403121561540f5761540e614475565b5b600061541d848285016153e4565b91505092915050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b600061545c600f83614772565b915061546782615426565b602082019050919050565b6000602082019050818103600083015261548b8161544f565b9050919050565b7f45786365656473204d6178000000000000000000000000000000000000000000600082015250565b60006154c8600b83614772565b91506154d382615492565b602082019050919050565b600060208201905081810360008301526154f7816154bb565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000615534600f83614772565b915061553f826154fe565b602082019050919050565b6000602082019050818103600083015261556381615527565b9050919050565b60008151905061557981614908565b92915050565b60006020828403121561559557615594614475565b5b60006155a38482850161556a565b91505092915050565b7f57726f6e67204e46542049642100000000000000000000000000000000000000600082015250565b60006155e2600d83614772565b91506155ed826155ac565b602082019050919050565b60006020820190508181036000830152615611816155d5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546156458161504f565b61564f8186615618565b9450600182166000811461566a576001811461567b576156ae565b60ff198316865281860193506156ae565b61568485615623565b60005b838110156156a657815481890152600182019150602081019050615687565b838801955050505b50505092915050565b60006156c282614767565b6156cc8185615618565b93506156dc818560208601614783565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b600061571a8285615638565b915061572682846156b7565b9150615731826156e8565b6005820191508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061579d602683614772565b91506157a882615741565b604082019050919050565b600060208201905081810360008301526157cc81615790565b9050919050565b7f4572726f7220776974682027776f726e27000000000000000000000000000000600082015250565b6000615809601183614772565b9150615814826157d3565b602082019050919050565b60006020820190508181036000830152615838816157fc565b9050919050565b7f4e6f7420746865204e4654206f776e6572210000000000000000000000000000600082015250565b6000615875601283614772565b91506158808261583f565b602082019050919050565b600060208201905081810360008301526158a481615868565b9050919050565b60006040820190506158c060008301856148de565b6158cd6020830184614510565b9392505050565b7f4e6f742059657420536574210000000000000000000000000000000000000000600082015250565b600061590a600c83614772565b9150615915826158d4565b602082019050919050565b60006020820190508181036000830152615939816158fd565b9050919050565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b6000615976600a83614772565b915061598182615940565b602082019050919050565b600060208201905081810360008301526159a581615969565b9050919050565b7f41626f7665204c696d6974000000000000000000000000000000000000000000600082015250565b60006159e2600b83614772565b91506159ed826159ac565b602082019050919050565b60006020820190508181036000830152615a11816159d5565b9050919050565b7f4578636565647320537570706c79000000000000000000000000000000000000600082015250565b6000615a4e600e83614772565b9150615a5982615a18565b602082019050919050565b60006020820190508181036000830152615a7d81615a41565b9050919050565b7f57726f6e672053616c6500000000000000000000000000000000000000000000600082015250565b6000615aba600a83614772565b9150615ac582615a84565b602082019050919050565b60006020820190508181036000830152615ae981615aad565b9050919050565b6000819050919050565b615b0b615b0682614b9b565b615af0565b82525050565b6000615b1d8285615afa565b602082019150615b2d8284615afa565b6020820191508190509392505050565b600081519050919050565b6000615b5382615b3d565b615b5d8185615244565b9350615b6d818560208601614783565b80840191505092915050565b6000615b858284615b48565b915081905092915050565b600081519050615b9f81614ba5565b92915050565b600060208284031215615bbb57615bba614475565b5b6000615bc984828501615b90565b91505092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000615c08601083614772565b9150615c1382615bd2565b602082019050919050565b60006020820190508181036000830152615c3781615bfb565b9050919050565b600082825260208201905092915050565b6000615c5a82615b3d565b615c648185615c3e565b9350615c74818560208601614783565b615c7d816145ca565b840191505092915050565b6000608082019050615c9d6000830187614874565b615caa6020830186614874565b615cb760408301856148de565b8181036060830152615cc98184615c4f565b905095945050505050565b600081519050615ce3816144ab565b92915050565b600060208284031215615cff57615cfe614475565b5b6000615d0d84828501615cd4565b91505092915050565b6000615d2182614811565b9150615d2c83614811565b925082615d3c57615d3b615384565b5b828206905092915050565b7f54656d706c65206572726f720000000000000000000000000000000000000000600082015250565b6000615d7d600c83614772565b9150615d8882615d47565b602082019050919050565b60006020820190508181036000830152615dac81615d70565b9050919050565b7f43616e2774206265207472616e73666572656400000000000000000000000000600082015250565b6000615de9601383614772565b9150615df482615db3565b602082019050919050565b60006020820190508181036000830152615e1881615ddc565b905091905056fea264697066735822122049d10935d7d33c822d7ef8356310b7bea1ccf1a5c30c9251be9521e74367244364736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d616a34764e6756486f6f545a4866334b45346a4a6152647741616a62566132327846564c414b3247515479542f5265696e6361726e6174696f6e50617373

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806362abebce1161014f578063a38bffda116100c1578063e222c7f91161007a578063e222c7f91461092c578063e985e9c514610943578063ebf0c71714610980578063ef3f6760146109ab578063f2fde38b146109c2578063f56e9c66146109eb5761027d565b8063a38bffda1461081e578063a694fc3a14610849578063b88d4fde14610872578063c87b56dd1461089b578063caa4ea2c146108d8578063d1d80f30146109015761027d565b80637a5b85c1116101135780637a5b85c11461073c5780638da5cb5b146107675780638f76696c1461079257806392642744146107ae57806395d89b41146107ca578063a22cb465146107f55761027d565b806362abebce1461066b5780636352211e1461069457806370a08231146106d1578063715018a61461070e57806372c0fa54146107255761027d565b806322f3e2d4116101f357806335460fb2116101ac57806335460fb21461055d57806342842e0e1461059a5780634b980d67146105c357806351cff8d9146105ee57806360d938dc1461061757806361122321146106425761027d565b806322f3e2d41461047357806323b872dd1461049e578063265aa621146104c757806329c68dc1146105065780632e17de781461051d57806334393743146105465761027d565b8063095ea7b311610245578063095ea7b314610379578063144fa6d7146103a257806318160ddd146103cb5780631e84c413146103f65780632033b2cc146104215780632214b9551461044a5761027d565b806301ffc9a71461028257806302d2cd39146102bf578063053a24d6146102e857806306fdde0314610311578063081812fc1461033c575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906144d7565b610a14565b6040516102b6919061451f565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190614598565b610af6565b005b3480156102f457600080fd5b5061030f600480360381019061030a919061471e565b610bb6565b005b34801561031d57600080fd5b50610326610c7a565b60405161033391906147ef565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190614847565b610d0c565b6040516103709190614883565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b919061489e565b610d88565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190614598565b610e8d565b005b3480156103d757600080fd5b506103e0610f4d565b6040516103ed91906148ed565b60405180910390f35b34801561040257600080fd5b5061040b610f64565b604051610418919061451f565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190614847565b610f77565b005b34801561045657600080fd5b50610471600480360381019061046c9190614934565b6110ab565b005b34801561047f57600080fd5b5061048861133e565b604051610495919061451f565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190614987565b611351565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190614847565b611361565b6040516104fd939291906149da565b60405180910390f35b34801561051257600080fd5b5061051b6113a5565b005b34801561052957600080fd5b50610544600480360381019061053f9190614847565b61144d565b005b34801561055257600080fd5b5061055b6114fb565b005b34801561056957600080fd5b50610584600480360381019061057f9190614847565b6115a3565b60405161059191906147ef565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190614987565b611643565b005b3480156105cf57600080fd5b506105d8611663565b6040516105e591906148ed565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190614598565b611669565b005b34801561062357600080fd5b5061062c6119d5565b604051610639919061451f565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190614a6c565b6119e8565b005b34801561067757600080fd5b50610692600480360381019061068d9190614b22565b611a8c565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190614847565b611cd7565b6040516106c89190614883565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614598565b611ced565b60405161070591906148ed565b60405180910390f35b34801561071a57600080fd5b50610723611dbd565b005b34801561073157600080fd5b5061073a611e45565b005b34801561074857600080fd5b50610751611eed565b60405161075e919061451f565b60405180910390f35b34801561077357600080fd5b5061077c611f00565b6040516107899190614883565b60405180910390f35b6107ac60048036038101906107a79190614c68565b611f2a565b005b6107c860048036038101906107c39190614847565b61223a565b005b3480156107d657600080fd5b506107df61226b565b6040516107ec91906147ef565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190614cc4565b6122fd565b005b34801561082a57600080fd5b50610833612475565b60405161084091906148ed565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190614847565b61247b565b005b34801561087e57600080fd5b5061089960048036038101906108949190614db9565b612568565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614847565b6125e0565b6040516108cf91906147ef565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190614e3c565b6126ca565b005b34801561090d57600080fd5b5061091661277b565b60405161092391906148ed565b60405180910390f35b34801561093857600080fd5b50610941612781565b005b34801561094f57600080fd5b5061096a60048036038101906109659190614ea3565b612829565b604051610977919061451f565b60405180910390f35b34801561098c57600080fd5b506109956128bd565b6040516109a29190614ef2565b60405180910390f35b3480156109b757600080fd5b506109c06128c3565b005b3480156109ce57600080fd5b506109e960048036038101906109e49190614598565b612959565b005b3480156109f757600080fd5b50610a126004803603810190610a0d9190614598565b612a51565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610adf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aef5750610aee82612b34565b5b9050919050565b610afe612b9e565b73ffffffffffffffffffffffffffffffffffffffff16610b1c611f00565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990614f59565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610bbe612b9e565b73ffffffffffffffffffffffffffffffffffffffff16610bdc611f00565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614f59565b60405180910390fd5b60005b8151811015610c7657610c63828281518110610c5457610c53614f79565b5b60200260200101516001612ba6565b8080610c6e90614fd7565b915050610c35565b5050565b606060028054610c899061504f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061504f565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000610d1782612c70565b610d4d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d9382611cd7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dfb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e1a612b9e565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d57610e4681610e41612b9e565b612829565b610e7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610e88838383612cbe565b505050565b610e95612b9e565b73ffffffffffffffffffffffffffffffffffffffff16610eb3611f00565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090614f59565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f57612d70565b6001546000540303905090565b600d60169054906101000a900460ff1681565b610f8381336001612d75565b610f8e816000612d8e565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d28e4355826040518263ffffffff1660e01b8152600401610fe991906148ed565b600060405180830381600087803b15801561100357600080fd5b505af1158015611017573d6000803e3d6000fd5b50505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632033b2cc826040518263ffffffff1660e01b815260040161107691906148ed565b600060405180830381600087803b15801561109057600080fd5b505af11580156110a4573d6000803e3d6000fd5b5050505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156111575750600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906150cd565b60405180910390fd5b6111a08284612dfb565b6111ab828215612d8e565b8015611218574260135460146000858152602001908152602001600020600101546111d691906150ed565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e9061518f565b60405180910390fd5b5b806014600084815260200190815260200160002060000160006101000a81548160ff0219169083151502179055506014600083815260200190815260200160002060020160009054906101000a900460ff1680156112735750805b1561131857601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639feb8f506112bf84611cd7565b6112c885612e75565b6040518363ffffffff1660e01b81526004016112e59291906151af565b600060405180830381600087803b1580156112ff57600080fd5b505af1158015611313573d6000803e3d6000fd5b505050505b80611339574260146000848152602001908152602001600020600101819055505b505050565b600d60149054906101000a900460ff1681565b61135c838383612ffd565b505050565b60146020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020160009054906101000a900460ff16905083565b6113ad612b9e565b73ffffffffffffffffffffffffffffffffffffffff166113cb611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614f59565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b61145981336001612d75565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639feb8f506114a083611cd7565b6114a984612e75565b6040518363ffffffff1660e01b81526004016114c69291906151af565b600060405180830381600087803b1580156114e057600080fd5b505af11580156114f4573d6000803e3d6000fd5b5050505050565b611503612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611521611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614f59565b60405180910390fd5b600d60159054906101000a900460ff1615600d60156101000a81548160ff021916908315150217905550565b600e60205280600052604060002060009150905080546115c29061504f565b80601f01602080910402602001604051908101604052809291908181526020018280546115ee9061504f565b801561163b5780601f106116105761010080835404028352916020019161163b565b820191906000526020600020905b81548152906001019060200180831161161e57829003601f168201915b505050505081565b61165e83838360405180602001604052806000815250612568565b505050565b600b5481565b611671612b9e565b73ffffffffffffffffffffffffffffffffffffffff1661168f611f00565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90614f59565b60405180910390fd5b60004711611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90615224565b60405180910390fd5b60004790506000600c541115611822576000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c5460405161178290615275565b60006040518083038185875af1925050503d80600081146117bf576040519150601f19603f3d011682016040523d82523d6000602084013e6117c4565b606091505b5050905080611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff906152d6565b60405180910390fd5b600c548261181691906152f6565b91506000600c81905550505b60008273ffffffffffffffffffffffffffffffffffffffff166103e86103de8461184c919061532a565b61185691906153b3565b60405161186290615275565b60006040518083038185875af1925050503d806000811461189f576040519150601f19603f3d011682016040523d82523d6000602084013e6118a4565b606091505b505090506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8600a856118f3919061532a565b6118fd91906153b3565b60405161190990615275565b60006040518083038185875af1925050503d8060008114611946576040519150601f19603f3d011682016040523d82523d6000602084013e61194b565b606091505b505090508161198f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611986906152d6565b60405180910390fd5b806119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c6906152d6565b60405180910390fd5b50505050565b600d60159054906101000a900460ff1681565b6119f0612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611a0e611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614f59565b60405180910390fd5b8282600e60008481526020019081526020016000209190611a86929190614385565b50505050565b611a946134b3565b6000805b83839050811015611c2057601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d28e4355858584818110611af457611af3614f79565b5b905060200201356040518263ffffffff1660e01b8152600401611b1791906148ed565b600060405180830381600087803b158015611b3157600080fd5b505af1158015611b45573d6000803e3d6000fd5b50505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663379607f5858584818110611b9a57611b99614f79565b5b905060200201356040518263ffffffff1660e01b8152600401611bbd91906148ed565b6020604051808303816000875af1158015611bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0091906153f9565b82611c0b91906150ed565b91508080611c1890614fd7565b915050611a98565b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639feb8f50611c8285856000818110611c7657611c75614f79565b5b90506020020135611cd7565b836040518363ffffffff1660e01b8152600401611ca09291906151af565b600060405180830381600087803b158015611cba57600080fd5b505af1158015611cce573d6000803e3d6000fd5b50505050505050565b6000611ce2826135a2565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d55576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611dc5612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611de3611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090614f59565b60405180910390fd5b611e43600061382d565b565b611e4d612b9e565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611f00565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614f59565b60405180910390fd5b600d60179054906101000a900460ff1615600d60176101000a81548160ff021916908315150217905550565b600d60179054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f4382600d60159054906101000a900460ff166138f3565b611f66813373ffffffffffffffffffffffffffffffffffffffff1660001b613a22565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90615472565b60405180910390fd5b600d60179054906101000a900460ff166120dd57600b548260106000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461201a91906150ed565b111561205b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612052906154de565b60405180910390fd5b6120658234613b69565b8160106000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c791906150ed565b925050819055506120d83383612ba6565b612236565b60018214612120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612117906154de565b60405180910390fd5b60116000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b79061554a565b60405180910390fd5b600160116000600f54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122353383612ba6565b5b5050565b61225481600d60159054906101000a900460ff16156138f3565b61225e8134613b69565b6122683382612ba6565b50565b60606003805461227a9061504f565b80601f01602080910402602001604051908101604052809291908181526020018280546122a69061504f565b80156122f35780601f106122c8576101008083540402835291602001916122f3565b820191906000526020600020905b8154815290600101906020018083116122d657829003601f168201915b5050505050905090565b612305612b9e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612377612b9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612424612b9e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612469919061451f565b60405180910390a35050565b600a5481565b6124836134b3565b61248f81336000612d75565b61249a816000612d8e565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a694fc3a826040518263ffffffff1660e01b81526004016124f591906148ed565b6020604051808303816000875af1158015612514573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612538919061557f565b6014600083815260200190815260200160002060020160006101000a81548160ff02191690831515021790555050565b612573848484612ffd565b6125928373ffffffffffffffffffffffffffffffffffffffff16612b11565b156125da576125a384848484613bbd565b6125d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606125ea610f4d565b82111561262c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612623906155f8565b60405180910390fd5b61010c821061268657600e60006001815260200190815260200160002061265f61010c8461265a91906152f6565b613d0e565b60405160200161267092919061570e565b60405160208183030381529060405290506126c5565b600e60008081526020019081526020016000206126a283613d0e565b6040516020016126b392919061570e565b60405160208183030381529060405290505b919050565b6126d2612b9e565b73ffffffffffffffffffffffffffffffffffffffff166126f0611f00565b73ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614f59565b60405180910390fd5b8383838360001b600a600060096000600b60006012600088919050558791905055869190505585919050555050505050505050565b60095481565b612789612b9e565b73ffffffffffffffffffffffffffffffffffffffff166127a7611f00565b73ffffffffffffffffffffffffffffffffffffffff16146127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614f59565b60405180910390fd5b600d60169054906101000a900460ff1615600d60166101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b6128cb612b9e565b73ffffffffffffffffffffffffffffffffffffffff166128e9611f00565b73ffffffffffffffffffffffffffffffffffffffff161461293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614f59565b60405180910390fd5b600f600081548092919061295290614fd7565b9190505550565b612961612b9e565b73ffffffffffffffffffffffffffffffffffffffff1661297f611f00565b73ffffffffffffffffffffffffffffffffffffffff16146129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3c906157b3565b60405180910390fd5b612a4e8161382d565b50565b612a59612b9e565b73ffffffffffffffffffffffffffffffffffffffff16612a77611f00565b73ffffffffffffffffffffffffffffffffffffffff1614612acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac490614f59565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000612bb0610f4d565b9050612bbc8383613e6f565b60008190505b8282612bce91906150ed565b811015612c6a57604051806060016040528060001515815260200160008152602001600015158152506014600083815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050508080612c6290614fd7565b915050612bc2565b50505050565b600081612c7b612d70565b11158015612c8a575060005482105b8015612cb7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b612d7f8383612dfb565b612d898382613e8d565b505050565b8015156014600084815260200190815260200160002060000160009054906101000a900460ff16151514612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee9061581f565b60405180910390fd5b5050565b8073ffffffffffffffffffffffffffffffffffffffff16612e1b83611cd7565b73ffffffffffffffffffffffffffffffffffffffff1614612e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e689061588b565b60405180910390fd5b5050565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d28e4355836040518263ffffffff1660e01b8152600401612ed291906148ed565b600060405180830381600087803b158015612eec57600080fd5b505af1158015612f00573d6000803e3d6000fd5b5050505060006014600084815260200190815260200160002060020160006101000a81548160ff021916908315150217905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639ebea88c836014600086815260200190815260200160002060000160009054906101000a900460ff166040518363ffffffff1660e01b8152600401612fb39291906158ab565b6020604051808303816000875af1158015612fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ff691906153f9565b9050919050565b6000613008826135a2565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613073576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16613094612b9e565b73ffffffffffffffffffffffffffffffffffffffff1614806130c357506130c2856130bd612b9e565b612829565b5b8061310857506130d1612b9e565b73ffffffffffffffffffffffffffffffffffffffff166130f084610d0c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613141576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131b58585856001613efa565b6131c160008487612cbe565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561344157600054821461344057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134ac8585856001613fbd565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156135615750600073ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b6135a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359790615920565b60405180910390fd5b565b6135aa61440b565b6000829050806135b8612d70565b116137f6576000548110156137f5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516137f357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136d7578092505050613828565b5b6001156137f257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146137ed578092505050613828565b6136d8565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600d60149054906101000a900460ff16613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139399061598c565b60405180910390fd5b600b54821115613987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397e906159f8565b60405180910390fd5b60095482613993610f4d565b61399d91906150ed565b11156139de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d590615a64565b60405180910390fd5b80613a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1590615ad0565b60405180910390fd5b5050565b60008082905060005b8451811015613b5a576000858281518110613a4957613a48614f79565b5b60200260200101519050808311613ad25760028382604051602001613a6f929190615b11565b604051602081830303815290604052604051613a8b9190615b79565b602060405180830381855afa158015613aa8573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190613acb9190615ba5565b9250613b46565b60028184604051602001613ae7929190615b11565b604051602081830303815290604052604051613b039190615b79565b602060405180830381855afa158015613b20573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190613b439190615ba5565b92505b508080613b5290614fd7565b915050613a2b565b50601254811491505092915050565b8082600a54613b78919061532a565b1115613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb090615c1e565b60405180910390fd5b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613be3612b9e565b8786866040518563ffffffff1660e01b8152600401613c059493929190615c88565b6020604051808303816000875af1925050508015613c4157506040513d601f19601f82011682018060405250810190613c3e9190615ce9565b60015b613cbb573d8060008114613c71576040519150601f19603f3d011682016040523d82523d6000602084013e613c76565b606091505b50600081511415613cb3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613d56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613e6a565b600082905060005b60008214613d88578080613d7190614fd7565b915050600a82613d8191906153b3565b9150613d5e565b60008167ffffffffffffffff811115613da457613da36145db565b5b6040519080825280601f01601f191660200182016040528015613dd65781602001600182028036833780820191505090505b5090505b60008514613e6357600182613def91906152f6565b9150600a85613dfe9190615d16565b6030613e0a91906150ed565b60f81b818381518110613e2057613e1f614f79565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613e5c91906153b3565b9450613dda565b8093505050505b919050565b613e89828260405180602001604052806000815250613fc3565b5050565b8015156014600084815260200190815260200160002060020160009054906101000a900460ff16151514613ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eed90615d93565b60405180910390fd5b5050565b60008290505b8183613f0c91906150ed565b8111613fb6576014600082815260200190815260200160002060000160009054906101000a900460ff16158015613f6457506014600082815260200190815260200160002060020160009054906101000a900460ff16155b613fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f9a90615dff565b60405180910390fd5b8080613fae90614fd7565b915050613f00565b5050505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614030576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561406b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6140786000858386613efa565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506142398673ffffffffffffffffffffffffffffffffffffffff16612b11565b156142fe575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46142ae6000878480600101955087613bbd565b6142e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061423f5782600054146142f957600080fd5b614369565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106142ff575b81600081905550505061437f6000858386613fbd565b50505050565b8280546143919061504f565b90600052602060002090601f0160209004810192826143b357600085556143fa565b82601f106143cc57803560ff19168380011785556143fa565b828001600101855582156143fa579182015b828111156143f95782358255916020019190600101906143de565b5b509050614407919061444e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561446757600081600090555060010161444f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6144b48161447f565b81146144bf57600080fd5b50565b6000813590506144d1816144ab565b92915050565b6000602082840312156144ed576144ec614475565b5b60006144fb848285016144c2565b91505092915050565b60008115159050919050565b61451981614504565b82525050565b60006020820190506145346000830184614510565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006145658261453a565b9050919050565b6145758161455a565b811461458057600080fd5b50565b6000813590506145928161456c565b92915050565b6000602082840312156145ae576145ad614475565b5b60006145bc84828501614583565b91505092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614613826145ca565b810181811067ffffffffffffffff82111715614632576146316145db565b5b80604052505050565b600061464561446b565b9050614651828261460a565b919050565b600067ffffffffffffffff821115614671576146706145db565b5b602082029050602081019050919050565b600080fd5b600061469a61469584614656565b61463b565b905080838252602082019050602084028301858111156146bd576146bc614682565b5b835b818110156146e657806146d28882614583565b8452602084019350506020810190506146bf565b5050509392505050565b600082601f830112614705576147046145c5565b5b8135614715848260208601614687565b91505092915050565b60006020828403121561473457614733614475565b5b600082013567ffffffffffffffff8111156147525761475161447a565b5b61475e848285016146f0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156147a1578082015181840152602081019050614786565b838111156147b0576000848401525b50505050565b60006147c182614767565b6147cb8185614772565b93506147db818560208601614783565b6147e4816145ca565b840191505092915050565b6000602082019050818103600083015261480981846147b6565b905092915050565b6000819050919050565b61482481614811565b811461482f57600080fd5b50565b6000813590506148418161481b565b92915050565b60006020828403121561485d5761485c614475565b5b600061486b84828501614832565b91505092915050565b61487d8161455a565b82525050565b60006020820190506148986000830184614874565b92915050565b600080604083850312156148b5576148b4614475565b5b60006148c385828601614583565b92505060206148d485828601614832565b9150509250929050565b6148e781614811565b82525050565b600060208201905061490260008301846148de565b92915050565b61491181614504565b811461491c57600080fd5b50565b60008135905061492e81614908565b92915050565b60008060006060848603121561494d5761494c614475565b5b600061495b86828701614583565b935050602061496c86828701614832565b925050604061497d8682870161491f565b9150509250925092565b6000806000606084860312156149a05761499f614475565b5b60006149ae86828701614583565b93505060206149bf86828701614583565b92505060406149d086828701614832565b9150509250925092565b60006060820190506149ef6000830186614510565b6149fc60208301856148de565b614a096040830184614510565b949350505050565b600080fd5b60008083601f840112614a2c57614a2b6145c5565b5b8235905067ffffffffffffffff811115614a4957614a48614a11565b5b602083019150836001820283011115614a6557614a64614682565b5b9250929050565b600080600060408486031215614a8557614a84614475565b5b600084013567ffffffffffffffff811115614aa357614aa261447a565b5b614aaf86828701614a16565b93509350506020614ac286828701614832565b9150509250925092565b60008083601f840112614ae257614ae16145c5565b5b8235905067ffffffffffffffff811115614aff57614afe614a11565b5b602083019150836020820283011115614b1b57614b1a614682565b5b9250929050565b60008060208385031215614b3957614b38614475565b5b600083013567ffffffffffffffff811115614b5757614b5661447a565b5b614b6385828601614acc565b92509250509250929050565b600067ffffffffffffffff821115614b8a57614b896145db565b5b602082029050602081019050919050565b6000819050919050565b614bae81614b9b565b8114614bb957600080fd5b50565b600081359050614bcb81614ba5565b92915050565b6000614be4614bdf84614b6f565b61463b565b90508083825260208201905060208402830185811115614c0757614c06614682565b5b835b81811015614c305780614c1c8882614bbc565b845260208401935050602081019050614c09565b5050509392505050565b600082601f830112614c4f57614c4e6145c5565b5b8135614c5f848260208601614bd1565b91505092915050565b60008060408385031215614c7f57614c7e614475565b5b6000614c8d85828601614832565b925050602083013567ffffffffffffffff811115614cae57614cad61447a565b5b614cba85828601614c3a565b9150509250929050565b60008060408385031215614cdb57614cda614475565b5b6000614ce985828601614583565b9250506020614cfa8582860161491f565b9150509250929050565b600080fd5b600067ffffffffffffffff821115614d2457614d236145db565b5b614d2d826145ca565b9050602081019050919050565b82818337600083830152505050565b6000614d5c614d5784614d09565b61463b565b905082815260208101848484011115614d7857614d77614d04565b5b614d83848285614d3a565b509392505050565b600082601f830112614da057614d9f6145c5565b5b8135614db0848260208601614d49565b91505092915050565b60008060008060808587031215614dd357614dd2614475565b5b6000614de187828801614583565b9450506020614df287828801614583565b9350506040614e0387828801614832565b925050606085013567ffffffffffffffff811115614e2457614e2361447a565b5b614e3087828801614d8b565b91505092959194509250565b60008060008060808587031215614e5657614e55614475565b5b6000614e6487828801614832565b9450506020614e7587828801614832565b9350506040614e8687828801614832565b9250506060614e9787828801614832565b91505092959194509250565b60008060408385031215614eba57614eb9614475565b5b6000614ec885828601614583565b9250506020614ed985828601614583565b9150509250929050565b614eec81614b9b565b82525050565b6000602082019050614f076000830184614ee3565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614f43602083614772565b9150614f4e82614f0d565b602082019050919050565b60006020820190508181036000830152614f7281614f36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614fe282614811565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501557615014614fa8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061506757607f821691505b6020821081141561507b5761507a615020565b5b50919050565b7f57726f6e672073656e6465720000000000000000000000000000000000000000600082015250565b60006150b7600c83614772565b91506150c282615081565b602082019050919050565b600060208201905081810360008301526150e6816150aa565b9050919050565b60006150f882614811565b915061510383614811565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561513857615137614fa8565b5b828201905092915050565b7f4e65656420746f20576169740000000000000000000000000000000000000000600082015250565b6000615179600c83614772565b915061518482615143565b602082019050919050565b600060208201905081810360008301526151a88161516c565b9050919050565b60006040820190506151c46000830185614874565b6151d160208301846148de565b9392505050565b7f4e656761746976652042616c616e636500000000000000000000000000000000600082015250565b600061520e601083614772565b9150615219826151d8565b602082019050919050565b6000602082019050818103600083015261523d81615201565b9050919050565b600081905092915050565b50565b600061525f600083615244565b915061526a8261524f565b600082019050919050565b600061528082615252565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006152c0601483614772565b91506152cb8261528a565b602082019050919050565b600060208201905081810360008301526152ef816152b3565b9050919050565b600061530182614811565b915061530c83614811565b92508282101561531f5761531e614fa8565b5b828203905092915050565b600061533582614811565b915061534083614811565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561537957615378614fa8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006153be82614811565b91506153c983614811565b9250826153d9576153d8615384565b5b828204905092915050565b6000815190506153f38161481b565b92915050565b60006020828403121561540f5761540e614475565b5b600061541d848285016153e4565b91505092915050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b600061545c600f83614772565b915061546782615426565b602082019050919050565b6000602082019050818103600083015261548b8161544f565b9050919050565b7f45786365656473204d6178000000000000000000000000000000000000000000600082015250565b60006154c8600b83614772565b91506154d382615492565b602082019050919050565b600060208201905081810360008301526154f7816154bb565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000615534600f83614772565b915061553f826154fe565b602082019050919050565b6000602082019050818103600083015261556381615527565b9050919050565b60008151905061557981614908565b92915050565b60006020828403121561559557615594614475565b5b60006155a38482850161556a565b91505092915050565b7f57726f6e67204e46542049642100000000000000000000000000000000000000600082015250565b60006155e2600d83614772565b91506155ed826155ac565b602082019050919050565b60006020820190508181036000830152615611816155d5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546156458161504f565b61564f8186615618565b9450600182166000811461566a576001811461567b576156ae565b60ff198316865281860193506156ae565b61568485615623565b60005b838110156156a657815481890152600182019150602081019050615687565b838801955050505b50505092915050565b60006156c282614767565b6156cc8185615618565b93506156dc818560208601614783565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b600061571a8285615638565b915061572682846156b7565b9150615731826156e8565b6005820191508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061579d602683614772565b91506157a882615741565b604082019050919050565b600060208201905081810360008301526157cc81615790565b9050919050565b7f4572726f7220776974682027776f726e27000000000000000000000000000000600082015250565b6000615809601183614772565b9150615814826157d3565b602082019050919050565b60006020820190508181036000830152615838816157fc565b9050919050565b7f4e6f7420746865204e4654206f776e6572210000000000000000000000000000600082015250565b6000615875601283614772565b91506158808261583f565b602082019050919050565b600060208201905081810360008301526158a481615868565b9050919050565b60006040820190506158c060008301856148de565b6158cd6020830184614510565b9392505050565b7f4e6f742059657420536574210000000000000000000000000000000000000000600082015250565b600061590a600c83614772565b9150615915826158d4565b602082019050919050565b60006020820190508181036000830152615939816158fd565b9050919050565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b6000615976600a83614772565b915061598182615940565b602082019050919050565b600060208201905081810360008301526159a581615969565b9050919050565b7f41626f7665204c696d6974000000000000000000000000000000000000000000600082015250565b60006159e2600b83614772565b91506159ed826159ac565b602082019050919050565b60006020820190508181036000830152615a11816159d5565b9050919050565b7f4578636565647320537570706c79000000000000000000000000000000000000600082015250565b6000615a4e600e83614772565b9150615a5982615a18565b602082019050919050565b60006020820190508181036000830152615a7d81615a41565b9050919050565b7f57726f6e672053616c6500000000000000000000000000000000000000000000600082015250565b6000615aba600a83614772565b9150615ac582615a84565b602082019050919050565b60006020820190508181036000830152615ae981615aad565b9050919050565b6000819050919050565b615b0b615b0682614b9b565b615af0565b82525050565b6000615b1d8285615afa565b602082019150615b2d8284615afa565b6020820191508190509392505050565b600081519050919050565b6000615b5382615b3d565b615b5d8185615244565b9350615b6d818560208601614783565b80840191505092915050565b6000615b858284615b48565b915081905092915050565b600081519050615b9f81614ba5565b92915050565b600060208284031215615bbb57615bba614475565b5b6000615bc984828501615b90565b91505092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000615c08601083614772565b9150615c1382615bd2565b602082019050919050565b60006020820190508181036000830152615c3781615bfb565b9050919050565b600082825260208201905092915050565b6000615c5a82615b3d565b615c648185615c3e565b9350615c74818560208601614783565b615c7d816145ca565b840191505092915050565b6000608082019050615c9d6000830187614874565b615caa6020830186614874565b615cb760408301856148de565b8181036060830152615cc98184615c4f565b905095945050505050565b600081519050615ce3816144ab565b92915050565b600060208284031215615cff57615cfe614475565b5b6000615d0d84828501615cd4565b91505092915050565b6000615d2182614811565b9150615d2c83614811565b925082615d3c57615d3b615384565b5b828206905092915050565b7f54656d706c65206572726f720000000000000000000000000000000000000000600082015250565b6000615d7d600c83614772565b9150615d8882615d47565b602082019050919050565b60006020820190508181036000830152615dac81615d70565b9050919050565b7f43616e2774206265207472616e73666572656400000000000000000000000000600082015250565b6000615de9601383614772565b9150615df482615db3565b602082019050919050565b60006020820190508181036000830152615e1881615ddc565b905091905056fea264697066735822122049d10935d7d33c822d7ef8356310b7bea1ccf1a5c30c9251be9521e74367244364736f6c634300080c0033

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.