ETH Price: $3,485.06 (+3.66%)
Gas: 3 Gwei

Token

CryptoGhost (CG)
 

Overview

Max Total Supply

9,844 CG

Holders

2,908

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Fake_Phishing308852
Balance
18 CG
0xeef114d114f1947ba4a2979159818e4171e91d14
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoGhost

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 19: CryptoGhost.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";

/**
 * @title CryptoGhost
 * People turn into Ghosts haunting on the blockchain after getting REKT in Crypto.
 */
contract CryptoGhost is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    uint256 private _currentTokenId = 0;

    uint256 MAX_SUPPLY = 10000;
    string public baseTokenURI;
    uint256 public airDropTimes;
    uint256 public startTime = 1629979200;
    address public teslaOwner;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC721(_name, _symbol) {
        baseTokenURI = _uri;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    function buy(uint256 _num) public payable {
        require(block.timestamp >= startTime, "It's not time yet");
        require(_num > 0 && _num <= 20);
        require(msg.value == _num * 3e16);
        for (uint256 i = 0; i < _num; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(msg.sender, newTokenId);
            _incrementTokenId();
        }
    }

    /**
     * @dev Every 1000 primary sales, 10 random Ghost NFT owners will be picked and each will get a Ghost for free!
     */
    function airDrop() external onlyOwner {
        uint256 rand = random() % 100;
        for (uint256 i = 0; i < 10; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(ownerOf(1000 * airDropTimes + 100 * i + rand), newTokenId);
            _incrementTokenId();
        }
        airDropTimes = airDropTimes + 1;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    function random() private view returns (uint256) {
        bytes32 txHash = keccak256(
            abi.encode(block.coinbase, block.timestamp, block.difficulty)
        );
        return uint256(txHash);
    }

    /**
     * @dev increments the value of _currentTokenId,When all 9,788 Ghosts are sold out, a random Ghost NFT owner will win a Tesla Model Y. The more NFT owned, the bigger the chance.
     */
    function _incrementTokenId() private {
        if (owner() == _msgSender()) {
            require(_currentTokenId < MAX_SUPPLY);
        } else {
            require(_currentTokenId < MAX_SUPPLY - 212);
        }
        _currentTokenId++;
        if (_currentTokenId == MAX_SUPPLY - 212) {
            uint256 rand = random() % 1000;
            bytes32 txHash = keccak256(
                abi.encode(
                    ownerOf(_currentTokenId - 1000 + rand),
                    ownerOf(_currentTokenId - 2000 + rand),
                    ownerOf(_currentTokenId - 3000 + rand),
                    ownerOf(_currentTokenId - 4000 + rand),
                    ownerOf(_currentTokenId - 5000 + rand),
                    ownerOf(_currentTokenId - 6000 + rand),
                    msg.sender
                )
            );
            teslaOwner = ownerOf((uint256(txHash) % 9788) + 1);
        }
    }

    /**
     * @dev change the baseGhostURI if there are future problems with the API service
     */
    function setBaseUri(string memory _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }
}

File 1 of 19: 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);
    }

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

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

File 2 of 19: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 3 of 19: 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 5 of 19: EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 6 of 19: 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 7 of 19: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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.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 8 of 19: 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 9 of 19: 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 10 of 19: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 19: 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 12 of 19: 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 13 of 19: 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 14 of 19: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 15 of 19: Migrations.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Migrations {
  address public owner;
  uint public last_completed_migration;

  constructor() {
    owner = msg.sender;
  }

  modifier restricted() {
    if (msg.sender == owner) _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) public restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}

File 16 of 19: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

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

pragma solidity ^0.8.0;

import "./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);
    }
}

File 18 of 19: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 19 of 19: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teslaOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff191690556000600e55612710600f5563612782406012553480156200002e57600080fd5b5060405162002e6338038062002e638339810160408190526200005191620003f3565b8251839083906200006a9060009060208501906200029a565b508051620000809060019060208401906200029a565b5050506200009d62000097620000c760201b60201c565b620000e3565b8051620000b29060109060208401906200029a565b50620000be8362000135565b505050620004d3565b6000620000de6200019960201b620013391760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156200017e5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200018981620001f8565b50600a805460ff19166001179055565b600033301415620001f257600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620001f59050565b50335b90565b6040518060800160405280604f815260200162002e14604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002a89062000480565b90600052602060002090601f016020900481019282620002cc576000855562000317565b82601f10620002e757805160ff191683800117855562000317565b8280016001018555821562000317579182015b8281111562000317578251825591602001919060010190620002fa565b506200032592915062000329565b5090565b5b808211156200032557600081556001016200032a565b600082601f83011262000351578081fd5b81516001600160401b03808211156200036e576200036e620004bd565b604051601f8301601f19908116603f01168101908282118183101715620003995762000399620004bd565b81604052838152602092508683858801011115620003b5578485fd5b8491505b83821015620003d85785820183015181830184015290820190620003b9565b83821115620003e957848385830101525b9695505050505050565b60008060006060848603121562000408578283fd5b83516001600160401b03808211156200041f578485fd5b6200042d8783880162000340565b9450602086015191508082111562000443578384fd5b620004518783880162000340565b9350604086015191508082111562000467578283fd5b50620004768682870162000340565b9150509250925092565b600181811c908216806200049557607f821691505b60208210811415620004b757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61293180620004e36000396000f3fe6080604052600436106101ee5760003560e01c8063663287381161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb714610569578063d94b72431461057e578063d96a094a14610594578063e985e9c5146105a7578063f2fde38b146105f057600080fd5b8063a22cb465146104f4578063b88d4fde14610514578063c87b56dd14610534578063ca5d08801461055457600080fd5b806378e97925116100dc57806378e979251461048b5780638da5cb5b146104a157806395d89b41146104bf578063a0bcfc7f146104d457600080fd5b8063663287381461041657806370a0823114610436578063715018a614610456578063755edd171461046b57600080fd5b806323b872dd116101855780633ccfd60b116101545780633ccfd60b146103a157806342842e0e146103b65780634f6ccce7146103d65780636352211e146103f657600080fd5b806323b872dd146103185780632d0335ab146103385780632f745c591461036e5780633408e4701461038e57600080fd5b80630c53c51c116101c15780630c53c51c146102a45780630f7e5970146102b757806318160ddd146102e457806320379ee51461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461243d565b610610565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61063b565b60405161021f919061267d565b34801561025657600080fd5b5061026a6102653660046124bb565b6106cd565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612414565b610767565b005b61023d6102b236600461239b565b61088f565b3480156102c357600080fd5b5061023d604051806040016040528060018152602001603160f81b81525081565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b50600b546102f5565b34801561032457600080fd5b506102a26103333660046122c0565b610a79565b34801561034457600080fd5b506102f5610353366004612274565b6001600160a01b03166000908152600c602052604090205490565b34801561037a57600080fd5b506102f5610389366004612414565b610ab1565b34801561039a57600080fd5b50466102f5565b3480156103ad57600080fd5b506102a2610b47565b3480156103c257600080fd5b506102a26103d13660046122c0565b610bcc565b3480156103e257600080fd5b506102f56103f13660046124bb565b610be7565b34801561040257600080fd5b5061026a6104113660046124bb565b610c88565b34801561042257600080fd5b5060135461026a906001600160a01b031681565b34801561044257600080fd5b506102f5610451366004612274565b610cff565b34801561046257600080fd5b506102a2610d86565b34801561047757600080fd5b506102a2610486366004612274565b610ddb565b34801561049757600080fd5b506102f560125481565b3480156104ad57600080fd5b50600d546001600160a01b031661026a565b3480156104cb57600080fd5b5061023d610e46565b3480156104e057600080fd5b506102a26104ef366004612475565b610e55565b34801561050057600080fd5b506102a261050f366004612361565b610eb1565b34801561052057600080fd5b506102a261052f3660046122fb565b610fb3565b34801561054057600080fd5b5061023d61054f3660046124bb565b610ff2565b34801561056057600080fd5b506102a2611026565b34801561057557600080fd5b5061023d61113c565b34801561058a57600080fd5b506102f560115481565b6102a26105a23660046124bb565b6111ca565b3480156105b357600080fd5b506102136105c236600461228e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105fc57600080fd5b506102a261060b366004612274565b611282565b60006001600160e01b0319821663780e9d6360e01b1480610635575061063582611396565b92915050565b60606000805461064a906127f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610676906127f6565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661074b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077282610c88565b9050806001600160a01b0316836001600160a01b031614156107e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610742565b806001600160a01b03166107f26113e6565b6001600160a01b0316148061080e575061080e816105c26113e6565b6108805760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610742565b61088a83836113f5565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526108cd8782878787611463565b6109235760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610742565b6001600160a01b0387166000908152600c6020526040902054610947906001611553565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061099790899033908a90612614565b60405180910390a1600080306001600160a01b0316888a6040516020016109bf929190612537565b60408051601f19818403018152908290526109d99161251b565b6000604051808303816000865af19150503d8060008114610a16576040519150601f19603f3d011682016040523d82523d6000602084013e610a1b565b606091505b509150915081610a6d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610742565b98975050505050505050565b610a8a610a846113e6565b82611566565b610aa65760405162461bcd60e51b815260040161074290612717565b61088a83838361165d565b6000610abc83610cff565b8210610b1e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610742565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b4f6113e6565b6001600160a01b0316610b6a600d546001600160a01b031690565b6001600160a01b031614610b905760405162461bcd60e51b8152600401610742906126e2565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bc9573d6000803e3d6000fd5b50565b61088a83838360405180602001604052806000815250610fb3565b6000610bf260085490565b8210610c555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610742565b60088281548110610c7657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610742565b60006001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610742565b506001600160a01b031660009081526003602052604090205490565b610d8e6113e6565b6001600160a01b0316610da9600d546001600160a01b031690565b6001600160a01b031614610dcf5760405162461bcd60e51b8152600401610742906126e2565b610dd96000611808565b565b610de36113e6565b6001600160a01b0316610dfe600d546001600160a01b031690565b6001600160a01b031614610e245760405162461bcd60e51b8152600401610742906126e2565b6000610e2e61185a565b9050610e3a828261186b565b610e426119b9565b5050565b60606001805461064a906127f6565b610e5d6113e6565b6001600160a01b0316610e78600d546001600160a01b031690565b6001600160a01b031614610e9e5760405162461bcd60e51b8152600401610742906126e2565b8051610e4290601090602084019061212a565b610eb96113e6565b6001600160a01b0316826001600160a01b03161415610f1a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610742565b8060056000610f276113e6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f6b6113e6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fa7911515815260200190565b60405180910390a35050565b610fc4610fbe6113e6565b83611566565b610fe05760405162461bcd60e51b815260040161074290612717565b610fec84848484611baa565b50505050565b60606010610fff83611bdd565b60405160200161101092919061256e565b6040516020818303038152906040529050919050565b61102e6113e6565b6001600160a01b0316611049600d546001600160a01b031690565b6001600160a01b03161461106f5760405162461bcd60e51b8152600401610742906126e2565b600060646110ad6040805141602080830191909152428284015244606080840191909152835180840390910181526080909201909252805191012090565b6110b7919061284c565b905060005b600a8110156111275760006110cf61185a565b905061110c611106846110e3856064612794565b6011546110f2906103e8612794565b6110fc9190612768565b6104119190612768565b8261186b565b6111146119b9565b508061111f81612831565b9150506110bc565b50601154611136906001612768565b60115550565b60108054611149906127f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611175906127f6565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b505050505081565b6012544210156112105760405162461bcd60e51b8152602060048201526011602482015270125d09dcc81b9bdd081d1a5b59481e595d607a1b6044820152606401610742565b600081118015611221575060148111155b61122a57600080fd5b61123b81666a94d74f430000612794565b341461124657600080fd5b60005b81811015610e4257600061125b61185a565b9050611267338261186b565b61126f6119b9565b508061127a81612831565b915050611249565b61128a6113e6565b6001600160a01b03166112a5600d546001600160a01b031690565b6001600160a01b0316146112cb5760405162461bcd60e51b8152600401610742906126e2565b6001600160a01b0381166113305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610742565b610bc981611808565b60003330141561139057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506113939050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806113c757506001600160e01b03198216635b5e139f60e01b145b8061063557506301ffc9a760e01b6001600160e01b0319831614610635565b60006113f0611339565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061142a82610c88565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166114c95760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610742565b60016114dc6114d787611cf7565b611d74565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561152a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061155f8284612768565b9392505050565b6000818152600260205260408120546001600160a01b03166115df5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b60006115ea83610c88565b9050806001600160a01b0316846001600160a01b031614806116255750836001600160a01b031661161a846106cd565b6001600160a01b0316145b8061165557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661167082610c88565b6001600160a01b0316146116d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610742565b6001600160a01b03821661173a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610742565b611745838383611da4565b6117506000826113f5565b6001600160a01b03831660009081526003602052604081208054600192906117799084906127b3565b90915550506001600160a01b03821660009081526003602052604081208054600192906117a7908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546000906113f0906001611553565b6001600160a01b0382166118c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610742565b6000818152600260205260409020546001600160a01b0316156119265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610742565b61193260008383611da4565b6001600160a01b038216600090815260036020526040812080546001929061195b908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6119c16113e6565b6001600160a01b03166119dc600d546001600160a01b031690565b6001600160a01b03161415611a0057600f54600e54106119fb57600080fd5b611a1c565b60d4600f54611a0f91906127b3565b600e5410611a1c57600080fd5b600e8054906000611a2c83612831565b919050555060d4600f54611a4091906127b3565b600e541415610dd95760006103e8611a886040805141602080830191909152428284015244606080840191909152835180840390910181526080909201909252805191012090565b611a92919061284c565b90506000611aaa826103e8600e546110fc91906127b3565b611abe836107d0600e546110fc91906127b3565b611ad284610bb8600e546110fc91906127b3565b611ae685610fa0600e546110fc91906127b3565b611afa86611388600e546110fc91906127b3565b611b0e87611770600e546110fc91906127b3565b604080516001600160a01b0397881660208201529587169086015292851660608501529084166080840152831660a083015290911660c08201523360e08201526101000160408051601f1981840301815291905280516020909101209050611b86611b7b61263c8361284c565b610411906001612768565b601380546001600160a01b0319166001600160a01b03929092169190911790555050565b611bb584848461165d565b611bc184848484611e5c565b610fec5760405162461bcd60e51b815260040161074290612690565b606081611c015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c2b5780611c1581612831565b9150611c249050600a83612780565b9150611c05565b60008167ffffffffffffffff811115611c5457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c7e576020820181803683370190505b5090505b841561165557611c936001836127b3565b9150611ca0600a8661284c565b611cab906030612768565b60f81b818381518110611cce57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cf0600a86612780565b9450611c82565b60006040518060800160405280604381526020016128b96043913980516020918201208351848301516040808701518051908601209051611d57950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611d7f600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611d57565b6001600160a01b038316611dff57611dfa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e22565b816001600160a01b0316836001600160a01b031614611e2257611e228382611f70565b6001600160a01b038216611e395761088a8161200d565b826001600160a01b0316826001600160a01b03161461088a5761088a82826120e6565b60006001600160a01b0384163b15611f6557836001600160a01b031663150b7a02611e856113e6565b8786866040518563ffffffff1660e01b8152600401611ea79493929190612640565b602060405180830381600087803b158015611ec157600080fd5b505af1925050508015611ef1575060408051601f3d908101601f19168201909252611eee91810190612459565b60015b611f4b573d808015611f1f576040519150601f19603f3d011682016040523d82523d6000602084013e611f24565b606091505b508051611f435760405162461bcd60e51b815260040161074290612690565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611655565b506001949350505050565b60006001611f7d84610cff565b611f8791906127b3565b600083815260076020526040902054909150808214611fda576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061201f906001906127b3565b6000838152600960205260408120546008805493945090928490811061205557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061208457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120ca57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120f183610cff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612136906127f6565b90600052602060002090601f016020900481019282612158576000855561219e565b82601f1061217157805160ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219e578251825591602001919060010190612183565b506121aa9291506121ae565b5090565b5b808211156121aa57600081556001016121af565b600067ffffffffffffffff808411156121de576121de61288c565b604051601f8501601f19908116603f011681019082821181831017156122065761220661288c565b8160405280935085815286868601111561221f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461225057600080fd5b919050565b600082601f830112612265578081fd5b61155f838335602085016121c3565b600060208284031215612285578081fd5b61155f82612239565b600080604083850312156122a0578081fd5b6122a983612239565b91506122b760208401612239565b90509250929050565b6000806000606084860312156122d4578081fd5b6122dd84612239565b92506122eb60208501612239565b9150604084013590509250925092565b60008060008060808587031215612310578081fd5b61231985612239565b935061232760208601612239565b925060408501359150606085013567ffffffffffffffff811115612349578182fd5b61235587828801612255565b91505092959194509250565b60008060408385031215612373578182fd5b61237c83612239565b915060208301358015158114612390578182fd5b809150509250929050565b600080600080600060a086880312156123b2578081fd5b6123bb86612239565b9450602086013567ffffffffffffffff8111156123d6578182fd5b6123e288828901612255565b9450506040860135925060608601359150608086013560ff81168114612406578182fd5b809150509295509295909350565b60008060408385031215612426578182fd5b61242f83612239565b946020939093013593505050565b60006020828403121561244e578081fd5b813561155f816128a2565b60006020828403121561246a578081fd5b815161155f816128a2565b600060208284031215612486578081fd5b813567ffffffffffffffff81111561249c578182fd5b8201601f810184136124ac578182fd5b611655848235602084016121c3565b6000602082840312156124cc578081fd5b5035919050565b600081518084526124eb8160208601602086016127ca565b601f01601f19169290920160200192915050565b600081516125118185602086016127ca565b9290920192915050565b6000825161252d8184602087016127ca565b9190910192915050565b600083516125498184602088016127ca565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845482600182811c91508083168061258a57607f831692505b60208084108214156125aa57634e487b7160e01b87526022600452602487fd5b8180156125be57600181146125cf576125fb565b60ff198616895284890196506125fb565b60008b815260209020885b868110156125f35781548b8201529085019083016125da565b505084890196505b50505050505061260b81856124ff565b95945050505050565b6001600160a01b0384811682528316602082015260606040820181905260009061260b908301846124d3565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612673908301846124d3565b9695505050505050565b60208152600061155f60208301846124d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561277b5761277b612860565b500190565b60008261278f5761278f612876565b500490565b60008160001904831182151516156127ae576127ae612860565b500290565b6000828210156127c5576127c5612860565b500390565b60005b838110156127e55781810151838201526020016127cd565b83811115610fec5750506000910152565b600181811c9082168061280a57607f821691505b6020821081141561282b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284557612845612860565b5060010190565b60008261285b5761285b612876565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bc957600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122020b5e22cc0bc67effa7285031e7cb3a05a5f8b4e474b4b188200e7c163ff328a64736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b43727970746f47686f737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024347000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e63727970746f67686f7374732e6f72672f6170692f746f6b656e2f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063663287381161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb714610569578063d94b72431461057e578063d96a094a14610594578063e985e9c5146105a7578063f2fde38b146105f057600080fd5b8063a22cb465146104f4578063b88d4fde14610514578063c87b56dd14610534578063ca5d08801461055457600080fd5b806378e97925116100dc57806378e979251461048b5780638da5cb5b146104a157806395d89b41146104bf578063a0bcfc7f146104d457600080fd5b8063663287381461041657806370a0823114610436578063715018a614610456578063755edd171461046b57600080fd5b806323b872dd116101855780633ccfd60b116101545780633ccfd60b146103a157806342842e0e146103b65780634f6ccce7146103d65780636352211e146103f657600080fd5b806323b872dd146103185780632d0335ab146103385780632f745c591461036e5780633408e4701461038e57600080fd5b80630c53c51c116101c15780630c53c51c146102a45780630f7e5970146102b757806318160ddd146102e457806320379ee51461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461243d565b610610565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61063b565b60405161021f919061267d565b34801561025657600080fd5b5061026a6102653660046124bb565b6106cd565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612414565b610767565b005b61023d6102b236600461239b565b61088f565b3480156102c357600080fd5b5061023d604051806040016040528060018152602001603160f81b81525081565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b50600b546102f5565b34801561032457600080fd5b506102a26103333660046122c0565b610a79565b34801561034457600080fd5b506102f5610353366004612274565b6001600160a01b03166000908152600c602052604090205490565b34801561037a57600080fd5b506102f5610389366004612414565b610ab1565b34801561039a57600080fd5b50466102f5565b3480156103ad57600080fd5b506102a2610b47565b3480156103c257600080fd5b506102a26103d13660046122c0565b610bcc565b3480156103e257600080fd5b506102f56103f13660046124bb565b610be7565b34801561040257600080fd5b5061026a6104113660046124bb565b610c88565b34801561042257600080fd5b5060135461026a906001600160a01b031681565b34801561044257600080fd5b506102f5610451366004612274565b610cff565b34801561046257600080fd5b506102a2610d86565b34801561047757600080fd5b506102a2610486366004612274565b610ddb565b34801561049757600080fd5b506102f560125481565b3480156104ad57600080fd5b50600d546001600160a01b031661026a565b3480156104cb57600080fd5b5061023d610e46565b3480156104e057600080fd5b506102a26104ef366004612475565b610e55565b34801561050057600080fd5b506102a261050f366004612361565b610eb1565b34801561052057600080fd5b506102a261052f3660046122fb565b610fb3565b34801561054057600080fd5b5061023d61054f3660046124bb565b610ff2565b34801561056057600080fd5b506102a2611026565b34801561057557600080fd5b5061023d61113c565b34801561058a57600080fd5b506102f560115481565b6102a26105a23660046124bb565b6111ca565b3480156105b357600080fd5b506102136105c236600461228e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105fc57600080fd5b506102a261060b366004612274565b611282565b60006001600160e01b0319821663780e9d6360e01b1480610635575061063582611396565b92915050565b60606000805461064a906127f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610676906127f6565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661074b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077282610c88565b9050806001600160a01b0316836001600160a01b031614156107e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610742565b806001600160a01b03166107f26113e6565b6001600160a01b0316148061080e575061080e816105c26113e6565b6108805760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610742565b61088a83836113f5565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526108cd8782878787611463565b6109235760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610742565b6001600160a01b0387166000908152600c6020526040902054610947906001611553565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061099790899033908a90612614565b60405180910390a1600080306001600160a01b0316888a6040516020016109bf929190612537565b60408051601f19818403018152908290526109d99161251b565b6000604051808303816000865af19150503d8060008114610a16576040519150601f19603f3d011682016040523d82523d6000602084013e610a1b565b606091505b509150915081610a6d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610742565b98975050505050505050565b610a8a610a846113e6565b82611566565b610aa65760405162461bcd60e51b815260040161074290612717565b61088a83838361165d565b6000610abc83610cff565b8210610b1e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610742565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b4f6113e6565b6001600160a01b0316610b6a600d546001600160a01b031690565b6001600160a01b031614610b905760405162461bcd60e51b8152600401610742906126e2565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bc9573d6000803e3d6000fd5b50565b61088a83838360405180602001604052806000815250610fb3565b6000610bf260085490565b8210610c555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610742565b60088281548110610c7657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610742565b60006001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610742565b506001600160a01b031660009081526003602052604090205490565b610d8e6113e6565b6001600160a01b0316610da9600d546001600160a01b031690565b6001600160a01b031614610dcf5760405162461bcd60e51b8152600401610742906126e2565b610dd96000611808565b565b610de36113e6565b6001600160a01b0316610dfe600d546001600160a01b031690565b6001600160a01b031614610e245760405162461bcd60e51b8152600401610742906126e2565b6000610e2e61185a565b9050610e3a828261186b565b610e426119b9565b5050565b60606001805461064a906127f6565b610e5d6113e6565b6001600160a01b0316610e78600d546001600160a01b031690565b6001600160a01b031614610e9e5760405162461bcd60e51b8152600401610742906126e2565b8051610e4290601090602084019061212a565b610eb96113e6565b6001600160a01b0316826001600160a01b03161415610f1a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610742565b8060056000610f276113e6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f6b6113e6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fa7911515815260200190565b60405180910390a35050565b610fc4610fbe6113e6565b83611566565b610fe05760405162461bcd60e51b815260040161074290612717565b610fec84848484611baa565b50505050565b60606010610fff83611bdd565b60405160200161101092919061256e565b6040516020818303038152906040529050919050565b61102e6113e6565b6001600160a01b0316611049600d546001600160a01b031690565b6001600160a01b03161461106f5760405162461bcd60e51b8152600401610742906126e2565b600060646110ad6040805141602080830191909152428284015244606080840191909152835180840390910181526080909201909252805191012090565b6110b7919061284c565b905060005b600a8110156111275760006110cf61185a565b905061110c611106846110e3856064612794565b6011546110f2906103e8612794565b6110fc9190612768565b6104119190612768565b8261186b565b6111146119b9565b508061111f81612831565b9150506110bc565b50601154611136906001612768565b60115550565b60108054611149906127f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611175906127f6565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b505050505081565b6012544210156112105760405162461bcd60e51b8152602060048201526011602482015270125d09dcc81b9bdd081d1a5b59481e595d607a1b6044820152606401610742565b600081118015611221575060148111155b61122a57600080fd5b61123b81666a94d74f430000612794565b341461124657600080fd5b60005b81811015610e4257600061125b61185a565b9050611267338261186b565b61126f6119b9565b508061127a81612831565b915050611249565b61128a6113e6565b6001600160a01b03166112a5600d546001600160a01b031690565b6001600160a01b0316146112cb5760405162461bcd60e51b8152600401610742906126e2565b6001600160a01b0381166113305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610742565b610bc981611808565b60003330141561139057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506113939050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806113c757506001600160e01b03198216635b5e139f60e01b145b8061063557506301ffc9a760e01b6001600160e01b0319831614610635565b60006113f0611339565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061142a82610c88565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166114c95760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610742565b60016114dc6114d787611cf7565b611d74565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561152a573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061155f8284612768565b9392505050565b6000818152600260205260408120546001600160a01b03166115df5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b60006115ea83610c88565b9050806001600160a01b0316846001600160a01b031614806116255750836001600160a01b031661161a846106cd565b6001600160a01b0316145b8061165557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661167082610c88565b6001600160a01b0316146116d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610742565b6001600160a01b03821661173a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610742565b611745838383611da4565b6117506000826113f5565b6001600160a01b03831660009081526003602052604081208054600192906117799084906127b3565b90915550506001600160a01b03821660009081526003602052604081208054600192906117a7908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546000906113f0906001611553565b6001600160a01b0382166118c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610742565b6000818152600260205260409020546001600160a01b0316156119265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610742565b61193260008383611da4565b6001600160a01b038216600090815260036020526040812080546001929061195b908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6119c16113e6565b6001600160a01b03166119dc600d546001600160a01b031690565b6001600160a01b03161415611a0057600f54600e54106119fb57600080fd5b611a1c565b60d4600f54611a0f91906127b3565b600e5410611a1c57600080fd5b600e8054906000611a2c83612831565b919050555060d4600f54611a4091906127b3565b600e541415610dd95760006103e8611a886040805141602080830191909152428284015244606080840191909152835180840390910181526080909201909252805191012090565b611a92919061284c565b90506000611aaa826103e8600e546110fc91906127b3565b611abe836107d0600e546110fc91906127b3565b611ad284610bb8600e546110fc91906127b3565b611ae685610fa0600e546110fc91906127b3565b611afa86611388600e546110fc91906127b3565b611b0e87611770600e546110fc91906127b3565b604080516001600160a01b0397881660208201529587169086015292851660608501529084166080840152831660a083015290911660c08201523360e08201526101000160408051601f1981840301815291905280516020909101209050611b86611b7b61263c8361284c565b610411906001612768565b601380546001600160a01b0319166001600160a01b03929092169190911790555050565b611bb584848461165d565b611bc184848484611e5c565b610fec5760405162461bcd60e51b815260040161074290612690565b606081611c015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c2b5780611c1581612831565b9150611c249050600a83612780565b9150611c05565b60008167ffffffffffffffff811115611c5457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c7e576020820181803683370190505b5090505b841561165557611c936001836127b3565b9150611ca0600a8661284c565b611cab906030612768565b60f81b818381518110611cce57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cf0600a86612780565b9450611c82565b60006040518060800160405280604381526020016128b96043913980516020918201208351848301516040808701518051908601209051611d57950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611d7f600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611d57565b6001600160a01b038316611dff57611dfa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e22565b816001600160a01b0316836001600160a01b031614611e2257611e228382611f70565b6001600160a01b038216611e395761088a8161200d565b826001600160a01b0316826001600160a01b03161461088a5761088a82826120e6565b60006001600160a01b0384163b15611f6557836001600160a01b031663150b7a02611e856113e6565b8786866040518563ffffffff1660e01b8152600401611ea79493929190612640565b602060405180830381600087803b158015611ec157600080fd5b505af1925050508015611ef1575060408051601f3d908101601f19168201909252611eee91810190612459565b60015b611f4b573d808015611f1f576040519150601f19603f3d011682016040523d82523d6000602084013e611f24565b606091505b508051611f435760405162461bcd60e51b815260040161074290612690565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611655565b506001949350505050565b60006001611f7d84610cff565b611f8791906127b3565b600083815260076020526040902054909150808214611fda576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061201f906001906127b3565b6000838152600960205260408120546008805493945090928490811061205557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061208457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120ca57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120f183610cff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612136906127f6565b90600052602060002090601f016020900481019282612158576000855561219e565b82601f1061217157805160ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219e578251825591602001919060010190612183565b506121aa9291506121ae565b5090565b5b808211156121aa57600081556001016121af565b600067ffffffffffffffff808411156121de576121de61288c565b604051601f8501601f19908116603f011681019082821181831017156122065761220661288c565b8160405280935085815286868601111561221f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461225057600080fd5b919050565b600082601f830112612265578081fd5b61155f838335602085016121c3565b600060208284031215612285578081fd5b61155f82612239565b600080604083850312156122a0578081fd5b6122a983612239565b91506122b760208401612239565b90509250929050565b6000806000606084860312156122d4578081fd5b6122dd84612239565b92506122eb60208501612239565b9150604084013590509250925092565b60008060008060808587031215612310578081fd5b61231985612239565b935061232760208601612239565b925060408501359150606085013567ffffffffffffffff811115612349578182fd5b61235587828801612255565b91505092959194509250565b60008060408385031215612373578182fd5b61237c83612239565b915060208301358015158114612390578182fd5b809150509250929050565b600080600080600060a086880312156123b2578081fd5b6123bb86612239565b9450602086013567ffffffffffffffff8111156123d6578182fd5b6123e288828901612255565b9450506040860135925060608601359150608086013560ff81168114612406578182fd5b809150509295509295909350565b60008060408385031215612426578182fd5b61242f83612239565b946020939093013593505050565b60006020828403121561244e578081fd5b813561155f816128a2565b60006020828403121561246a578081fd5b815161155f816128a2565b600060208284031215612486578081fd5b813567ffffffffffffffff81111561249c578182fd5b8201601f810184136124ac578182fd5b611655848235602084016121c3565b6000602082840312156124cc578081fd5b5035919050565b600081518084526124eb8160208601602086016127ca565b601f01601f19169290920160200192915050565b600081516125118185602086016127ca565b9290920192915050565b6000825161252d8184602087016127ca565b9190910192915050565b600083516125498184602088016127ca565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845482600182811c91508083168061258a57607f831692505b60208084108214156125aa57634e487b7160e01b87526022600452602487fd5b8180156125be57600181146125cf576125fb565b60ff198616895284890196506125fb565b60008b815260209020885b868110156125f35781548b8201529085019083016125da565b505084890196505b50505050505061260b81856124ff565b95945050505050565b6001600160a01b0384811682528316602082015260606040820181905260009061260b908301846124d3565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612673908301846124d3565b9695505050505050565b60208152600061155f60208301846124d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561277b5761277b612860565b500190565b60008261278f5761278f612876565b500490565b60008160001904831182151516156127ae576127ae612860565b500290565b6000828210156127c5576127c5612860565b500390565b60005b838110156127e55781810151838201526020016127cd565b83811115610fec5750506000910152565b600181811c9082168061280a57607f821691505b6020821081141561282b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284557612845612860565b5060010190565b60008261285b5761285b612876565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bc957600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122020b5e22cc0bc67effa7285031e7cb3a05a5f8b4e474b4b188200e7c163ff328a64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b43727970746f47686f737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024347000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e63727970746f67686f7374732e6f72672f6170692f746f6b656e2f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptoGhost
Arg [1] : _symbol (string): CG
Arg [2] : _uri (string): https://api.cryptoghosts.org/api/token/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 43727970746f47686f7374000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4347000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [8] : 68747470733a2f2f6170692e63727970746f67686f7374732e6f72672f617069
Arg [9] : 2f746f6b656e2f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

370:4092:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:290:7;;;;;;;;;;-1:-1:-1;909:290:7;;;;;:::i;:::-;;:::i;:::-;;;10154:14:19;;10147:22;10129:41;;10117:2;10102:18;909:290:7;;;;;;;;2549:98:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4182:295::-;;;;;;;;;;-1:-1:-1;4182:295:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7915:32:19;;;7897:51;;7885:2;7870:18;4182:295:6;7852:102:19;3720:401:6;;;;;;;;;;-1:-1:-1;3720:401:6;;;;;:::i;:::-;;:::i;:::-;;966:1117:15;;;;;;:::i;:::-;;:::i;288:43:4:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:4;;;;;1680:111:7;;;;;;;;;;-1:-1:-1;1767:10:7;:17;1680:111;;;10327:25:19;;;10315:2;10300:18;1680:111:7;10282:76:19;1254:99:4;;;;;;;;;;-1:-1:-1;1331:15:4;;1254:99;;5196:364:6;;;;;;;;;;-1:-1:-1;5196:364:6;;;;;:::i;:::-;;:::i;2491:105:15:-;;;;;;;;;;-1:-1:-1;2491:105:15;;;;;:::i;:::-;-1:-1:-1;;;;;2577:12:15;2544:13;2577:12;;;:6;:12;;;;;;;2491:105;1278:331:7;;;;;;;;;;-1:-1:-1;1278:331:7;;;;;:::i;:::-;;:::i;1359:155:4:-;;;;;;;;;;-1:-1:-1;1470:9:4;1359:155;;2100:104:3;;;;;;;;;;;;;:::i;5626:179:6:-;;;;;;;;;;-1:-1:-1;5626:179:6;;;;;:::i;:::-;;:::i;1863:308:7:-;;;;;;;;;;-1:-1:-1;1863:308:7;;;;;:::i;:::-;;:::i;2174:313:6:-;;;;;;;;;;-1:-1:-1;2174:313:6;;;;;:::i;:::-;;:::i;694:25:3:-;;;;;;;;;;-1:-1:-1;694:25:3;;;;-1:-1:-1;;;;;694:25:3;;;1834:283:6;;;;;;;;;;-1:-1:-1;1834:283:6;;;;;:::i;:::-;;:::i;1620:92:16:-;;;;;;;;;;;;;:::i;1063:162:3:-;;;;;;;;;;-1:-1:-1;1063:162:3;;;;;:::i;:::-;;:::i;651:37::-;;;;;;;;;;;;;;;;988:85:16;;;;;;;;;;-1:-1:-1;1060:6:16;;-1:-1:-1;;;;;1060:6:16;988:85;;2711:102:6;;;;;;;;;;;;;:::i;3883:95:3:-;;;;;;;;;;-1:-1:-1;3883:95:3;;;;;:::i;:::-;;:::i;4544:318:6:-;;;;;;;;;;-1:-1:-1;4544:318:6;;;;;:::i;:::-;;:::i;5871:354::-;;;;;;;;;;-1:-1:-1;5871:354:6;;;;;:::i;:::-;;:::i;3984:219:3:-;;;;;;;;;;-1:-1:-1;3984:219:3;;;;;:::i;:::-;;:::i;1753:341::-;;;;;;;;;;;;;:::i;586:26::-;;;;;;;;;;;;;:::i;618:27::-;;;;;;;;;;;;;;;;1231:384;;;;;;:::i;:::-;;:::i;4928:206:6:-;;;;;;;;;;-1:-1:-1;4928:206:6;;;;;:::i;:::-;-1:-1:-1;;;;;5092:25:6;;;5065:4;5092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4928:206;1861:223:16;;;;;;;;;;-1:-1:-1;1861:223:16;;;;;:::i;:::-;;:::i;909:290:7:-;1051:4;-1:-1:-1;;;;;;1090:50:7;;-1:-1:-1;;;1090:50:7;;:102;;;1156:36;1180:11;1156:23;:36::i;:::-;1071:121;909:290;-1:-1:-1;;909:290:7:o;2549:98:6:-;2603:13;2635:5;2628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2549:98;:::o;4182:295::-;4298:7;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:6;4321:107;;;;-1:-1:-1;;;4321:107:6;;16995:2:19;4321:107:6;;;16977:21:19;17034:2;17014:18;;;17007:30;17073:34;17053:18;;;17046:62;-1:-1:-1;;;17124:18:19;;;17117:42;17176:19;;4321:107:6;;;;;;;;;-1:-1:-1;4446:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;4446:24:6;;4182:295::o;3720:401::-;3800:13;3816:23;3831:7;3816:14;:23::i;:::-;3800:39;;3863:5;-1:-1:-1;;;;;3857:11:6;:2;-1:-1:-1;;;;;3857:11:6;;;3849:57;;;;-1:-1:-1;;;3849:57:6;;18581:2:19;3849:57:6;;;18563:21:19;18620:2;18600:18;;;18593:30;18659:34;18639:18;;;18632:62;-1:-1:-1;;;18710:18:19;;;18703:31;18751:19;;3849:57:6;18553:223:19;3849:57:6;3954:5;-1:-1:-1;;;;;3938:21:6;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3938:21:6;;:62;;;;3963:37;3980:5;3987:12;:10;:12::i;3963:37::-;3917:165;;;;-1:-1:-1;;;3917:165:6;;15388:2:19;3917:165:6;;;15370:21:19;15427:2;15407:18;;;15400:30;15466:34;15446:18;;;15439:62;15537:26;15517:18;;;15510:54;15581:19;;3917:165:6;15360:246:19;3917:165:6;4093:21;4102:2;4106:7;4093:8;:21::i;:::-;3720:401;;;:::o;966:1117:15:-;1217:148;;;1161:12;1217:148;;;;;-1:-1:-1;;;;;1254:19:15;;1185:29;1254:19;;;:6;:19;;;;;;;;;1217:148;;;;;;;;;;;1397:45;1261:11;1217:148;1425:4;1431;1437;1397:6;:45::i;:::-;1376:125;;;;-1:-1:-1;;;1376:125:15;;18179:2:19;1376:125:15;;;18161:21:19;18218:2;18198:18;;;18191:30;18257:34;18237:18;;;18230:62;-1:-1:-1;;;18308:18:19;;;18301:31;18349:19;;1376:125:15;18151:223:19;1376:125:15;-1:-1:-1;;;;;1587:19:15;;;;;;:6;:19;;;;;;:26;;1611:1;1587:23;:26::i;:::-;-1:-1:-1;;;;;1565:19:15;;;;;;:6;:19;;;;;;;:48;;;;1629:122;;;;;1572:11;;1699:10;;1724:17;;1629:122;:::i;:::-;;;;;;;;1859:12;1873:23;1908:4;-1:-1:-1;;;;;1900:18:15;1949:17;1968:11;1932:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1932:48:15;;;;;;;;;;1900:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1858:132;;;;2008:7;2000:48;;;;-1:-1:-1;;;2000:48:15;;13096:2:19;2000:48:15;;;13078:21:19;13135:2;13115:18;;;13108:30;13174;13154:18;;;13147:58;13222:18;;2000:48:15;13068:178:19;2000:48:15;2066:10;966:1117;-1:-1:-1;;;;;;;;966:1117:15:o;5196:364:6:-;5398:41;5417:12;:10;:12::i;:::-;5431:7;5398:18;:41::i;:::-;5377:137;;;;-1:-1:-1;;;5377:137:6;;;;;;;:::i;:::-;5525:28;5535:4;5541:2;5545:7;5525:9;:28::i;1278:331:7:-;1415:7;1467:23;1484:5;1467:16;:23::i;:::-;1459:5;:31;1438:121;;;;-1:-1:-1;;;1438:121:7;;11858:2:19;1438:121:7;;;11840:21:19;11897:2;11877:18;;;11870:30;11936:34;11916:18;;;11909:62;-1:-1:-1;;;11987:18:19;;;11980:41;12038:19;;1438:121:7;11830:233:19;1438:121:7;-1:-1:-1;;;;;;1576:19:7;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1278:331::o;2100:104:3:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1060:6;;2149:48:3::1;::::0;-1:-1:-1;;;;;1060:6:16;;;;2175:21:3::1;2149:48:::0;::::1;;;::::0;::::1;::::0;;;2175:21;1060:6:16;2149:48:3;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2100:104::o:0;5626:179:6:-;5759:39;5776:4;5782:2;5786:7;5759:39;;;;;;;;;;;;:16;:39::i;1863:308:7:-;1978:7;2030:30;1767:10;:17;;1680:111;2030:30;2022:5;:38;2001:129;;;;-1:-1:-1;;;2001:129:7;;19747:2:19;2001:129:7;;;19729:21:19;19786:2;19766:18;;;19759:30;19825:34;19805:18;;;19798:62;-1:-1:-1;;;19876:18:19;;;19869:42;19928:19;;2001:129:7;19719:234:19;2001:129:7;2147:10;2158:5;2147:17;;;;;;-1:-1:-1;;;2147:17:7;;;;;;;;;;;;;;;;;2140:24;;1863:308;;;:::o;2174:313:6:-;2286:7;2325:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2325:16:6;2372:19;2351:107;;;;-1:-1:-1;;;2351:107:6;;16224:2:19;2351:107:6;;;16206:21:19;16263:2;16243:18;;;16236:30;16302:34;16282:18;;;16275:62;-1:-1:-1;;;16353:18:19;;;16346:39;16402:19;;2351:107:6;16196:231:19;1834:283:6;1946:7;-1:-1:-1;;;;;1990:19:6;;1969:108;;;;-1:-1:-1;;;1969:108:6;;15813:2:19;1969:108:6;;;15795:21:19;15852:2;15832:18;;;15825:30;15891:34;15871:18;;;15864:62;-1:-1:-1;;;15942:18:19;;;15935:40;15992:19;;1969:108:6;15785:232:19;1969:108:6;-1:-1:-1;;;;;;2094:16:6;;;;;:9;:16;;;;;;;1834:283::o;1620:92:16:-;1211:12;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;1063:162:3:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1119:18:3::1;1140:17;:15;:17::i;:::-;1119:38;;1167:22;1173:3;1178:10;1167:5;:22::i;:::-;1199:19;:17;:19::i;:::-;1270:1:16;1063:162:3::0;:::o;2711:102:6:-;2767:13;2799:7;2792:14;;;;;:::i;3883:95:3:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;3952:19:3;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;4544:318:6:-:0;4686:12;:10;:12::i;:::-;-1:-1:-1;;;;;4674:24:6;:8;-1:-1:-1;;;;;4674:24:6;;;4666:62;;;;-1:-1:-1;;;4666:62:6;;14215:2:19;4666:62:6;;;14197:21:19;14254:2;14234:18;;;14227:30;14293:27;14273:18;;;14266:55;14338:18;;4666:62:6;14187:175:19;4666:62:6;4784:8;4739:18;:32;4758:12;:10;:12::i;:::-;-1:-1:-1;;;;;4739:32:6;;;;;;;;;;;;;;;;;-1:-1:-1;4739:32:6;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4739:53:6;;;;;;;;;;;4822:12;:10;:12::i;:::-;-1:-1:-1;;;;;4807:48:6;;4846:8;4807:48;;;;10154:14:19;10147:22;10129:41;;10117:2;10102:18;;10084:92;4807:48:6;;;;;;;;4544:318;;:::o;5871:354::-;6053:41;6072:12;:10;:12::i;:::-;6086:7;6053:18;:41::i;:::-;6032:137;;;;-1:-1:-1;;;6032:137:6;;;;;;;:::i;:::-;6179:39;6193:4;6199:2;6203:7;6212:5;6179:13;:39::i;:::-;5871:354;;;;:::o;3984:219:3:-;4082:13;4154:12;4168:26;4185:8;4168:16;:26::i;:::-;4137:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4111:85;;3984:219;;;:::o;1753:341::-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1801:12:3::1;1827:3;1816:8;2555:61:::0;;;2566:14;2555:61;;;;8177:51:19;;;;2582:15:3;8244:18:19;;;8237:34;2599:16:3;8287:18:19;;;;8280:34;;;;2555:61:3;;;;;;;;;;8150:18:19;;;;2555:61:3;;;2532:94;;;;;;2456:209;1816:8:::1;:14;;;;:::i;:::-;1801:29;;1845:9;1840:207;1864:2;1860:1;:6;1840:207;;;1887:18;1908:17;:15;:17::i;:::-;1887:38:::0;-1:-1:-1;1939:64:3::1;1945:45;1985:4:::0;1975:7:::1;1981:1:::0;1975:3:::1;:7;:::i;:::-;1960:12;::::0;1953:19:::1;::::0;:4:::1;:19;:::i;:::-;:29;;;;:::i;:::-;:36;;;;:::i;1945:45::-;1992:10;1939:5;:64::i;:::-;2017:19;:17;:19::i;:::-;-1:-1:-1::0;1868:3:3;::::1;::::0;::::1;:::i;:::-;;;;1840:207;;;-1:-1:-1::0;2071:12:3::1;::::0;:16:::1;::::0;2086:1:::1;2071:16;:::i;:::-;2056:12;:31:::0;-1:-1:-1;1753:341:3:o;586:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1231:384::-;1310:9;;1291:15;:28;;1283:58;;;;-1:-1:-1;;;1283:58:3;;19401:2:19;1283:58:3;;;19383:21:19;19440:2;19420:18;;;19413:30;-1:-1:-1;;;19459:18:19;;;19452:47;19516:18;;1283:58:3;19373:167:19;1283:58:3;1366:1;1359:4;:8;:22;;;;;1379:2;1371:4;:10;;1359:22;1351:31;;;;;;1413:11;:4;1420;1413:11;:::i;:::-;1400:9;:24;1392:33;;;;;;1440:9;1435:174;1459:4;1455:1;:8;1435:174;;;1484:18;1505:17;:15;:17::i;:::-;1484:38;;1536:29;1542:10;1554;1536:5;:29::i;:::-;1579:19;:17;:19::i;:::-;-1:-1:-1;1465:3:3;;;;:::i;:::-;;;;1435:174;;1861:223:16;1211:12;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;-1:-1:-1;;;;;1962:22:16;::::1;1941:107;;;::::0;-1:-1:-1;;;1941:107:16;;12689:2:19;1941:107:16::1;::::0;::::1;12671:21:19::0;12728:2;12708:18;;;12701:30;12767:34;12747:18;;;12740:62;-1:-1:-1;;;12818:18:19;;;12811:36;12864:19;;1941:107:16::1;12661:228:19::0;1941:107:16::1;2058:19;2068:8;2058:9;:19::i;95:603:1:-:0;139:22;177:10;199:4;177:27;173:496;;;220:18;241:8;;220:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;279:8:1;486:17;480:24;-1:-1:-1;;;;;455:131:1;;-1:-1:-1;317:283:1;;-1:-1:-1;317:283:1;;-1:-1:-1;647:10:1;173:496;95:603;:::o;1431:344:6:-;1573:4;-1:-1:-1;;;;;;1612:40:6;;-1:-1:-1;;;1612:40:6;;:104;;-1:-1:-1;;;;;;;1668:48:6;;-1:-1:-1;;;1668:48:6;1612:104;:156;;;-1:-1:-1;;;;;;;;;;915:40:5;;;1732:36:6;763:199:5;4342:118:3;4396:14;4429:24;:22;:24::i;:::-;4422:31;;4342:118;:::o;11710:171:6:-;11784:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11784:29:6;-1:-1:-1;;;;;11784:29:6;;;;;;;;:24;;11837:23;11784:24;11837:14;:23::i;:::-;-1:-1:-1;;;;;11828:46:6;;;;;;;;;;;11710:171;;:::o;2602:470:15:-;2774:4;-1:-1:-1;;;;;2798:20:15;;2790:70;;;;-1:-1:-1;;;2790:70:15;;14982:2:19;2790:70:15;;;14964:21:19;15021:2;15001:18;;;14994:30;15060:34;15040:18;;;15033:62;-1:-1:-1;;;15111:18:19;;;15104:35;15156:19;;2790:70:15;14954:227:19;2790:70:15;2911:154;2938:47;2957:27;2977:6;2957:19;:27::i;:::-;2938:18;:47::i;:::-;2911:154;;;;;;;;;;;;11012:25:19;;;;11085:4;11073:17;;11053:18;;;11046:45;11107:18;;;11100:34;;;11150:18;;;11143:34;;;10984:19;;2911:154:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2889:176:15;:6;-1:-1:-1;;;;;2889:176:15;;2870:195;;2602:470;;;;;;;:::o;2672:96:17:-;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:17:o;8014:438:6:-;8139:4;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:6;8159:107;;;;-1:-1:-1;;;8159:107:6;;14569:2:19;8159:107:6;;;14551:21:19;14608:2;14588:18;;;14581:30;14647:34;14627:18;;;14620:62;-1:-1:-1;;;14698:18:19;;;14691:42;14750:19;;8159:107:6;14541:234:19;8159:107:6;8276:13;8292:23;8307:7;8292:14;:23::i;:::-;8276:39;;8344:5;-1:-1:-1;;;;;8333:16:6;:7;-1:-1:-1;;;;;8333:16:6;;:63;;;;8389:7;-1:-1:-1;;;;;8365:31:6;:20;8377:7;8365:11;:20::i;:::-;-1:-1:-1;;;;;8365:31:6;;8333:63;:111;;;-1:-1:-1;;;;;;5092:25:6;;;5065:4;5092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8412:32;8325:120;8014:438;-1:-1:-1;;;;8014:438:6:o;11005:594::-;11172:4;-1:-1:-1;;;;;11145:31:6;:23;11160:7;11145:14;:23::i;:::-;-1:-1:-1;;;;;11145:31:6;;11124:119;;;;-1:-1:-1;;;11124:119:6;;17769:2:19;11124:119:6;;;17751:21:19;17808:2;17788:18;;;17781:30;17847:34;17827:18;;;17820:62;-1:-1:-1;;;17898:18:19;;;17891:39;17947:19;;11124:119:6;17741:231:19;11124:119:6;-1:-1:-1;;;;;11261:16:6;;11253:65;;;;-1:-1:-1;;;11253:65:6;;13810:2:19;11253:65:6;;;13792:21:19;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:19;;;13932:34;13983:19;;11253:65:6;13782:226:19;11253:65:6;11329:39;11350:4;11356:2;11360:7;11329:20;:39::i;:::-;11430:29;11447:1;11451:7;11430:8;:29::i;:::-;-1:-1:-1;;;;;11470:15:6;;;;;;:9;:15;;;;;:20;;11489:1;;11470:15;:20;;11489:1;;11470:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11500:13:6;;;;;;:9;:13;;;;;:18;;11517:1;;11500:13;:18;;11517:1;;11500:18;:::i;:::-;;;;-1:-1:-1;;11528:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11528:21:6;-1:-1:-1;;;;;11528:21:6;;;;;;;;;11565:27;;11528:16;;11565:27;;;;;;;11005:594;;;:::o;2090:169:16:-;2164:6;;;-1:-1:-1;;;;;2180:17:16;;;-1:-1:-1;;;;;;2180:17:16;;;;;;;2212:40;;2164:6;;;2180:17;2164:6;;2212:40;;2145:16;;2212:40;2090:169;;:::o;2346:104:3:-;2421:15;;2395:7;;2421:22;;2441:1;2421:19;:22::i;9744:372:6:-;-1:-1:-1;;;;;9823:16:6;;9815:61;;;;-1:-1:-1;;;9815:61:6;;16634:2:19;9815:61:6;;;16616:21:19;;;16653:18;;;16646:30;16712:34;16692:18;;;16685:62;16764:18;;9815:61:6;16606:182:19;9815:61:6;7796:4;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:6;:30;9886:58;;;;-1:-1:-1;;;9886:58:6;;13453:2:19;9886:58:6;;;13435:21:19;13492:2;13472:18;;;13465:30;13531;13511:18;;;13504:58;13579:18;;9886:58:6;13425:178:19;9886:58:6;9955:45;9984:1;9988:2;9992:7;9955:20;:45::i;:::-;-1:-1:-1;;;;;10011:13:6;;;;;;:9;:13;;;;;:18;;10028:1;;10011:13;:18;;10028:1;;10011:18;:::i;:::-;;;;-1:-1:-1;;10039:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10039:21:6;-1:-1:-1;;;;;10039:21:6;;;;;;;;10076:33;;10039:16;;;10076:33;;10039:16;;10076:33;9744:372;;:::o;2869:906:3:-;2931:12;:10;:12::i;:::-;-1:-1:-1;;;;;2920:23:3;:7;1060:6:16;;-1:-1:-1;;;;;1060:6:16;;988:85;2920:7:3;-1:-1:-1;;;;;2920:23:3;;2916:165;;;2985:10;;2967:15;;:28;2959:37;;;;;;2916:165;;;3066:3;3053:10;;:16;;;;:::i;:::-;3035:15;;:34;3027:43;;;;;;3090:15;:17;;;:15;:17;;;:::i;:::-;;;;;;3153:3;3140:10;;:16;;;;:::i;:::-;3121:15;;:35;3117:652;;;3172:12;3198:4;3187:8;2555:61;;;2566:14;2555:61;;;;8177:51:19;;;;2582:15:3;8244:18:19;;;8237:34;2599:16:3;8287:18:19;;;;8280:34;;;;2555:61:3;;;;;;;;;;8150:18:19;;;;2555:61:3;;;2532:94;;;;;;2456:209;3187:8;:15;;;;:::i;:::-;3172:30;;3216:14;3292:38;3325:4;3318;3300:15;;:22;;;;:::i;3292:38::-;3352;3385:4;3378;3360:15;;:22;;;;:::i;3352:38::-;3412;3445:4;3438;3420:15;;:22;;;;:::i;3412:38::-;3472;3505:4;3498;3480:15;;:22;;;;:::i;3472:38::-;3532;3565:4;3558;3540:15;;:22;;;;:::i;3532:38::-;3592;3625:4;3618;3600:15;;:22;;;;:::i;3592:38::-;3260:420;;;-1:-1:-1;;;;;9143:15:19;;;3260:420:3;;;9125:34:19;9195:15;;;9175:18;;;9168:43;9247:15;;;9227:18;;;9220:43;9299:15;;;9279:18;;;9272:43;9352:15;;9331:19;;;9324:44;9405:15;;;9384:19;;;9377:44;3652:10:3;9437:19:19;;;9430:44;9059:19;;3260:420:3;;;-1:-1:-1;;3260:420:3;;;;;;;;;3233:461;;3260:420;3233:461;;;;;-1:-1:-1;3721:37:3;3730:22;3748:4;3233:461;3730:22;:::i;:::-;3729:28;;3756:1;3729:28;:::i;3721:37::-;3708:10;:50;;-1:-1:-1;;;;;;3708:50:3;-1:-1:-1;;;;;3708:50:3;;;;;;;;;;-1:-1:-1;;2869:906:3:o;7087:341:6:-;7238:28;7248:4;7254:2;7258:7;7238:9;:28::i;:::-;7297:48;7320:4;7326:2;7330:7;7339:5;7297:22;:48::i;:::-;7276:145;;;;-1:-1:-1;;;7276:145:6;;;;;;;:::i;275:703:18:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:18;;;;;;;;;;;;-1:-1:-1;;;574:10:18;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:18;;-1:-1:-1;720:2:18;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:18;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:18;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:18;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:18;;;;;;;;-1:-1:-1;919:11:18;928:2;919:11;;:::i;:::-;;;791:150;;2089:396:15;2196:7;312:106;;;;;;;;;;;;;;;;;289:139;;;;;;;2344:12;;2378:11;;;;2421:24;;;;;2411:35;;;;;;2265:199;;;;;10594:25:19;;;10650:2;10635:18;;10628:34;;;;-1:-1:-1;;;;;10698:32:19;10693:2;10678:18;;10671:60;10762:2;10747:18;;10740:34;10581:3;10566:19;;10548:232;2265:199:15;;;;;;;;;;;;;2238:240;;;;;;2219:259;;2089:396;;;:::o;1874:249:4:-;1970:7;2068:20;1331:15;;;1254:99;2068:20;2039:63;;-1:-1:-1;;;2039:63:4;;;7612:27:19;7655:11;;;7648:27;;;;7691:12;;;7684:28;;;7728:12;;2039:63:4;7602:144:19;2767:572:7;-1:-1:-1;;;;;2966:18:7;;2962:183;;3000:40;3032:7;4148:10;:17;;4121:24;;;;:15;:24;;;;;:44;;;4175:24;;;;;;;;;;;;4045:161;3000:40;2962:183;;;3069:2;-1:-1:-1;;;;;3061:10:7;:4;-1:-1:-1;;;;;3061:10:7;;3057:88;;3087:47;3120:4;3126:7;3087:32;:47::i;:::-;-1:-1:-1;;;;;3158:16:7;;3154:179;;3190:45;3227:7;3190:36;:45::i;3154:179::-;3262:4;-1:-1:-1;;;;;3256:10:7;:2;-1:-1:-1;;;;;3256:10:7;;3252:81;;3282:40;3310:2;3314:7;3282:27;:40::i;12434:950:6:-;12584:4;-1:-1:-1;;;;;12604:13:6;;1034:20:0;1080:8;12600:778:6;;12671:2;-1:-1:-1;;;;;12655:36:6;;12713:12;:10;:12::i;:::-;12747:4;12773:7;12802:5;12655:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12655:170:6;;;;;;;;-1:-1:-1;;12655:170:6;;;;;;;;;;;;:::i;:::-;;;12635:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13004:13:6;;13000:312;;13046:106;;-1:-1:-1;;;13046:106:6;;;;;;;:::i;13000:312::-;13264:6;13258:13;13249:6;13245:2;13241:15;13234:38;12635:691;-1:-1:-1;;;;;;12887:51:6;-1:-1:-1;;;12887:51:6;;-1:-1:-1;12880:58:6;;12600:778;-1:-1:-1;13363:4:6;12434:950;;;;;;:::o;4823:982:7:-;5097:22;5147:1;5122:22;5139:4;5122:16;:22::i;:::-;:26;;;;:::i;:::-;5158:18;5179:26;;;:17;:26;;;;;;5097:51;;-1:-1:-1;5309:28:7;;;5305:323;;-1:-1:-1;;;;;5375:18:7;;5353:19;5375:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5424:30;;;;;;:44;;;5540:30;;:17;:30;;;;;:43;;;5305:323;-1:-1:-1;5721:26:7;;;;:17;:26;;;;;;;;5714:33;;;-1:-1:-1;;;;;5764:18:7;;;;;:12;:18;;;;;:34;;;;;;;5757:41;4823:982::o;6093:1061::-;6367:10;:17;6342:22;;6367:21;;6387:1;;6367:21;:::i;:::-;6398:18;6419:24;;;:15;:24;;;;;;6787:10;:26;;6342:46;;-1:-1:-1;6419:24:7;;6342:46;;6787:26;;;;-1:-1:-1;;;6787:26:7;;;;;;;;;;;;;;;;;6765:48;;6849:11;6824:10;6835;6824:22;;;;;;-1:-1:-1;;;6824:22:7;;;;;;;;;;;;;;;;;;;;:36;;;;6928:28;;;:15;:28;;;;;;;:41;;;7097:24;;;;;7090:31;7131:10;:16;;;;;-1:-1:-1;;;7131:16:7;;;;;;;;;;;;;;;;;;;;;;;;;;6093:1061;;;;:::o;3633:217::-;3717:14;3734:20;3751:2;3734:16;:20::i;:::-;-1:-1:-1;;;;;3764:16:7;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3808:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3633:217:7:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:19;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:19;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:19;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:228::-;870:5;923:3;916:4;908:6;904:17;900:27;890:2;;945:5;938;931:20;890:2;971:79;1046:3;1037:6;1024:20;1017:4;1009:6;1005:17;971:79;:::i;1061:196::-;1120:6;1173:2;1161:9;1152:7;1148:23;1144:32;1141:2;;;1194:6;1186;1179:22;1141:2;1222:29;1241:9;1222:29;:::i;1262:270::-;1330:6;1338;1391:2;1379:9;1370:7;1366:23;1362:32;1359:2;;;1412:6;1404;1397:22;1359:2;1440:29;1459:9;1440:29;:::i;:::-;1430:39;;1488:38;1522:2;1511:9;1507:18;1488:38;:::i;:::-;1478:48;;1349:183;;;;;:::o;1537:338::-;1614:6;1622;1630;1683:2;1671:9;1662:7;1658:23;1654:32;1651:2;;;1704:6;1696;1689:22;1651:2;1732:29;1751:9;1732:29;:::i;:::-;1722:39;;1780:38;1814:2;1803:9;1799:18;1780:38;:::i;:::-;1770:48;;1865:2;1854:9;1850:18;1837:32;1827:42;;1641:234;;;;;:::o;1880:557::-;1975:6;1983;1991;1999;2052:3;2040:9;2031:7;2027:23;2023:33;2020:2;;;2074:6;2066;2059:22;2020:2;2102:29;2121:9;2102:29;:::i;:::-;2092:39;;2150:38;2184:2;2173:9;2169:18;2150:38;:::i;:::-;2140:48;;2235:2;2224:9;2220:18;2207:32;2197:42;;2290:2;2279:9;2275:18;2262:32;2317:18;2309:6;2306:30;2303:2;;;2354:6;2346;2339:22;2303:2;2382:49;2423:7;2414:6;2403:9;2399:22;2382:49;:::i;:::-;2372:59;;;2010:427;;;;;;;:::o;2442:367::-;2507:6;2515;2568:2;2556:9;2547:7;2543:23;2539:32;2536:2;;;2589:6;2581;2574:22;2536:2;2617:29;2636:9;2617:29;:::i;:::-;2607:39;;2696:2;2685:9;2681:18;2668:32;2743:5;2736:13;2729:21;2722:5;2719:32;2709:2;;2770:6;2762;2755:22;2709:2;2798:5;2788:15;;;2526:283;;;;;:::o;2814:719::-;2916:6;2924;2932;2940;2948;3001:3;2989:9;2980:7;2976:23;2972:33;2969:2;;;3023:6;3015;3008:22;2969:2;3051:29;3070:9;3051:29;:::i;:::-;3041:39;;3131:2;3120:9;3116:18;3103:32;3158:18;3150:6;3147:30;3144:2;;;3195:6;3187;3180:22;3144:2;3223:49;3264:7;3255:6;3244:9;3240:22;3223:49;:::i;:::-;3213:59;;;3319:2;3308:9;3304:18;3291:32;3281:42;;3370:2;3359:9;3355:18;3342:32;3332:42;;3424:3;3413:9;3409:19;3396:33;3469:4;3462:5;3458:16;3451:5;3448:27;3438:2;;3494:6;3486;3479:22;3438:2;3522:5;3512:15;;;2959:574;;;;;;;;:::o;3538:264::-;3606:6;3614;3667:2;3655:9;3646:7;3642:23;3638:32;3635:2;;;3688:6;3680;3673:22;3635:2;3716:29;3735:9;3716:29;:::i;:::-;3706:39;3792:2;3777:18;;;;3764:32;;-1:-1:-1;;;3625:177:19:o;3807:255::-;3865:6;3918:2;3906:9;3897:7;3893:23;3889:32;3886:2;;;3939:6;3931;3924:22;3886:2;3983:9;3970:23;4002:30;4026:5;4002:30;:::i;4067:259::-;4136:6;4189:2;4177:9;4168:7;4164:23;4160:32;4157:2;;;4210:6;4202;4195:22;4157:2;4247:9;4241:16;4266:30;4290:5;4266:30;:::i;4331:480::-;4400:6;4453:2;4441:9;4432:7;4428:23;4424:32;4421:2;;;4474:6;4466;4459:22;4421:2;4519:9;4506:23;4552:18;4544:6;4541:30;4538:2;;;4589:6;4581;4574:22;4538:2;4617:22;;4670:4;4662:13;;4658:27;-1:-1:-1;4648:2:19;;4704:6;4696;4689:22;4648:2;4732:73;4797:7;4792:2;4779:16;4774:2;4770;4766:11;4732:73;:::i;4816:190::-;4875:6;4928:2;4916:9;4907:7;4903:23;4899:32;4896:2;;;4949:6;4941;4934:22;4896:2;-1:-1:-1;4977:23:19;;4886:120;-1:-1:-1;4886:120:19:o;5011:268::-;5063:3;5101:5;5095:12;5128:6;5123:3;5116:19;5144:63;5200:6;5193:4;5188:3;5184:14;5177:4;5170:5;5166:16;5144:63;:::i;:::-;5261:2;5240:15;-1:-1:-1;;5236:29:19;5227:39;;;;5268:4;5223:50;;5071:208;-1:-1:-1;;5071:208:19:o;5284:184::-;5325:3;5363:5;5357:12;5378:52;5423:6;5418:3;5411:4;5404:5;5400:16;5378:52;:::i;:::-;5446:16;;;;;5333:135;-1:-1:-1;;5333:135:19:o;5473:274::-;5602:3;5640:6;5634:13;5656:53;5702:6;5697:3;5690:4;5682:6;5678:17;5656:53;:::i;:::-;5725:16;;;;;5610:137;-1:-1:-1;;5610:137:19:o;5752:415::-;5909:3;5947:6;5941:13;5963:53;6009:6;6004:3;5997:4;5989:6;5985:17;5963:53;:::i;:::-;6085:2;6081:15;;;;-1:-1:-1;;6077:53:19;6038:16;;;;6063:68;;;6158:2;6147:14;;5917:250;-1:-1:-1;;5917:250:19:o;6172:1177::-;6348:3;6377;6412:6;6406:13;6442:3;6464:1;6492:9;6488:2;6484:18;6474:28;;6552:2;6541:9;6537:18;6574;6564:2;;6618:4;6610:6;6606:17;6596:27;;6564:2;6644;6692;6684:6;6681:14;6661:18;6658:38;6655:2;;;-1:-1:-1;;;6719:33:19;;6775:4;6772:1;6765:15;6805:4;6726:3;6793:17;6655:2;6836:18;6863:104;;;;6981:1;6976:322;;;;6829:469;;6863:104;-1:-1:-1;;6896:24:19;;6884:37;;6941:16;;;;-1:-1:-1;6863:104:19;;6976:322;20187:4;20206:17;;;20256:4;20240:21;;7071:3;7087:165;7101:6;7098:1;7095:13;7087:165;;;7179:14;;7166:11;;;7159:35;7222:16;;;;7116:10;;7087:165;;;7091:3;;7281:6;7276:3;7272:16;7265:23;;6829:469;;;;;;;7314:29;7339:3;7331:6;7314:29;:::i;:::-;7307:36;6356:993;-1:-1:-1;;;;;6356:993:19:o;8325:442::-;-1:-1:-1;;;;;8582:15:19;;;8564:34;;8634:15;;8629:2;8614:18;;8607:43;8686:2;8681;8666:18;;8659:30;;;8507:4;;8706:55;;8742:18;;8734:6;8706:55;:::i;9485:499::-;-1:-1:-1;;;;;9754:15:19;;;9736:34;;9806:15;;9801:2;9786:18;;9779:43;9853:2;9838:18;;9831:34;;;9901:3;9896:2;9881:18;;9874:31;;;9679:4;;9922:56;;9958:19;;9950:6;9922:56;:::i;:::-;9914:64;9688:296;-1:-1:-1;;;;;;9688:296:19:o;11188:228::-;11335:2;11324:9;11317:21;11298:4;11355:55;11406:2;11395:9;11391:18;11383:6;11355:55;:::i;12068:414::-;12270:2;12252:21;;;12309:2;12289:18;;;12282:30;12348:34;12343:2;12328:18;;12321:62;-1:-1:-1;;;12414:2:19;12399:18;;12392:48;12472:3;12457:19;;12242:240::o;17206:356::-;17408:2;17390:21;;;17427:18;;;17420:30;17486:34;17481:2;17466:18;;17459:62;17553:2;17538:18;;17380:182::o;18781:413::-;18983:2;18965:21;;;19022:2;19002:18;;;18995:30;19061:34;19056:2;19041:18;;19034:62;-1:-1:-1;;;19127:2:19;19112:18;;19105:47;19184:3;19169:19;;18955:239::o;20272:128::-;20312:3;20343:1;20339:6;20336:1;20333:13;20330:2;;;20349:18;;:::i;:::-;-1:-1:-1;20385:9:19;;20320:80::o;20405:120::-;20445:1;20471;20461:2;;20476:18;;:::i;:::-;-1:-1:-1;20510:9:19;;20451:74::o;20530:168::-;20570:7;20636:1;20632;20628:6;20624:14;20621:1;20618:21;20613:1;20606:9;20599:17;20595:45;20592:2;;;20643:18;;:::i;:::-;-1:-1:-1;20683:9:19;;20582:116::o;20703:125::-;20743:4;20771:1;20768;20765:8;20762:2;;;20776:18;;:::i;:::-;-1:-1:-1;20813:9:19;;20752:76::o;20833:258::-;20905:1;20915:113;20929:6;20926:1;20923:13;20915:113;;;21005:11;;;20999:18;20986:11;;;20979:39;20951:2;20944:10;20915:113;;;21046:6;21043:1;21040:13;21037:2;;;-1:-1:-1;;21081:1:19;21063:16;;21056:27;20886:205::o;21096:380::-;21175:1;21171:12;;;;21218;;;21239:2;;21293:4;21285:6;21281:17;21271:27;;21239:2;21346;21338:6;21335:14;21315:18;21312:38;21309:2;;;21392:10;21387:3;21383:20;21380:1;21373:31;21427:4;21424:1;21417:15;21455:4;21452:1;21445:15;21309:2;;21151:325;;;:::o;21481:135::-;21520:3;-1:-1:-1;;21541:17:19;;21538:2;;;21561:18;;:::i;:::-;-1:-1:-1;21608:1:19;21597:13;;21528:88::o;21621:112::-;21653:1;21679;21669:2;;21684:18;;:::i;:::-;-1:-1:-1;21718:9:19;;21659:74::o;21738:127::-;21799:10;21794:3;21790:20;21787:1;21780:31;21830:4;21827:1;21820:15;21854:4;21851:1;21844:15;21870:127;21931:10;21926:3;21922:20;21919:1;21912:31;21962:4;21959:1;21952:15;21986:4;21983:1;21976:15;22002:127;22063:10;22058:3;22054:20;22051:1;22044:31;22094:4;22091:1;22084:15;22118:4;22115:1;22108:15;22134:131;-1:-1:-1;;;;;;22208:32:19;;22198:43;;22188:2;;22255:1;22252;22245:12

Swarm Source

ipfs://20b5e22cc0bc67effa7285031e7cb3a05a5f8b4e474b4b188200e7c163ff328a
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.