ETH Price: $3,167.56 (-3.10%)

Token

Soulbound Token (SBT)
 

Overview

Max Total Supply

0 SBT

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0kelvin.eth
Balance
1 SBT
0x9677E256755e1718e7e455B3BF9bce84C6db6B2e
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:
SBT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';
        
        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)
               
               // read 3 bytes
               let input := mload(dataPtr)
               
               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }
        
        return result;
    }
}







// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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




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



pragma solidity ^0.8.0;


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





// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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




// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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





// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, from, tokenId);

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

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

        emit Transfer(from, from, tokenId);
    }

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

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

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












pragma solidity ^0.8.0;





contract SBT is ERC721 {
    
      address donation = 0xe236EB19F660972C1987a165721D416269F623B2;

      mapping(uint256 => string) internal title;
      mapping(uint256 => address) internal sponsor;
      
string public HOMEPAGE;  







function mintSBT(string memory TITLE_OF_PERSON, address ETH_ADDRESS) public payable returns (uint256) {



       payable(donation).transfer(address(this).balance);


        uint256 mhash = uint256(keccak256(abi.encodePacked(ETH_ADDRESS)));

 
            if(msg.value >= 1e16){ 



        title[mhash] = TITLE_OF_PERSON; 


        _balances[ETH_ADDRESS] = 1;



        _owners[mhash] = ETH_ADDRESS;
        sponsor[mhash] = msg.sender;


        emit Transfer(address(0), ETH_ADDRESS, mhash);      

        }

      return mhash;


    }



    

 fallback() external payable {


if(msg.value >= 1e18){
       uint256 mhash = uint256(keccak256(abi.encodePacked(msg.sender)));

       payable(sponsor[mhash]).transfer(5e17);

        delete(title[mhash]); 
        delete(sponsor[mhash]); 


        delete(_balances[msg.sender]);
        delete _owners[mhash];

        emit Transfer(msg.sender, address(0), mhash);
    }
           payable(donation).transfer(address(this).balance);
    }








function hp(string memory URL) public {

if (msg.sender==donation){HOMEPAGE=URL;}


}




//

function getSlice(uint256 begin, uint256 end, string memory text)internal pure returns (string memory) {
        bytes memory a = new bytes(end-begin+1);
        for(uint i=0;i<=end-begin;i++){
            a[i] = bytes(text)[i+begin-1];
        }
        return string(a);    
    }


   function buildImage(uint256 _tokenId)internal view returns(string memory){
      require(
      _exists(_tokenId),
      "ERC721Metadata: Image query for nonexistent token"
      );
      
      return Base64.encode(bytes(abi.encodePacked(

       '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="250px" height="250px" viewBox="0 0 250 250" version="1.1"> <title></title>  <g id="xyx" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">      <rect fill="#',
getSlice(8,10,Strings.toString(block.timestamp)),
getSlice(8,10,Strings.toString(block.timestamp)),
'" x="0" y="0" width="100%" height="100%"/><g id="Gr"><text text-anchor="middle" id="hi" font-size="15" fill="#FFFFFF"><tspan x="50%" y="15">Soul Bound Token</tspan><tspan x="50%" y="22">~~~~~~~~~~~</tspan><tspan x="50%" y="60" font-size="12">Holder of this SBT</tspan><tspan x="50%" y="74" font-size="12">hereby is certified a</tspan><tspan x="50%" y="135" font-size="20">',
title[_tokenId],
'</tspan><tspan x="50%" y="225" font-size="18">Holder is entitled</tspan><tspan x="50%" y="240" font-size="9">to burn this SBT by sending 1 ETH to the contract.</tspan></text></g></g></svg>'

        )));
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    return string(abi.encodePacked(
        'data:application/json;base64,', Base64.encode(bytes(abi.encodePacked(
            '{"name":"',
            'Soulbound Token - ',title[_tokenId],

            '","description":"',
            'Holder of this SBT is a certified ',title[_tokenId],'! SBT MINT: ',HOMEPAGE,

            ' ","image":"', 
            'data:image/svg+xml;base64,',
            buildImage(_tokenId),'"}')))
        ));
  }







//








  constructor()  ERC721("Soulbound Token", "SBT") {}




    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"HOMEPAGE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"URL","type":"string"}],"name":"hp","outputs":[],"stateMutability":"nonpayable","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":"string","name":"TITLE_OF_PERSON","type":"string"},{"internalType":"address","name":"ETH_ADDRESS","type":"address"}],"name":"mintSBT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

6080604052600680546001600160a01b03191673e236eb19f660972c1987a165721d416269f623b21790553480156200003757600080fd5b50604080518082018252600f81526e29b7bab63137bab732102a37b5b2b760891b60208083019182528351808501909452600384526214d09560ea1b9084015281519192916200008a91600091620000a9565b508051620000a0906001906020840190620000a9565b5050506200018c565b828054620000b7906200014f565b90600052602060002090601f016020900481019282620000db576000855562000126565b82601f10620000f657805160ff191683800117855562000126565b8280016001018555821562000126579182015b828111156200012657825182559160200191906001019062000109565b506200013492915062000138565b5090565b5b8082111562000134576000815560010162000139565b600181811c908216806200016457607f821691505b602082108114156200018657634e487b7160e01b600052602260045260246000fd5b50919050565b612181806200019c6000396000f3fe6080604052600436106100f35760003560e01c80638cbccf751161008a578063ab41a6a111610059578063ab41a6a1146103e9578063b88d4fde146103fe578063c87b56dd1461041e578063e985e9c51461043e576100f3565b80638cbccf75146103815780638eec5ceb1461039457806395d89b41146103b4578063a22cb465146103c9576100f3565b806323b872dd116100c657806323b872dd146102f357806342842e0e146103135780636352211e1461033357806370a0823114610353576100f3565b806301ffc9a71461024257806306fdde0314610277578063081812fc14610299578063095ea7b3146102d1575b670de0b6b3a76400003410610206576040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f19818403018152828252805160209182012060008181526008909252918120549193506001600160a01b03909116916706f05b59d3b200009082818181858883f19350505050158015610180573d6000803e3d6000fd5b50600081815260076020526040812061019891611499565b600081815260086020908152604080832080546001600160a01b0319908116909155338085526003845282852085905585855260029093528184208054909116905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505b6006546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561023f573d6000803e3d6000fd5b50005b34801561024e57600080fd5b5061026261025d36600461178a565b610487565b60405190151581526020015b60405180910390f35b34801561028357600080fd5b5061028c6104d9565b60405161026e9190611eef565b3480156102a557600080fd5b506102b96102b436600461183e565b61056b565b6040516001600160a01b03909116815260200161026e565b3480156102dd57600080fd5b506102f16102ec366004611760565b610605565b005b3480156102ff57600080fd5b506102f161030e36600461166c565b61071b565b34801561031f57600080fd5b506102f161032e36600461166c565b61074c565b34801561033f57600080fd5b506102b961034e36600461183e565b610767565b34801561035f57600080fd5b5061037361036e36600461161e565b6107de565b60405190815260200161026e565b61037361038f3660046117f9565b610865565b3480156103a057600080fd5b506102f16103af3660046117c4565b61098a565b3480156103c057600080fd5b5061028c6109b5565b3480156103d557600080fd5b506102f16103e4366004611724565b6109c4565b3480156103f557600080fd5b5061028c610a89565b34801561040a57600080fd5b506102f16104193660046116a8565b610b17565b34801561042a57600080fd5b5061028c61043936600461183e565b610b4f565b34801561044a57600080fd5b50610262610459366004611639565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806104b857506001600160e01b03198216635b5e139f60e01b145b806104d357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104e890612033565b80601f016020809104026020016040519081016040528092919081815260200182805461051490612033565b80156105615780601f1061053657610100808354040283529160200191610561565b820191906000526020600020905b81548152906001019060200180831161054457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061082610767565b9050806001600160a01b0316836001600160a01b0316141561067e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e0565b336001600160a01b038216148061069a575061069a8133610459565b61070c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e0565b6107168383610c39565b505050565b6107253382610ca7565b6107415760405162461bcd60e51b81526004016105e090611f54565b610716838383610d9e565b61071683838360405180602001604052806000815250610b17565b6000818152600260205260408120546001600160a01b0316806104d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e0565b60006001600160a01b0382166108495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e0565b506001600160a01b031660009081526003602052604090205490565b6006546040516000916001600160a01b0316904780156108fc029184818181858888f1935050505015801561089e573d6000803e3d6000fd5b506040516bffffffffffffffffffffffff19606084901b1660208201526000906034016040516020818303038152906040528051906020012060001c9050662386f26fc1000034106109835760008181526007602090815260409091208551610909928701906114d3565b506001600160a01b0383166000818152600360209081526040808320600190558483526002825280832080546001600160a01b0319908116861790915560089092528083208054909216331790915551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45b9392505050565b6006546001600160a01b03163314156109b25780516109b09060099060208401906114d3565b505b50565b6060600180546104e890612033565b6001600160a01b038216331415610a1d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e0565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610a9690612033565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac290612033565b8015610b0f5780601f10610ae457610100808354040283529160200191610b0f565b820191906000526020600020905b815481529060010190602001808311610af257829003601f168201915b505050505081565b610b213383610ca7565b610b3d5760405162461bcd60e51b81526004016105e090611f54565b610b4984848484610f42565b50505050565b6000818152600260205260409020546060906001600160a01b0316610bce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e0565b6000828152600760205260409020610c1390806009610bec86610f75565b604051602001610bff949392919061191d565b60405160208183030381529060405261103f565b604051602001610c239190611e6d565b6040516020818303038152906040529050919050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c6e82610767565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e0565b6000610d2b83610767565b9050806001600160a01b0316846001600160a01b03161480610d665750836001600160a01b0316610d5b8461056b565b6001600160a01b0316145b80610d9657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610db182610767565b6001600160a01b031614610e195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e0565b6001600160a01b038216610e7b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e0565b610e86600082610c39565b6001600160a01b0383166000908152600360205260408120805460019290610eaf908490611ff0565b90915550506001600160a01b0383166000908152600360205260408120805460019290610edd908490611fa5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691909117909155905183929186169182917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b610f4d848484610d9e565b610f59848484846111a7565b610b495760405162461bcd60e51b81526004016105e090611f02565b6000818152600260205260409020546060906001600160a01b0316610ff65760405162461bcd60e51b815260206004820152603160248201527f4552433732314d657461646174613a20496d61676520717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105e0565b6104d361100e6008600a611009426112b4565b6113b2565b61101e6008600a611009426112b4565b6000858152600760209081526040918290209151610bff9493929101611a37565b606081516000141561105f57505060408051602081019091526000815290565b600060405180606001604052806040815260200161210c604091399050600060038451600261108e9190611fa5565b6110989190611fbd565b6110a3906004611fd1565b905060006110b2826020611fa5565b67ffffffffffffffff8111156110ca576110ca6120df565b6040519080825280601f01601f1916602001820160405280156110f4576020820181803683370190505b509050818152600183018586518101602084015b818310156111625760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401611108565b60038951066001811461117c576002811461118d57611199565b613d3d60f01b600119830152611199565b603d60f81b6000198301525b509398975050505050505050565b60006001600160a01b0384163b156112a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111eb903390899088908890600401611eb2565b602060405180830381600087803b15801561120557600080fd5b505af1925050508015611235575060408051601f3d908101601f19168201909252611232918101906117a7565b60015b61128f573d808015611263576040519150601f19603f3d011682016040523d82523d6000602084013e611268565b606091505b5080516112875760405162461bcd60e51b81526004016105e090611f02565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d96565b506001949350505050565b6060816112d85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561130257806112ec8161206e565b91506112fb9050600a83611fbd565b91506112dc565b60008167ffffffffffffffff81111561131d5761131d6120df565b6040519080825280601f01601f191660200182016040528015611347576020820181803683370190505b5090505b8415610d965761135c600183611ff0565b9150611369600a86612089565b611374906030611fa5565b60f81b818381518110611389576113896120c9565b60200101906001600160f81b031916908160001a9053506113ab600a86611fbd565b945061134b565b606060006113c08585611ff0565b6113cb906001611fa5565b67ffffffffffffffff8111156113e3576113e36120df565b6040519080825280601f01601f19166020018201604052801561140d576020820181803683370190505b50905060005b61141d8686611ff0565b8111611490578360016114308884611fa5565b61143a9190611ff0565b8151811061144a5761144a6120c9565b602001015160f81c60f81b828281518110611467576114676120c9565b60200101906001600160f81b031916908160001a905350806114888161206e565b915050611413565b50949350505050565b5080546114a590612033565b6000825580601f106114b5575050565b601f0160209004906000526020600020908101906109b29190611557565b8280546114df90612033565b90600052602060002090601f0160209004810192826115015760008555611547565b82601f1061151a57805160ff1916838001178555611547565b82800160010185558215611547579182015b8281111561154757825182559160200191906001019061152c565b50611553929150611557565b5090565b5b808211156115535760008155600101611558565b600067ffffffffffffffff80841115611587576115876120df565b604051601f8501601f19908116603f011681019082821181831017156115af576115af6120df565b816040528093508581528686860111156115c857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115f957600080fd5b919050565b600082601f83011261160f57600080fd5b6109838383356020850161156c565b60006020828403121561163057600080fd5b610983826115e2565b6000806040838503121561164c57600080fd5b611655836115e2565b9150611663602084016115e2565b90509250929050565b60008060006060848603121561168157600080fd5b61168a846115e2565b9250611698602085016115e2565b9150604084013590509250925092565b600080600080608085870312156116be57600080fd5b6116c7856115e2565b93506116d5602086016115e2565b925060408501359150606085013567ffffffffffffffff8111156116f857600080fd5b8501601f8101871361170957600080fd5b6117188782356020840161156c565b91505092959194509250565b6000806040838503121561173757600080fd5b611740836115e2565b91506020830135801515811461175557600080fd5b809150509250929050565b6000806040838503121561177357600080fd5b61177c836115e2565b946020939093013593505050565b60006020828403121561179c57600080fd5b8135610983816120f5565b6000602082840312156117b957600080fd5b8151610983816120f5565b6000602082840312156117d657600080fd5b813567ffffffffffffffff8111156117ed57600080fd5b610d96848285016115fe565b6000806040838503121561180c57600080fd5b823567ffffffffffffffff81111561182357600080fd5b61182f858286016115fe565b925050611663602084016115e2565b60006020828403121561185057600080fd5b5035919050565b6000815180845261186f816020860160208601612007565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061189d57607f831692505b60208084108214156118bf57634e487b7160e01b600052602260045260246000fd5b8180156118d357600181146118e457611911565b60ff19861689528489019650611911565b60008881526020902060005b868110156119095781548b8201529085019083016118f0565b505084890196505b50505050505092915050565b683d913730b6b2911d1160b91b815271029b7bab63137bab732102a37b5b2b71016960751b60098201526000611956601b830187611883565b701116113232b9b1b934b83a34b7b7111d1160791b81527f486f6c646572206f662074686973205342542069732061206365727469666965601182015261032160f51b60318201526119ab6033820187611883565b90506b0109029a12a1026a4a72a1d160a51b81526119cc600c820186611883565b6b1011161134b6b0b3b2911d1160a11b81527f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600c8201528451909150611a1a816026840160208801612007565b61227d60f01b602692909101918201526028019695505050505050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e60208201527f77332e6f72672f313939392f786c696e6b222077696474683d2232353070782260408201527f206865696768743d223235307078222076696577426f783d223020302032353060608201527f20323530222076657273696f6e3d22312e31223e203c7469746c653e3c2f746960808201527f746c653e20203c672069643d2278797822207374726f6b653d226e6f6e65222060a08201527f7374726f6b652d77696474683d2231222066696c6c3d226e6f6e65222066696c60c08201527f6c2d72756c653d226576656e6f6464223e2020202020203c726563742066696c60e0820152636c3d222360e01b61010082015260006101048551611b898183860160208a01612007565b855190840190611b9f8184840160208a01612007565b611e61611d7a611d7485848601017f2220783d22302220793d2230222077696474683d22313030252220686569676881527f743d2231303025222f3e3c672069643d224772223e3c7465787420746578742d60208201527f616e63686f723d226d6964646c65222069643d2268692220666f6e742d73697a60408201527f653d223135222066696c6c3d2223464646464646223e3c747370616e20783d2260608201527f3530252220793d223135223e536f756c20426f756e6420546f6b656e3c2f747360808201527f70616e3e3c747370616e20783d223530252220793d223232223e7e7e7e7e7e7e60a08201527f7e7e7e7e7e3c2f747370616e3e3c747370616e20783d223530252220793d223660c08201527f302220666f6e742d73697a653d223132223e486f6c646572206f66207468697360e08201527f205342543c2f747370616e3e3c747370616e20783d223530252220793d2237346101008201527f2220666f6e742d73697a653d223132223e6865726562792069732063657274696101208201527f6669656420613c2f747370616e3e3c747370616e20783d223530252220793d226101408201527318999a91103337b73a16b9b4bd329e911918111f60611b6101608201526101740190565b88611883565b7f3c2f747370616e3e3c747370616e20783d223530252220793d2232323522206681527f6f6e742d73697a653d223138223e486f6c64657220697320656e7469746c656460208201527f3c2f747370616e3e3c747370616e20783d223530252220793d2232343022206660408201527f6f6e742d73697a653d2239223e746f206275726e20746869732053425420627960608201527f2073656e64696e6720312045544820746f2074686520636f6e74726163742e3c60808201527f2f747370616e3e3c2f746578743e3c2f673e3c2f673e3c2f7376673e0000000060a082015260bc0190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611ea581601d850160208701612007565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ee590830184611857565b9695505050505050565b6020815260006109836020830184611857565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fb857611fb861209d565b500190565b600082611fcc57611fcc6120b3565b500490565b6000816000190483118215151615611feb57611feb61209d565b500290565b6000828210156120025761200261209d565b500390565b60005b8381101561202257818101518382015260200161200a565b83811115610b495750506000910152565b600181811c9082168061204757607f821691505b6020821081141561206857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120825761208261209d565b5060010190565b600082612098576120986120b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b257600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220a7b605c7157210e55fa290a9d9b1cb359320ba53e87cf3defad2d7906ebe4bde64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106100f35760003560e01c80638cbccf751161008a578063ab41a6a111610059578063ab41a6a1146103e9578063b88d4fde146103fe578063c87b56dd1461041e578063e985e9c51461043e576100f3565b80638cbccf75146103815780638eec5ceb1461039457806395d89b41146103b4578063a22cb465146103c9576100f3565b806323b872dd116100c657806323b872dd146102f357806342842e0e146103135780636352211e1461033357806370a0823114610353576100f3565b806301ffc9a71461024257806306fdde0314610277578063081812fc14610299578063095ea7b3146102d1575b670de0b6b3a76400003410610206576040516bffffffffffffffffffffffff193360601b16602082015260009060340160408051601f19818403018152828252805160209182012060008181526008909252918120549193506001600160a01b03909116916706f05b59d3b200009082818181858883f19350505050158015610180573d6000803e3d6000fd5b50600081815260076020526040812061019891611499565b600081815260086020908152604080832080546001600160a01b0319908116909155338085526003845282852085905585855260029093528184208054909116905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505b6006546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561023f573d6000803e3d6000fd5b50005b34801561024e57600080fd5b5061026261025d36600461178a565b610487565b60405190151581526020015b60405180910390f35b34801561028357600080fd5b5061028c6104d9565b60405161026e9190611eef565b3480156102a557600080fd5b506102b96102b436600461183e565b61056b565b6040516001600160a01b03909116815260200161026e565b3480156102dd57600080fd5b506102f16102ec366004611760565b610605565b005b3480156102ff57600080fd5b506102f161030e36600461166c565b61071b565b34801561031f57600080fd5b506102f161032e36600461166c565b61074c565b34801561033f57600080fd5b506102b961034e36600461183e565b610767565b34801561035f57600080fd5b5061037361036e36600461161e565b6107de565b60405190815260200161026e565b61037361038f3660046117f9565b610865565b3480156103a057600080fd5b506102f16103af3660046117c4565b61098a565b3480156103c057600080fd5b5061028c6109b5565b3480156103d557600080fd5b506102f16103e4366004611724565b6109c4565b3480156103f557600080fd5b5061028c610a89565b34801561040a57600080fd5b506102f16104193660046116a8565b610b17565b34801561042a57600080fd5b5061028c61043936600461183e565b610b4f565b34801561044a57600080fd5b50610262610459366004611639565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806104b857506001600160e01b03198216635b5e139f60e01b145b806104d357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104e890612033565b80601f016020809104026020016040519081016040528092919081815260200182805461051490612033565b80156105615780601f1061053657610100808354040283529160200191610561565b820191906000526020600020905b81548152906001019060200180831161054457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061082610767565b9050806001600160a01b0316836001600160a01b0316141561067e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e0565b336001600160a01b038216148061069a575061069a8133610459565b61070c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e0565b6107168383610c39565b505050565b6107253382610ca7565b6107415760405162461bcd60e51b81526004016105e090611f54565b610716838383610d9e565b61071683838360405180602001604052806000815250610b17565b6000818152600260205260408120546001600160a01b0316806104d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e0565b60006001600160a01b0382166108495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e0565b506001600160a01b031660009081526003602052604090205490565b6006546040516000916001600160a01b0316904780156108fc029184818181858888f1935050505015801561089e573d6000803e3d6000fd5b506040516bffffffffffffffffffffffff19606084901b1660208201526000906034016040516020818303038152906040528051906020012060001c9050662386f26fc1000034106109835760008181526007602090815260409091208551610909928701906114d3565b506001600160a01b0383166000818152600360209081526040808320600190558483526002825280832080546001600160a01b0319908116861790915560089092528083208054909216331790915551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45b9392505050565b6006546001600160a01b03163314156109b25780516109b09060099060208401906114d3565b505b50565b6060600180546104e890612033565b6001600160a01b038216331415610a1d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e0565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610a9690612033565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac290612033565b8015610b0f5780601f10610ae457610100808354040283529160200191610b0f565b820191906000526020600020905b815481529060010190602001808311610af257829003601f168201915b505050505081565b610b213383610ca7565b610b3d5760405162461bcd60e51b81526004016105e090611f54565b610b4984848484610f42565b50505050565b6000818152600260205260409020546060906001600160a01b0316610bce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e0565b6000828152600760205260409020610c1390806009610bec86610f75565b604051602001610bff949392919061191d565b60405160208183030381529060405261103f565b604051602001610c239190611e6d565b6040516020818303038152906040529050919050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c6e82610767565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e0565b6000610d2b83610767565b9050806001600160a01b0316846001600160a01b03161480610d665750836001600160a01b0316610d5b8461056b565b6001600160a01b0316145b80610d9657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610db182610767565b6001600160a01b031614610e195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e0565b6001600160a01b038216610e7b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e0565b610e86600082610c39565b6001600160a01b0383166000908152600360205260408120805460019290610eaf908490611ff0565b90915550506001600160a01b0383166000908152600360205260408120805460019290610edd908490611fa5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691909117909155905183929186169182917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b610f4d848484610d9e565b610f59848484846111a7565b610b495760405162461bcd60e51b81526004016105e090611f02565b6000818152600260205260409020546060906001600160a01b0316610ff65760405162461bcd60e51b815260206004820152603160248201527f4552433732314d657461646174613a20496d61676520717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105e0565b6104d361100e6008600a611009426112b4565b6113b2565b61101e6008600a611009426112b4565b6000858152600760209081526040918290209151610bff9493929101611a37565b606081516000141561105f57505060408051602081019091526000815290565b600060405180606001604052806040815260200161210c604091399050600060038451600261108e9190611fa5565b6110989190611fbd565b6110a3906004611fd1565b905060006110b2826020611fa5565b67ffffffffffffffff8111156110ca576110ca6120df565b6040519080825280601f01601f1916602001820160405280156110f4576020820181803683370190505b509050818152600183018586518101602084015b818310156111625760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401611108565b60038951066001811461117c576002811461118d57611199565b613d3d60f01b600119830152611199565b603d60f81b6000198301525b509398975050505050505050565b60006001600160a01b0384163b156112a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111eb903390899088908890600401611eb2565b602060405180830381600087803b15801561120557600080fd5b505af1925050508015611235575060408051601f3d908101601f19168201909252611232918101906117a7565b60015b61128f573d808015611263576040519150601f19603f3d011682016040523d82523d6000602084013e611268565b606091505b5080516112875760405162461bcd60e51b81526004016105e090611f02565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d96565b506001949350505050565b6060816112d85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561130257806112ec8161206e565b91506112fb9050600a83611fbd565b91506112dc565b60008167ffffffffffffffff81111561131d5761131d6120df565b6040519080825280601f01601f191660200182016040528015611347576020820181803683370190505b5090505b8415610d965761135c600183611ff0565b9150611369600a86612089565b611374906030611fa5565b60f81b818381518110611389576113896120c9565b60200101906001600160f81b031916908160001a9053506113ab600a86611fbd565b945061134b565b606060006113c08585611ff0565b6113cb906001611fa5565b67ffffffffffffffff8111156113e3576113e36120df565b6040519080825280601f01601f19166020018201604052801561140d576020820181803683370190505b50905060005b61141d8686611ff0565b8111611490578360016114308884611fa5565b61143a9190611ff0565b8151811061144a5761144a6120c9565b602001015160f81c60f81b828281518110611467576114676120c9565b60200101906001600160f81b031916908160001a905350806114888161206e565b915050611413565b50949350505050565b5080546114a590612033565b6000825580601f106114b5575050565b601f0160209004906000526020600020908101906109b29190611557565b8280546114df90612033565b90600052602060002090601f0160209004810192826115015760008555611547565b82601f1061151a57805160ff1916838001178555611547565b82800160010185558215611547579182015b8281111561154757825182559160200191906001019061152c565b50611553929150611557565b5090565b5b808211156115535760008155600101611558565b600067ffffffffffffffff80841115611587576115876120df565b604051601f8501601f19908116603f011681019082821181831017156115af576115af6120df565b816040528093508581528686860111156115c857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115f957600080fd5b919050565b600082601f83011261160f57600080fd5b6109838383356020850161156c565b60006020828403121561163057600080fd5b610983826115e2565b6000806040838503121561164c57600080fd5b611655836115e2565b9150611663602084016115e2565b90509250929050565b60008060006060848603121561168157600080fd5b61168a846115e2565b9250611698602085016115e2565b9150604084013590509250925092565b600080600080608085870312156116be57600080fd5b6116c7856115e2565b93506116d5602086016115e2565b925060408501359150606085013567ffffffffffffffff8111156116f857600080fd5b8501601f8101871361170957600080fd5b6117188782356020840161156c565b91505092959194509250565b6000806040838503121561173757600080fd5b611740836115e2565b91506020830135801515811461175557600080fd5b809150509250929050565b6000806040838503121561177357600080fd5b61177c836115e2565b946020939093013593505050565b60006020828403121561179c57600080fd5b8135610983816120f5565b6000602082840312156117b957600080fd5b8151610983816120f5565b6000602082840312156117d657600080fd5b813567ffffffffffffffff8111156117ed57600080fd5b610d96848285016115fe565b6000806040838503121561180c57600080fd5b823567ffffffffffffffff81111561182357600080fd5b61182f858286016115fe565b925050611663602084016115e2565b60006020828403121561185057600080fd5b5035919050565b6000815180845261186f816020860160208601612007565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061189d57607f831692505b60208084108214156118bf57634e487b7160e01b600052602260045260246000fd5b8180156118d357600181146118e457611911565b60ff19861689528489019650611911565b60008881526020902060005b868110156119095781548b8201529085019083016118f0565b505084890196505b50505050505092915050565b683d913730b6b2911d1160b91b815271029b7bab63137bab732102a37b5b2b71016960751b60098201526000611956601b830187611883565b701116113232b9b1b934b83a34b7b7111d1160791b81527f486f6c646572206f662074686973205342542069732061206365727469666965601182015261032160f51b60318201526119ab6033820187611883565b90506b0109029a12a1026a4a72a1d160a51b81526119cc600c820186611883565b6b1011161134b6b0b3b2911d1160a11b81527f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600c8201528451909150611a1a816026840160208801612007565b61227d60f01b602692909101918201526028019695505050505050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e60208201527f77332e6f72672f313939392f786c696e6b222077696474683d2232353070782260408201527f206865696768743d223235307078222076696577426f783d223020302032353060608201527f20323530222076657273696f6e3d22312e31223e203c7469746c653e3c2f746960808201527f746c653e20203c672069643d2278797822207374726f6b653d226e6f6e65222060a08201527f7374726f6b652d77696474683d2231222066696c6c3d226e6f6e65222066696c60c08201527f6c2d72756c653d226576656e6f6464223e2020202020203c726563742066696c60e0820152636c3d222360e01b61010082015260006101048551611b898183860160208a01612007565b855190840190611b9f8184840160208a01612007565b611e61611d7a611d7485848601017f2220783d22302220793d2230222077696474683d22313030252220686569676881527f743d2231303025222f3e3c672069643d224772223e3c7465787420746578742d60208201527f616e63686f723d226d6964646c65222069643d2268692220666f6e742d73697a60408201527f653d223135222066696c6c3d2223464646464646223e3c747370616e20783d2260608201527f3530252220793d223135223e536f756c20426f756e6420546f6b656e3c2f747360808201527f70616e3e3c747370616e20783d223530252220793d223232223e7e7e7e7e7e7e60a08201527f7e7e7e7e7e3c2f747370616e3e3c747370616e20783d223530252220793d223660c08201527f302220666f6e742d73697a653d223132223e486f6c646572206f66207468697360e08201527f205342543c2f747370616e3e3c747370616e20783d223530252220793d2237346101008201527f2220666f6e742d73697a653d223132223e6865726562792069732063657274696101208201527f6669656420613c2f747370616e3e3c747370616e20783d223530252220793d226101408201527318999a91103337b73a16b9b4bd329e911918111f60611b6101608201526101740190565b88611883565b7f3c2f747370616e3e3c747370616e20783d223530252220793d2232323522206681527f6f6e742d73697a653d223138223e486f6c64657220697320656e7469746c656460208201527f3c2f747370616e3e3c747370616e20783d223530252220793d2232343022206660408201527f6f6e742d73697a653d2239223e746f206275726e20746869732053425420627960608201527f2073656e64696e6720312045544820746f2074686520636f6e74726163742e3c60808201527f2f747370616e3e3c2f746578743e3c2f673e3c2f673e3c2f7376673e0000000060a082015260bc0190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611ea581601d850160208701612007565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ee590830184611857565b9695505050505050565b6020815260006109836020830184611857565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fb857611fb861209d565b500190565b600082611fcc57611fcc6120b3565b500490565b6000816000190483118215151615611feb57611feb61209d565b500290565b6000828210156120025761200261209d565b500390565b60005b8381101561202257818101518382015260200161200a565b83811115610b495750506000910152565b600181811c9082168061204757607f821691505b6020821081141561206857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120825761208261209d565b5060010190565b600082612098576120986120b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b257600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220a7b605c7157210e55fa290a9d9b1cb359320ba53e87cf3defad2d7906ebe4bde64736f6c63430008070033

Deployed Bytecode Sourcemap

35245:3753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36144:4;36131:9;:17;36128:354;;36193:28;;-1:-1:-1;;36210:10:0;7778:2:1;7774:15;7770:53;36193:28:0;;;7758:66:1;36159:13:0;;7840:12:1;;36193:28:0;;;-1:-1:-1;;36193:28:0;;;;;;;;;36183:39;;36193:28;36183:39;;;;36175:48;36243:14;;;:7;:14;;;;;;;36183:39;;-1:-1:-1;;;;;;36243:14:0;;;;36268:4;;36175:48;36193:28;36175:48;36193:28;36268:4;36243:14;36175:48;36235:38;;;;;;;;;;;;;;;;;;;-1:-1:-1;36293:12:0;;;;:5;:12;;;;;36286:20;;;:::i;:::-;36325:14;;;;:7;:14;;;;;;;;36318:22;;-1:-1:-1;;;;;;36318:22:0;;;;;;36373:10;36363:21;;;:9;:21;;;;;36356:29;;;36403:14;;;:7;:14;;;;;;36396:21;;;;;;;36435:39;36333:5;;36325:14;36373:10;36435:39;;36325:14;;36435:39;36149:333;36128:354;36503:8;;36495:49;;-1:-1:-1;;;;;36503:8:0;;;;36522:21;36495:49;;;;;36503:8;36495:49;36503:8;36495:49;36522:21;36503:8;36495:49;;;;;;;;;;;;;;;;;;;;;35245:3753;23059:305;;;;;;;;;;-1:-1:-1;23059:305:0;;;;;:::i;:::-;;:::i;:::-;;;12877:14:1;;12870:22;12852:41;;12840:2;12825:18;23059:305:0;;;;;;;;24004:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25563:221::-;;;;;;;;;;-1:-1:-1;25563:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12175:32:1;;;12157:51;;12145:2;12130:18;25563:221:0;12011:203:1;25086:411:0;;;;;;;;;;-1:-1:-1;25086:411:0;;;;;:::i;:::-;;:::i;:::-;;26453:339;;;;;;;;;;-1:-1:-1;26453:339:0;;;;;:::i;:::-;;:::i;26863:185::-;;;;;;;;;;-1:-1:-1;26863:185:0;;;;;:::i;:::-;;:::i;23698:239::-;;;;;;;;;;-1:-1:-1;23698:239:0;;;;;:::i;:::-;;:::i;23428:208::-;;;;;;;;;;-1:-1:-1;23428:208:0;;;;;:::i;:::-;;:::i;:::-;;;18588:25:1;;;18576:2;18561:18;23428:208:0;18442:177:1;35501:575:0;;;;;;:::i;:::-;;:::i;36570:90::-;;;;;;;;;;-1:-1:-1;36570:90:0;;;;;:::i;:::-;;:::i;24173:104::-;;;;;;;;;;;;;:::i;25856:295::-;;;;;;;;;;-1:-1:-1;25856:295:0;;;;;:::i;:::-;;:::i;35460:22::-;;;;;;;;;;;;;:::i;27119:328::-;;;;;;;;;;-1:-1:-1;27119:328:0;;;;;:::i;:::-;;:::i;38208:685::-;;;;;;;;;;-1:-1:-1;38208:685:0;;;;;:::i;:::-;;:::i;26222:164::-;;;;;;;;;;-1:-1:-1;26222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26343:25:0;;;26319:4;26343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26222:164;23059:305;23161:4;-1:-1:-1;;;;;;23198:40:0;;-1:-1:-1;;;23198:40:0;;:105;;-1:-1:-1;;;;;;;23255:48:0;;-1:-1:-1;;;23255:48:0;23198:105;:158;;;-1:-1:-1;;;;;;;;;;16114:40:0;;;23320:36;23178:178;23059:305;-1:-1:-1;;23059:305:0:o;24004:100::-;24058:13;24091:5;24084:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24004:100;:::o;25563:221::-;25639:7;29046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29046:16:0;25659:73;;;;-1:-1:-1;;;25659:73:0;;16585:2:1;25659:73:0;;;16567:21:1;16624:2;16604:18;;;16597:30;16663:34;16643:18;;;16636:62;-1:-1:-1;;;16714:18:1;;;16707:42;16766:19;;25659:73:0;;;;;;;;;-1:-1:-1;25752:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25752:24:0;;25563:221::o;25086:411::-;25167:13;25183:23;25198:7;25183:14;:23::i;:::-;25167:39;;25231:5;-1:-1:-1;;;;;25225:11:0;:2;-1:-1:-1;;;;;25225:11:0;;;25217:57;;;;-1:-1:-1;;;25217:57:0;;17824:2:1;25217:57:0;;;17806:21:1;17863:2;17843:18;;;17836:30;17902:34;17882:18;;;17875:62;-1:-1:-1;;;17953:18:1;;;17946:31;17994:19;;25217:57:0;17622:397:1;25217:57:0;5157:10;-1:-1:-1;;;;;25309:21:0;;;;:62;;-1:-1:-1;25334:37:0;25351:5;5157:10;26222:164;:::i;25334:37::-;25287:168;;;;-1:-1:-1;;;25287:168:0;;15339:2:1;25287:168:0;;;15321:21:1;15378:2;15358:18;;;15351:30;15417:34;15397:18;;;15390:62;15488:26;15468:18;;;15461:54;15532:19;;25287:168:0;15137:420:1;25287:168:0;25468:21;25477:2;25481:7;25468:8;:21::i;:::-;25156:341;25086:411;;:::o;26453:339::-;26648:41;5157:10;26681:7;26648:18;:41::i;:::-;26640:103;;;;-1:-1:-1;;;26640:103:0;;;;;;;:::i;:::-;26756:28;26766:4;26772:2;26776:7;26756:9;:28::i;26863:185::-;27001:39;27018:4;27024:2;27028:7;27001:39;;;;;;;;;;;;:16;:39::i;23698:239::-;23770:7;23806:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23806:16:0;23841:19;23833:73;;;;-1:-1:-1;;;23833:73:0;;16175:2:1;23833:73:0;;;16157:21:1;16214:2;16194:18;;;16187:30;16253:34;16233:18;;;16226:62;-1:-1:-1;;;16304:18:1;;;16297:39;16353:19;;23833:73:0;15973:405:1;23428:208:0;23500:7;-1:-1:-1;;;;;23528:19:0;;23520:74;;;;-1:-1:-1;;;23520:74:0;;15764:2:1;23520:74:0;;;15746:21:1;15803:2;15783:18;;;15776:30;15842:34;15822:18;;;15815:62;-1:-1:-1;;;15893:18:1;;;15886:40;15943:19;;23520:74:0;15562:406:1;23520:74:0;-1:-1:-1;;;;;;23612:16:0;;;;;:9;:16;;;;;;;23428:208::o;35501:575::-;35627:8;;35619:49;;35594:7;;-1:-1:-1;;;;;35627:8:0;;35646:21;35619:49;;;;;35594:7;35619:49;35594:7;35619:49;35646:21;35627:8;35619:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35717:29:0;;-1:-1:-1;;7778:2:1;7774:15;;;7770:53;35717:29:0;;;7758:66:1;35683:13:0;;7840:12:1;;35717:29:0;;;;;;;;;;;;35707:40;;;;;;35699:49;;35683:65;;35784:4;35771:9;:17;35768:274;;35807:12;;;;:5;:12;;;;;;;;:30;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35853:22:0;;;;;;:9;:22;;;;;;;;35878:1;35853:26;;35896:14;;;:7;:14;;;;;:28;;-1:-1:-1;;;;;;35896:28:0;;;;;;;;35935:7;:14;;;;;;:27;;;;;35952:10;35935:27;;;;35982:40;35904:5;;35853:22;;35982:40;;35853:22;;35982:40;35768:274;36059:5;35501:575;-1:-1:-1;;;35501:575:0:o;36570:90::-;36629:8;;-1:-1:-1;;;;;36629:8:0;36617:10;:20;36613:40;;;36639:12;;;;:8;;:12;;;;;:::i;:::-;;36613:40;36570:90;:::o;24173:104::-;24229:13;24262:7;24255:14;;;;;:::i;25856:295::-;-1:-1:-1;;;;;25959:24:0;;5157:10;25959:24;;25951:62;;;;-1:-1:-1;;;25951:62:0;;14572:2:1;25951:62:0;;;14554:21:1;14611:2;14591:18;;;14584:30;14650:27;14630:18;;;14623:55;14695:18;;25951:62:0;14370:349:1;25951:62:0;5157:10;26026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26026:53:0;;;;;;;;;;26095:48;;12852:41:1;;;26026:42:0;;5157:10;26095:48;;12825:18:1;26095:48:0;;;;;;;25856:295;;:::o;35460:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27119:328::-;27294:41;5157:10;27327:7;27294:18;:41::i;:::-;27286:103;;;;-1:-1:-1;;;27286:103:0;;;;;;;:::i;:::-;27400:39;27414:4;27420:2;27424:7;27433:5;27400:13;:39::i;:::-;27119:328;;;;:::o;38208:685::-;29022:4;29046:16;;;:7;:16;;;;;;38307:13;;-1:-1:-1;;;;;29046:16:0;38332:98;;;;-1:-1:-1;;;38332:98:0;;17408:2:1;38332:98:0;;;17390:21:1;17447:2;17427:18;;;17420:30;17486:34;17466:18;;;17459:62;-1:-1:-1;;;17537:18:1;;;17530:45;17592:19;;38332:98:0;17206:411:1;38332:98:0;38615:15;;;;:5;:15;;;;;38517:358;;38615:15;38749:8;38847:20;38621:8;38847:10;:20::i;:::-;38537:336;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38517:13;:358::i;:::-;38457:429;;;;;;;;:::i;:::-;;;;;;;;;;;;;38443:444;;38208:685;;;:::o;32945:174::-;33020:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33020:29:0;-1:-1:-1;;;;;33020:29:0;;;;;;;;:24;;33074:23;33020:24;33074:14;:23::i;:::-;-1:-1:-1;;;;;33065:46:0;;;;;;;;;;;32945:174;;:::o;29251:348::-;29344:4;29046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29046:16:0;29361:73;;;;-1:-1:-1;;;29361:73:0;;14926:2:1;29361:73:0;;;14908:21:1;14965:2;14945:18;;;14938:30;15004:34;14984:18;;;14977:62;-1:-1:-1;;;15055:18:1;;;15048:42;15107:19;;29361:73:0;14724:408:1;29361:73:0;29445:13;29461:23;29476:7;29461:14;:23::i;:::-;29445:39;;29514:5;-1:-1:-1;;;;;29503:16:0;:7;-1:-1:-1;;;;;29503:16:0;;:51;;;;29547:7;-1:-1:-1;;;;;29523:31:0;:20;29535:7;29523:11;:20::i;:::-;-1:-1:-1;;;;;29523:31:0;;29503:51;:87;;;-1:-1:-1;;;;;;26343:25:0;;;26319:4;26343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29558:32;29495:96;29251:348;-1:-1:-1;;;;29251:348:0:o;32243:584::-;32402:4;-1:-1:-1;;;;;32375:31:0;:23;32390:7;32375:14;:23::i;:::-;-1:-1:-1;;;;;32375:31:0;;32367:85;;;;-1:-1:-1;;;32367:85:0;;16998:2:1;32367:85:0;;;16980:21:1;17037:2;17017:18;;;17010:30;17076:34;17056:18;;;17049:62;-1:-1:-1;;;17127:18:1;;;17120:39;17176:19;;32367:85:0;16796:405:1;32367:85:0;-1:-1:-1;;;;;32471:16:0;;32463:65;;;;-1:-1:-1;;;32463:65:0;;14167:2:1;32463:65:0;;;14149:21:1;14206:2;14186:18;;;14179:30;14245:34;14225:18;;;14218:62;-1:-1:-1;;;14296:18:1;;;14289:34;14340:19;;32463:65:0;13965:400:1;32463:65:0;32647:29;32664:1;32668:7;32647:8;:29::i;:::-;-1:-1:-1;;;;;32689:15:0;;;;;;:9;:15;;;;;:20;;32708:1;;32689:15;:20;;32708:1;;32689:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32720:15:0;;;;;;:9;:15;;;;;:20;;32739:1;;32720:15;:20;;32739:1;;32720:20;:::i;:::-;;;;-1:-1:-1;;32751:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32751:21:0;-1:-1:-1;;;;;32751:21:0;;;;;;;;;;32790:29;;32751:16;;32790:29;;;;;;;;32751:16;32790:29;32243:584;;;:::o;28329:315::-;28486:28;28496:4;28502:2;28506:7;28486:9;:28::i;:::-;28533:48;28556:4;28562:2;28566:7;28575:5;28533:22;:48::i;:::-;28525:111;;;;-1:-1:-1;;;28525:111:0;;;;;;;:::i;36973:1229::-;29022:4;29046:16;;;:7;:16;;;;;;37032:13;;-1:-1:-1;;;;;29046:16:0;37055:102;;;;-1:-1:-1;;;37055:102:0;;13330:2:1;37055:102:0;;;13312:21:1;13369:2;13349:18;;;13342:30;13408:34;13388:18;;;13381:62;-1:-1:-1;;;13459:18:1;;;13452:47;13516:19;;37055:102:0;13128:413:1;37055:102:0;37181:1015;37494:48;37503:1;37505:2;37508:33;37525:15;37508:16;:33::i;:::-;37494:8;:48::i;:::-;37545;37554:1;37556:2;37559:33;37576:15;37559:16;:33::i;37545:48::-;37973:15;;;;:5;:15;;;;;;;;;37201:993;;;;;;37973:15;37201:993;;:::i;326:2037::-;384:13;414:4;:11;429:1;414:16;410:31;;;-1:-1:-1;;432:9:0;;;;;;;;;-1:-1:-1;432:9:0;;;326:2037::o;410:31::-;501:19;523:5;;;;;;;;;;;;;;;;;501:27;;580:18;626:1;607:4;:11;621:1;607:15;;;;:::i;:::-;606:21;;;;:::i;:::-;601:27;;:1;:27;:::i;:::-;580:48;-1:-1:-1;711:20:0;745:15;580:48;758:2;745:15;:::i;:::-;734:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;734:27:0;;711:50;;858:10;850:6;843:26;965:1;958:5;954:13;1036:4;1087;1081:11;1072:7;1068:25;1195:2;1187:6;1183:15;1280:810;1299:6;1290:7;1287:19;1280:810;;;1365:1;1352:15;;;1446:14;;1599:4;1587:2;1583:14;;;1579:25;;1565:40;;1559:47;1554:3;1550:57;;;1532:76;;1727:2;1723:14;;;1719:25;;1705:40;;1699:47;1690:57;;1653:1;1638:17;;1672:76;1868:1;1863:14;;;1859:25;;1845:40;;1839:47;1830:57;;1778:17;;;1812:76;1999:25;;1985:40;;1979:47;1970:57;;1918:17;;;1952:76;;;;2058:17;;1280:810;;;2175:1;2168:4;2162:11;2158:19;2196:1;2191:54;;;;2264:1;2259:52;;;;2151:160;;2191:54;-1:-1:-1;;;;;2207:17:0;;2200:43;2191:54;;2259:52;-1:-1:-1;;;;;2275:17:0;;2268:41;2151:160;-1:-1:-1;2349:6:0;;326:2037;-1:-1:-1;;;;;;;;326:2037:0:o;33684:799::-;33839:4;-1:-1:-1;;;;;33860:13:0;;6380:20;6428:8;33856:620;;33896:72;;-1:-1:-1;;;33896:72:0;;-1:-1:-1;;;;;33896:36:0;;;;;:72;;5157:10;;33947:4;;33953:7;;33962:5;;33896:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33896:72:0;;;;;;;;-1:-1:-1;;33896:72:0;;;;;;;;;;;;:::i;:::-;;;33892:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34138:13:0;;34134:272;;34181:60;;-1:-1:-1;;;34181:60:0;;;;;;;:::i;34134:272::-;34356:6;34350:13;34341:6;34337:2;34333:15;34326:38;33892:529;-1:-1:-1;;;;;;34019:51:0;-1:-1:-1;;;34019:51:0;;-1:-1:-1;34012:58:0;;33856:620;-1:-1:-1;34460:4:0;33684:799;;;;;;:::o;2693:723::-;2749:13;2970:10;2966:53;;-1:-1:-1;;2997:10:0;;;;;;;;;;;;-1:-1:-1;;;2997:10:0;;;;;2693:723::o;2966:53::-;3044:5;3029:12;3085:78;3092:9;;3085:78;;3118:8;;;;:::i;:::-;;-1:-1:-1;3141:10:0;;-1:-1:-1;3149:2:0;3141:10;;:::i;:::-;;;3085:78;;;3173:19;3205:6;3195:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3195:17:0;;3173:39;;3223:154;3230:10;;3223:154;;3257:11;3267:1;3257:11;;:::i;:::-;;-1:-1:-1;3326:10:0;3334:2;3326:5;:10;:::i;:::-;3313:24;;:2;:24;:::i;:::-;3300:39;;3283:6;3290;3283:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3283:56:0;;;;;;;;-1:-1:-1;3354:11:0;3363:2;3354:11;;:::i;:::-;;;3223:154;;36676:288;36764:13;36790:14;36817:9;36821:5;36817:3;:9;:::i;:::-;:11;;36827:1;36817:11;:::i;:::-;36807:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36807:22:0;;36790:39;;36844:6;36840:86;36856:9;36860:5;36856:3;:9;:::i;:::-;36853:1;:12;36840:86;;36898:4;36912:1;36904:7;36906:5;36904:1;:7;:::i;:::-;:9;;;;:::i;:::-;36892:22;;;;;;;;:::i;:::-;;;;;;;;;36885:1;36887;36885:4;;;;;;;;:::i;:::-;;;;:29;-1:-1:-1;;;;;36885:29:0;;;;;;;;-1:-1:-1;36866:3:0;;;;:::i;:::-;;;;36840:86;;;-1:-1:-1;36950:1:0;36676:288;-1:-1:-1;;;;36676:288:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:245::-;3183:6;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:30;3334:5;3310:30;:::i;3375:249::-;3444:6;3497:2;3485:9;3476:7;3472:23;3468:32;3465:52;;;3513:1;3510;3503:12;3465:52;3545:9;3539:16;3564:30;3588:5;3564:30;:::i;3629:322::-;3698:6;3751:2;3739:9;3730:7;3726:23;3722:32;3719:52;;;3767:1;3764;3757:12;3719:52;3807:9;3794:23;3840:18;3832:6;3829:30;3826:50;;;3872:1;3869;3862:12;3826:50;3895;3937:7;3928:6;3917:9;3913:22;3895:50;:::i;3956:396::-;4034:6;4042;4095:2;4083:9;4074:7;4070:23;4066:32;4063:52;;;4111:1;4108;4101:12;4063:52;4151:9;4138:23;4184:18;4176:6;4173:30;4170:50;;;4216:1;4213;4206:12;4170:50;4239;4281:7;4272:6;4261:9;4257:22;4239:50;:::i;:::-;4229:60;;;4308:38;4342:2;4331:9;4327:18;4308:38;:::i;4357:180::-;4416:6;4469:2;4457:9;4448:7;4444:23;4440:32;4437:52;;;4485:1;4482;4475:12;4437:52;-1:-1:-1;4508:23:1;;4357:180;-1:-1:-1;4357:180:1:o;4542:257::-;4583:3;4621:5;4615:12;4648:6;4643:3;4636:19;4664:63;4720:6;4713:4;4708:3;4704:14;4697:4;4690:5;4686:16;4664:63;:::i;:::-;4781:2;4760:15;-1:-1:-1;;4756:29:1;4747:39;;;;4788:4;4743:50;;4542:257;-1:-1:-1;;4542:257:1:o;4804:973::-;4889:12;;4854:3;;4944:1;4964:18;;;;5017;;;;5044:61;;5098:4;5090:6;5086:17;5076:27;;5044:61;5124:2;5172;5164:6;5161:14;5141:18;5138:38;5135:161;;;5218:10;5213:3;5209:20;5206:1;5199:31;5253:4;5250:1;5243:15;5281:4;5278:1;5271:15;5135:161;5312:18;5339:104;;;;5457:1;5452:319;;;;5305:466;;5339:104;-1:-1:-1;;5372:24:1;;5360:37;;5417:16;;;;-1:-1:-1;5339:104:1;;5452:319;18697:1;18690:14;;;18734:4;18721:18;;5546:1;5560:165;5574:6;5571:1;5568:13;5560:165;;;5652:14;;5639:11;;;5632:35;5695:16;;;;5589:10;;5560:165;;;5564:3;;5754:6;5749:3;5745:16;5738:23;;5305:466;;;;;;;4804:973;;;;:::o;7863:1911::-;-1:-1:-1;;;8955:43:1;;-1:-1:-1;;;9023:1:1;9014:11;;9007:41;-1:-1:-1;9067:47:1;9110:2;9101:12;;9093:6;9067:47;:::i;:::-;-1:-1:-1;;;9123:58:1;;9210:34;9205:2;9197:11;;9190:55;-1:-1:-1;;;9269:2:1;9261:11;;9254:25;9298:46;9340:2;9332:11;;9324:6;9298:46;:::i;:::-;9288:56;;-1:-1:-1;;;9360:2:1;9353:26;9398:46;9440:2;9436;9432:11;9424:6;9398:46;:::i;:::-;-1:-1:-1;;;9453:48:1;;9530:28;9525:2;9517:11;;9510:49;9582:13;;9388:56;;-1:-1:-1;9604:59:1;9582:13;9651:2;9643:11;;9638:2;9626:15;;9604:59;:::i;:::-;-1:-1:-1;;;9721:2:1;9682:15;;;;9713:11;;;9706:35;9765:2;9757:11;;7863:1911;-1:-1:-1;;;;;;7863:1911:1:o;9779:1774::-;10336:66;10331:3;10324:79;10433:66;10428:2;10423:3;10419:12;10412:88;10530:66;10525:2;10520:3;10516:12;10509:88;10627:66;10622:2;10617:3;10613:12;10606:88;10725:66;10719:3;10714;10710:13;10703:89;10823:66;10817:3;10812;10808:13;10801:89;10921:66;10915:3;10910;10906:13;10899:89;11019:66;11013:3;11008;11004:13;10997:89;11126:10;11121:3;11117:20;11111:3;11106;11102:13;11095:43;10306:3;11157;11189:6;11183:13;11205:60;11258:6;11253:2;11248:3;11244:12;11239:2;11231:6;11227:15;11205:60;:::i;:::-;11325:13;;11284:16;;;;11347:61;11325:13;11386:11;;;11381:2;11369:15;;11347:61;:::i;:::-;11424:123;11454:92;11488:57;11541:2;11530:8;11526:2;11522:17;11518:26;6462:66;6450:79;;6559:66;6554:2;6545:12;;6538:88;6656:66;6651:2;6642:12;;6635:88;6753:66;6748:2;6739:12;;6732:88;6851:66;6845:3;6836:13;;6829:89;6949:66;6943:3;6934:13;;6927:89;7047:66;7041:3;7032:13;;7025:89;7145:66;7139:3;7130:13;;7123:89;7243:66;7237:3;7228:13;;7221:89;7341:66;7335:3;7326:13;;7319:89;7439:66;7433:3;7424:13;;7417:89;-1:-1:-1;;;7531:3:1;7522:13;;7515:74;7614:3;7605:13;;6385:1239;11488:57;11480:6;11454:92;:::i;:::-;5859:66;5847:79;;5956:66;5951:2;5942:12;;5935:88;6053:66;6048:2;6039:12;;6032:88;6150:66;6145:2;6136:12;;6129:88;6248:34;6242:3;6233:13;;6226:57;6314:30;6308:3;6299:13;;6292:53;6370:3;6361:13;;5782:598;11424:123;11417:130;9779:1774;-1:-1:-1;;;;;;;;9779:1774:1:o;11558:448::-;11820:31;11815:3;11808:44;11790:3;11881:6;11875:13;11897:62;11952:6;11947:2;11942:3;11938:12;11931:4;11923:6;11919:17;11897:62;:::i;:::-;11979:16;;;;11997:2;11975:25;;11558:448;-1:-1:-1;;11558:448:1:o;12219:488::-;-1:-1:-1;;;;;12488:15:1;;;12470:34;;12540:15;;12535:2;12520:18;;12513:43;12587:2;12572:18;;12565:34;;;12635:3;12630:2;12615:18;;12608:31;;;12413:4;;12656:45;;12681:19;;12673:6;12656:45;:::i;:::-;12648:53;12219:488;-1:-1:-1;;;;;;12219:488:1:o;12904:219::-;13053:2;13042:9;13035:21;13016:4;13073:44;13113:2;13102:9;13098:18;13090:6;13073:44;:::i;13546:414::-;13748:2;13730:21;;;13787:2;13767:18;;;13760:30;13826:34;13821:2;13806:18;;13799:62;-1:-1:-1;;;13892:2:1;13877:18;;13870:48;13950:3;13935:19;;13546:414::o;18024:413::-;18226:2;18208:21;;;18265:2;18245:18;;;18238:30;18304:34;18299:2;18284:18;;18277:62;-1:-1:-1;;;18370:2:1;18355:18;;18348:47;18427:3;18412:19;;18024:413::o;18750:128::-;18790:3;18821:1;18817:6;18814:1;18811:13;18808:39;;;18827:18;;:::i;:::-;-1:-1:-1;18863:9:1;;18750:128::o;18883:120::-;18923:1;18949;18939:35;;18954:18;;:::i;:::-;-1:-1:-1;18988:9:1;;18883:120::o;19008:168::-;19048:7;19114:1;19110;19106:6;19102:14;19099:1;19096:21;19091:1;19084:9;19077:17;19073:45;19070:71;;;19121:18;;:::i;:::-;-1:-1:-1;19161:9:1;;19008:168::o;19181:125::-;19221:4;19249:1;19246;19243:8;19240:34;;;19254:18;;:::i;:::-;-1:-1:-1;19291:9:1;;19181:125::o;19311:258::-;19383:1;19393:113;19407:6;19404:1;19401:13;19393:113;;;19483:11;;;19477:18;19464:11;;;19457:39;19429:2;19422:10;19393:113;;;19524:6;19521:1;19518:13;19515:48;;;-1:-1:-1;;19559:1:1;19541:16;;19534:27;19311:258::o;19574:380::-;19653:1;19649:12;;;;19696;;;19717:61;;19771:4;19763:6;19759:17;19749:27;;19717:61;19824:2;19816:6;19813:14;19793:18;19790:38;19787:161;;;19870:10;19865:3;19861:20;19858:1;19851:31;19905:4;19902:1;19895:15;19933:4;19930:1;19923:15;19787:161;;19574:380;;;:::o;19959:135::-;19998:3;-1:-1:-1;;20019:17:1;;20016:43;;;20039:18;;:::i;:::-;-1:-1:-1;20086:1:1;20075:13;;19959:135::o;20099:112::-;20131:1;20157;20147:35;;20162:18;;:::i;:::-;-1:-1:-1;20196:9:1;;20099:112::o;20216:127::-;20277:10;20272:3;20268:20;20265:1;20258:31;20308:4;20305:1;20298:15;20332:4;20329:1;20322:15;20348:127;20409:10;20404:3;20400:20;20397:1;20390:31;20440:4;20437:1;20430:15;20464:4;20461:1;20454:15;20480:127;20541:10;20536:3;20532:20;20529:1;20522:31;20572:4;20569:1;20562:15;20596:4;20593:1;20586:15;20612:127;20673:10;20668:3;20664:20;20661:1;20654:31;20704:4;20701:1;20694:15;20728:4;20725:1;20718:15;20744:131;-1:-1:-1;;;;;;20818:32:1;;20808:43;;20798:71;;20865:1;20862;20855:12

Swarm Source

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