ETH Price: $3,391.07 (+6.25%)
Gas: 26 Gwei

Token

SoCat (SOCAT)
 

Overview

Max Total Supply

0 SOCAT

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
klasik.eth
Balance
1 SOCAT
0x2e3e79cde11d647313f6b7a36fc3e4601dd80352
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:
PlatwinNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-17
*/

// Sources flattened with hardhat v2.4.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



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 @openzeppelin/contracts/token/ERC721/[email protected]



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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



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 @openzeppelin/contracts/utils/[email protected]



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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.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");

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File @openzeppelin/contracts/utils/introspection/[email protected]



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 @openzeppelin/contracts/token/ERC721/[email protected]



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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


// File @openzeppelin/contracts/access/[email protected]



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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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


// File contracts/nft/PlatwinNFT.sol


pragma solidity ^0.8.0;


/// @dev use IPFS to store NFT resource, so we specify uri when user mint nft
contract PlatwinNFT is ERC721, Ownable {

    uint public tokenIndex;

    mapping(uint => string) private tokenUri;

    mapping(uint => address) public minter;

    mapping(address => bool) public whitelist;

    string public baseURI;

    /* modifier */
    modifier inWhitelist(address who){
        require(whitelist[who], 'disabled');
        _;
    }

    /* events */
    event WhitelistUpdated(address who, bool enabled);
    event BaseURIUpdated(string oldURI, string newURI);

    constructor(string memory name, string memory symbol)ERC721(name, symbol) Ownable(){
        whitelist[msg.sender] = true;
        baseURI = "ipfs://";
        tokenIndex = 1;
    }

    function setWhitelist(address who, bool enabled) public onlyOwner {
        whitelist[who] = enabled;
        emit WhitelistUpdated(who, enabled);
    }

    function setBaseURI(string memory base) public onlyOwner {
        string memory old = baseURI;
        baseURI = base;
        emit BaseURIUpdated(old, base);
    }

    function mint(address to, string memory uri) public inWhitelist(msg.sender) {
        _mint(to, tokenIndex);
        tokenUri[tokenIndex] = uri;
        minter[tokenIndex] = msg.sender;
        tokenIndex++;
    }

    function safeMint(address to, string memory uri) public inWhitelist(msg.sender) {
        _safeMint(to, tokenIndex);
        tokenUri[tokenIndex] = uri;
        minter[tokenIndex] = msg.sender;
        tokenIndex++;
    }

    function batchMint(address[] memory tos, string[] memory uris) public inWhitelist(msg.sender) {
        require(tos.length == uris.length, 'ill param');
        for (uint i = 0; i < uris.length; i++) {
            safeMint(tos[i], uris[i]);
        }
    }

    function batchMintToSameAddr(address to, string[] memory uris) public inWhitelist(msg.sender) {
        for (uint i = 0; i < uris.length; i++) {
            safeMint(to, uris[i]);
        }
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(baseURI, tokenUri[tokenId]));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"oldURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"WhitelistUpdated","type":"event"},{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"uris","type":"string[]"}],"name":"batchMintToSameAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","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":"base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620020793803806200207983398101604081905262000034916200027c565b8151829082906200004d90600090602085019062000123565b5080516200006390600190602084019062000123565b5050506000620000786200011f60201b60201c565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350336000908152600a6020908152604091829020805460ff191660011790558151808301909252600780835266697066733a2f2f60c81b929091019182526200011191600b9162000123565b505060016007555062000336565b3390565b8280546200013190620002e3565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b600082601f830112620001da578081fd5b81516001600160401b0380821115620001f757620001f762000320565b604051601f8301601f19908116603f0116810190828211818310171562000222576200022262000320565b816040528381526020925086838588010111156200023e578485fd5b8491505b8382101562000261578582018301518183018401529082019062000242565b838211156200027257848385830101525b9695505050505050565b600080604083850312156200028f578182fd5b82516001600160401b0380821115620002a6578384fd5b620002b486838701620001c9565b93506020850151915080821115620002ca578283fd5b50620002d985828601620001c9565b9150509250929050565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d3380620003466000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063b88d4fde11610097578063d204c45e11610071578063d204c45e14610377578063d55f92731461038a578063e985e9c514610393578063f2fde38b146103cf57600080fd5b8063b88d4fde1461033e578063c87b56dd14610351578063d0def5211461036457600080fd5b8063715018a6146102be5780638da5cb5b146102c657806395d89b41146102d75780639b19251a146102df578063a22cb46514610302578063ac8d856c1461031557600080fd5b806342842e0e1161014b5780636352211e116101255780636352211e1461026f57806364ba144e146102825780636c0360eb1461029557806370a082311461029d57600080fd5b806342842e0e1461023657806353d6fd591461024957806355f804b31461025c57600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806323b872dd146102105780632b6529f414610223575b600080fd5b6101a66101a13660046118eb565b6103e2565b60405190151581526020015b60405180910390f35b6101c3610434565b6040516101b29190611aa3565b6101e36101de366004611956565b6104c6565b6040516001600160a01b0390911681526020016101b2565b61020e61020936600461180b565b610560565b005b61020e61021e36600461168f565b610676565b61020e610231366004611743565b6106a7565b61020e61024436600461168f565b61072b565b61020e61025736600461178f565b610746565b61020e61026a366004611923565b6107d4565b6101e361027d366004611956565b6108d4565b61020e610290366004611834565b61094b565b6101c3610a20565b6102b06102ab366004611643565b610aae565b6040519081526020016101b2565b61020e610b35565b6006546001600160a01b03166101e3565b6101c3610ba9565b6101a66102ed366004611643565b600a6020526000908152604090205460ff1681565b61020e61031036600461178f565b610bb8565b6101e3610323366004611956565b6009602052600090815260409020546001600160a01b031681565b61020e61034c3660046116ca565b610c7d565b6101c361035f366004611956565b610caf565b61020e6103723660046117c9565b610ce9565b61020e6103853660046117c9565b610d80565b6102b060075481565b6101a66103a136600461165d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103dd366004611643565b610dbb565b60006001600160e01b031982166380ac58cd60e01b148061041357506001600160e01b03198216635b5e139f60e01b145b8061042e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461044390611c62565b80601f016020809104026020016040519081016040528092919081815260200182805461046f90611c62565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061056b826108d4565b9050806001600160a01b0316836001600160a01b031614156105d95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161053b565b336001600160a01b03821614806105f557506105f581336103a1565b6106675760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161053b565b6106718383610ea6565b505050565b6106803382610f14565b61069c5760405162461bcd60e51b815260040161053b90611b8d565b61067183838361100b565b336000818152600a602052604090205460ff166106d65760405162461bcd60e51b815260040161053b90611b36565b60005b8251811015610725576107138484838151811061070657634e487b7160e01b600052603260045260246000fd5b6020026020010151610d80565b8061071d81611c9d565b9150506106d9565b50505050565b61067183838360405180602001604052806000815250610c7d565b6006546001600160a01b031633146107705760405162461bcd60e51b815260040161053b90611b58565b6001600160a01b0382166000818152600a6020908152604091829020805460ff19168515159081179091558251938452908301527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d91015b60405180910390a15050565b6006546001600160a01b031633146107fe5760405162461bcd60e51b815260040161053b90611b58565b6000600b805461080d90611c62565b80601f016020809104026020016040519081016040528092919081815260200182805461083990611c62565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b505085519394506108a293600b9350602087019250905061147e565b507f309b29ded109b9e28fb9885757b3e0096eb75c51d23aa4635d68bcd569f6adc181836040516107c8929190611ab6565b6000818152600260205260408120546001600160a01b03168061042e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161053b565b336000818152600a602052604090205460ff1661097a5760405162461bcd60e51b815260040161053b90611b36565b81518351146109b75760405162461bcd60e51b8152602060048201526009602482015268696c6c20706172616d60b81b604482015260640161053b565b60005b825181101561072557610a0e8482815181106109e657634e487b7160e01b600052603260045260246000fd5b602002602001015184838151811061070657634e487b7160e01b600052603260045260246000fd5b80610a1881611c9d565b9150506109ba565b600b8054610a2d90611c62565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990611c62565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b505050505081565b60006001600160a01b038216610b195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161053b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161053b90611b58565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b60606001805461044390611c62565b6001600160a01b038216331415610c115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161053b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c873383610f14565b610ca35760405162461bcd60e51b815260040161053b90611b8d565b610725848484846111ab565b6000818152600860209081526040918290209151606092610cd392600b9201611a51565b6040516020818303038152906040529050919050565b336000818152600a602052604090205460ff16610d185760405162461bcd60e51b815260040161053b90611b36565b610d24836007546111de565b60075460009081526008602090815260409091208351610d469285019061147e565b5060078054600090815260096020526040812080546001600160a01b0319163317905581549190610d7683611c9d565b9190505550505050565b336000818152600a602052604090205460ff16610daf5760405162461bcd60e51b815260040161053b90611b36565b610d2483600754611320565b6006546001600160a01b03163314610de55760405162461bcd60e51b815260040161053b90611b58565b6001600160a01b038116610e4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053b565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610edb826108d4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161053b565b6000610f98836108d4565b9050806001600160a01b0316846001600160a01b03161480610fd35750836001600160a01b0316610fc8846104c6565b6001600160a01b0316145b8061100357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661101e826108d4565b6001600160a01b0316146110865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161053b565b6001600160a01b0382166110e85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161053b565b6110f3600082610ea6565b6001600160a01b038316600090815260036020526040812080546001929061111c908490611c4b565b90915550506001600160a01b038216600090815260036020526040812080546001929061114a908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111b684848461100b565b6111c28484848461133e565b6107255760405162461bcd60e51b815260040161053b90611ae4565b6001600160a01b0382166112345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161053b565b6000818152600260205260409020546001600160a01b0316156112995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161053b565b6001600160a01b03821660009081526003602052604081208054600192906112c2908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61133a82826040518060200160405280600081525061144b565b5050565b60006001600160a01b0384163b1561144057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611382903390899088908890600401611a66565b602060405180830381600087803b15801561139c57600080fd5b505af19250505080156113cc575060408051601f3d908101601f191682019092526113c991810190611907565b60015b611426573d8080156113fa576040519150601f19603f3d011682016040523d82523d6000602084013e6113ff565b606091505b50805161141e5760405162461bcd60e51b815260040161053b90611ae4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611003565b506001949350505050565b61145583836111de565b611462600084848461133e565b6106715760405162461bcd60e51b815260040161053b90611ae4565b82805461148a90611c62565b90600052602060002090601f0160209004810192826114ac57600085556114f2565b82601f106114c557805160ff19168380011785556114f2565b828001600101855582156114f2579182015b828111156114f25782518255916020019190600101906114d7565b506114fe929150611502565b5090565b5b808211156114fe5760008155600101611503565b600067ffffffffffffffff83111561153157611531611cce565b611544601f8401601f1916602001611bde565b905082815283838301111561155857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461158657600080fd5b919050565b600082601f83011261159b578081fd5b813560206115b06115ab83611c0f565b611bde565b80838252828201915082860187848660051b89010111156115cf578586fd5b855b8581101561161057813567ffffffffffffffff8111156115ef578788fd5b6115fd8a87838c010161161d565b85525092840192908401906001016115d1565b5090979650505050505050565b600082601f83011261162d578081fd5b61163c83833560208501611517565b9392505050565b600060208284031215611654578081fd5b61163c8261156f565b6000806040838503121561166f578081fd5b6116788361156f565b91506116866020840161156f565b90509250929050565b6000806000606084860312156116a3578081fd5b6116ac8461156f565b92506116ba6020850161156f565b9150604084013590509250925092565b600080600080608085870312156116df578081fd5b6116e88561156f565b93506116f66020860161156f565b925060408501359150606085013567ffffffffffffffff811115611718578182fd5b8501601f81018713611728578182fd5b61173787823560208401611517565b91505092959194509250565b60008060408385031215611755578182fd5b61175e8361156f565b9150602083013567ffffffffffffffff811115611779578182fd5b6117858582860161158b565b9150509250929050565b600080604083850312156117a1578182fd5b6117aa8361156f565b9150602083013580151581146117be578182fd5b809150509250929050565b600080604083850312156117db578182fd5b6117e48361156f565b9150602083013567ffffffffffffffff8111156117ff578182fd5b6117858582860161161d565b6000806040838503121561181d578182fd5b6118268361156f565b946020939093013593505050565b60008060408385031215611846578182fd5b823567ffffffffffffffff8082111561185d578384fd5b818501915085601f830112611870578384fd5b813560206118806115ab83611c0f565b8083825282820191508286018a848660051b890101111561189f578889fd5b8896505b848710156118c8576118b48161156f565b8352600196909601959183019183016118a3565b50965050860135925050808211156118de578283fd5b506117858582860161158b565b6000602082840312156118fc578081fd5b813561163c81611ce4565b600060208284031215611918578081fd5b815161163c81611ce4565b600060208284031215611934578081fd5b813567ffffffffffffffff81111561194a578182fd5b6110038482850161161d565b600060208284031215611967578081fd5b5035919050565b60008151808452815b8181101561199357602081850181015186830182015201611977565b818111156119a45782602083870101525b50601f01601f19169290920160200192915050565b8054600090600181811c90808316806119d357607f831692505b60208084108214156119f357634e487b7160e01b86526022600452602486fd5b818015611a075760018114611a1857611a45565b60ff19861689528489019650611a45565b60008881526020902060005b86811015611a3d5781548b820152908501908301611a24565b505084890196505b50505050505092915050565b6000611003611a6083866119b9565b846119b9565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a999083018461196e565b9695505050505050565b60208152600061163c602083018461196e565b604081526000611ac9604083018561196e565b8281036020840152611adb818561196e565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260089082015267191a5cd8589b195960c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c0757611c07611cce565b604052919050565b600067ffffffffffffffff821115611c2957611c29611cce565b5060051b60200190565b60008219821115611c4657611c46611cb8565b500190565b600082821015611c5d57611c5d611cb8565b500390565b600181811c90821680611c7657607f821691505b60208210811415611c9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cb157611cb1611cb8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cfa57600080fd5b5056fea2646970667358221220f2f09ab20926756279d05a35770cfda1839cb43e99c40e18b3aab397238ffb2f64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005536f4361740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534f434154000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063b88d4fde11610097578063d204c45e11610071578063d204c45e14610377578063d55f92731461038a578063e985e9c514610393578063f2fde38b146103cf57600080fd5b8063b88d4fde1461033e578063c87b56dd14610351578063d0def5211461036457600080fd5b8063715018a6146102be5780638da5cb5b146102c657806395d89b41146102d75780639b19251a146102df578063a22cb46514610302578063ac8d856c1461031557600080fd5b806342842e0e1161014b5780636352211e116101255780636352211e1461026f57806364ba144e146102825780636c0360eb1461029557806370a082311461029d57600080fd5b806342842e0e1461023657806353d6fd591461024957806355f804b31461025c57600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806323b872dd146102105780632b6529f414610223575b600080fd5b6101a66101a13660046118eb565b6103e2565b60405190151581526020015b60405180910390f35b6101c3610434565b6040516101b29190611aa3565b6101e36101de366004611956565b6104c6565b6040516001600160a01b0390911681526020016101b2565b61020e61020936600461180b565b610560565b005b61020e61021e36600461168f565b610676565b61020e610231366004611743565b6106a7565b61020e61024436600461168f565b61072b565b61020e61025736600461178f565b610746565b61020e61026a366004611923565b6107d4565b6101e361027d366004611956565b6108d4565b61020e610290366004611834565b61094b565b6101c3610a20565b6102b06102ab366004611643565b610aae565b6040519081526020016101b2565b61020e610b35565b6006546001600160a01b03166101e3565b6101c3610ba9565b6101a66102ed366004611643565b600a6020526000908152604090205460ff1681565b61020e61031036600461178f565b610bb8565b6101e3610323366004611956565b6009602052600090815260409020546001600160a01b031681565b61020e61034c3660046116ca565b610c7d565b6101c361035f366004611956565b610caf565b61020e6103723660046117c9565b610ce9565b61020e6103853660046117c9565b610d80565b6102b060075481565b6101a66103a136600461165d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103dd366004611643565b610dbb565b60006001600160e01b031982166380ac58cd60e01b148061041357506001600160e01b03198216635b5e139f60e01b145b8061042e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461044390611c62565b80601f016020809104026020016040519081016040528092919081815260200182805461046f90611c62565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061056b826108d4565b9050806001600160a01b0316836001600160a01b031614156105d95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161053b565b336001600160a01b03821614806105f557506105f581336103a1565b6106675760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161053b565b6106718383610ea6565b505050565b6106803382610f14565b61069c5760405162461bcd60e51b815260040161053b90611b8d565b61067183838361100b565b336000818152600a602052604090205460ff166106d65760405162461bcd60e51b815260040161053b90611b36565b60005b8251811015610725576107138484838151811061070657634e487b7160e01b600052603260045260246000fd5b6020026020010151610d80565b8061071d81611c9d565b9150506106d9565b50505050565b61067183838360405180602001604052806000815250610c7d565b6006546001600160a01b031633146107705760405162461bcd60e51b815260040161053b90611b58565b6001600160a01b0382166000818152600a6020908152604091829020805460ff19168515159081179091558251938452908301527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d91015b60405180910390a15050565b6006546001600160a01b031633146107fe5760405162461bcd60e51b815260040161053b90611b58565b6000600b805461080d90611c62565b80601f016020809104026020016040519081016040528092919081815260200182805461083990611c62565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b505085519394506108a293600b9350602087019250905061147e565b507f309b29ded109b9e28fb9885757b3e0096eb75c51d23aa4635d68bcd569f6adc181836040516107c8929190611ab6565b6000818152600260205260408120546001600160a01b03168061042e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161053b565b336000818152600a602052604090205460ff1661097a5760405162461bcd60e51b815260040161053b90611b36565b81518351146109b75760405162461bcd60e51b8152602060048201526009602482015268696c6c20706172616d60b81b604482015260640161053b565b60005b825181101561072557610a0e8482815181106109e657634e487b7160e01b600052603260045260246000fd5b602002602001015184838151811061070657634e487b7160e01b600052603260045260246000fd5b80610a1881611c9d565b9150506109ba565b600b8054610a2d90611c62565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990611c62565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b505050505081565b60006001600160a01b038216610b195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161053b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161053b90611b58565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b60606001805461044390611c62565b6001600160a01b038216331415610c115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161053b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c873383610f14565b610ca35760405162461bcd60e51b815260040161053b90611b8d565b610725848484846111ab565b6000818152600860209081526040918290209151606092610cd392600b9201611a51565b6040516020818303038152906040529050919050565b336000818152600a602052604090205460ff16610d185760405162461bcd60e51b815260040161053b90611b36565b610d24836007546111de565b60075460009081526008602090815260409091208351610d469285019061147e565b5060078054600090815260096020526040812080546001600160a01b0319163317905581549190610d7683611c9d565b9190505550505050565b336000818152600a602052604090205460ff16610daf5760405162461bcd60e51b815260040161053b90611b36565b610d2483600754611320565b6006546001600160a01b03163314610de55760405162461bcd60e51b815260040161053b90611b58565b6001600160a01b038116610e4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053b565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610edb826108d4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161053b565b6000610f98836108d4565b9050806001600160a01b0316846001600160a01b03161480610fd35750836001600160a01b0316610fc8846104c6565b6001600160a01b0316145b8061100357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661101e826108d4565b6001600160a01b0316146110865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161053b565b6001600160a01b0382166110e85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161053b565b6110f3600082610ea6565b6001600160a01b038316600090815260036020526040812080546001929061111c908490611c4b565b90915550506001600160a01b038216600090815260036020526040812080546001929061114a908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111b684848461100b565b6111c28484848461133e565b6107255760405162461bcd60e51b815260040161053b90611ae4565b6001600160a01b0382166112345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161053b565b6000818152600260205260409020546001600160a01b0316156112995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161053b565b6001600160a01b03821660009081526003602052604081208054600192906112c2908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61133a82826040518060200160405280600081525061144b565b5050565b60006001600160a01b0384163b1561144057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611382903390899088908890600401611a66565b602060405180830381600087803b15801561139c57600080fd5b505af19250505080156113cc575060408051601f3d908101601f191682019092526113c991810190611907565b60015b611426573d8080156113fa576040519150601f19603f3d011682016040523d82523d6000602084013e6113ff565b606091505b50805161141e5760405162461bcd60e51b815260040161053b90611ae4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611003565b506001949350505050565b61145583836111de565b611462600084848461133e565b6106715760405162461bcd60e51b815260040161053b90611ae4565b82805461148a90611c62565b90600052602060002090601f0160209004810192826114ac57600085556114f2565b82601f106114c557805160ff19168380011785556114f2565b828001600101855582156114f2579182015b828111156114f25782518255916020019190600101906114d7565b506114fe929150611502565b5090565b5b808211156114fe5760008155600101611503565b600067ffffffffffffffff83111561153157611531611cce565b611544601f8401601f1916602001611bde565b905082815283838301111561155857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461158657600080fd5b919050565b600082601f83011261159b578081fd5b813560206115b06115ab83611c0f565b611bde565b80838252828201915082860187848660051b89010111156115cf578586fd5b855b8581101561161057813567ffffffffffffffff8111156115ef578788fd5b6115fd8a87838c010161161d565b85525092840192908401906001016115d1565b5090979650505050505050565b600082601f83011261162d578081fd5b61163c83833560208501611517565b9392505050565b600060208284031215611654578081fd5b61163c8261156f565b6000806040838503121561166f578081fd5b6116788361156f565b91506116866020840161156f565b90509250929050565b6000806000606084860312156116a3578081fd5b6116ac8461156f565b92506116ba6020850161156f565b9150604084013590509250925092565b600080600080608085870312156116df578081fd5b6116e88561156f565b93506116f66020860161156f565b925060408501359150606085013567ffffffffffffffff811115611718578182fd5b8501601f81018713611728578182fd5b61173787823560208401611517565b91505092959194509250565b60008060408385031215611755578182fd5b61175e8361156f565b9150602083013567ffffffffffffffff811115611779578182fd5b6117858582860161158b565b9150509250929050565b600080604083850312156117a1578182fd5b6117aa8361156f565b9150602083013580151581146117be578182fd5b809150509250929050565b600080604083850312156117db578182fd5b6117e48361156f565b9150602083013567ffffffffffffffff8111156117ff578182fd5b6117858582860161161d565b6000806040838503121561181d578182fd5b6118268361156f565b946020939093013593505050565b60008060408385031215611846578182fd5b823567ffffffffffffffff8082111561185d578384fd5b818501915085601f830112611870578384fd5b813560206118806115ab83611c0f565b8083825282820191508286018a848660051b890101111561189f578889fd5b8896505b848710156118c8576118b48161156f565b8352600196909601959183019183016118a3565b50965050860135925050808211156118de578283fd5b506117858582860161158b565b6000602082840312156118fc578081fd5b813561163c81611ce4565b600060208284031215611918578081fd5b815161163c81611ce4565b600060208284031215611934578081fd5b813567ffffffffffffffff81111561194a578182fd5b6110038482850161161d565b600060208284031215611967578081fd5b5035919050565b60008151808452815b8181101561199357602081850181015186830182015201611977565b818111156119a45782602083870101525b50601f01601f19169290920160200192915050565b8054600090600181811c90808316806119d357607f831692505b60208084108214156119f357634e487b7160e01b86526022600452602486fd5b818015611a075760018114611a1857611a45565b60ff19861689528489019650611a45565b60008881526020902060005b86811015611a3d5781548b820152908501908301611a24565b505084890196505b50505050505092915050565b6000611003611a6083866119b9565b846119b9565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a999083018461196e565b9695505050505050565b60208152600061163c602083018461196e565b604081526000611ac9604083018561196e565b8281036020840152611adb818561196e565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260089082015267191a5cd8589b195960c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c0757611c07611cce565b604052919050565b600067ffffffffffffffff821115611c2957611c29611cce565b5060051b60200190565b60008219821115611c4657611c46611cb8565b500190565b600082821015611c5d57611c5d611cb8565b500390565b600181811c90821680611c7657607f821691505b60208210811415611c9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cb157611cb1611cb8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cfa57600080fd5b5056fea2646970667358221220f2f09ab20926756279d05a35770cfda1839cb43e99c40e18b3aab397238ffb2f64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005536f4361740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534f434154000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SoCat
Arg [1] : symbol (string): SOCAT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 536f436174000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 534f434154000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

34986:2208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20723:292;;;;;;:::i;:::-;;:::i;:::-;;;9930:14:1;;9923:22;9905:41;;9893:2;9878:18;20723:292:0;;;;;;;;21655:100;;;:::i;:::-;;;;;;;:::i;23115:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8939:32:1;;;8921:51;;8909:2;8894:18;23115:221:0;8876:102:1;22652:397:0;;;;;;:::i;:::-;;:::i;:::-;;24005:305;;;;;;:::i;:::-;;:::i;36763:199::-;;;;;;:::i;:::-;;:::i;24381:151::-;;;;;;:::i;:::-;;:::i;35694:155::-;;;;;;:::i;:::-;;:::i;35857:169::-;;;;;;:::i;:::-;;:::i;21349:239::-;;;;;;:::i;:::-;;:::i;36494:261::-;;;;;;:::i;:::-;;:::i;35211:21::-;;;:::i;21079:208::-;;;;;;:::i;:::-;;:::i;:::-;;;17352:25:1;;;17340:2;17325:18;21079:208:0;17307:76:1;34280:148:0;;;:::i;33629:87::-;33702:6;;-1:-1:-1;;;;;33702:6:0;33629:87;;21824:104;;;:::i;35161:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23408:295;;;;;;:::i;:::-;;:::i;35114:38::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;35114:38:0;;;24603:285;;;;;;:::i;:::-;;:::i;37033:158::-;;;;;;:::i;:::-;;:::i;36034:218::-;;;;;;:::i;:::-;;:::i;36260:226::-;;;;;;:::i;:::-;;:::i;35034:22::-;;;;;;23774:164;;;;;;:::i;:::-;-1:-1:-1;;;;;23895:25:0;;;23871:4;23895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23774:164;34583:244;;;;;;:::i;:::-;;:::i;20723:292::-;20825:4;-1:-1:-1;;;;;;20849:40:0;;-1:-1:-1;;;20849:40:0;;:105;;-1:-1:-1;;;;;;;20906:48:0;;-1:-1:-1;;;20906:48:0;20849:105;:158;;;-1:-1:-1;;;;;;;;;;19324:40:0;;;20971:36;20842:165;20723:292;-1:-1:-1;;20723:292:0:o;21655:100::-;21709:13;21742:5;21735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21655:100;:::o;23115:221::-;23191:7;26444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26444:16:0;23211:73;;;;-1:-1:-1;;;23211:73:0;;15404:2:1;23211:73:0;;;15386:21:1;15443:2;15423:18;;;15416:30;15482:34;15462:18;;;15455:62;-1:-1:-1;;;15533:18:1;;;15526:42;15585:19;;23211:73:0;;;;;;;;;-1:-1:-1;23304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23304:24:0;;23115:221::o;22652:397::-;22733:13;22749:23;22764:7;22749:14;:23::i;:::-;22733:39;;22797:5;-1:-1:-1;;;;;22791:11:0;:2;-1:-1:-1;;;;;22791:11:0;;;22783:57;;;;-1:-1:-1;;;22783:57:0;;16588:2:1;22783:57:0;;;16570:21:1;16627:2;16607:18;;;16600:30;16666:34;16646:18;;;16639:62;-1:-1:-1;;;16717:18:1;;;16710:31;16758:19;;22783:57:0;16560:223:1;22783:57:0;16071:10;-1:-1:-1;;;;;22861:21:0;;;;:62;;-1:-1:-1;22886:37:0;22903:5;16071:10;23774:164;:::i;22886:37::-;22853:154;;;;-1:-1:-1;;;22853:154:0;;13797:2:1;22853:154:0;;;13779:21:1;13836:2;13816:18;;;13809:30;13875:34;13855:18;;;13848:62;13946:26;13926:18;;;13919:54;13990:19;;22853:154:0;13769:246:1;22853:154:0;23020:21;23029:2;23033:7;23020:8;:21::i;:::-;22652:397;;;:::o;24005:305::-;24166:41;16071:10;24199:7;24166:18;:41::i;:::-;24158:103;;;;-1:-1:-1;;;24158:103:0;;;;;;;:::i;:::-;24274:28;24284:4;24290:2;24294:7;24274:9;:28::i;36763:199::-;36845:10;35313:14;;;;:9;:14;;;;;;;;35305:35;;;;-1:-1:-1;;;35305:35:0;;;;;;;:::i;:::-;36873:6:::1;36868:87;36889:4;:11;36885:1;:15;36868:87;;;36922:21;36931:2;36935:4;36940:1;36935:7;;;;;;-1:-1:-1::0;;;36935:7:0::1;;;;;;;;;;;;;;;36922:8;:21::i;:::-;36902:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36868:87;;;;36763:199:::0;;;:::o;24381:151::-;24485:39;24502:4;24508:2;24512:7;24485:39;;;;;;;;;;;;:16;:39::i;35694:155::-;33702:6;;-1:-1:-1;;;;;33702:6:0;16071:10;33849:23;33841:68;;;;-1:-1:-1;;;33841:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35771:14:0;::::1;;::::0;;;:9:::1;:14;::::0;;;;;;;;:24;;-1:-1:-1;;35771:24:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35811:30;;9644:51:1;;;9711:18;;;9704:50;35811:30:0::1;::::0;9617:18:1;35811:30:0::1;;;;;;;;35694:155:::0;;:::o;35857:169::-;33702:6;;-1:-1:-1;;;;;33702:6:0;16071:10;33849:23;33841:68;;;;-1:-1:-1;;;33841:68:0;;;;;;;:::i;:::-;35925:17:::1;35945:7;35925:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;35963:14:0;;35925:27;;-1:-1:-1;35963:14:0::1;::::0;:7:::1;::::0;-1:-1:-1;35963:14:0::1;::::0;::::1;::::0;-1:-1:-1;35963:14:0;-1:-1:-1;35963:14:0::1;:::i;:::-;;35993:25;36008:3;36013:4;35993:25;;;;;;;:::i;21349:239::-:0;21421:7;21457:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21457:16:0;21492:19;21484:73;;;;-1:-1:-1;;;21484:73:0;;14633:2:1;21484:73:0;;;14615:21:1;14672:2;14652:18;;;14645:30;14711:34;14691:18;;;14684:62;-1:-1:-1;;;14762:18:1;;;14755:39;14811:19;;21484:73:0;14605:231:1;36494:261:0;36576:10;35313:14;;;;:9;:14;;;;;;;;35305:35;;;;-1:-1:-1;;;35305:35:0;;;;;;;:::i;:::-;36621:4:::1;:11;36607:3;:10;:25;36599:47;;;::::0;-1:-1:-1;;;36599:47:0;;11952:2:1;36599:47:0::1;::::0;::::1;11934:21:1::0;11991:1;11971:18;;;11964:29;-1:-1:-1;;;12009:18:1;;;12002:39;12058:18;;36599:47:0::1;11924:158:1::0;36599:47:0::1;36662:6;36657:91;36678:4;:11;36674:1;:15;36657:91;;;36711:25;36720:3;36724:1;36720:6;;;;;;-1:-1:-1::0;;;36720:6:0::1;;;;;;;;;;;;;;;36728:4;36733:1;36728:7;;;;;;-1:-1:-1::0;;;36728:7:0::1;;;;;;;;36711:25;36691:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36657:91;;35211:21:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21079:208::-;21151:7;-1:-1:-1;;;;;21179:19:0;;21171:74;;;;-1:-1:-1;;;21171:74:0;;14222:2:1;21171:74:0;;;14204:21:1;14261:2;14241:18;;;14234:30;14300:34;14280:18;;;14273:62;-1:-1:-1;;;14351:18:1;;;14344:40;14401:19;;21171:74:0;14194:232:1;21171:74:0;-1:-1:-1;;;;;;21263:16:0;;;;;:9;:16;;;;;;;21079:208::o;34280:148::-;33702:6;;-1:-1:-1;;;;;33702:6:0;16071:10;33849:23;33841:68;;;;-1:-1:-1;;;33841:68:0;;;;;;;:::i;:::-;34371:6:::1;::::0;34350:40:::1;::::0;34387:1:::1;::::0;-1:-1:-1;;;;;34371:6:0::1;::::0;34350:40:::1;::::0;34387:1;;34350:40:::1;34401:6;:19:::0;;-1:-1:-1;;;;;;34401:19:0::1;::::0;;34280:148::o;21824:104::-;21880:13;21913:7;21906:14;;;;;:::i;23408:295::-;-1:-1:-1;;;;;23511:24:0;;16071:10;23511:24;;23503:62;;;;-1:-1:-1;;;23503:62:0;;13030:2:1;23503:62:0;;;13012:21:1;13069:2;13049:18;;;13042:30;13108:27;13088:18;;;13081:55;13153:18;;23503:62:0;13002:175:1;23503:62:0;16071:10;23578:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23578:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23578:53:0;;;;;;;;;;23647:48;;9905:41:1;;;23578:42:0;;16071:10;23647:48;;9878:18:1;23647:48:0;;;;;;;23408:295;;:::o;24603:285::-;24735:41;16071:10;24768:7;24735:18;:41::i;:::-;24727:103;;;;-1:-1:-1;;;24727:103:0;;;;;;;:::i;:::-;24841:39;24855:4;24861:2;24865:7;24874:5;24841:13;:39::i;37033:158::-;37164:17;;;;:8;:17;;;;;;;;;37138:44;;37098:13;;37138:44;;37155:7;;37138:44;;:::i;:::-;;;;;;;;;;;;;37124:59;;37033:158;;;:::o;36034:218::-;36098:10;35313:14;;;;:9;:14;;;;;;;;35305:35;;;;-1:-1:-1;;;35305:35:0;;;;;;;:::i;:::-;36121:21:::1;36127:2;36131:10;;36121:5;:21::i;:::-;36162:10;::::0;36153:20:::1;::::0;;;:8:::1;:20;::::0;;;;;;;:26;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;36197:10:0::1;::::0;;36190:18:::1;::::0;;;:6:::1;:18;::::0;;;;:31;;-1:-1:-1;;;;;;36190:31:0::1;36211:10;36190:31;::::0;;36232:12;;;36197:10;36232:12:::1;::::0;::::1;:::i;:::-;;;;;;36034:218:::0;;;:::o;36260:226::-;36328:10;35313:14;;;;:9;:14;;;;;;;;35305:35;;;;-1:-1:-1;;;35305:35:0;;;;;;;:::i;:::-;36351:25:::1;36361:2;36365:10;;36351:9;:25::i;34583:244::-:0;33702:6;;-1:-1:-1;;;;;33702:6:0;16071:10;33849:23;33841:68;;;;-1:-1:-1;;;33841:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34672:22:0;::::1;34664:73;;;::::0;-1:-1:-1;;;34664:73:0;;11188:2:1;34664:73:0::1;::::0;::::1;11170:21:1::0;11227:2;11207:18;;;11200:30;11266:34;11246:18;;;11239:62;-1:-1:-1;;;11317:18:1;;;11310:36;11363:19;;34664:73:0::1;11160:228:1::0;34664:73:0::1;34774:6;::::0;34753:38:::1;::::0;-1:-1:-1;;;;;34753:38:0;;::::1;::::0;34774:6:::1;::::0;34753:38:::1;::::0;34774:6:::1;::::0;34753:38:::1;34802:6;:17:::0;;-1:-1:-1;;;;;;34802:17:0::1;-1:-1:-1::0;;;;;34802:17:0;;;::::1;::::0;;;::::1;::::0;;34583:244::o;30232:174::-;30307:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30307:29:0;-1:-1:-1;;;;;30307:29:0;;;;;;;;:24;;30361:23;30307:24;30361:14;:23::i;:::-;-1:-1:-1;;;;;30352:46:0;;;;;;;;;;;30232:174;;:::o;26649:348::-;26742:4;26444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26444:16:0;26759:73;;;;-1:-1:-1;;;26759:73:0;;13384:2:1;26759:73:0;;;13366:21:1;13423:2;13403:18;;;13396:30;13462:34;13442:18;;;13435:62;-1:-1:-1;;;13513:18:1;;;13506:42;13565:19;;26759:73:0;13356:234:1;26759:73:0;26843:13;26859:23;26874:7;26859:14;:23::i;:::-;26843:39;;26912:5;-1:-1:-1;;;;;26901:16:0;:7;-1:-1:-1;;;;;26901:16:0;;:51;;;;26945:7;-1:-1:-1;;;;;26921:31:0;:20;26933:7;26921:11;:20::i;:::-;-1:-1:-1;;;;;26921:31:0;;26901:51;:87;;;-1:-1:-1;;;;;;23895:25:0;;;23871:4;23895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26956:32;26893:96;26649:348;-1:-1:-1;;;;26649:348:0:o;29570:544::-;29695:4;-1:-1:-1;;;;;29668:31:0;:23;29683:7;29668:14;:23::i;:::-;-1:-1:-1;;;;;29668:31:0;;29660:85;;;;-1:-1:-1;;;29660:85:0;;16178:2:1;29660:85:0;;;16160:21:1;16217:2;16197:18;;;16190:30;16256:34;16236:18;;;16229:62;-1:-1:-1;;;16307:18:1;;;16300:39;16356:19;;29660:85:0;16150:231:1;29660:85:0;-1:-1:-1;;;;;29764:16:0;;29756:65;;;;-1:-1:-1;;;29756:65:0;;12625:2:1;29756:65:0;;;12607:21:1;12664:2;12644:18;;;12637:30;12703:34;12683:18;;;12676:62;-1:-1:-1;;;12754:18:1;;;12747:34;12798:19;;29756:65:0;12597:226:1;29756:65:0;29938:29;29955:1;29959:7;29938:8;:29::i;:::-;-1:-1:-1;;;;;29980:15:0;;;;;;:9;:15;;;;;:20;;29999:1;;29980:15;:20;;29999:1;;29980:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30011:13:0;;;;;;:9;:13;;;;;:18;;30028:1;;30011:13;:18;;30028:1;;30011:18;:::i;:::-;;;;-1:-1:-1;;30040:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30040:21:0;-1:-1:-1;;;;;30040:21:0;;;;;;;;;30079:27;;30040:16;;30079:27;;;;;;;29570:544;;;:::o;25770:272::-;25884:28;25894:4;25900:2;25904:7;25884:9;:28::i;:::-;25931:48;25954:4;25960:2;25964:7;25973:5;25931:22;:48::i;:::-;25923:111;;;;-1:-1:-1;;;25923:111:0;;;;;;;:::i;28262:382::-;-1:-1:-1;;;;;28342:16:0;;28334:61;;;;-1:-1:-1;;;28334:61:0;;15043:2:1;28334:61:0;;;15025:21:1;;;15062:18;;;15055:30;15121:34;15101:18;;;15094:62;15173:18;;28334:61:0;15015:182:1;28334:61:0;26420:4;26444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26444:16:0;:30;28406:58;;;;-1:-1:-1;;;28406:58:0;;11595:2:1;28406:58:0;;;11577:21:1;11634:2;11614:18;;;11607:30;11673;11653:18;;;11646:58;11721:18;;28406:58:0;11567:178:1;28406:58:0;-1:-1:-1;;;;;28535:13:0;;;;;;:9;:13;;;;;:18;;28552:1;;28535:13;:18;;28552:1;;28535:18;:::i;:::-;;;;-1:-1:-1;;28564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28564:21:0;-1:-1:-1;;;;;28564:21:0;;;;;;;;28603:33;;28564:16;;;28603:33;;28564:16;;28603:33;28262:382;;:::o;27339:110::-;27415:26;27425:2;27429:7;27415:26;;;;;;;;;;;;:9;:26::i;:::-;27339:110;;:::o;30971:843::-;31092:4;-1:-1:-1;;;;;31118:13:0;;8467:20;8506:8;31114:693;;31154:72;;-1:-1:-1;;;31154:72:0;;-1:-1:-1;;;;;31154:36:0;;;;;:72;;16071:10;;31205:4;;31211:7;;31220:5;;31154:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31154:72:0;;;;;;;;-1:-1:-1;;31154:72:0;;;;;;;;;;;;:::i;:::-;;;31150:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31400:13:0;;31396:341;;31443:60;;-1:-1:-1;;;31443:60:0;;;;;;;:::i;31396:341::-;31687:6;31681:13;31672:6;31668:2;31664:15;31657:38;31150:602;-1:-1:-1;;;;;;31277:55:0;-1:-1:-1;;;31277:55:0;;-1:-1:-1;31270:62:0;;31114:693;-1:-1:-1;31791:4:0;30971:843;;;;;;:::o;27676:250::-;27772:18;27778:2;27782:7;27772:5;:18::i;:::-;27809:54;27840:1;27844:2;27848:7;27857:5;27809:22;:54::i;:::-;27801:117;;;;-1:-1:-1;;;27801:117:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;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:2;;;309:1;306;299:12;268:2;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;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:857::-;656:5;709:3;702:4;694:6;690:17;686:27;676:2;;731:5;724;717:20;676:2;771:6;758:20;797:4;821:60;837:43;877:2;837:43;:::i;:::-;821:60;:::i;:::-;903:3;927:2;922:3;915:15;955:2;950:3;946:12;939:19;;990:2;982:6;978:15;1042:3;1037:2;1031;1028:1;1024:10;1016:6;1012:23;1008:32;1005:41;1002:2;;;1063:5;1056;1049:20;1002:2;1089:5;1103:328;1117:2;1114:1;1111:9;1103:328;;;1194:3;1181:17;1230:18;1217:11;1214:35;1211:2;;;1266:5;1259;1252:20;1211:2;1299:57;1352:3;1347:2;1333:11;1325:6;1321:24;1317:33;1299:57;:::i;:::-;1287:70;;-1:-1:-1;1377:12:1;;;;1409;;;;1135:1;1128:9;1103:328;;;-1:-1:-1;1449:5:1;;666:794;-1:-1:-1;;;;;;;666:794:1:o;1465:229::-;1508:5;1561:3;1554:4;1546:6;1542:17;1538:27;1528:2;;1583:5;1576;1569:20;1528:2;1609:79;1684:3;1675:6;1662:20;1655:4;1647:6;1643:17;1609:79;:::i;:::-;1600:88;1518:176;-1:-1:-1;;;1518:176:1:o;1699:196::-;1758:6;1811:2;1799:9;1790:7;1786:23;1782:32;1779:2;;;1832:6;1824;1817:22;1779:2;1860:29;1879:9;1860:29;:::i;1900:270::-;1968:6;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:2;;;2050:6;2042;2035:22;1997:2;2078:29;2097:9;2078:29;:::i;:::-;2068:39;;2126:38;2160:2;2149:9;2145:18;2126:38;:::i;:::-;2116:48;;1987:183;;;;;:::o;2175:338::-;2252:6;2260;2268;2321:2;2309:9;2300:7;2296:23;2292:32;2289:2;;;2342:6;2334;2327:22;2289:2;2370:29;2389:9;2370:29;:::i;:::-;2360:39;;2418:38;2452:2;2441:9;2437:18;2418:38;:::i;:::-;2408:48;;2503:2;2492:9;2488:18;2475:32;2465:42;;2279:234;;;;;:::o;2518:696::-;2613:6;2621;2629;2637;2690:3;2678:9;2669:7;2665:23;2661:33;2658:2;;;2712:6;2704;2697:22;2658:2;2740:29;2759:9;2740:29;:::i;:::-;2730:39;;2788:38;2822:2;2811:9;2807:18;2788:38;:::i;:::-;2778:48;;2873:2;2862:9;2858:18;2845:32;2835:42;;2928:2;2917:9;2913:18;2900:32;2955:18;2947:6;2944:30;2941:2;;;2992:6;2984;2977:22;2941:2;3020:22;;3073:4;3065:13;;3061:27;-1:-1:-1;3051:2:1;;3107:6;3099;3092:22;3051:2;3135:73;3200:7;3195:2;3182:16;3177:2;3173;3169:11;3135:73;:::i;:::-;3125:83;;;2648:566;;;;;;;:::o;3219:451::-;3322:6;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:2;;;3404:6;3396;3389:22;3351:2;3432:29;3451:9;3432:29;:::i;:::-;3422:39;;3512:2;3501:9;3497:18;3484:32;3539:18;3531:6;3528:30;3525:2;;;3576:6;3568;3561:22;3525:2;3604:60;3656:7;3647:6;3636:9;3632:22;3604:60;:::i;:::-;3594:70;;;3341:329;;;;;:::o;3675:367::-;3740:6;3748;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3822:6;3814;3807:22;3769:2;3850:29;3869:9;3850:29;:::i;:::-;3840:39;;3929:2;3918:9;3914:18;3901:32;3976:5;3969:13;3962:21;3955:5;3952:32;3942:2;;4003:6;3995;3988:22;3942:2;4031:5;4021:15;;;3759:283;;;;;:::o;4047:416::-;4125:6;4133;4186:2;4174:9;4165:7;4161:23;4157:32;4154:2;;;4207:6;4199;4192:22;4154:2;4235:29;4254:9;4235:29;:::i;:::-;4225:39;;4315:2;4304:9;4300:18;4287:32;4342:18;4334:6;4331:30;4328:2;;;4379:6;4371;4364:22;4328:2;4407:50;4449:7;4440:6;4429:9;4425:22;4407:50;:::i;4468:264::-;4536:6;4544;4597:2;4585:9;4576:7;4572:23;4568:32;4565:2;;;4618:6;4610;4603:22;4565:2;4646:29;4665:9;4646:29;:::i;:::-;4636:39;4722:2;4707:18;;;;4694:32;;-1:-1:-1;;;4555:177:1:o;4737:1221::-;4865:6;4873;4926:2;4914:9;4905:7;4901:23;4897:32;4894:2;;;4947:6;4939;4932:22;4894:2;4992:9;4979:23;5021:18;5062:2;5054:6;5051:14;5048:2;;;5083:6;5075;5068:22;5048:2;5126:6;5115:9;5111:22;5101:32;;5171:7;5164:4;5160:2;5156:13;5152:27;5142:2;;5198:6;5190;5183:22;5142:2;5239;5226:16;5261:4;5285:60;5301:43;5341:2;5301:43;:::i;5285:60::-;5367:3;5391:2;5386:3;5379:15;5419:2;5414:3;5410:12;5403:19;;5450:2;5446;5442:11;5498:7;5493:2;5487;5484:1;5480:10;5476:2;5472:19;5468:28;5465:41;5462:2;;;5524:6;5516;5509:22;5462:2;5551:6;5542:15;;5566:169;5580:2;5577:1;5574:9;5566:169;;;5637:23;5656:3;5637:23;:::i;:::-;5625:36;;5598:1;5591:9;;;;;5681:12;;;;5713;;5566:169;;;-1:-1:-1;5754:5:1;-1:-1:-1;;5797:18:1;;5784:32;;-1:-1:-1;;5828:16:1;;;5825:2;;;5862:6;5854;5847:22;5825:2;;5890:62;5944:7;5933:8;5922:9;5918:24;5890:62;:::i;5963:255::-;6021:6;6074:2;6062:9;6053:7;6049:23;6045:32;6042:2;;;6095:6;6087;6080:22;6042:2;6139:9;6126:23;6158:30;6182:5;6158:30;:::i;6223:259::-;6292:6;6345:2;6333:9;6324:7;6320:23;6316:32;6313:2;;;6366:6;6358;6351:22;6313:2;6403:9;6397:16;6422:30;6446:5;6422:30;:::i;6487:342::-;6556:6;6609:2;6597:9;6588:7;6584:23;6580:32;6577:2;;;6630:6;6622;6615:22;6577:2;6675:9;6662:23;6708:18;6700:6;6697:30;6694:2;;;6745:6;6737;6730:22;6694:2;6773:50;6815:7;6806:6;6795:9;6791:22;6773:50;:::i;6834:190::-;6893:6;6946:2;6934:9;6925:7;6921:23;6917:32;6914:2;;;6967:6;6959;6952:22;6914:2;-1:-1:-1;6995:23:1;;6904:120;-1:-1:-1;6904:120:1:o;7029:475::-;7070:3;7108:5;7102:12;7135:6;7130:3;7123:19;7160:3;7172:162;7186:6;7183:1;7180:13;7172:162;;;7248:4;7304:13;;;7300:22;;7294:29;7276:11;;;7272:20;;7265:59;7201:12;7172:162;;;7352:6;7349:1;7346:13;7343:2;;;7418:3;7411:4;7402:6;7397:3;7393:16;7389:27;7382:40;7343:2;-1:-1:-1;7486:2:1;7465:15;-1:-1:-1;;7461:29:1;7452:39;;;;7493:4;7448:50;;7078:426;-1:-1:-1;;7078:426:1:o;7509:979::-;7594:12;;7559:3;;7651:1;7671:18;;;;7724;;;;7751:2;;7805:4;7797:6;7793:17;7783:27;;7751:2;7831;7879;7871:6;7868:14;7848:18;7845:38;7842:2;;;-1:-1:-1;;;7906:33:1;;7962:4;7959:1;7952:15;7992:4;7913:3;7980:17;7842:2;8023:18;8050:104;;;;8168:1;8163:319;;;;8016:466;;8050:104;-1:-1:-1;;8083:24:1;;8071:37;;8128:16;;;;-1:-1:-1;8050:104:1;;8163:319;17903:4;17922:17;;;17972:4;17956:21;;8257:1;8271:165;8285:6;8282:1;8279:13;8271:165;;;8363:14;;8350:11;;;8343:35;8406:16;;;;8300:10;;8271:165;;;8275:3;;8465:6;8460:3;8456:16;8449:23;;8016:466;;;;;;;7567:921;;;;:::o;8493:277::-;8666:3;8691:73;8725:38;8759:3;8751:6;8725:38;:::i;:::-;8717:6;8691:73;:::i;8983:488::-;-1:-1:-1;;;;;9252:15:1;;;9234:34;;9304:15;;9299:2;9284:18;;9277:43;9351:2;9336:18;;9329:34;;;9399:3;9394:2;9379:18;;9372:31;;;9177:4;;9420:45;;9445:19;;9437:6;9420:45;:::i;:::-;9412:53;9186:285;-1:-1:-1;;;;;;9186:285:1:o;9957:219::-;10106:2;10095:9;10088:21;10069:4;10126:44;10166:2;10155:9;10151:18;10143:6;10126:44;:::i;10181:381::-;10378:2;10367:9;10360:21;10341:4;10404:44;10444:2;10433:9;10429:18;10421:6;10404:44;:::i;:::-;10496:9;10488:6;10484:22;10479:2;10468:9;10464:18;10457:50;10524:32;10549:6;10541;10524:32;:::i;:::-;10516:40;10350:212;-1:-1:-1;;;;;10350:212:1:o;10567:414::-;10769:2;10751:21;;;10808:2;10788:18;;;10781:30;10847:34;10842:2;10827:18;;10820:62;-1:-1:-1;;;10913:2:1;10898:18;;10891:48;10971:3;10956:19;;10741:240::o;12087:331::-;12289:2;12271:21;;;12328:1;12308:18;;;12301:29;-1:-1:-1;;;12361:2:1;12346:18;;12339:38;12409:2;12394:18;;12261:157::o;15615:356::-;15817:2;15799:21;;;15836:18;;;15829:30;15895:34;15890:2;15875:18;;15868:62;15962:2;15947:18;;15789:182::o;16788:413::-;16990:2;16972:21;;;17029:2;17009:18;;;17002:30;17068:34;17063:2;17048:18;;17041:62;-1:-1:-1;;;17134:2:1;17119:18;;17112:47;17191:3;17176:19;;16962:239::o;17388:275::-;17459:2;17453:9;17524:2;17505:13;;-1:-1:-1;;17501:27:1;17489:40;;17559:18;17544:34;;17580:22;;;17541:62;17538:2;;;17606:18;;:::i;:::-;17642:2;17635:22;17433:230;;-1:-1:-1;17433:230:1:o;17668:183::-;17728:4;17761:18;17753:6;17750:30;17747:2;;;17783:18;;:::i;:::-;-1:-1:-1;17828:1:1;17824:14;17840:4;17820:25;;17737:114::o;17988:128::-;18028:3;18059:1;18055:6;18052:1;18049:13;18046:2;;;18065:18;;:::i;:::-;-1:-1:-1;18101:9:1;;18036:80::o;18121:125::-;18161:4;18189:1;18186;18183:8;18180:2;;;18194:18;;:::i;:::-;-1:-1:-1;18231:9:1;;18170:76::o;18251:380::-;18330:1;18326:12;;;;18373;;;18394:2;;18448:4;18440:6;18436:17;18426:27;;18394:2;18501;18493:6;18490:14;18470:18;18467:38;18464:2;;;18547:10;18542:3;18538:20;18535:1;18528:31;18582:4;18579:1;18572:15;18610:4;18607:1;18600:15;18464:2;;18306:325;;;:::o;18636:135::-;18675:3;-1:-1:-1;;18696:17:1;;18693:2;;;18716:18;;:::i;:::-;-1:-1:-1;18763:1:1;18752:13;;18683:88::o;18776:127::-;18837:10;18832:3;18828:20;18825:1;18818:31;18868:4;18865:1;18858:15;18892:4;18889:1;18882:15;18908:127;18969:10;18964:3;18960:20;18957:1;18950:31;19000:4;18997:1;18990:15;19024:4;19021:1;19014:15;19040:131;-1:-1:-1;;;;;;19114:32:1;;19104:43;;19094:2;;19161:1;19158;19151:12;19094:2;19084:87;:::o

Swarm Source

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