ETH Price: $3,304.99 (-3.76%)
Gas: 22 Gwei

Token

LostSoulsSanctuary (LSS)
 

Overview

Max Total Supply

9,999 LSS

Holders

1,840

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LSS
0x4ed08edd10ec1e2f137189b03801c2037166fdcd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

9,999 generatively unique lost souls in need of saving! Minted as an ERC-721 to the Sanctuary, come help rescue wayward souls so they may finally pass to the afterlife.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LostSoulsSanctuary

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : LostSouls.sol
// SPDX-License-Identifier: MIT

// Lost Souls Sanctuary's research has lead us to uncover earth shattering truths about how our souls navigate in the after-life.
// What we've found is truly shocking, something that various three letter agencies won't like, or worse try to supress/slander if the information was released via mutable channels.
// Souls roam this very earth frantically trying to make whole with the universe before their time is up and they are forever striken to the bowels of the underworld.
// All hope is not lost! Though the discovery of the Higgs boson particle a group of ghost-savers have established communication with 10,000 Lost Souls and struck a deal. 
// The deal: a Sanctuary will be setup to help the Souls discover their mistakes, changes their lives and pass through to the elusive good place,
// in return the Lost Souls Sanctuary will be given exclusive access to study the ectoplasmic layer the Soul's reside in so we may better understand our mortal role here on Earth.
//
// <3 LS Sanctuary team
// @glu

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract LostSoulsSanctuary is ERC721Enumerable, Ownable {

    string public SOUL_PROVENANCE = "";
    string _baseTokenURI;
    uint256 public constant MAX_SOULS = 9999;
    uint256 private soulReserved = 125;
    uint256 public constant maxSoulsPurchase = 20;
    uint256 private soulPrice = 0.03 ether;
    bool public salePaused = true;

    // Team - 50%
    address t1;
    address t2;
    address t3;
    address t4;
    // 50% - MUTLISIG // 40% MUTLISIG, 10% Charity
    address t5;

    constructor(
        address _t1,
        address _t2,
        address _t3,
        address _t4,
        address _t5
        ) ERC721("LostSoulsSanctuary", "LSS")  {
        t1 = _t1;
        t2 = _t2;
        t3 = _t3;
        t4 = _t4;
        t5 = _t5;
    }

    function saveLostSoul(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !salePaused,                              "Sale paused" );
        require( num <= maxSoulsPurchase,                  "You can adopt a maximum of 20 Souls" );
        require( supply + num <= MAX_SOULS - soulReserved, "Exceeds maximum Souls supply" );
        require( msg.value >= soulPrice * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

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

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

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        SOUL_PROVENANCE = provenanceHash;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        soulPrice = _newPrice;
    }

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

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

    function getPrice() public view returns (uint256){
        return soulPrice;
    }

    function reserveSouls(address _to, uint256 _amount) external onlyOwner {
        require( _amount <= soulReserved, "Exceeds reserved Soul supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        soulReserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        salePaused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint sale1 = address(this).balance * 8  / 100;
        uint sale2 = address(this).balance * 6  / 100;
        uint sale3 = address(this).balance * 18 / 100;
        uint sale4 = address(this).balance * 18 / 100;
        uint sale5 = address(this).balance * 50 / 100;

        payable(t1).transfer(sale1);
        payable(t2).transfer(sale2);
        payable(t3).transfer(sale3);
        payable(t4).transfer(sale4);
        payable(t5).transfer(sale5);
    }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_t1","type":"address"},{"internalType":"address","name":"_t2","type":"address"},{"internalType":"address","name":"_t3","type":"address"},{"internalType":"address","name":"_t4","type":"address"},{"internalType":"address","name":"_t5","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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_SOULS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOUL_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSoulsPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveSouls","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"saveLostSoul","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001b4565b50607d600d55666a94d74f430000600e55600f805460ff191660011790553480156200004657600080fd5b50604051620029ba380380620029ba833981016040819052620000699162000277565b60408051808201825260128152714c6f7374536f756c7353616e63747561727960701b6020808301918252835180850190945260038452624c535360e81b908401528151919291620000be91600091620001b4565b508051620000d4906001906020840190620001b4565b505050620000f1620000eb6200015e60201b60201c565b62000162565b600f80546001600160a01b0396871661010002610100600160a81b0319909116179055601080549486166001600160a01b03199586161790556011805493861693851693909317909255601280549185169184169190911790556013805491909316911617905562000323565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c290620002e6565b90600052602060002090601f016020900481019282620001e6576000855562000231565b82601f106200020157805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023157825182559160200191906001019062000214565b506200023f92915062000243565b5090565b5b808211156200023f576000815560010162000244565b80516001600160a01b03811681146200027257600080fd5b919050565b600080600080600060a086880312156200028f578081fd5b6200029a866200025a565b9450620002aa602087016200025a565b9350620002ba604087016200025a565b9250620002ca606087016200025a565b9150620002da608087016200025a565b90509295509295909350565b600281046001821680620002fb57607f821691505b602082108114156200031d57634e487b7160e01b600052602260045260246000fd5b50919050565b61268780620003336000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063d2a2c55711610064578063d2a2c55714610539578063db83ef871461054e578063e985e9c514610561578063f2fde38b14610581576101e3565b8063b88d4fde146104c4578063c87b56dd146104e4578063c9c4d03e14610504578063cdf6d3f914610519576101e3565b806391b7f5ed116100d157806391b7f5ed1461045a57806395d89b411461047a57806398d5fdca1461048f578063a22cb465146104a4576101e3565b8063715018a614610413578063853828b6146104285780638bfb9671146104305780638da5cb5b14610445576101e3565b80632f745c591161017a57806355f804b31161014957806355f804b31461039e5780635d08c1ae146103be5780636352211e146103d357806370a08231146103f3576101e3565b80632f745c591461031157806342842e0e14610331578063438b6300146103515780634f6ccce71461037e576101e3565b8063095ea7b3116101b6578063095ea7b31461028f57806310969523146102af57806318160ddd146102cf57806323b872dd146102f1576101e3565b806301ffc9a7146101e857806302329a291461021e57806306fdde0314610240578063081812fc14610262575b600080fd5b3480156101f457600080fd5b50610208610203366004611d4a565b6105a1565b6040516102159190611ed0565b60405180910390f35b34801561022a57600080fd5b5061023e610239366004611d30565b6105ce565b005b34801561024c57600080fd5b50610255610629565b6040516102159190611edb565b34801561026e57600080fd5b5061028261027d366004611dc8565b6106bb565b6040516102159190611e3b565b34801561029b57600080fd5b5061023e6102aa366004611d07565b6106fe565b3480156102bb57600080fd5b5061023e6102ca366004611d82565b610796565b3480156102db57600080fd5b506102e46107ec565b60405161021591906124f8565b3480156102fd57600080fd5b5061023e61030c366004611c2a565b6107f2565b34801561031d57600080fd5b506102e461032c366004611d07565b61082a565b34801561033d57600080fd5b5061023e61034c366004611c2a565b61087c565b34801561035d57600080fd5b5061037161036c366004611bde565b610897565b6040516102159190611e8c565b34801561038a57600080fd5b506102e4610399366004611dc8565b610955565b3480156103aa57600080fd5b5061023e6103b9366004611d82565b6109b0565b3480156103ca57600080fd5b50610208610a02565b3480156103df57600080fd5b506102826103ee366004611dc8565b610a0b565b3480156103ff57600080fd5b506102e461040e366004611bde565b610a40565b34801561041f57600080fd5b5061023e610a84565b61023e610acf565b34801561043c57600080fd5b506102e4610cc7565b34801561045157600080fd5b50610282610ccd565b34801561046657600080fd5b5061023e610475366004611dc8565b610cdc565b34801561048657600080fd5b50610255610d20565b34801561049b57600080fd5b506102e4610d2f565b3480156104b057600080fd5b5061023e6104bf366004611cde565b610d35565b3480156104d057600080fd5b5061023e6104df366004611c65565b610e03565b3480156104f057600080fd5b506102556104ff366004611dc8565b610e42565b34801561051057600080fd5b50610255610ec5565b34801561052557600080fd5b5061023e610534366004611d07565b610f53565b34801561054557600080fd5b506102e461100d565b61023e61055c366004611dc8565b611012565b34801561056d57600080fd5b5061020861057c366004611bf8565b6110f2565b34801561058d57600080fd5b5061023e61059c366004611bde565b611120565b60006001600160e01b0319821663780e9d6360e01b14806105c657506105c682611191565b90505b919050565b6105d66111d1565b6001600160a01b03166105e7610ccd565b6001600160a01b0316146106165760405162461bcd60e51b815260040161060d906122d3565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546106389061258f565b80601f01602080910402602001604051908101604052809291908181526020018280546106649061258f565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b60006106c6826111d5565b6106e25760405162461bcd60e51b815260040161060d90612287565b506000908152600460205260409020546001600160a01b031690565b600061070982610a0b565b9050806001600160a01b0316836001600160a01b0316141561073d5760405162461bcd60e51b815260040161060d906123a0565b806001600160a01b031661074f6111d1565b6001600160a01b0316148061076b575061076b8161057c6111d1565b6107875760405162461bcd60e51b815260040161060d9061212b565b61079183836111f2565b505050565b61079e6111d1565b6001600160a01b03166107af610ccd565b6001600160a01b0316146107d55760405162461bcd60e51b815260040161060d906122d3565b80516107e890600b906020840190611aae565b5050565b60085490565b6108036107fd6111d1565b82611260565b61081f5760405162461bcd60e51b815260040161060d90612418565b6107918383836112e5565b600061083583610a40565b82106108535760405162461bcd60e51b815260040161060d90611f4a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61079183838360405180602001604052806000815250610e03565b606060006108a483610a40565b905060008167ffffffffffffffff8111156108cf57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156108f8578160200160208202803683370190505b50905060005b8281101561094d57610910858261082a565b82828151811061093057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610945816125ca565b9150506108fe565b509392505050565b600061095f6107ec565b821061097d5760405162461bcd60e51b815260040161060d906124ac565b6008828154811061099e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6109b86111d1565b6001600160a01b03166109c9610ccd565b6001600160a01b0316146109ef5760405162461bcd60e51b815260040161060d906122d3565b80516107e890600c906020840190611aae565b600f5460ff1681565b6000818152600260205260408120546001600160a01b0316806105c65760405162461bcd60e51b815260040161060d906121d2565b60006001600160a01b038216610a685760405162461bcd60e51b815260040161060d90612188565b506001600160a01b031660009081526003602052604090205490565b610a8c6111d1565b6001600160a01b0316610a9d610ccd565b6001600160a01b031614610ac35760405162461bcd60e51b815260040161060d906122d3565b610acd6000611412565b565b610ad76111d1565b6001600160a01b0316610ae8610ccd565b6001600160a01b031614610b0e5760405162461bcd60e51b815260040161060d906122d3565b60006064610b1d47600861252d565b610b279190612519565b905060006064610b3847600661252d565b610b429190612519565b905060006064610b5347601261252d565b610b5d9190612519565b905060006064610b6e47601261252d565b610b789190612519565b905060006064610b8947603261252d565b610b939190612519565b600f5460405191925061010090046001600160a01b0316906108fc8715029087906000818181858888f19350505050158015610bd3573d6000803e3d6000fd5b506010546040516001600160a01b039091169085156108fc029086906000818181858888f19350505050158015610c0e573d6000803e3d6000fd5b506011546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015610c49573d6000803e3d6000fd5b506012546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610c84573d6000803e3d6000fd5b506013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610cbf573d6000803e3d6000fd5b505050505050565b61270f81565b600a546001600160a01b031690565b610ce46111d1565b6001600160a01b0316610cf5610ccd565b6001600160a01b031614610d1b5760405162461bcd60e51b815260040161060d906122d3565b600e55565b6060600180546106389061258f565b600e5490565b610d3d6111d1565b6001600160a01b0316826001600160a01b03161415610d6e5760405162461bcd60e51b815260040161060d906120a8565b8060056000610d7b6111d1565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610dbf6111d1565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df79190611ed0565b60405180910390a35050565b610e14610e0e6111d1565b83611260565b610e305760405162461bcd60e51b815260040161060d90612418565b610e3c84848484611464565b50505050565b6060610e4d826111d5565b610e695760405162461bcd60e51b815260040161060d90612351565b6000610e73611497565b90506000815111610e935760405180602001604052806000815250610ebe565b80610e9d846114a6565b604051602001610eae929190611e0c565b6040516020818303038152906040525b9392505050565b600b8054610ed29061258f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061258f565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505081565b610f5b6111d1565b6001600160a01b0316610f6c610ccd565b6001600160a01b031614610f925760405162461bcd60e51b815260040161060d906122d3565b600d54811115610fb45760405162461bcd60e51b815260040161060d90611f13565b6000610fbe6107ec565b905060005b82811015610ff057610fde84610fd98385612501565b6115c1565b80610fe8816125ca565b915050610fc3565b5081600d6000828254611003919061254c565b9091555050505050565b601481565b600061101c6107ec565b600f5490915060ff16156110425760405162461bcd60e51b815260040161060d90611eee565b60148211156110635760405162461bcd60e51b815260040161060d90612469565b600d546110729061270f61254c565b61107c8383612501565b111561109a5760405162461bcd60e51b815260040161060d90612250565b81600e546110a8919061252d565b3410156110c75760405162461bcd60e51b815260040161060d906123e1565b60005b82811015610791576110e033610fd98385612501565b806110ea816125ca565b9150506110ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111286111d1565b6001600160a01b0316611139610ccd565b6001600160a01b03161461115f5760405162461bcd60e51b815260040161060d906122d3565b6001600160a01b0381166111855760405162461bcd60e51b815260040161060d90611fe7565b61118e81611412565b50565b60006001600160e01b031982166380ac58cd60e01b14806111c257506001600160e01b03198216635b5e139f60e01b145b806105c657506105c6826115db565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122782610a0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061126b826111d5565b6112875760405162461bcd60e51b815260040161060d906120df565b600061129283610a0b565b9050806001600160a01b0316846001600160a01b031614806112cd5750836001600160a01b03166112c2846106bb565b6001600160a01b0316145b806112dd57506112dd81856110f2565b949350505050565b826001600160a01b03166112f882610a0b565b6001600160a01b03161461131e5760405162461bcd60e51b815260040161060d90612308565b6001600160a01b0382166113445760405162461bcd60e51b815260040161060d90612064565b61134f8383836115f4565b61135a6000826111f2565b6001600160a01b038316600090815260036020526040812080546001929061138390849061254c565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b1908490612501565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61146f8484846112e5565b61147b8484848461167d565b610e3c5760405162461bcd60e51b815260040161060d90611f95565b6060600c80546106389061258f565b6060816114cb57506040805180820190915260018152600360fc1b60208201526105c9565b8160005b81156114f557806114df816125ca565b91506114ee9050600a83612519565b91506114cf565b60008167ffffffffffffffff81111561151e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611548576020820181803683370190505b5090505b84156112dd5761155d60018361254c565b915061156a600a866125e5565b611575906030612501565b60f81b81838151811061159857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115ba600a86612519565b945061154c565b6107e8828260405180602001604052806000815250611798565b6001600160e01b031981166301ffc9a760e01b14919050565b6115ff838383610791565b6001600160a01b03831661161b57611616816117cb565b61163e565b816001600160a01b0316836001600160a01b03161461163e5761163e838261180f565b6001600160a01b03821661165a57611655816118ac565b610791565b826001600160a01b0316826001600160a01b031614610791576107918282611985565b6000611691846001600160a01b03166119c9565b1561178d57836001600160a01b031663150b7a026116ad6111d1565b8786866040518563ffffffff1660e01b81526004016116cf9493929190611e4f565b602060405180830381600087803b1580156116e957600080fd5b505af1925050508015611719575060408051601f3d908101601f1916820190925261171691810190611d66565b60015b611773573d808015611747576040519150601f19603f3d011682016040523d82523d6000602084013e61174c565b606091505b50805161176b5760405162461bcd60e51b815260040161060d90611f95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112dd565b506001949350505050565b6117a283836119cf565b6117af600084848461167d565b6107915760405162461bcd60e51b815260040161060d90611f95565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161181c84610a40565b611826919061254c565b600083815260076020526040902054909150808214611879576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118be9060019061254c565b600083815260096020526040812054600880549394509092849081106118f457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061192357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061196957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061199083610a40565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b0382166119f55760405162461bcd60e51b815260040161060d9061221b565b6119fe816111d5565b15611a1b5760405162461bcd60e51b815260040161060d9061202d565b611a27600083836115f4565b6001600160a01b0382166000908152600360205260408120805460019290611a50908490612501565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611aba9061258f565b90600052602060002090601f016020900481019282611adc5760008555611b22565b82601f10611af557805160ff1916838001178555611b22565b82800160010185558215611b22579182015b82811115611b22578251825591602001919060010190611b07565b50611b2e929150611b32565b5090565b5b80821115611b2e5760008155600101611b33565b600067ffffffffffffffff80841115611b6257611b62612625565b604051601f8501601f191681016020018281118282101715611b8657611b86612625565b604052848152915081838501861015611b9e57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105c957600080fd5b803580151581146105c957600080fd5b600060208284031215611bef578081fd5b610ebe82611bb7565b60008060408385031215611c0a578081fd5b611c1383611bb7565b9150611c2160208401611bb7565b90509250929050565b600080600060608486031215611c3e578081fd5b611c4784611bb7565b9250611c5560208501611bb7565b9150604084013590509250925092565b60008060008060808587031215611c7a578081fd5b611c8385611bb7565b9350611c9160208601611bb7565b925060408501359150606085013567ffffffffffffffff811115611cb3578182fd5b8501601f81018713611cc3578182fd5b611cd287823560208401611b47565b91505092959194509250565b60008060408385031215611cf0578182fd5b611cf983611bb7565b9150611c2160208401611bce565b60008060408385031215611d19578182fd5b611d2283611bb7565b946020939093013593505050565b600060208284031215611d41578081fd5b610ebe82611bce565b600060208284031215611d5b578081fd5b8135610ebe8161263b565b600060208284031215611d77578081fd5b8151610ebe8161263b565b600060208284031215611d93578081fd5b813567ffffffffffffffff811115611da9578182fd5b8201601f81018413611db9578182fd5b6112dd84823560208401611b47565b600060208284031215611dd9578081fd5b5035919050565b60008151808452611df8816020860160208601612563565b601f01601f19169290920160200192915050565b60008351611e1e818460208801612563565b835190830190611e32818360208801612563565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e8290830184611de0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ec457835183529284019291840191600101611ea8565b50909695505050505050565b901515815260200190565b600060208252610ebe6020830184611de0565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252601c908201527f4578636565647320726573657276656420536f756c20737570706c7900000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601c908201527f45786365656473206d6178696d756d20536f756c7320737570706c7900000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f596f752063616e2061646f70742061206d6178696d756d206f6620323020536f604082015262756c7360e81b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60008219821115612514576125146125f9565b500190565b6000826125285761252861260f565b500490565b6000816000190483118215151615612547576125476125f9565b500290565b60008282101561255e5761255e6125f9565b500390565b60005b8381101561257e578181015183820152602001612566565b83811115610e3c5750506000910152565b6002810460018216806125a357607f821691505b602082108114156125c457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125de576125de6125f9565b5060010190565b6000826125f4576125f461260f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461118e57600080fdfea2646970667358221220550f9f6e363931114d70c4381807ff3d6a95bdaa07295f6ba40484bcb1735be964736f6c63430008000033000000000000000000000000f4dec5f15378a92089ce04226061782dedc3aab10000000000000000000000002cdf899777c11a24cb4d69de8cb7ad304db95f83000000000000000000000000102a37308cebc21b87101d6abcf47bb99193bc31000000000000000000000000c5182f36001eb7cbabdb687087596cc42afcb605000000000000000000000000ffcd5e359a6afe39f6c58544db0bb408f2d17e33

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063d2a2c55711610064578063d2a2c55714610539578063db83ef871461054e578063e985e9c514610561578063f2fde38b14610581576101e3565b8063b88d4fde146104c4578063c87b56dd146104e4578063c9c4d03e14610504578063cdf6d3f914610519576101e3565b806391b7f5ed116100d157806391b7f5ed1461045a57806395d89b411461047a57806398d5fdca1461048f578063a22cb465146104a4576101e3565b8063715018a614610413578063853828b6146104285780638bfb9671146104305780638da5cb5b14610445576101e3565b80632f745c591161017a57806355f804b31161014957806355f804b31461039e5780635d08c1ae146103be5780636352211e146103d357806370a08231146103f3576101e3565b80632f745c591461031157806342842e0e14610331578063438b6300146103515780634f6ccce71461037e576101e3565b8063095ea7b3116101b6578063095ea7b31461028f57806310969523146102af57806318160ddd146102cf57806323b872dd146102f1576101e3565b806301ffc9a7146101e857806302329a291461021e57806306fdde0314610240578063081812fc14610262575b600080fd5b3480156101f457600080fd5b50610208610203366004611d4a565b6105a1565b6040516102159190611ed0565b60405180910390f35b34801561022a57600080fd5b5061023e610239366004611d30565b6105ce565b005b34801561024c57600080fd5b50610255610629565b6040516102159190611edb565b34801561026e57600080fd5b5061028261027d366004611dc8565b6106bb565b6040516102159190611e3b565b34801561029b57600080fd5b5061023e6102aa366004611d07565b6106fe565b3480156102bb57600080fd5b5061023e6102ca366004611d82565b610796565b3480156102db57600080fd5b506102e46107ec565b60405161021591906124f8565b3480156102fd57600080fd5b5061023e61030c366004611c2a565b6107f2565b34801561031d57600080fd5b506102e461032c366004611d07565b61082a565b34801561033d57600080fd5b5061023e61034c366004611c2a565b61087c565b34801561035d57600080fd5b5061037161036c366004611bde565b610897565b6040516102159190611e8c565b34801561038a57600080fd5b506102e4610399366004611dc8565b610955565b3480156103aa57600080fd5b5061023e6103b9366004611d82565b6109b0565b3480156103ca57600080fd5b50610208610a02565b3480156103df57600080fd5b506102826103ee366004611dc8565b610a0b565b3480156103ff57600080fd5b506102e461040e366004611bde565b610a40565b34801561041f57600080fd5b5061023e610a84565b61023e610acf565b34801561043c57600080fd5b506102e4610cc7565b34801561045157600080fd5b50610282610ccd565b34801561046657600080fd5b5061023e610475366004611dc8565b610cdc565b34801561048657600080fd5b50610255610d20565b34801561049b57600080fd5b506102e4610d2f565b3480156104b057600080fd5b5061023e6104bf366004611cde565b610d35565b3480156104d057600080fd5b5061023e6104df366004611c65565b610e03565b3480156104f057600080fd5b506102556104ff366004611dc8565b610e42565b34801561051057600080fd5b50610255610ec5565b34801561052557600080fd5b5061023e610534366004611d07565b610f53565b34801561054557600080fd5b506102e461100d565b61023e61055c366004611dc8565b611012565b34801561056d57600080fd5b5061020861057c366004611bf8565b6110f2565b34801561058d57600080fd5b5061023e61059c366004611bde565b611120565b60006001600160e01b0319821663780e9d6360e01b14806105c657506105c682611191565b90505b919050565b6105d66111d1565b6001600160a01b03166105e7610ccd565b6001600160a01b0316146106165760405162461bcd60e51b815260040161060d906122d3565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546106389061258f565b80601f01602080910402602001604051908101604052809291908181526020018280546106649061258f565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b60006106c6826111d5565b6106e25760405162461bcd60e51b815260040161060d90612287565b506000908152600460205260409020546001600160a01b031690565b600061070982610a0b565b9050806001600160a01b0316836001600160a01b0316141561073d5760405162461bcd60e51b815260040161060d906123a0565b806001600160a01b031661074f6111d1565b6001600160a01b0316148061076b575061076b8161057c6111d1565b6107875760405162461bcd60e51b815260040161060d9061212b565b61079183836111f2565b505050565b61079e6111d1565b6001600160a01b03166107af610ccd565b6001600160a01b0316146107d55760405162461bcd60e51b815260040161060d906122d3565b80516107e890600b906020840190611aae565b5050565b60085490565b6108036107fd6111d1565b82611260565b61081f5760405162461bcd60e51b815260040161060d90612418565b6107918383836112e5565b600061083583610a40565b82106108535760405162461bcd60e51b815260040161060d90611f4a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61079183838360405180602001604052806000815250610e03565b606060006108a483610a40565b905060008167ffffffffffffffff8111156108cf57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156108f8578160200160208202803683370190505b50905060005b8281101561094d57610910858261082a565b82828151811061093057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610945816125ca565b9150506108fe565b509392505050565b600061095f6107ec565b821061097d5760405162461bcd60e51b815260040161060d906124ac565b6008828154811061099e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6109b86111d1565b6001600160a01b03166109c9610ccd565b6001600160a01b0316146109ef5760405162461bcd60e51b815260040161060d906122d3565b80516107e890600c906020840190611aae565b600f5460ff1681565b6000818152600260205260408120546001600160a01b0316806105c65760405162461bcd60e51b815260040161060d906121d2565b60006001600160a01b038216610a685760405162461bcd60e51b815260040161060d90612188565b506001600160a01b031660009081526003602052604090205490565b610a8c6111d1565b6001600160a01b0316610a9d610ccd565b6001600160a01b031614610ac35760405162461bcd60e51b815260040161060d906122d3565b610acd6000611412565b565b610ad76111d1565b6001600160a01b0316610ae8610ccd565b6001600160a01b031614610b0e5760405162461bcd60e51b815260040161060d906122d3565b60006064610b1d47600861252d565b610b279190612519565b905060006064610b3847600661252d565b610b429190612519565b905060006064610b5347601261252d565b610b5d9190612519565b905060006064610b6e47601261252d565b610b789190612519565b905060006064610b8947603261252d565b610b939190612519565b600f5460405191925061010090046001600160a01b0316906108fc8715029087906000818181858888f19350505050158015610bd3573d6000803e3d6000fd5b506010546040516001600160a01b039091169085156108fc029086906000818181858888f19350505050158015610c0e573d6000803e3d6000fd5b506011546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015610c49573d6000803e3d6000fd5b506012546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610c84573d6000803e3d6000fd5b506013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610cbf573d6000803e3d6000fd5b505050505050565b61270f81565b600a546001600160a01b031690565b610ce46111d1565b6001600160a01b0316610cf5610ccd565b6001600160a01b031614610d1b5760405162461bcd60e51b815260040161060d906122d3565b600e55565b6060600180546106389061258f565b600e5490565b610d3d6111d1565b6001600160a01b0316826001600160a01b03161415610d6e5760405162461bcd60e51b815260040161060d906120a8565b8060056000610d7b6111d1565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610dbf6111d1565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df79190611ed0565b60405180910390a35050565b610e14610e0e6111d1565b83611260565b610e305760405162461bcd60e51b815260040161060d90612418565b610e3c84848484611464565b50505050565b6060610e4d826111d5565b610e695760405162461bcd60e51b815260040161060d90612351565b6000610e73611497565b90506000815111610e935760405180602001604052806000815250610ebe565b80610e9d846114a6565b604051602001610eae929190611e0c565b6040516020818303038152906040525b9392505050565b600b8054610ed29061258f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061258f565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505081565b610f5b6111d1565b6001600160a01b0316610f6c610ccd565b6001600160a01b031614610f925760405162461bcd60e51b815260040161060d906122d3565b600d54811115610fb45760405162461bcd60e51b815260040161060d90611f13565b6000610fbe6107ec565b905060005b82811015610ff057610fde84610fd98385612501565b6115c1565b80610fe8816125ca565b915050610fc3565b5081600d6000828254611003919061254c565b9091555050505050565b601481565b600061101c6107ec565b600f5490915060ff16156110425760405162461bcd60e51b815260040161060d90611eee565b60148211156110635760405162461bcd60e51b815260040161060d90612469565b600d546110729061270f61254c565b61107c8383612501565b111561109a5760405162461bcd60e51b815260040161060d90612250565b81600e546110a8919061252d565b3410156110c75760405162461bcd60e51b815260040161060d906123e1565b60005b82811015610791576110e033610fd98385612501565b806110ea816125ca565b9150506110ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111286111d1565b6001600160a01b0316611139610ccd565b6001600160a01b03161461115f5760405162461bcd60e51b815260040161060d906122d3565b6001600160a01b0381166111855760405162461bcd60e51b815260040161060d90611fe7565b61118e81611412565b50565b60006001600160e01b031982166380ac58cd60e01b14806111c257506001600160e01b03198216635b5e139f60e01b145b806105c657506105c6826115db565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122782610a0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061126b826111d5565b6112875760405162461bcd60e51b815260040161060d906120df565b600061129283610a0b565b9050806001600160a01b0316846001600160a01b031614806112cd5750836001600160a01b03166112c2846106bb565b6001600160a01b0316145b806112dd57506112dd81856110f2565b949350505050565b826001600160a01b03166112f882610a0b565b6001600160a01b03161461131e5760405162461bcd60e51b815260040161060d90612308565b6001600160a01b0382166113445760405162461bcd60e51b815260040161060d90612064565b61134f8383836115f4565b61135a6000826111f2565b6001600160a01b038316600090815260036020526040812080546001929061138390849061254c565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b1908490612501565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61146f8484846112e5565b61147b8484848461167d565b610e3c5760405162461bcd60e51b815260040161060d90611f95565b6060600c80546106389061258f565b6060816114cb57506040805180820190915260018152600360fc1b60208201526105c9565b8160005b81156114f557806114df816125ca565b91506114ee9050600a83612519565b91506114cf565b60008167ffffffffffffffff81111561151e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611548576020820181803683370190505b5090505b84156112dd5761155d60018361254c565b915061156a600a866125e5565b611575906030612501565b60f81b81838151811061159857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115ba600a86612519565b945061154c565b6107e8828260405180602001604052806000815250611798565b6001600160e01b031981166301ffc9a760e01b14919050565b6115ff838383610791565b6001600160a01b03831661161b57611616816117cb565b61163e565b816001600160a01b0316836001600160a01b03161461163e5761163e838261180f565b6001600160a01b03821661165a57611655816118ac565b610791565b826001600160a01b0316826001600160a01b031614610791576107918282611985565b6000611691846001600160a01b03166119c9565b1561178d57836001600160a01b031663150b7a026116ad6111d1565b8786866040518563ffffffff1660e01b81526004016116cf9493929190611e4f565b602060405180830381600087803b1580156116e957600080fd5b505af1925050508015611719575060408051601f3d908101601f1916820190925261171691810190611d66565b60015b611773573d808015611747576040519150601f19603f3d011682016040523d82523d6000602084013e61174c565b606091505b50805161176b5760405162461bcd60e51b815260040161060d90611f95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112dd565b506001949350505050565b6117a283836119cf565b6117af600084848461167d565b6107915760405162461bcd60e51b815260040161060d90611f95565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161181c84610a40565b611826919061254c565b600083815260076020526040902054909150808214611879576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118be9060019061254c565b600083815260096020526040812054600880549394509092849081106118f457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061192357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061196957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061199083610a40565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b0382166119f55760405162461bcd60e51b815260040161060d9061221b565b6119fe816111d5565b15611a1b5760405162461bcd60e51b815260040161060d9061202d565b611a27600083836115f4565b6001600160a01b0382166000908152600360205260408120805460019290611a50908490612501565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611aba9061258f565b90600052602060002090601f016020900481019282611adc5760008555611b22565b82601f10611af557805160ff1916838001178555611b22565b82800160010185558215611b22579182015b82811115611b22578251825591602001919060010190611b07565b50611b2e929150611b32565b5090565b5b80821115611b2e5760008155600101611b33565b600067ffffffffffffffff80841115611b6257611b62612625565b604051601f8501601f191681016020018281118282101715611b8657611b86612625565b604052848152915081838501861015611b9e57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105c957600080fd5b803580151581146105c957600080fd5b600060208284031215611bef578081fd5b610ebe82611bb7565b60008060408385031215611c0a578081fd5b611c1383611bb7565b9150611c2160208401611bb7565b90509250929050565b600080600060608486031215611c3e578081fd5b611c4784611bb7565b9250611c5560208501611bb7565b9150604084013590509250925092565b60008060008060808587031215611c7a578081fd5b611c8385611bb7565b9350611c9160208601611bb7565b925060408501359150606085013567ffffffffffffffff811115611cb3578182fd5b8501601f81018713611cc3578182fd5b611cd287823560208401611b47565b91505092959194509250565b60008060408385031215611cf0578182fd5b611cf983611bb7565b9150611c2160208401611bce565b60008060408385031215611d19578182fd5b611d2283611bb7565b946020939093013593505050565b600060208284031215611d41578081fd5b610ebe82611bce565b600060208284031215611d5b578081fd5b8135610ebe8161263b565b600060208284031215611d77578081fd5b8151610ebe8161263b565b600060208284031215611d93578081fd5b813567ffffffffffffffff811115611da9578182fd5b8201601f81018413611db9578182fd5b6112dd84823560208401611b47565b600060208284031215611dd9578081fd5b5035919050565b60008151808452611df8816020860160208601612563565b601f01601f19169290920160200192915050565b60008351611e1e818460208801612563565b835190830190611e32818360208801612563565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e8290830184611de0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ec457835183529284019291840191600101611ea8565b50909695505050505050565b901515815260200190565b600060208252610ebe6020830184611de0565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252601c908201527f4578636565647320726573657276656420536f756c20737570706c7900000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601c908201527f45786365656473206d6178696d756d20536f756c7320737570706c7900000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f596f752063616e2061646f70742061206d6178696d756d206f6620323020536f604082015262756c7360e81b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60008219821115612514576125146125f9565b500190565b6000826125285761252861260f565b500490565b6000816000190483118215151615612547576125476125f9565b500290565b60008282101561255e5761255e6125f9565b500390565b60005b8381101561257e578181015183820152602001612566565b83811115610e3c5750506000910152565b6002810460018216806125a357607f821691505b602082108114156125c457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125de576125de6125f9565b5060010190565b6000826125f4576125f461260f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461118e57600080fdfea2646970667358221220550f9f6e363931114d70c4381807ff3d6a95bdaa07295f6ba40484bcb1735be964736f6c63430008000033

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

000000000000000000000000f4dec5f15378a92089ce04226061782dedc3aab10000000000000000000000002cdf899777c11a24cb4d69de8cb7ad304db95f83000000000000000000000000102a37308cebc21b87101d6abcf47bb99193bc31000000000000000000000000c5182f36001eb7cbabdb687087596cc42afcb605000000000000000000000000ffcd5e359a6afe39f6c58544db0bb408f2d17e33

-----Decoded View---------------
Arg [0] : _t1 (address): 0xF4dEc5f15378A92089cE04226061782DEdC3Aab1
Arg [1] : _t2 (address): 0x2cDf899777C11A24cB4d69de8cb7ad304Db95F83
Arg [2] : _t3 (address): 0x102a37308cEBC21b87101D6abCF47Bb99193BC31
Arg [3] : _t4 (address): 0xC5182f36001eB7CBaBdb687087596CC42AfCB605
Arg [4] : _t5 (address): 0xFfCd5e359A6AFe39f6c58544db0BB408F2d17e33

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000f4dec5f15378a92089ce04226061782dedc3aab1
Arg [1] : 0000000000000000000000002cdf899777c11a24cb4d69de8cb7ad304db95f83
Arg [2] : 000000000000000000000000102a37308cebc21b87101d6abcf47bb99193bc31
Arg [3] : 000000000000000000000000c5182f36001eb7cbabdb687087596cc42afcb605
Arg [4] : 000000000000000000000000ffcd5e359a6afe39f6c58544db0bb408f2d17e33


Deployed Bytecode Sourcemap

1204:3131:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:222:5;;;;;;;;;;-1:-1:-1;910:222:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3736:75:0;;;;;;;;;;-1:-1:-1;3736:75:0;;;;;:::i;:::-;;:::i;:::-;;2414:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;;;;;-1:-1:-1;3925:217:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3463:401::-;;;;;;;;;;-1:-1:-1;3463:401:2;;;;;:::i;:::-;;:::i;2868:123:0:-;;;;;;;;;;-1:-1:-1;2868:123:0;;;;;:::i;:::-;;:::i;1535:111:5:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4789:330:2:-;;;;;;;;;;-1:-1:-1;4789:330:2;;;;;:::i;:::-;;:::i;1211:253:5:-;;;;;;;;;;-1:-1:-1;1211:253:5;;;;;:::i;:::-;;:::i;5185:179:2:-;;;;;;;;;;-1:-1:-1;5185:179:2;;;;;:::i;:::-;;:::i;2528:334:0:-;;;;;;;;;;-1:-1:-1;2528:334:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1718:230:5:-;;;;;;;;;;-1:-1:-1;1718:230:5;;;;;:::i;:::-;;:::i;3213:100:0:-;;;;;;;;;;-1:-1:-1;3213:100:0;;;;;:::i;:::-;;:::i;1515:29::-;;;;;;;;;;;;;:::i;2117:235:2:-;;;;;;;;;;-1:-1:-1;2117:235:2;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;;;;;-1:-1:-1;1855:205:2;;;;;:::i;:::-;;:::i;1605:92:1:-;;;;;;;;;;;;;:::i;3817:516:0:-;;;:::i;1334:40::-;;;;;;;;;;;;;:::i;973:85:1:-;;;;;;;;;;;;;:::i;2997:92:0:-;;;;;;;;;;-1:-1:-1;2997:92:0;;;;;:::i;:::-;;:::i;2576:102:2:-;;;;;;;;;;;;;:::i;3319:82:0:-;;;;;;;;;;;;;:::i;4209:290:2:-;;;;;;;;;;-1:-1:-1;4209:290:2;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;;;;;-1:-1:-1;5430:320:2;;;;;:::i;:::-;;:::i;2744:329::-;;;;;;;;;;-1:-1:-1;2744:329:2;;;;;:::i;:::-;;:::i;1268:34:0:-;;;;;;;;;;;;;:::i;3407:323::-;;;;;;;;;;-1:-1:-1;3407:323:0;;;;;:::i;:::-;;:::i;1420:45::-;;;;;;;;;;;;;:::i;1968:554::-;;;;;;:::i;:::-;;:::i;4565:162:2:-;;;;;;;;;;-1:-1:-1;4565:162:2;;;;;:::i;:::-;;:::i;1846:189:1:-;;;;;;;;;;-1:-1:-1;1846:189:1;;;;;:::i;:::-;;:::i;910:222:5:-;1012:4;-1:-1:-1;;;;;;1035:50:5;;-1:-1:-1;;;1035:50:5;;:90;;;1089:36;1113:11;1089:23;:36::i;:::-;1028:97;;910:222;;;;:::o;3736:75:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;;;;;;;;;3788:10:0::1;:16:::0;;-1:-1:-1;;3788:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;3736:75::o;2414:98:2:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;4028:16;4036:7;4028;:16::i;:::-;4020:73;;;;-1:-1:-1;;;4020:73:2;;;;;;;:::i;:::-;-1:-1:-1;4111:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:2;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:2;:2;-1:-1:-1;;;;;3600:11:2;;;3592:57;;;;-1:-1:-1;;;3592:57:2;;;;;;;:::i;:::-;3697:5;-1:-1:-1;;;;;3681:21:2;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3681:21:2;;:62;;;;3706:37;3723:5;3730:12;:10;:12::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:2;;;;;;;:::i;:::-;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3463:401;;;:::o;2868:123:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;2952:32:0;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2868:123:::0;:::o;1535:111:5:-;1622:10;:17;1535:111;:::o;4789:330:2:-;4978:41;4997:12;:10;:12::i;:::-;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:2;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;1211:253:5:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1431:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;5185:179:2:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;2528:334:0:-;2587:16;2615:18;2636:17;2646:6;2636:9;:17::i;:::-;2615:38;;2664:25;2706:10;2692:25;;;;;;-1:-1:-1;;;2692:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2692:25:0;;2664:53;;2731:9;2727:104;2746:10;2742:1;:14;2727:104;;;2790:30;2810:6;2818:1;2790:19;:30::i;:::-;2776:8;2785:1;2776:11;;;;;;-1:-1:-1;;;2776:11:0;;;;;;;;;;;;;;;;;;:44;2758:3;;;;:::i;:::-;;;;2727:104;;;-1:-1:-1;2847:8:0;2528:334;-1:-1:-1;;;2528:334:0:o;1718:230:5:-;1793:7;1828:30;:28;:30::i;:::-;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:5;;;;;;;:::i;:::-;1924:10;1935:5;1924:17;;;;;;-1:-1:-1;;;1924:17:5;;;;;;;;;;;;;;;;;1917:24;;1718:230;;;:::o;3213:100:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;3283:23:0;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;1515:29::-:0;;;;;;:::o;2117:235:2:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:2;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:2;;;;;;;:::i;1855:205::-;1927:7;-1:-1:-1;;;;;1954:19:2;;1946:74;;;;-1:-1:-1;;;1946:74:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2037:16:2;;;;;:9;:16;;;;;;;1855:205::o;1605:92:1:-;1196:12;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;3817:516:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;3875:10:0::1;3917:3;3888:25;:21;3912:1;3888:25;:::i;:::-;:32;;;;:::i;:::-;3875:45:::0;-1:-1:-1;3930:10:0::1;3972:3;3943:25;:21;3967:1;3943:25;:::i;:::-;:32;;;;:::i;:::-;3930:45:::0;-1:-1:-1;3985:10:0::1;4027:3;3998:26;:21;4022:2;3998:26;:::i;:::-;:32;;;;:::i;:::-;3985:45:::0;-1:-1:-1;4040:10:0::1;4082:3;4053:26;:21;4077:2;4053:26;:::i;:::-;:32;;;;:::i;:::-;4040:45:::0;-1:-1:-1;4095:10:0::1;4137:3;4108:26;:21;4132:2;4108:26;:::i;:::-;:32;;;;:::i;:::-;4159:2;::::0;4151:27:::1;::::0;4095:45;;-1:-1:-1;4159:2:0::1;::::0;::::1;-1:-1:-1::0;;;;;4159:2:0::1;::::0;4151:27:::1;::::0;::::1;;::::0;;;::::1;::::0;;;;4159:2;4151:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;4196:2:0::1;::::0;4188:27:::1;::::0;-1:-1:-1;;;;;4196:2:0;;::::1;::::0;4188:27;::::1;;;::::0;4209:5;;4196:2:::1;4188:27:::0;4196:2;4188:27;4209:5;4196:2;4188:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;4233:2:0::1;::::0;4225:27:::1;::::0;-1:-1:-1;;;;;4233:2:0;;::::1;::::0;4225:27;::::1;;;::::0;4246:5;;4233:2:::1;4225:27:::0;4233:2;4225:27;4246:5;4233:2;4225:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;4270:2:0::1;::::0;4262:27:::1;::::0;-1:-1:-1;;;;;4270:2:0;;::::1;::::0;4262:27;::::1;;;::::0;4283:5;;4270:2:::1;4262:27:::0;4270:2;4262:27;4283:5;4270:2;4262:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;4307:2:0::1;::::0;4299:27:::1;::::0;-1:-1:-1;;;;;4307:2:0;;::::1;::::0;4299:27;::::1;;;::::0;4320:5;;4307:2:::1;4299:27:::0;4307:2;4299:27;4320:5;4307:2;4299:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1255:1:1;;;;;3817:516:0:o:0;1334:40::-;1370:4;1334:40;:::o;973:85:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;973:85;:::o;2997:92:0:-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;3061:9:0::1;:21:::0;2997:92::o;2576:102:2:-;2632:13;2664:7;2657:14;;;;;:::i;3319:82:0:-;3385:9;;3319:82;:::o;4209:290:2:-;4323:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:24:2;:8;-1:-1:-1;;;;;4311:24:2;;;4303:62;;;;-1:-1:-1;;;4303:62:2;;;;;;;:::i;:::-;4421:8;4376:18;:32;4395:12;:10;:12::i;:::-;-1:-1:-1;;;;;4376:32:2;;;;;;;;;;;;;;;;;-1:-1:-1;4376:32:2;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:2;;;;;;;;;;;4459:12;:10;:12::i;:::-;-1:-1:-1;;;;;4444:48:2;;4483:8;4444:48;;;;;;:::i;:::-;;;;;;;;4209:290;;:::o;5430:320::-;5599:41;5618:12;:10;:12::i;:::-;5632:7;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:2;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;2817:13;2850:16;2858:7;2850;:16::i;:::-;2842:76;;;;-1:-1:-1;;;2842:76:2;;;;;;;:::i;:::-;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:2:o;1268:34:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3407:323::-;1196:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;3508:12:0::1;;3497:7;:23;;3488:66;;;;-1:-1:-1::0;;;3488:66:0::1;;;;;;;:::i;:::-;3565:14;3582:13;:11;:13::i;:::-;3565:30;;3609:9;3605:85;3624:7;3620:1;:11;3605:85;;;3651:28;3662:3:::0;3667:10:::1;3676:1:::0;3667:6;:10:::1;:::i;:::-;3651:9;:28::i;:::-;3633:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3605:85;;;;3716:7;3700:12;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;3407:323:0:o;1420:45::-;1463:2;1420:45;:::o;1968:554::-;2028:14;2045:13;:11;:13::i;:::-;2078:10;;2028:30;;-1:-1:-1;2078:10:0;;2077:11;2068:66;;;;-1:-1:-1;;;2068:66:0;;;;;;;:::i;:::-;1463:2;2153:3;:23;;2144:90;;;;-1:-1:-1;;;2144:90:0;;;;;;;:::i;:::-;2281:12;;2269:24;;1370:4;2269:24;:::i;:::-;2253:12;2262:3;2253:6;:12;:::i;:::-;:40;;2244:83;;;;-1:-1:-1;;;2244:83:0;;;;;;;:::i;:::-;2371:3;2359:9;;:15;;;;:::i;:::-;2346:9;:28;;2337:80;;;;-1:-1:-1;;;2337:80:0;;;;;;;:::i;:::-;2432:9;2428:88;2447:3;2443:1;:7;2428:88;;;2470:35;2481:10;2493;2502:1;2493:6;:10;:::i;2470:35::-;2452:3;;;;:::i;:::-;;;;2428:88;;4565:162:2;-1:-1:-1;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162::o;1846:189:1:-;1196:12;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1185:23:1;;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:1;::::1;1926:73;;;;-1:-1:-1::0;;;1926:73:1::1;;;;;;;:::i;:::-;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;1496:300:2:-;1598:4;-1:-1:-1;;;;;;1633:40:2;;-1:-1:-1;;;1633:40:2;;:104;;-1:-1:-1;;;;;;;1689:48:2;;-1:-1:-1;;;1689:48:2;1633:104;:156;;;;1753:36;1777:11;1753:23;:36::i;586:96:9:-;665:10;586:96;:::o;7222:125:2:-;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;:30;;;7222:125::o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:2;-1:-1:-1;;;;;11147:29:2;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:2;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7622:16;7630:7;7622;:16::i;:::-;7614:73;;;;-1:-1:-1;;;7614:73:2;;;;;;;:::i;:::-;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:2;:7;-1:-1:-1;;;;;7754:16:2;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:2;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:2;;7754:51;:87;;;;7809:32;7826:5;7833:7;7809:16;:32::i;:::-;7746:96;7505:344;-1:-1:-1;;;;7505:344:2:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:2;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:2;;10521:85;;;;-1:-1:-1;;;10521:85:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;10624:16:2;;10616:65;;;;-1:-1:-1;;;10616:65:2;;;;;;;:::i;:::-;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:2;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:2;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:2;-1:-1:-1;;;;;10891:21:2;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;2041:169:1:-;2115:6;;;-1:-1:-1;;;;;2131:17:1;;;-1:-1:-1;;;;;;2131:17:1;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2041:169;;:::o;6612:307:2:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:2;;;;;;;:::i;3095:112:0:-;3155:13;3187;3180:20;;;;;:::i;275:703:10:-;331:13;548:10;544:51;;-1:-1:-1;574:10:10;;;;;;;;;;;;-1:-1:-1;;;574:10:10;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:10;;-1:-1:-1;720:2:10;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:10;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:10;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:10;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:10;;;;;;;;-1:-1:-1;919:11:10;928:2;919:11;;:::i;:::-;;;791:150;;8179:108:2;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;763:155:11:-;-1:-1:-1;;;;;;871:40:11;;-1:-1:-1;;;871:40:11;763:155;;;:::o;2544:572:5:-;2683:45;2710:4;2716:2;2720:7;2683:26;:45::i;:::-;-1:-1:-1;;;;;2743:18:5;;2739:183;;2777:40;2809:7;2777:31;:40::i;:::-;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:5;:4;-1:-1:-1;;;;;2838:10:5;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:5;;2931:179;;2967:45;3004:7;2967:36;:45::i;:::-;2931:179;;;3039:4;-1:-1:-1;;;;;3033:10:5;:2;-1:-1:-1;;;;;3033:10:5;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;11797:782:2:-;11947:4;11967:15;:2;-1:-1:-1;;;;;11967:13:2;;:15::i;:::-;11963:610;;;12018:2;-1:-1:-1;;;;;12002:36:2;;12039:12;:10;:12::i;:::-;12053:4;12059:7;12068:5;12002:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:2;;;;;;;;-1:-1:-1;;12002:72:2;;;;;;;;;;;;:::i;:::-;;;11998:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12245:13:2;;12241:266;;12287:60;;-1:-1:-1;;;12287:60:2;;;;;;;:::i;12241:266::-;12459:6;12453:13;12444:6;12440:2;12436:15;12429:38;11998:523;-1:-1:-1;;;;;;12124:55:2;-1:-1:-1;;;12124:55:2;;-1:-1:-1;12117:62:2;;11963:610;-1:-1:-1;12558:4:2;11797:782;;;;;;:::o;8508:311::-;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:2;;;;;;;:::i;3822:161:5:-;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161::o;4600:970::-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:5;;;5070:323;;-1:-1:-1;;;;;5140:18:5;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:5;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:5;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:5;;6107:46;;6552:26;;;;-1:-1:-1;;;6552:26:5;;;;;;;;;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;-1:-1:-1;;;6589:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;-1:-1:-1;;;6896:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5858:1061;;;;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:5:o;718:377:8:-;1034:20;1080:8;;;718:377::o;9141:372:2:-;-1:-1:-1;;;;;9220:16:2;;9212:61;;;;-1:-1:-1;;;9212:61:2;;;;;;;:::i;:::-;9292:16;9300:7;9292;:16::i;:::-;9291:17;9283:58;;;;-1:-1:-1;;;9283:58:2;;;;;;;:::i;:::-;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:2;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:2;-1:-1:-1;;;;;9436:21:2;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:13;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:13;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:13;473:16;;;470:25;-1:-1:-1;467:2:13;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:13;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:13;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:13:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:13;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:13;;4335:120;-1:-1:-1;4335:120:13:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:13;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:13:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:13:o;5199:203::-;-1:-1:-1;;;;;5363:32:13;;;;5345:51;;5333:2;5318:18;;5300:102::o;5407:490::-;-1:-1:-1;;;;;5676:15:13;;;5658:34;;5728:15;;5723:2;5708:18;;5701:43;5775:2;5760:18;;5753:34;;;5823:3;5818:2;5803:18;;5796:31;;;5407:490;;5844:47;;5871:19;;5863:6;5844:47;:::i;:::-;5836:55;5610:287;-1:-1:-1;;;;;;5610:287:13:o;5902:635::-;6073:2;6125:21;;;6195:13;;6098:18;;;6217:22;;;5902:635;;6073:2;6296:15;;;;6270:2;6255:18;;;5902:635;6342:169;6356:6;6353:1;6350:13;6342:169;;;6417:13;;6405:26;;6486:15;;;;6451:12;;;;6378:1;6371:9;6342:169;;;-1:-1:-1;6528:3:13;;6053:484;-1:-1:-1;;;;;;6053:484:13:o;6542:187::-;6707:14;;6700:22;6682:41;;6670:2;6655:18;;6637:92::o;6734:221::-;;6883:2;6872:9;6865:21;6903:46;6945:2;6934:9;6930:18;6922:6;6903:46;:::i;6960:335::-;7162:2;7144:21;;;7201:2;7181:18;;;7174:30;-1:-1:-1;;;7235:2:13;7220:18;;7213:41;7286:2;7271:18;;7134:161::o;7300:352::-;7502:2;7484:21;;;7541:2;7521:18;;;7514:30;7580;7575:2;7560:18;;7553:58;7643:2;7628:18;;7474:178::o;7657:407::-;7859:2;7841:21;;;7898:2;7878:18;;;7871:30;7937:34;7932:2;7917:18;;7910:62;-1:-1:-1;;;8003:2:13;7988:18;;7981:41;8054:3;8039:19;;7831:233::o;8069:414::-;8271:2;8253:21;;;8310:2;8290:18;;;8283:30;8349:34;8344:2;8329:18;;8322:62;-1:-1:-1;;;8415:2:13;8400:18;;8393:48;8473:3;8458:19;;8243:240::o;8488:402::-;8690:2;8672:21;;;8729:2;8709:18;;;8702:30;8768:34;8763:2;8748:18;;8741:62;-1:-1:-1;;;8834:2:13;8819:18;;8812:36;8880:3;8865:19;;8662:228::o;8895:352::-;9097:2;9079:21;;;9136:2;9116:18;;;9109:30;9175;9170:2;9155:18;;9148:58;9238:2;9223:18;;9069:178::o;9252:400::-;9454:2;9436:21;;;9493:2;9473:18;;;9466:30;9532:34;9527:2;9512:18;;9505:62;-1:-1:-1;;;9598:2:13;9583:18;;9576:34;9642:3;9627:19;;9426:226::o;9657:349::-;9859:2;9841:21;;;9898:2;9878:18;;;9871:30;9937:27;9932:2;9917:18;;9910:55;9997:2;9982:18;;9831:175::o;10011:408::-;10213:2;10195:21;;;10252:2;10232:18;;;10225:30;10291:34;10286:2;10271:18;;10264:62;-1:-1:-1;;;10357:2:13;10342:18;;10335:42;10409:3;10394:19;;10185:234::o;10424:420::-;10626:2;10608:21;;;10665:2;10645:18;;;10638:30;10704:34;10699:2;10684:18;;10677:62;10775:26;10770:2;10755:18;;10748:54;10834:3;10819:19;;10598:246::o;10849:406::-;11051:2;11033:21;;;11090:2;11070:18;;;11063:30;11129:34;11124:2;11109:18;;11102:62;-1:-1:-1;;;11195:2:13;11180:18;;11173:40;11245:3;11230:19;;11023:232::o;11260:405::-;11462:2;11444:21;;;11501:2;11481:18;;;11474:30;11540:34;11535:2;11520:18;;11513:62;-1:-1:-1;;;11606:2:13;11591:18;;11584:39;11655:3;11640:19;;11434:231::o;11670:356::-;11872:2;11854:21;;;11891:18;;;11884:30;11950:34;11945:2;11930:18;;11923:62;12017:2;12002:18;;11844:182::o;12031:352::-;12233:2;12215:21;;;12272:2;12252:18;;;12245:30;12311;12306:2;12291:18;;12284:58;12374:2;12359:18;;12205:178::o;12388:408::-;12590:2;12572:21;;;12629:2;12609:18;;;12602:30;12668:34;12663:2;12648:18;;12641:62;-1:-1:-1;;;12734:2:13;12719:18;;12712:42;12786:3;12771:19;;12562:234::o;12801:356::-;13003:2;12985:21;;;13022:18;;;13015:30;13081:34;13076:2;13061:18;;13054:62;13148:2;13133:18;;12975:182::o;13162:405::-;13364:2;13346:21;;;13403:2;13383:18;;;13376:30;13442:34;13437:2;13422:18;;13415:62;-1:-1:-1;;;13508:2:13;13493:18;;13486:39;13557:3;13542:19;;13336:231::o;13572:411::-;13774:2;13756:21;;;13813:2;13793:18;;;13786:30;13852:34;13847:2;13832:18;;13825:62;-1:-1:-1;;;13918:2:13;13903:18;;13896:45;13973:3;13958:19;;13746:237::o;13988:397::-;14190:2;14172:21;;;14229:2;14209:18;;;14202:30;14268:34;14263:2;14248:18;;14241:62;-1:-1:-1;;;14334:2:13;14319:18;;14312:31;14375:3;14360:19;;14162:223::o;14390:349::-;14592:2;14574:21;;;14631:2;14611:18;;;14604:30;14670:27;14665:2;14650:18;;14643:55;14730:2;14715:18;;14564:175::o;14744:413::-;14946:2;14928:21;;;14985:2;14965:18;;;14958:30;15024:34;15019:2;15004:18;;14997:62;-1:-1:-1;;;15090:2:13;15075:18;;15068:47;15147:3;15132:19;;14918:239::o;15162:399::-;15364:2;15346:21;;;15403:2;15383:18;;;15376:30;15442:34;15437:2;15422:18;;15415:62;-1:-1:-1;;;15508:2:13;15493:18;;15486:33;15551:3;15536:19;;15336:225::o;15566:408::-;15768:2;15750:21;;;15807:2;15787:18;;;15780:30;15846:34;15841:2;15826:18;;15819:62;-1:-1:-1;;;15912:2:13;15897:18;;15890:42;15964:3;15949:19;;15740:234::o;15979:177::-;16125:25;;;16113:2;16098:18;;16080:76::o;16161:128::-;;16232:1;16228:6;16225:1;16222:13;16219:2;;;16238:18;;:::i;:::-;-1:-1:-1;16274:9:13;;16209:80::o;16294:120::-;;16360:1;16350:2;;16365:18;;:::i;:::-;-1:-1:-1;16399:9:13;;16340:74::o;16419:168::-;;16525:1;16521;16517:6;16513:14;16510:1;16507:21;16502:1;16495:9;16488:17;16484:45;16481:2;;;16532:18;;:::i;:::-;-1:-1:-1;16572:9:13;;16471:116::o;16592:125::-;;16660:1;16657;16654:8;16651:2;;;16665:18;;:::i;:::-;-1:-1:-1;16702:9:13;;16641:76::o;16722:258::-;16794:1;16804:113;16818:6;16815:1;16812:13;16804:113;;;16894:11;;;16888:18;16875:11;;;16868:39;16840:2;16833:10;16804:113;;;16935:6;16932:1;16929:13;16926:2;;;-1:-1:-1;;16970:1:13;16952:16;;16945:27;16775:205::o;16985:380::-;17070:1;17060:12;;17117:1;17107:12;;;17128:2;;17182:4;17174:6;17170:17;17160:27;;17128:2;17235;17227:6;17224:14;17204:18;17201:38;17198:2;;;17281:10;17276:3;17272:20;17269:1;17262:31;17316:4;17313:1;17306:15;17344:4;17341:1;17334:15;17198:2;;17040:325;;;:::o;17370:135::-;;-1:-1:-1;;17430:17:13;;17427:2;;;17450:18;;:::i;:::-;-1:-1:-1;17497:1:13;17486:13;;17417:88::o;17510:112::-;;17568:1;17558:2;;17573:18;;:::i;:::-;-1:-1:-1;17607:9:13;;17548:74::o;17627:127::-;17688:10;17683:3;17679:20;17676:1;17669:31;17719:4;17716:1;17709:15;17743:4;17740:1;17733:15;17759:127;17820:10;17815:3;17811:20;17808:1;17801:31;17851:4;17848:1;17841:15;17875:4;17872:1;17865:15;17891:127;17952:10;17947:3;17943:20;17940:1;17933:31;17983:4;17980:1;17973:15;18007:4;18004:1;17997:15;18023:133;-1:-1:-1;;;;;;18099:32:13;;18089:43;;18079:2;;18146:1;18143;18136:12

Swarm Source

ipfs://550f9f6e363931114d70c4381807ff3d6a95bdaa07295f6ba40484bcb1735be9
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.