ETH Price: $3,304.96 (+1.03%)
Gas: 4 Gwei

Token

CryptOgres - FTMV (OGRE)
 

Overview

Max Total Supply

434 OGRE

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OGRE
0x38f3fad71892987d9463506b787e38d2048ec8ec
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:
CryptOgresFTMV

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-28
*/

// File: contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/utils/Address.sol



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: contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @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: CryptOgres.sol

/* SPDX-License-Identifier: MIT
                                     @&***@                                     
                                 @*************                                 
                      @*%      ****#%************      @**                      
                      ****@   **####@*******#####*@   **#*@                     
                           *#**********************@/                           
                            #***********************@                           
                           #***************%********#                           
                           **************************#                          
                          #*************#************#                          
                          @#************************##                          
                           @#**********************##                           
                             @#*******************#@                            
                              #@##**,*******,**\###                             
                            ######@###########@#####@                           
                      @##********###############*******\##@                     
                    ##*************************************##                   
                  @#*****************************************#@                 
                 #(*******************************************##                
               @#***********************************************#@              
              ##*********#*****************************#*********##             
             ##********* #*****************************# *********#&            
             @#********* ******************************\@********##(            
              %#********@*******************************@*******##@  

░█████╗░██████╗░██╗░░░██╗██████╗░████████╗░█████╗░░██████╗░██████╗░███████╗░██████╗
██╔══██╗██╔══██╗╚██╗░██╔╝██╔══██╗╚══██╔══╝██╔══██╗██╔════╝░██╔══██╗██╔════╝██╔════╝
██║░░╚═╝██████╔╝░╚████╔╝░██████╔╝░░░██║░░░██║░░██║██║░░██╗░██████╔╝█████╗░░╚█████╗░
██║░░██╗██╔══██╗░░╚██╔╝░░██╔═══╝░░░░██║░░░██║░░██║██║░░╚██╗██╔══██╗██╔══╝░░░╚═══██╗
╚█████╔╝██║░░██║░░░██║░░░██║░░░░░░░░██║░░░╚█████╔╝╚██████╔╝██║░░██║███████╗██████╔╝
░╚════╝░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░░░░░░░╚═╝░░░░╚════╝░░╚═════╝░╚═╝░░╚═╝╚══════╝╚═════╝░
*/
pragma solidity ^0.8.7;



contract CryptOgresFTMV is ERC721, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.05 ether;
    uint256 public presaleStart = 1646157600;
    uint256 public publicStart = 1646330400;
    uint256 public maxPresaleSupply = 700;
    uint256 public maxSupply = 4444;
    uint256 public maxPresaleMintAmount = 3;
    uint256 public maxMintAmount = 20;
    uint16 public totalSupply = 0;
    
    mapping(address => bool) public presaleWallets;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        mintAdmin(msg.sender, 200);
    }

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

    // public
    //PRESALE MINT
    function mintPresale(address _to, uint16 _mintAmount) public payable {
        //uint256 supply = totalSupply();
        require(presaleWallets[msg.sender] == true, "You are not on the presale whitelist.");
        require(presaleStart <= block.timestamp && publicStart >= block.timestamp);
        require(_mintAmount > 0);
        require(_mintAmount <= maxPresaleMintAmount, "You can only mint 3 in presale.");
        require(totalSupply + _mintAmount <= maxPresaleSupply, "Purchase would exceed max presale tokens.");
        require(msg.value >= cost * _mintAmount, "Ether value sent is not correct.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, totalSupply + i);
             }   
             totalSupply += _mintAmount;
    }

    //PUBLIC MINT
    function mintPublic(address _to, uint16 _mintAmount) public payable {
        //uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require (publicStart <= block.timestamp);
        require(_mintAmount <= maxMintAmount, "You can only mint 20 per transaction.");
        require(totalSupply + _mintAmount <= maxSupply, "Purchase would exceed max tokens.");
        require(msg.value >= cost * _mintAmount, "Ether value sent is not correct.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, totalSupply + i);
             }   
             totalSupply += _mintAmount;
    }

    //ADMIN MINT
    function mintAdmin(address _to, uint16 _mintAmount) public payable {
        //uint256 supply = totalSupply();
        require(_mintAmount > 0);
            
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, totalSupply + i);
             }
             totalSupply += _mintAmount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function totalSupplyCount() public view returns (uint16) {
        return totalSupply;
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function addArrayOfPresaleUsers(address[] memory _users) public onlyOwner {
        for (uint256 i = 0; i < 2; i++) {
            presaleWallets[_users[i]] = true;
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":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":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addArrayOfPresaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mintAdmin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160089190620005b3565b5066b1a2bc2ec5000060095563621e5f20600a556362210220600b556102bc600c5561115c600d556003600e556014600f556010805461ffff191690553480156200007257600080fd5b5060405162002cb338038062002cb383398101604081905262000095916200071d565b825183908390620000ae906000906020850190620005b3565b508051620000c4906001906020840190620005b3565b505050620000e1620000db6200010260201b60201c565b62000106565b620000ec8162000158565b620000f93360c8620001d1565b50505062000902565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001cd906007906020840190620005b3565b5050565b60008161ffff1611620001e357600080fd5b60015b8161ffff1681116200022857601054620002139084906200020d90849061ffff166200082d565b62000262565b806200021f81620008b8565b915050620001e6565b50601080548291906000906200024490849061ffff1662000804565b92506101000a81548161ffff021916908361ffff1602179055505050565b620001cd8282604051806020016040528060008152506200028460201b60201c565b620002908383620002fc565b6200029f600084848462000444565b620002f75760405162461bcd60e51b8152602060048201526032602482015260008051602062002c9383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001af565b505050565b6001600160a01b038216620003545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001af565b6000818152600260205260409020546001600160a01b031615620003bb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001af565b6001600160a01b0382166000908152600360205260408120805460019290620003e69084906200082d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000465846001600160a01b0316620005ad60201b620014411760201c565b15620005a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200049f903390899088908890600401620007ae565b602060405180830381600087803b158015620004ba57600080fd5b505af1925050508015620004ed575060408051601f3d908101601f19168201909252620004ea91810190620006ea565b60015b62000586573d8080156200051e576040519150601f19603f3d011682016040523d82523d6000602084013e62000523565b606091505b5080516200057e5760405162461bcd60e51b8152602060048201526032602482015260008051602062002c9383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005a5565b5060015b949350505050565b3b151590565b828054620005c1906200087b565b90600052602060002090601f016020900481019282620005e5576000855562000630565b82601f106200060057805160ff191683800117855562000630565b8280016001018555821562000630579182015b828111156200063057825182559160200191906001019062000613565b506200063e92915062000642565b5090565b5b808211156200063e576000815560010162000643565b600082601f8301126200066b57600080fd5b81516001600160401b0380821115620006885762000688620008ec565b604051601f8301601f19908116603f01168101908282118183101715620006b357620006b3620008ec565b81604052838152866020858801011115620006cd57600080fd5b620006e084602083016020890162000848565b9695505050505050565b600060208284031215620006fd57600080fd5b81516001600160e01b0319811681146200071657600080fd5b9392505050565b6000806000606084860312156200073357600080fd5b83516001600160401b03808211156200074b57600080fd5b620007598783880162000659565b945060208601519150808211156200077057600080fd5b6200077e8783880162000659565b935060408601519150808211156200079557600080fd5b50620007a48682870162000659565b9150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007ed8160a085016020870162000848565b601f01601f19169190910160a00195945050505050565b600061ffff808316818516808303821115620008245762000824620008d6565b01949350505050565b60008219821115620008435762000843620008d6565b500190565b60005b83811015620008655781810151838201526020016200084b565b8381111562000875576000848401525b50505050565b600181811c908216806200089057607f821691505b60208210811415620008b257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008cf57620008cf620008d6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61238180620009126000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a947a05a116100ab578063d5abeb011161006f578063d5abeb0114610601578063da3ef23f14610617578063de8801e514610637578063e985e9c51461064d578063f2fde38b1461069657600080fd5b8063a947a05a1461056c578063b2f3e85e1461058c578063b88d4fde146105ac578063c6682862146105cc578063c87b56dd146105e157600080fd5b80638da5cb5b116100f25780638da5cb5b146104f05780638f344d751461050e57806395d89b4114610521578063a22cb46514610536578063a5f4c6ff1461055657600080fd5b806370a0823114610485578063715018a6146104a55780637f00c7a6146104ba57806385480756146104da57600080fd5b806323b872dd116101b157806342842e0e1161017557806342842e0e146103f057806344a0d68a1461041057806355f804b3146104305780636352211e146104505780636c0360eb1461047057600080fd5b806323b872dd14610372578063292bf8f61461039257806330b2264e146103a5578063322d6f66146103d55780633ccfd60b146103e857600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806321bdb26e1461032d57806322c0f85014610343578063239c70ae1461035c57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611eda565b6106b6565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610708565b60405161025691906120a3565b34801561028d57600080fd5b506102a161029c366004611f5d565b61079a565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611dfc565b610834565b005b3480156102e757600080fd5b506102f160095481565b604051908152602001610256565b34801561030b57600080fd5b5060105461031a9061ffff1681565b60405161ffff9091168152602001610256565b34801561033957600080fd5b506102f1600c5481565b34801561034f57600080fd5b5060105461ffff1661031a565b34801561036857600080fd5b506102f1600f5481565b34801561037e57600080fd5b506102d961038d366004611cd5565b61094a565b6102d96103a0366004611dc9565b61097b565b3480156103b157600080fd5b5061024a6103c0366004611c87565b60116020526000908152604090205460ff1681565b6102d96103e3366004611dc9565b610b46565b6102d9610b8f565b3480156103fc57600080fd5b506102d961040b366004611cd5565b610c11565b34801561041c57600080fd5b506102d961042b366004611f5d565b610c2c565b34801561043c57600080fd5b506102d961044b366004611f14565b610c5b565b34801561045c57600080fd5b506102a161046b366004611f5d565b610c9c565b34801561047c57600080fd5b50610274610d13565b34801561049157600080fd5b506102f16104a0366004611c87565b610da1565b3480156104b157600080fd5b506102d9610e28565b3480156104c657600080fd5b506102d96104d5366004611f5d565b610e5e565b3480156104e657600080fd5b506102f1600e5481565b3480156104fc57600080fd5b506006546001600160a01b03166102a1565b6102d961051c366004611dc9565b610e8d565b34801561052d57600080fd5b50610274611095565b34801561054257600080fd5b506102d9610551366004611d8d565b6110a4565b34801561056257600080fd5b506102f1600b5481565b34801561057857600080fd5b506102d9610587366004611e26565b611169565b34801561059857600080fd5b506102d96105a7366004611c87565b6111fb565b3480156105b857600080fd5b506102d96105c7366004611d11565b611249565b3480156105d857600080fd5b50610274611281565b3480156105ed57600080fd5b506102746105fc366004611f5d565b61128e565b34801561060d57600080fd5b506102f1600d5481565b34801561062357600080fd5b506102d9610632366004611f14565b61136c565b34801561064357600080fd5b506102f1600a5481565b34801561065957600080fd5b5061024a610668366004611ca2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102d96106b1366004611c87565b6113a9565b60006001600160e01b031982166380ac58cd60e01b14806106e757506001600160e01b03198216635b5e139f60e01b145b8061070257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461071790612273565b80601f016020809104026020016040519081016040528092919081815260200182805461074390612273565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083f82610c9c565b9050806001600160a01b0316836001600160a01b031614156108ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080f565b336001600160a01b03821614806108c957506108c98133610668565b61093b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080f565b6109458383611447565b505050565b61095433826114b5565b6109705760405162461bcd60e51b815260040161080f9061213d565b6109458383836115ac565b60008161ffff161161098c57600080fd5b42600b54111561099b57600080fd5b600f548161ffff1611156109ff5760405162461bcd60e51b815260206004820152602560248201527f596f752063616e206f6e6c79206d696e7420323020706572207472616e7361636044820152643a34b7b71760d91b606482015260840161080f565b600d54601054610a1490839061ffff166121bf565b61ffff161115610a705760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152601760f91b606482015260840161080f565b8061ffff16600954610a829190612211565b341015610ad15760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161080f565b60015b8161ffff168111610b0e57601054610afc908490610af790849061ffff166121e5565b61174c565b80610b06816122ae565b915050610ad4565b5060108054829190600090610b2890849061ffff166121bf565b92506101000a81548161ffff021916908361ffff1602179055505050565b60008161ffff1611610b5757600080fd5b60015b8161ffff168111610b0e57601054610b7d908490610af790849061ffff166121e5565b80610b87816122ae565b915050610b5a565b6006546001600160a01b03163314610bb95760405162461bcd60e51b815260040161080f90612108565b604051600090339047908381818185875af1925050503d8060008114610bfb576040519150601f19603f3d011682016040523d82523d6000602084013e610c00565b606091505b5050905080610c0e57600080fd5b50565b61094583838360405180602001604052806000815250611249565b6006546001600160a01b03163314610c565760405162461bcd60e51b815260040161080f90612108565b600955565b6006546001600160a01b03163314610c855760405162461bcd60e51b815260040161080f90612108565b8051610c98906007906020840190611b7a565b5050565b6000818152600260205260408120546001600160a01b0316806107025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080f565b60078054610d2090612273565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4c90612273565b8015610d995780601f10610d6e57610100808354040283529160200191610d99565b820191906000526020600020905b815481529060010190602001808311610d7c57829003601f168201915b505050505081565b60006001600160a01b038216610e0c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e525760405162461bcd60e51b815260040161080f90612108565b610e5c6000611766565b565b6006546001600160a01b03163314610e885760405162461bcd60e51b815260040161080f90612108565b600f55565b3360009081526011602052604090205460ff161515600114610eff5760405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f74206f6e207468652070726573616c652077686974656044820152643634b9ba1760d91b606482015260840161080f565b42600a5411158015610f13575042600b5410155b610f1c57600080fd5b60008161ffff1611610f2d57600080fd5b600e548161ffff161115610f835760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206f6e6c79206d696e74203320696e2070726573616c652e00604482015260640161080f565b600c54601054610f9890839061ffff166121bf565b61ffff161115610ffc5760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d61782070726573616c60448201526832903a37b5b2b7399760b91b606482015260840161080f565b8061ffff1660095461100e9190612211565b34101561105d5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161080f565b60015b8161ffff168111610b0e57601054611083908490610af790849061ffff166121e5565b8061108d816122ae565b915050611060565b60606001805461071790612273565b6001600160a01b0382163314156110fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146111935760405162461bcd60e51b815260040161080f90612108565b60005b6002811015610c98576001601160008484815181106111b7576111b7612309565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111f3816122ae565b915050611196565b6006546001600160a01b031633146112255760405162461bcd60e51b815260040161080f90612108565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b61125333836114b5565b61126f5760405162461bcd60e51b815260040161080f9061213d565b61127b848484846117b8565b50505050565b60088054610d2090612273565b6000818152600260205260409020546060906001600160a01b031661130d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080f565b60006113176117eb565b905060008151116113375760405180602001604052806000815250611365565b80611341846117fa565b600860405160200161135593929190611fa2565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113965760405162461bcd60e51b815260040161080f90612108565b8051610c98906008906020840190611b7a565b6006546001600160a01b031633146113d35760405162461bcd60e51b815260040161080f90612108565b6001600160a01b0381166114385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080f565b610c0e81611766565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147c82610c9c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661152e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080f565b600061153983610c9c565b9050806001600160a01b0316846001600160a01b031614806115745750836001600160a01b03166115698461079a565b6001600160a01b0316145b806115a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115bf82610c9c565b6001600160a01b0316146116275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161080f565b6001600160a01b0382166116895760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080f565b611694600082611447565b6001600160a01b03831660009081526003602052604081208054600192906116bd908490612230565b90915550506001600160a01b03821660009081526003602052604081208054600192906116eb9084906121e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c988282604051806020016040528060008152506118f8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117c38484846115ac565b6117cf8484848461192b565b61127b5760405162461bcd60e51b815260040161080f906120b6565b60606007805461071790612273565b60608161181e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118485780611832816122ae565b91506118419050600a836121fd565b9150611822565b60008167ffffffffffffffff8111156118635761186361231f565b6040519080825280601f01601f19166020018201604052801561188d576020820181803683370190505b5090505b84156115a4576118a2600183612230565b91506118af600a866122c9565b6118ba9060306121e5565b60f81b8183815181106118cf576118cf612309565b60200101906001600160f81b031916908160001a9053506118f1600a866121fd565b9450611891565b6119028383611a38565b61190f600084848461192b565b6109455760405162461bcd60e51b815260040161080f906120b6565b60006001600160a01b0384163b15611a2d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061196f903390899088908890600401612066565b602060405180830381600087803b15801561198957600080fd5b505af19250505080156119b9575060408051601f3d908101601f191682019092526119b691810190611ef7565b60015b611a13573d8080156119e7576040519150601f19603f3d011682016040523d82523d6000602084013e6119ec565b606091505b508051611a0b5760405162461bcd60e51b815260040161080f906120b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115a4565b506001949350505050565b6001600160a01b038216611a8e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080f565b6000818152600260205260409020546001600160a01b031615611af35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080f565b6001600160a01b0382166000908152600360205260408120805460019290611b1c9084906121e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b8690612273565b90600052602060002090601f016020900481019282611ba85760008555611bee565b82601f10611bc157805160ff1916838001178555611bee565b82800160010185558215611bee579182015b82811115611bee578251825591602001919060010190611bd3565b50611bfa929150611bfe565b5090565b5b80821115611bfa5760008155600101611bff565b600067ffffffffffffffff831115611c2d57611c2d61231f565b611c40601f8401601f191660200161218e565b9050828152838383011115611c5457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c8257600080fd5b919050565b600060208284031215611c9957600080fd5b61136582611c6b565b60008060408385031215611cb557600080fd5b611cbe83611c6b565b9150611ccc60208401611c6b565b90509250929050565b600080600060608486031215611cea57600080fd5b611cf384611c6b565b9250611d0160208501611c6b565b9150604084013590509250925092565b60008060008060808587031215611d2757600080fd5b611d3085611c6b565b9350611d3e60208601611c6b565b925060408501359150606085013567ffffffffffffffff811115611d6157600080fd5b8501601f81018713611d7257600080fd5b611d8187823560208401611c13565b91505092959194509250565b60008060408385031215611da057600080fd5b611da983611c6b565b915060208301358015158114611dbe57600080fd5b809150509250929050565b60008060408385031215611ddc57600080fd5b611de583611c6b565b9150602083013561ffff81168114611dbe57600080fd5b60008060408385031215611e0f57600080fd5b611e1883611c6b565b946020939093013593505050565b60006020808385031215611e3957600080fd5b823567ffffffffffffffff80821115611e5157600080fd5b818501915085601f830112611e6557600080fd5b813581811115611e7757611e7761231f565b8060051b9150611e8884830161218e565b8181528481019084860184860187018a1015611ea357600080fd5b600095505b83861015611ecd57611eb981611c6b565b835260019590950194918601918601611ea8565b5098975050505050505050565b600060208284031215611eec57600080fd5b813561136581612335565b600060208284031215611f0957600080fd5b815161136581612335565b600060208284031215611f2657600080fd5b813567ffffffffffffffff811115611f3d57600080fd5b8201601f81018413611f4e57600080fd5b6115a484823560208401611c13565b600060208284031215611f6f57600080fd5b5035919050565b60008151808452611f8e816020860160208601612247565b601f01601f19169290920160200192915050565b600084516020611fb58285838a01612247565b855191840191611fc88184848a01612247565b8554920191600090600181811c9080831680611fe557607f831692505b85831081141561200357634e487b7160e01b85526022600452602485fd5b808015612017576001811461202857612055565b60ff19851688528388019550612055565b60008b81526020902060005b8581101561204d5781548a820152908401908801612034565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209990830184611f76565b9695505050505050565b6020815260006113656020830184611f76565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121b7576121b761231f565b604052919050565b600061ffff8083168185168083038211156121dc576121dc6122dd565b01949350505050565b600082198211156121f8576121f86122dd565b500190565b60008261220c5761220c6122f3565b500490565b600081600019048311821515161561222b5761222b6122dd565b500290565b600082821015612242576122426122dd565b500390565b60005b8381101561226257818101518382015260200161224a565b8381111561127b5750506000910152565b600181811c9082168061228757607f821691505b602082108114156122a857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122c2576122c26122dd565b5060010190565b6000826122d8576122d86122f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0e57600080fdfea26469706673582212208379b6ccba7fd912d4e6730dd72651d5d1f5e6fee12d35b2706f2d303232c53464736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001143727970744f67726573202d2046544d5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f475245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d544367375a5a6f594a4b4276414a614271694e5a48794d647078714876786d47584753506f39704e714246372f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063a947a05a116100ab578063d5abeb011161006f578063d5abeb0114610601578063da3ef23f14610617578063de8801e514610637578063e985e9c51461064d578063f2fde38b1461069657600080fd5b8063a947a05a1461056c578063b2f3e85e1461058c578063b88d4fde146105ac578063c6682862146105cc578063c87b56dd146105e157600080fd5b80638da5cb5b116100f25780638da5cb5b146104f05780638f344d751461050e57806395d89b4114610521578063a22cb46514610536578063a5f4c6ff1461055657600080fd5b806370a0823114610485578063715018a6146104a55780637f00c7a6146104ba57806385480756146104da57600080fd5b806323b872dd116101b157806342842e0e1161017557806342842e0e146103f057806344a0d68a1461041057806355f804b3146104305780636352211e146104505780636c0360eb1461047057600080fd5b806323b872dd14610372578063292bf8f61461039257806330b2264e146103a5578063322d6f66146103d55780633ccfd60b146103e857600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806321bdb26e1461032d57806322c0f85014610343578063239c70ae1461035c57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611eda565b6106b6565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610708565b60405161025691906120a3565b34801561028d57600080fd5b506102a161029c366004611f5d565b61079a565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611dfc565b610834565b005b3480156102e757600080fd5b506102f160095481565b604051908152602001610256565b34801561030b57600080fd5b5060105461031a9061ffff1681565b60405161ffff9091168152602001610256565b34801561033957600080fd5b506102f1600c5481565b34801561034f57600080fd5b5060105461ffff1661031a565b34801561036857600080fd5b506102f1600f5481565b34801561037e57600080fd5b506102d961038d366004611cd5565b61094a565b6102d96103a0366004611dc9565b61097b565b3480156103b157600080fd5b5061024a6103c0366004611c87565b60116020526000908152604090205460ff1681565b6102d96103e3366004611dc9565b610b46565b6102d9610b8f565b3480156103fc57600080fd5b506102d961040b366004611cd5565b610c11565b34801561041c57600080fd5b506102d961042b366004611f5d565b610c2c565b34801561043c57600080fd5b506102d961044b366004611f14565b610c5b565b34801561045c57600080fd5b506102a161046b366004611f5d565b610c9c565b34801561047c57600080fd5b50610274610d13565b34801561049157600080fd5b506102f16104a0366004611c87565b610da1565b3480156104b157600080fd5b506102d9610e28565b3480156104c657600080fd5b506102d96104d5366004611f5d565b610e5e565b3480156104e657600080fd5b506102f1600e5481565b3480156104fc57600080fd5b506006546001600160a01b03166102a1565b6102d961051c366004611dc9565b610e8d565b34801561052d57600080fd5b50610274611095565b34801561054257600080fd5b506102d9610551366004611d8d565b6110a4565b34801561056257600080fd5b506102f1600b5481565b34801561057857600080fd5b506102d9610587366004611e26565b611169565b34801561059857600080fd5b506102d96105a7366004611c87565b6111fb565b3480156105b857600080fd5b506102d96105c7366004611d11565b611249565b3480156105d857600080fd5b50610274611281565b3480156105ed57600080fd5b506102746105fc366004611f5d565b61128e565b34801561060d57600080fd5b506102f1600d5481565b34801561062357600080fd5b506102d9610632366004611f14565b61136c565b34801561064357600080fd5b506102f1600a5481565b34801561065957600080fd5b5061024a610668366004611ca2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102d96106b1366004611c87565b6113a9565b60006001600160e01b031982166380ac58cd60e01b14806106e757506001600160e01b03198216635b5e139f60e01b145b8061070257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461071790612273565b80601f016020809104026020016040519081016040528092919081815260200182805461074390612273565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083f82610c9c565b9050806001600160a01b0316836001600160a01b031614156108ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080f565b336001600160a01b03821614806108c957506108c98133610668565b61093b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080f565b6109458383611447565b505050565b61095433826114b5565b6109705760405162461bcd60e51b815260040161080f9061213d565b6109458383836115ac565b60008161ffff161161098c57600080fd5b42600b54111561099b57600080fd5b600f548161ffff1611156109ff5760405162461bcd60e51b815260206004820152602560248201527f596f752063616e206f6e6c79206d696e7420323020706572207472616e7361636044820152643a34b7b71760d91b606482015260840161080f565b600d54601054610a1490839061ffff166121bf565b61ffff161115610a705760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152601760f91b606482015260840161080f565b8061ffff16600954610a829190612211565b341015610ad15760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161080f565b60015b8161ffff168111610b0e57601054610afc908490610af790849061ffff166121e5565b61174c565b80610b06816122ae565b915050610ad4565b5060108054829190600090610b2890849061ffff166121bf565b92506101000a81548161ffff021916908361ffff1602179055505050565b60008161ffff1611610b5757600080fd5b60015b8161ffff168111610b0e57601054610b7d908490610af790849061ffff166121e5565b80610b87816122ae565b915050610b5a565b6006546001600160a01b03163314610bb95760405162461bcd60e51b815260040161080f90612108565b604051600090339047908381818185875af1925050503d8060008114610bfb576040519150601f19603f3d011682016040523d82523d6000602084013e610c00565b606091505b5050905080610c0e57600080fd5b50565b61094583838360405180602001604052806000815250611249565b6006546001600160a01b03163314610c565760405162461bcd60e51b815260040161080f90612108565b600955565b6006546001600160a01b03163314610c855760405162461bcd60e51b815260040161080f90612108565b8051610c98906007906020840190611b7a565b5050565b6000818152600260205260408120546001600160a01b0316806107025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080f565b60078054610d2090612273565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4c90612273565b8015610d995780601f10610d6e57610100808354040283529160200191610d99565b820191906000526020600020905b815481529060010190602001808311610d7c57829003601f168201915b505050505081565b60006001600160a01b038216610e0c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e525760405162461bcd60e51b815260040161080f90612108565b610e5c6000611766565b565b6006546001600160a01b03163314610e885760405162461bcd60e51b815260040161080f90612108565b600f55565b3360009081526011602052604090205460ff161515600114610eff5760405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f74206f6e207468652070726573616c652077686974656044820152643634b9ba1760d91b606482015260840161080f565b42600a5411158015610f13575042600b5410155b610f1c57600080fd5b60008161ffff1611610f2d57600080fd5b600e548161ffff161115610f835760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206f6e6c79206d696e74203320696e2070726573616c652e00604482015260640161080f565b600c54601054610f9890839061ffff166121bf565b61ffff161115610ffc5760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d61782070726573616c60448201526832903a37b5b2b7399760b91b606482015260840161080f565b8061ffff1660095461100e9190612211565b34101561105d5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161080f565b60015b8161ffff168111610b0e57601054611083908490610af790849061ffff166121e5565b8061108d816122ae565b915050611060565b60606001805461071790612273565b6001600160a01b0382163314156110fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146111935760405162461bcd60e51b815260040161080f90612108565b60005b6002811015610c98576001601160008484815181106111b7576111b7612309565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111f3816122ae565b915050611196565b6006546001600160a01b031633146112255760405162461bcd60e51b815260040161080f90612108565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b61125333836114b5565b61126f5760405162461bcd60e51b815260040161080f9061213d565b61127b848484846117b8565b50505050565b60088054610d2090612273565b6000818152600260205260409020546060906001600160a01b031661130d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080f565b60006113176117eb565b905060008151116113375760405180602001604052806000815250611365565b80611341846117fa565b600860405160200161135593929190611fa2565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113965760405162461bcd60e51b815260040161080f90612108565b8051610c98906008906020840190611b7a565b6006546001600160a01b031633146113d35760405162461bcd60e51b815260040161080f90612108565b6001600160a01b0381166114385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080f565b610c0e81611766565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147c82610c9c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661152e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080f565b600061153983610c9c565b9050806001600160a01b0316846001600160a01b031614806115745750836001600160a01b03166115698461079a565b6001600160a01b0316145b806115a457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115bf82610c9c565b6001600160a01b0316146116275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161080f565b6001600160a01b0382166116895760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080f565b611694600082611447565b6001600160a01b03831660009081526003602052604081208054600192906116bd908490612230565b90915550506001600160a01b03821660009081526003602052604081208054600192906116eb9084906121e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c988282604051806020016040528060008152506118f8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117c38484846115ac565b6117cf8484848461192b565b61127b5760405162461bcd60e51b815260040161080f906120b6565b60606007805461071790612273565b60608161181e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118485780611832816122ae565b91506118419050600a836121fd565b9150611822565b60008167ffffffffffffffff8111156118635761186361231f565b6040519080825280601f01601f19166020018201604052801561188d576020820181803683370190505b5090505b84156115a4576118a2600183612230565b91506118af600a866122c9565b6118ba9060306121e5565b60f81b8183815181106118cf576118cf612309565b60200101906001600160f81b031916908160001a9053506118f1600a866121fd565b9450611891565b6119028383611a38565b61190f600084848461192b565b6109455760405162461bcd60e51b815260040161080f906120b6565b60006001600160a01b0384163b15611a2d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061196f903390899088908890600401612066565b602060405180830381600087803b15801561198957600080fd5b505af19250505080156119b9575060408051601f3d908101601f191682019092526119b691810190611ef7565b60015b611a13573d8080156119e7576040519150601f19603f3d011682016040523d82523d6000602084013e6119ec565b606091505b508051611a0b5760405162461bcd60e51b815260040161080f906120b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115a4565b506001949350505050565b6001600160a01b038216611a8e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080f565b6000818152600260205260409020546001600160a01b031615611af35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080f565b6001600160a01b0382166000908152600360205260408120805460019290611b1c9084906121e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b8690612273565b90600052602060002090601f016020900481019282611ba85760008555611bee565b82601f10611bc157805160ff1916838001178555611bee565b82800160010185558215611bee579182015b82811115611bee578251825591602001919060010190611bd3565b50611bfa929150611bfe565b5090565b5b80821115611bfa5760008155600101611bff565b600067ffffffffffffffff831115611c2d57611c2d61231f565b611c40601f8401601f191660200161218e565b9050828152838383011115611c5457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c8257600080fd5b919050565b600060208284031215611c9957600080fd5b61136582611c6b565b60008060408385031215611cb557600080fd5b611cbe83611c6b565b9150611ccc60208401611c6b565b90509250929050565b600080600060608486031215611cea57600080fd5b611cf384611c6b565b9250611d0160208501611c6b565b9150604084013590509250925092565b60008060008060808587031215611d2757600080fd5b611d3085611c6b565b9350611d3e60208601611c6b565b925060408501359150606085013567ffffffffffffffff811115611d6157600080fd5b8501601f81018713611d7257600080fd5b611d8187823560208401611c13565b91505092959194509250565b60008060408385031215611da057600080fd5b611da983611c6b565b915060208301358015158114611dbe57600080fd5b809150509250929050565b60008060408385031215611ddc57600080fd5b611de583611c6b565b9150602083013561ffff81168114611dbe57600080fd5b60008060408385031215611e0f57600080fd5b611e1883611c6b565b946020939093013593505050565b60006020808385031215611e3957600080fd5b823567ffffffffffffffff80821115611e5157600080fd5b818501915085601f830112611e6557600080fd5b813581811115611e7757611e7761231f565b8060051b9150611e8884830161218e565b8181528481019084860184860187018a1015611ea357600080fd5b600095505b83861015611ecd57611eb981611c6b565b835260019590950194918601918601611ea8565b5098975050505050505050565b600060208284031215611eec57600080fd5b813561136581612335565b600060208284031215611f0957600080fd5b815161136581612335565b600060208284031215611f2657600080fd5b813567ffffffffffffffff811115611f3d57600080fd5b8201601f81018413611f4e57600080fd5b6115a484823560208401611c13565b600060208284031215611f6f57600080fd5b5035919050565b60008151808452611f8e816020860160208601612247565b601f01601f19169290920160200192915050565b600084516020611fb58285838a01612247565b855191840191611fc88184848a01612247565b8554920191600090600181811c9080831680611fe557607f831692505b85831081141561200357634e487b7160e01b85526022600452602485fd5b808015612017576001811461202857612055565b60ff19851688528388019550612055565b60008b81526020902060005b8581101561204d5781548a820152908401908801612034565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209990830184611f76565b9695505050505050565b6020815260006113656020830184611f76565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121b7576121b761231f565b604052919050565b600061ffff8083168185168083038211156121dc576121dc6122dd565b01949350505050565b600082198211156121f8576121f86122dd565b500190565b60008261220c5761220c6122f3565b500490565b600081600019048311821515161561222b5761222b6122dd565b500290565b600082821015612242576122426122dd565b500390565b60005b8381101561226257818101518382015260200161224a565b8381111561127b5750506000910152565b600181811c9082168061228757607f821691505b602082108114156122a857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122c2576122c26122dd565b5060010190565b6000826122d8576122d86122f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0e57600080fdfea26469706673582212208379b6ccba7fd912d4e6730dd72651d5d1f5e6fee12d35b2706f2d303232c53464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001143727970744f67726573202d2046544d5600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f475245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d544367375a5a6f594a4b4276414a614271694e5a48794d647078714876786d47584753506f39704e714246372f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptOgres - FTMV
Arg [1] : _symbol (string): OGRE
Arg [2] : _initBaseURI (string): ipfs://QmTCg7ZZoYJKBvAJaBqiNZHyMdpxqHvxmGXGSPo9pNqBF7/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 43727970744f67726573202d2046544d56000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4f47524500000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d544367375a5a6f594a4b4276414a614271694e5a48794d
Arg [9] : 647078714876786d47584753506f39704e714246372f00000000000000000000


Deployed Bytecode Sourcemap

40109:4542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23548:355;;;;;;;;;;-1:-1:-1;23548:355:0;;;;;:::i;:::-;;:::i;:::-;;;8007:14:1;;8000:22;7982:41;;7970:2;7955:18;23548:355:0;;;;;;;;24717:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26410:308::-;;;;;;;;;;-1:-1:-1;26410:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7305:32:1;;;7287:51;;7275:2;7260:18;26410:308:0;7141:203:1;25933:411:0;;;;;;;;;;-1:-1:-1;25933:411:0;;;;;:::i;:::-;;:::i;:::-;;40265:32;;;;;;;;;;;;;;;;;;;17324:25:1;;;17312:2;17297:18;40265:32:0;17178:177:1;40565:29:0;;;;;;;;;;-1:-1:-1;40565:29:0;;;;;;;;;;;17159:6:1;17147:19;;;17129:38;;17117:2;17102:18;40565:29:0;16985:188:1;40397:37:0;;;;;;;;;;;;;;;;43539:94;;;;;;;;;;-1:-1:-1;43614:11:0;;;;43539:94;;40525:33;;;;;;;;;;;;;;;;27469:376;;;;;;;;;;-1:-1:-1;27469:376:0;;;;;:::i;:::-;;:::i;41877:645::-;;;;;;:::i;:::-;;:::i;40607:46::-;;;;;;;;;;-1:-1:-1;40607:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42548:333;;;;;;:::i;:::-;;:::i;44456:192::-;;;:::i;27916:185::-;;;;;;;;;;-1:-1:-1;27916:185:0;;;;;:::i;:::-;;:::i;43659:86::-;;;;;;;;;;-1:-1:-1;43659:86:0;;;;;:::i;:::-;;:::i;43883:104::-;;;;;;;;;;-1:-1:-1;43883:104:0;;;;;:::i;:::-;;:::i;24324:326::-;;;;;;;;;;-1:-1:-1;24324:326:0;;;;;:::i;:::-;;:::i;40193:21::-;;;;;;;;;;;;;:::i;23967:295::-;;;;;;;;;;-1:-1:-1;23967:295:0;;;;;:::i;:::-;;:::i;4573:94::-;;;;;;;;;;;;;:::i;43753:122::-;;;;;;;;;;-1:-1:-1;43753:122:0;;;;;:::i;:::-;;:::i;40479:39::-;;;;;;;;;;;;;;;;3922:87;;;;;;;;;;-1:-1:-1;3995:6:0;;-1:-1:-1;;;;;3995:6:0;3922:87;;41059:791;;;;;;:::i;:::-;;:::i;24886:104::-;;;;;;;;;;;;;:::i;26790:327::-;;;;;;;;;;-1:-1:-1;26790:327:0;;;;;:::i;:::-;;:::i;40351:39::-;;;;;;;;;;;;;;;;44265:183;;;;;;;;;;-1:-1:-1;44265:183:0;;;;;:::i;:::-;;:::i;44154:103::-;;;;;;;;;;-1:-1:-1;44154:103:0;;;;;:::i;:::-;;:::i;28172:365::-;;;;;;;;;;-1:-1:-1;28172:365:0;;;;;:::i;:::-;;:::i;40221:37::-;;;;;;;;;;;;;:::i;42889:642::-;;;;;;;;;;-1:-1:-1;42889:642:0;;;;;:::i;:::-;;:::i;40441:31::-;;;;;;;;;;;;;;;;43995:151;;;;;;;;;;-1:-1:-1;43995:151:0;;;;;:::i;:::-;;:::i;40304:40::-;;;;;;;;;;;;;;;;27188:214;;;;;;;;;;-1:-1:-1;27188:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27359:25:0;;;27330:4;27359:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27188:214;4822:229;;;;;;;;;;-1:-1:-1;4822:229:0;;;;;:::i;:::-;;:::i;23548:355::-;23695:4;-1:-1:-1;;;;;;23737:40:0;;-1:-1:-1;;;23737:40:0;;:105;;-1:-1:-1;;;;;;;23794:48:0;;-1:-1:-1;;;23794:48:0;23737:105;:158;;;-1:-1:-1;;;;;;;;;;16515:40:0;;;23859:36;23717:178;23548:355;-1:-1:-1;;23548:355:0:o;24717:100::-;24771:13;24804:5;24797:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24717:100;:::o;26410:308::-;26531:7;30173:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30173:16:0;26556:110;;;;-1:-1:-1;;;26556:110:0;;14365:2:1;26556:110:0;;;14347:21:1;14404:2;14384:18;;;14377:30;14443:34;14423:18;;;14416:62;-1:-1:-1;;;14494:18:1;;;14487:42;14546:19;;26556:110:0;;;;;;;;;-1:-1:-1;26686:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26686:24:0;;26410:308::o;25933:411::-;26014:13;26030:23;26045:7;26030:14;:23::i;:::-;26014:39;;26078:5;-1:-1:-1;;;;;26072:11:0;:2;-1:-1:-1;;;;;26072:11:0;;;26064:57;;;;-1:-1:-1;;;26064:57:0;;15965:2:1;26064:57:0;;;15947:21:1;16004:2;15984:18;;;15977:30;16043:34;16023:18;;;16016:62;-1:-1:-1;;;16094:18:1;;;16087:31;16135:19;;26064:57:0;15763:397:1;26064:57:0;2779:10;-1:-1:-1;;;;;26156:21:0;;;;:62;;-1:-1:-1;26181:37:0;26198:5;2779:10;27188:214;:::i;26181:37::-;26134:168;;;;-1:-1:-1;;;26134:168:0;;12758:2:1;26134:168:0;;;12740:21:1;12797:2;12777:18;;;12770:30;12836:34;12816:18;;;12809:62;12907:26;12887:18;;;12880:54;12951:19;;26134:168:0;12556:420:1;26134:168:0;26315:21;26324:2;26328:7;26315:8;:21::i;:::-;26003:341;25933:411;;:::o;27469:376::-;27678:41;2779:10;27711:7;27678:18;:41::i;:::-;27656:140;;;;-1:-1:-1;;;27656:140:0;;;;;;;:::i;:::-;27809:28;27819:4;27825:2;27829:7;27809:9;:28::i;41877:645::-;42021:1;42007:11;:15;;;41999:24;;;;;;42058:15;42043:11;;:30;;42034:40;;;;;;42108:13;;42093:11;:28;;;;42085:78;;;;-1:-1:-1;;;42085:78:0;;9240:2:1;42085:78:0;;;9222:21:1;9279:2;9259:18;;;9252:30;9318:34;9298:18;;;9291:62;-1:-1:-1;;;9369:18:1;;;9362:35;9414:19;;42085:78:0;9038:401:1;42085:78:0;42211:9;;42182:11;;:25;;42196:11;;42182;;:25;:::i;:::-;:38;;;;42174:84;;;;-1:-1:-1;;;42174:84:0;;16785:2:1;42174:84:0;;;16767:21:1;16824:2;16804:18;;;16797:30;16863:34;16843:18;;;16836:62;-1:-1:-1;;;16914:18:1;;;16907:31;16955:19;;42174:84:0;16583:397:1;42174:84:0;42297:11;42290:18;;:4;;:18;;;;:::i;:::-;42277:9;:31;;42269:76;;;;-1:-1:-1;;;42269:76:0;;8460:2:1;42269:76:0;;;8442:21:1;;;8479:18;;;8472:30;8538:34;8518:18;;;8511:62;8590:18;;42269:76:0;8258:356:1;42269:76:0;42377:1;42360:110;42385:11;42380:16;;:1;:16;42360:110;;42437:11;;42422:31;;42432:3;;42437:15;;42451:1;;42437:11;;:15;:::i;:::-;42422:9;:31::i;:::-;42398:3;;;;:::i;:::-;;;;42360:110;;;-1:-1:-1;42488:11:0;:26;;42503:11;;42488;;;:26;;42503:11;;42488:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41877:645;;:::o;42548:333::-;42691:1;42677:11;:15;;;42669:24;;;;;;42739:1;42722:110;42747:11;42742:16;;:1;:16;42722:110;;42799:11;;42784:31;;42794:3;;42799:15;;42813:1;;42799:11;;:15;:::i;42784:31::-;42760:3;;;;:::i;:::-;;;;42722:110;;44456:192;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;44531:82:::1;::::0;44513:12:::1;::::0;44539:10:::1;::::0;44577:21:::1;::::0;44513:12;44531:82;44513:12;44531:82;44577:21;44539:10;44531:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44512:101;;;44632:7;44624:16;;;::::0;::::1;;44501:147;44456:192::o:0;27916:185::-;28054:39;28071:4;28077:2;28081:7;28054:39;;;;;;;;;;;;:16;:39::i;43659:86::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;43722:4:::1;:15:::0;43659:86::o;43883:104::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;43958:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43883:104:::0;:::o;24324:326::-;24441:7;24482:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24482:16:0;24531:19;24509:110;;;;-1:-1:-1;;;24509:110:0;;13594:2:1;24509:110:0;;;13576:21:1;13633:2;13613:18;;;13606:30;13672:34;13652:18;;;13645:62;-1:-1:-1;;;13723:18:1;;;13716:39;13772:19;;24509:110:0;13392:405:1;40193:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23967:295::-;24084:7;-1:-1:-1;;;;;24131:19:0;;24109:111;;;;-1:-1:-1;;;24109:111:0;;13183:2:1;24109:111:0;;;13165:21:1;13222:2;13202:18;;;13195:30;13261:34;13241:18;;;13234:62;-1:-1:-1;;;13312:18:1;;;13305:40;13362:19;;24109:111:0;12981:406:1;24109:111:0;-1:-1:-1;;;;;;24238:16:0;;;;;:9;:16;;;;;;;23967:295::o;4573:94::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;4638:21:::1;4656:1;4638:9;:21::i;:::-;4573:94::o:0;43753:122::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;43834:13:::1;:33:::0;43753:122::o;41059:791::-;41205:10;41190:26;;;;:14;:26;;;;;;;;:34;;:26;:34;41182:84;;;;-1:-1:-1;;;41182:84:0;;10770:2:1;41182:84:0;;;10752:21:1;10809:2;10789:18;;;10782:30;10848:34;10828:18;;;10821:62;-1:-1:-1;;;10899:18:1;;;10892:35;10944:19;;41182:84:0;10568:401:1;41182:84:0;41301:15;41285:12;;:31;;:65;;;;;41335:15;41320:11;;:30;;41285:65;41277:74;;;;;;41384:1;41370:11;:15;;;41362:24;;;;;;41420:20;;41405:11;:35;;;;41397:79;;;;-1:-1:-1;;;41397:79:0;;10053:2:1;41397:79:0;;;10035:21:1;10092:2;10072:18;;;10065:30;10131:33;10111:18;;;10104:61;10182:18;;41397:79:0;9851:355:1;41397:79:0;41524:16;;41495:11;;:25;;41509:11;;41495;;:25;:::i;:::-;:45;;;;41487:99;;;;-1:-1:-1;;;41487:99:0;;11935:2:1;41487:99:0;;;11917:21:1;11974:2;11954:18;;;11947:30;12013:34;11993:18;;;11986:62;-1:-1:-1;;;12064:18:1;;;12057:39;12113:19;;41487:99:0;11733:405:1;41487:99:0;41625:11;41618:18;;:4;;:18;;;;:::i;:::-;41605:9;:31;;41597:76;;;;-1:-1:-1;;;41597:76:0;;8460:2:1;41597:76:0;;;8442:21:1;;;8479:18;;;8472:30;8538:34;8518:18;;;8511:62;8590:18;;41597:76:0;8258:356:1;41597:76:0;41705:1;41688:110;41713:11;41708:16;;:1;:16;41688:110;;41765:11;;41750:31;;41760:3;;41765:15;;41779:1;;41765:11;;:15;:::i;41750:31::-;41726:3;;;;:::i;:::-;;;;41688:110;;24886:104;24942:13;24975:7;24968:14;;;;;:::i;26790:327::-;-1:-1:-1;;;;;26925:24:0;;2779:10;26925:24;;26917:62;;;;-1:-1:-1;;;26917:62:0;;11581:2:1;26917:62:0;;;11563:21:1;11620:2;11600:18;;;11593:30;11659:27;11639:18;;;11632:55;11704:18;;26917:62:0;11379:349:1;26917:62:0;2779:10;26992:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26992:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26992:53:0;;;;;;;;;;27061:48;;7982:41:1;;;26992:42:0;;2779:10;27061:48;;7955:18:1;27061:48:0;;;;;;;26790:327;;:::o;44265:183::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;44355:9:::1;44350:91;44374:1;44370;:5;44350:91;;;44425:4;44397:14;:25;44412:6;44419:1;44412:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;44397:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;44397:25:0;:32;;-1:-1:-1;;44397:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44377:3;::::1;::::0;::::1;:::i;:::-;;;;44350:91;;44154:103:::0;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44221:21:0::1;;::::0;;;:14:::1;:21;::::0;;;;:28;;-1:-1:-1;;44221:28:0::1;44245:4;44221:28;::::0;;44154:103::o;28172:365::-;28361:41;2779:10;28394:7;28361:18;:41::i;:::-;28339:140;;;;-1:-1:-1;;;28339:140:0;;;;;;;:::i;:::-;28490:39;28504:4;28510:2;28514:7;28523:5;28490:13;:39::i;:::-;28172:365;;;;:::o;40221:37::-;;;;;;;:::i;42889:642::-;30149:4;30173:16;;;:7;:16;;;;;;43007:13;;-1:-1:-1;;;;;30173:16:0;43038:113;;;;-1:-1:-1;;;43038:113:0;;15549:2:1;43038:113:0;;;15531:21:1;15588:2;15568:18;;;15561:30;15627:34;15607:18;;;15600:62;-1:-1:-1;;;15678:18:1;;;15671:45;15733:19;;43038:113:0;15347:411:1;43038:113:0;43164:28;43195:10;:8;:10::i;:::-;43164:41;;43267:1;43242:14;43236:28;:32;:287;;;;;;;;;;;;;;;;;43360:14;43401:18;:7;:16;:18::i;:::-;43446:13;43317:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43236:287;43216:307;42889:642;-1:-1:-1;;;42889:642:0:o;43995:151::-;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;44105:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4822:229::-:0;3995:6;;-1:-1:-1;;;;;3995:6:0;2779:10;4142:23;4134:68;;;;-1:-1:-1;;;4134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4925:22:0;::::1;4903:110;;;::::0;-1:-1:-1;;;4903:110:0;;9646:2:1;4903:110:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:36;9821:19;;4903:110:0::1;9444:402:1::0;4903:110:0::1;5024:19;5034:8;5024:9;:19::i;5991:387::-:0;6314:20;6362:8;;;5991:387::o;34207:174::-;34282:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34282:29:0;-1:-1:-1;;;;;34282:29:0;;;;;;;;:24;;34336:23;34282:24;34336:14;:23::i;:::-;-1:-1:-1;;;;;34327:46:0;;;;;;;;;;;34207:174;;:::o;30378:452::-;30507:4;30173:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30173:16:0;30529:110;;;;-1:-1:-1;;;30529:110:0;;12345:2:1;30529:110:0;;;12327:21:1;12384:2;12364:18;;;12357:30;12423:34;12403:18;;;12396:62;-1:-1:-1;;;12474:18:1;;;12467:42;12526:19;;30529:110:0;12143:408:1;30529:110:0;30650:13;30666:23;30681:7;30666:14;:23::i;:::-;30650:39;;30719:5;-1:-1:-1;;;;;30708:16:0;:7;-1:-1:-1;;;;;30708:16:0;;:64;;;;30765:7;-1:-1:-1;;;;;30741:31:0;:20;30753:7;30741:11;:20::i;:::-;-1:-1:-1;;;;;30741:31:0;;30708:64;:113;;;-1:-1:-1;;;;;;27359:25:0;;;27330:4;27359:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30789:32;30700:122;30378:452;-1:-1:-1;;;;30378:452:0:o;33474:615::-;33647:4;-1:-1:-1;;;;;33620:31:0;:23;33635:7;33620:14;:23::i;:::-;-1:-1:-1;;;;;33620:31:0;;33598:122;;;;-1:-1:-1;;;33598:122:0;;15139:2:1;33598:122:0;;;15121:21:1;15178:2;15158:18;;;15151:30;15217:34;15197:18;;;15190:62;-1:-1:-1;;;15268:18:1;;;15261:39;15317:19;;33598:122:0;14937:405:1;33598:122:0;-1:-1:-1;;;;;33739:16:0;;33731:65;;;;-1:-1:-1;;;33731:65:0;;11176:2:1;33731:65:0;;;11158:21:1;11215:2;11195:18;;;11188:30;11254:34;11234:18;;;11227:62;-1:-1:-1;;;11305:18:1;;;11298:34;11349:19;;33731:65:0;10974:400:1;33731:65:0;33913:29;33930:1;33934:7;33913:8;:29::i;:::-;-1:-1:-1;;;;;33955:15:0;;;;;;:9;:15;;;;;:20;;33974:1;;33955:15;:20;;33974:1;;33955:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33986:13:0;;;;;;:9;:13;;;;;:18;;34003:1;;33986:13;:18;;34003:1;;33986:18;:::i;:::-;;;;-1:-1:-1;;34015:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34015:21:0;-1:-1:-1;;;;;34015:21:0;;;;;;;;;34054:27;;34015:16;;34054:27;;;;;;;33474:615;;;:::o;31172:110::-;31248:26;31258:2;31262:7;31248:26;;;;;;;;;;;;:9;:26::i;5059:173::-;5134:6;;;-1:-1:-1;;;;;5151:17:0;;;-1:-1:-1;;;;;;5151:17:0;;;;;;;5184:40;;5134:6;;;5151:17;5134:6;;5184:40;;5115:16;;5184:40;5104:128;5059:173;:::o;29419:352::-;29576:28;29586:4;29592:2;29596:7;29576:9;:28::i;:::-;29637:48;29660:4;29666:2;29670:7;29679:5;29637:22;:48::i;:::-;29615:148;;;;-1:-1:-1;;;29615:148:0;;;;;;;:::i;40908:108::-;40968:13;41001:7;40994:14;;;;;:::i;297:723::-;353:13;574:10;570:53;;-1:-1:-1;;601:10:0;;;;;;;;;;;;-1:-1:-1;;;601:10:0;;;;;297:723::o;570:53::-;648:5;633:12;689:78;696:9;;689:78;;722:8;;;;:::i;:::-;;-1:-1:-1;745:10:0;;-1:-1:-1;753:2:0;745:10;;:::i;:::-;;;689:78;;;777:19;809:6;799:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;799:17:0;;777:39;;827:154;834:10;;827:154;;861:11;871:1;861:11;;:::i;:::-;;-1:-1:-1;930:10:0;938:2;930:5;:10;:::i;:::-;917:24;;:2;:24;:::i;:::-;904:39;;887:6;894;887:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;887:56:0;;;;;;;;-1:-1:-1;958:11:0;967:2;958:11;;:::i;:::-;;;827:154;;31509:321;31639:18;31645:2;31649:7;31639:5;:18::i;:::-;31690:54;31721:1;31725:2;31729:7;31738:5;31690:22;:54::i;:::-;31668:154;;;;-1:-1:-1;;;31668:154:0;;;;;;;:::i;34946:980::-;35101:4;-1:-1:-1;;;;;35122:13:0;;6314:20;6362:8;35118:801;;35175:175;;-1:-1:-1;;;35175:175:0;;-1:-1:-1;;;;;35175:36:0;;;;;:175;;2779:10;;35269:4;;35296:7;;35326:5;;35175:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35175:175:0;;;;;;;;-1:-1:-1;;35175:175:0;;;;;;;;;;;;:::i;:::-;;;35154:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35533:13:0;;35529:320;;35576:108;;-1:-1:-1;;;35576:108:0;;;;;;;:::i;35529:320::-;35799:6;35793:13;35784:6;35780:2;35776:15;35769:38;35154:710;-1:-1:-1;;;;;;35414:51:0;-1:-1:-1;;;35414:51:0;;-1:-1:-1;35407:58:0;;35118:801;-1:-1:-1;35903:4:0;34946:980;;;;;;:::o;32166:382::-;-1:-1:-1;;;;;32246:16:0;;32238:61;;;;-1:-1:-1;;;32238:61:0;;14004:2:1;32238:61:0;;;13986:21:1;;;14023:18;;;14016:30;14082:34;14062:18;;;14055:62;14134:18;;32238:61:0;13802:356:1;32238:61:0;30149:4;30173:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30173:16:0;:30;32310:58;;;;-1:-1:-1;;;32310:58:0;;10413:2:1;32310:58:0;;;10395:21:1;10452:2;10432:18;;;10425:30;10491;10471:18;;;10464:58;10539:18;;32310:58:0;10211:352:1;32310:58:0;-1:-1:-1;;;;;32439:13:0;;;;;;:9;:13;;;;;:18;;32456:1;;32439:13;:18;;32456:1;;32439:18;:::i;:::-;;;;-1:-1:-1;;32468:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32468:21:0;-1:-1:-1;;;;;32468:21:0;;;;;;;;32507:33;;32468:16;;;32507:33;;32468:16;;32507:33;32166:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:346::-;2482:6;2490;2543:2;2531:9;2522:7;2518:23;2514:32;2511:52;;;2559:1;2556;2549:12;2511:52;2582:29;2601:9;2582:29;:::i;:::-;2572:39;;2661:2;2650:9;2646:18;2633:32;2705:6;2698:5;2694:18;2687:5;2684:29;2674:57;;2727:1;2724;2717:12;2766:254;2834:6;2842;2895:2;2883:9;2874:7;2870:23;2866:32;2863:52;;;2911:1;2908;2901:12;2863:52;2934:29;2953:9;2934:29;:::i;:::-;2924:39;3010:2;2995:18;;;;2982:32;;-1:-1:-1;;;2766:254:1:o;3025:963::-;3109:6;3140:2;3183;3171:9;3162:7;3158:23;3154:32;3151:52;;;3199:1;3196;3189:12;3151:52;3239:9;3226:23;3268:18;3309:2;3301:6;3298:14;3295:34;;;3325:1;3322;3315:12;3295:34;3363:6;3352:9;3348:22;3338:32;;3408:7;3401:4;3397:2;3393:13;3389:27;3379:55;;3430:1;3427;3420:12;3379:55;3466:2;3453:16;3488:2;3484;3481:10;3478:36;;;3494:18;;:::i;:::-;3540:2;3537:1;3533:10;3523:20;;3563:28;3587:2;3583;3579:11;3563:28;:::i;:::-;3625:15;;;3656:12;;;;3688:11;;;3718;;;3714:20;;3711:33;-1:-1:-1;3708:53:1;;;3757:1;3754;3747:12;3708:53;3779:1;3770:10;;3789:169;3803:2;3800:1;3797:9;3789:169;;;3860:23;3879:3;3860:23;:::i;:::-;3848:36;;3821:1;3814:9;;;;;3904:12;;;;3936;;3789:169;;;-1:-1:-1;3977:5:1;3025:963;-1:-1:-1;;;;;;;;3025:963:1:o;3993:245::-;4051:6;4104:2;4092:9;4083:7;4079:23;4075:32;4072:52;;;4120:1;4117;4110:12;4072:52;4159:9;4146:23;4178:30;4202:5;4178:30;:::i;4243:249::-;4312:6;4365:2;4353:9;4344:7;4340:23;4336:32;4333:52;;;4381:1;4378;4371:12;4333:52;4413:9;4407:16;4432:30;4456:5;4432:30;:::i;4497:450::-;4566:6;4619:2;4607:9;4598:7;4594:23;4590:32;4587:52;;;4635:1;4632;4625:12;4587:52;4675:9;4662:23;4708:18;4700:6;4697:30;4694:50;;;4740:1;4737;4730:12;4694:50;4763:22;;4816:4;4808:13;;4804:27;-1:-1:-1;4794:55:1;;4845:1;4842;4835:12;4794:55;4868:73;4933:7;4928:2;4915:16;4910:2;4906;4902:11;4868:73;:::i;4952:180::-;5011:6;5064:2;5052:9;5043:7;5039:23;5035:32;5032:52;;;5080:1;5077;5070:12;5032:52;-1:-1:-1;5103:23:1;;4952:180;-1:-1:-1;4952:180:1:o;5137:257::-;5178:3;5216:5;5210:12;5243:6;5238:3;5231:19;5259:63;5315:6;5308:4;5303:3;5299:14;5292:4;5285:5;5281:16;5259:63;:::i;:::-;5376:2;5355:15;-1:-1:-1;;5351:29:1;5342:39;;;;5383:4;5338:50;;5137:257;-1:-1:-1;;5137:257:1:o;5399:1527::-;5623:3;5661:6;5655:13;5687:4;5700:51;5744:6;5739:3;5734:2;5726:6;5722:15;5700:51;:::i;:::-;5814:13;;5773:16;;;;5836:55;5814:13;5773:16;5858:15;;;5836:55;:::i;:::-;5980:13;;5913:20;;;5953:1;;6040;6062:18;;;;6115;;;;6142:93;;6220:4;6210:8;6206:19;6194:31;;6142:93;6283:2;6273:8;6270:16;6250:18;6247:40;6244:167;;;-1:-1:-1;;;6310:33:1;;6366:4;6363:1;6356:15;6396:4;6317:3;6384:17;6244:167;6427:18;6454:110;;;;6578:1;6573:328;;;;6420:481;;6454:110;-1:-1:-1;;6489:24:1;;6475:39;;6534:20;;;;-1:-1:-1;6454:110:1;;6573:328;17713:1;17706:14;;;17750:4;17737:18;;6668:1;6682:169;6696:8;6693:1;6690:15;6682:169;;;6778:14;;6763:13;;;6756:37;6821:16;;;;6713:10;;6682:169;;;6686:3;;6882:8;6875:5;6871:20;6864:27;;6420:481;-1:-1:-1;6917:3:1;;5399:1527;-1:-1:-1;;;;;;;;;;;5399:1527:1:o;7349:488::-;-1:-1:-1;;;;;7618:15:1;;;7600:34;;7670:15;;7665:2;7650:18;;7643:43;7717:2;7702:18;;7695:34;;;7765:3;7760:2;7745:18;;7738:31;;;7543:4;;7786:45;;7811:19;;7803:6;7786:45;:::i;:::-;7778:53;7349:488;-1:-1:-1;;;;;;7349:488:1:o;8034:219::-;8183:2;8172:9;8165:21;8146:4;8203:44;8243:2;8232:9;8228:18;8220:6;8203:44;:::i;8619:414::-;8821:2;8803:21;;;8860:2;8840:18;;;8833:30;8899:34;8894:2;8879:18;;8872:62;-1:-1:-1;;;8965:2:1;8950:18;;8943:48;9023:3;9008:19;;8619:414::o;14576:356::-;14778:2;14760:21;;;14797:18;;;14790:30;14856:34;14851:2;14836:18;;14829:62;14923:2;14908:18;;14576:356::o;16165:413::-;16367:2;16349:21;;;16406:2;16386:18;;;16379:30;16445:34;16440:2;16425:18;;16418:62;-1:-1:-1;;;16511:2:1;16496:18;;16489:47;16568:3;16553:19;;16165:413::o;17360:275::-;17431:2;17425:9;17496:2;17477:13;;-1:-1:-1;;17473:27:1;17461:40;;17531:18;17516:34;;17552:22;;;17513:62;17510:88;;;17578:18;;:::i;:::-;17614:2;17607:22;17360:275;;-1:-1:-1;17360:275:1:o;17766:224::-;17805:3;17833:6;17866:2;17863:1;17859:10;17896:2;17893:1;17889:10;17927:3;17923:2;17919:12;17914:3;17911:21;17908:47;;;17935:18;;:::i;:::-;17971:13;;17766:224;-1:-1:-1;;;;17766:224:1:o;17995:128::-;18035:3;18066:1;18062:6;18059:1;18056:13;18053:39;;;18072:18;;:::i;:::-;-1:-1:-1;18108:9:1;;17995:128::o;18128:120::-;18168:1;18194;18184:35;;18199:18;;:::i;:::-;-1:-1:-1;18233:9:1;;18128:120::o;18253:168::-;18293:7;18359:1;18355;18351:6;18347:14;18344:1;18341:21;18336:1;18329:9;18322:17;18318:45;18315:71;;;18366:18;;:::i;:::-;-1:-1:-1;18406:9:1;;18253:168::o;18426:125::-;18466:4;18494:1;18491;18488:8;18485:34;;;18499:18;;:::i;:::-;-1:-1:-1;18536:9:1;;18426:125::o;18556:258::-;18628:1;18638:113;18652:6;18649:1;18646:13;18638:113;;;18728:11;;;18722:18;18709:11;;;18702:39;18674:2;18667:10;18638:113;;;18769:6;18766:1;18763:13;18760:48;;;-1:-1:-1;;18804:1:1;18786:16;;18779:27;18556:258::o;18819:380::-;18898:1;18894:12;;;;18941;;;18962:61;;19016:4;19008:6;19004:17;18994:27;;18962:61;19069:2;19061:6;19058:14;19038:18;19035:38;19032:161;;;19115:10;19110:3;19106:20;19103:1;19096:31;19150:4;19147:1;19140:15;19178:4;19175:1;19168:15;19032:161;;18819:380;;;:::o;19204:135::-;19243:3;-1:-1:-1;;19264:17:1;;19261:43;;;19284:18;;:::i;:::-;-1:-1:-1;19331:1:1;19320:13;;19204:135::o;19344:112::-;19376:1;19402;19392:35;;19407:18;;:::i;:::-;-1:-1:-1;19441:9:1;;19344:112::o;19461:127::-;19522:10;19517:3;19513:20;19510:1;19503:31;19553:4;19550:1;19543:15;19577:4;19574:1;19567:15;19593:127;19654:10;19649:3;19645:20;19642:1;19635:31;19685:4;19682:1;19675:15;19709:4;19706:1;19699:15;19725:127;19786:10;19781:3;19777:20;19774:1;19767:31;19817:4;19814:1;19807:15;19841:4;19838:1;19831:15;19857:127;19918:10;19913:3;19909:20;19906:1;19899:31;19949:4;19946:1;19939:15;19973:4;19970:1;19963:15;19989:131;-1:-1:-1;;;;;;20063:32:1;;20053:43;;20043:71;;20110:1;20107;20100:12

Swarm Source

ipfs://8379b6ccba7fd912d4e6730dd72651d5d1f5e6fee12d35b2706f2d303232c534
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.