ETH Price: $2,278.97 (-2.77%)

Token

Peep (PEEP)
 

Overview

Max Total Supply

12 PEEP

Holders

11

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Peep

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-23
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






/**
 * @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;
}




/**
 * @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);
    }
}




/*
 * @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;
    }
}









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

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

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

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

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

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

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

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





/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}














/**
 * @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);
}







/**
 * @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);
}





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









/**
 * @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;
    }
}


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract Peep is ERC721Enumerable, ReentrancyGuard, Ownable {

    using SafeMath for uint256;

    mapping(uint => string) public contents;
    mapping(address => uint) public mintOwners;

    uint256 public constant MAX_ELEMENTS = 2100;
    event MintEvent(uint256 indexed id);

    function claim(string memory _content) public nonReentrant{
        require(totalSupply() + 1 <= MAX_ELEMENTS, "Max");
        require(mintOwners[msg.sender] == 0, "Minted");
        uint id = _mintAnElement(msg.sender);
        contents[id] = _content;
        mintOwners[msg.sender] = id;
    }

    function _mintAnElement(address _to) private returns(uint) {
        uint id = totalSupply() + 1;
        _safeMint(_to, id);
        emit MintEvent(id);
        return id;
    }


    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[4] memory parts;

        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: black; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="white" />';

        parts[1] = '<foreignObject x="25" y="25" width="300" height="300" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><p xmlns="http://www.w3.org/1999/xhtml">';
        
        parts[2] = contents[tokenId];

        parts[3] = '</p></foreignObject></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "SATOSHI #', toString(tokenId), '", "description": "", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    constructor() ERC721("Peep", "PEEP") Ownable() {}
}

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

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

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

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

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":"uint256","name":"id","type":"uint256"}],"name":"MintEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_content","type":"string"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contents","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintOwners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060048152602001630506565760e41b815250604051806040016040528060048152602001630504545560e41b815250816000908051906020019062000064929190620000e5565b5080516200007a906001906020840190620000e5565b50506001600a55506200008d3362000093565b620001c8565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f3906200018b565b90600052602060002090601f01602090048101928262000117576000855562000162565b82601f106200013257805160ff191683800117855562000162565b8280016001018555821562000162579182015b828111156200016257825182559160200191906001019062000145565b506200017092915062000174565b5090565b5b8082111562000170576000815560010162000175565b600181811c90821680620001a057607f821691505b60208210811415620001c257634e487b7160e01b600052602260045260246000fd5b50919050565b6122e880620001d86000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102a3578063c87b56dd146102b6578063e65a1ab2146102c9578063e985e9c5146102e9578063f2fde38b14610325578063f3fe12c91461033857600080fd5b806370a0823114610249578063715018a61461025c5780638da5cb5b1461026457806395d89b4114610275578063a22cb4651461027d578063b5ecf9121461029057600080fd5b806323b872dd1161011557806323b872dd146101e15780632f745c59146101f45780633502a7161461020757806342842e0e146102105780634f6ccce7146102235780636352211e1461023657600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b610165610160366004611c74565b61034b565b60405190151581526020015b60405180910390f35b610182610376565b6040516101719190611ec2565b6101a261019d366004611cf7565b610408565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611c4a565b6104a2565b005b6008545b604051908152602001610171565b6101cd6101ef366004611b56565b6105b8565b6101d3610202366004611c4a565b6105e9565b6101d361083481565b6101cd61021e366004611b56565b61067f565b6101d3610231366004611cf7565b61069a565b6101a2610244366004611cf7565b61072d565b6101d3610257366004611b01565b6107a4565b6101cd61082b565b600b546001600160a01b03166101a2565b610182610891565b6101cd61028b366004611c0e565b6108a0565b61018261029e366004611cf7565b610965565b6101cd6102b1366004611b92565b6109ff565b6101826102c4366004611cf7565b610a37565b6101d36102d7366004611b01565b600d6020526000908152604090205481565b6101656102f7366004611b23565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd610333366004611b01565b610c22565b6101cd610346366004611cae565b610ced565b60006001600160e01b0319821663780e9d6360e01b1480610370575061037082610e1e565b92915050565b60606000805461038590612006565b80601f01602080910402602001604051908101604052809291908181526020018280546103b190612006565b80156103fe5780601f106103d3576101008083540402835291602001916103fe565b820191906000526020600020905b8154815290600101906020018083116103e157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ad8261072d565b9050806001600160a01b0316836001600160a01b0316141561051b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161047d565b336001600160a01b0382161480610537575061053781336102f7565b6105a95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161047d565b6105b38383610e6e565b505050565b6105c23382610edc565b6105de5760405162461bcd60e51b815260040161047d90611f27565b6105b3838383610fd3565b60006105f4836107a4565b82106106565760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161047d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105b3838383604051806020016040528060008152506109ff565b60006106a560085490565b82106107085760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161047d565b6008828154811061071b5761071b6120b2565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161047d565b60006001600160a01b03821661080f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161047d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161047d565b61088f600061117e565b565b60606001805461038590612006565b6001600160a01b0382163314156108f95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161047d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c602052600090815260409020805461097e90612006565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa90612006565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b505050505081565b610a093383610edc565b610a255760405162461bcd60e51b815260040161047d90611f27565b610a31848484846111d0565b50505050565b6060610a416119af565b60405180610100016040528060dc81526020016121d760dc913981526040805160e0810190915260a28082526120f560208301396020808301919091526000848152600c909152604090208054610a9790612006565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac390612006565b8015610b105780601f10610ae557610100808354040283529160200191610b10565b820191906000526020600020905b815481529060010190602001808311610af357829003601f168201915b505050505081600260048110610b2857610b286120b2565b60200201819052506040518060400160405280601a81526020017f3c2f703e3c2f666f726569676e4f626a6563743e3c2f7376673e00000000000081525081600360048110610b7957610b796120b2565b6020908102919091019190915281518282015160408085015160608601519151600095610ba99594939101611d3c565b60405160208183030381529060405290506000610bf6610bc886611203565b610bd184611301565b604051602001610be2929190611dd8565b604051602081830303815290604052611301565b905080604051602001610c099190611d93565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b03163314610c7c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161047d565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047d565b610cea8161117e565b50565b6002600a541415610d405760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161047d565b6002600a55610834610d5160085490565b610d5c906001611f78565b1115610d905760405162461bcd60e51b815260206004820152600360248201526209ac2f60eb1b604482015260640161047d565b336000908152600d602052604090205415610dd65760405162461bcd60e51b8152602060048201526006602482015265135a5b9d195960d21b604482015260640161047d565b6000610de133611467565b6000818152600c602090815260409091208451929350610e059290918501906119d6565b50336000908152600d6020526040902055506001600a55565b60006001600160e01b031982166380ac58cd60e01b1480610e4f57506001600160e01b03198216635b5e139f60e01b145b8061037057506301ffc9a760e01b6001600160e01b0319831614610370565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea38261072d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161047d565b6000610f608361072d565b9050806001600160a01b0316846001600160a01b03161480610f9b5750836001600160a01b0316610f9084610408565b6001600160a01b0316145b80610fcb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fe68261072d565b6001600160a01b03161461104e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161047d565b6001600160a01b0382166110b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161047d565b6110bb8383836114bb565b6110c6600082610e6e565b6001600160a01b03831660009081526003602052604081208054600192906110ef908490611fc3565b90915550506001600160a01b038216600090815260036020526040812080546001929061111d908490611f78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111db848484610fd3565b6111e784848484611573565b610a315760405162461bcd60e51b815260040161047d90611ed5565b6060816112275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611251578061123b81612041565b915061124a9050600a83611f90565b915061122b565b60008167ffffffffffffffff81111561126c5761126c6120c8565b6040519080825280601f01601f191660200182016040528015611296576020820181803683370190505b5090505b8415610fcb576112ab600183611fc3565b91506112b8600a8661205c565b6112c3906030611f78565b60f81b8183815181106112d8576112d86120b2565b60200101906001600160f81b031916908160001a9053506112fa600a86611f90565b945061129a565b805160609080611321575050604080516020810190915260008152919050565b60006003611330836002611f78565b61133a9190611f90565b611345906004611fa4565b90506000611354826020611f78565b67ffffffffffffffff81111561136c5761136c6120c8565b6040519080825280601f01601f191660200182016040528015611396576020820181803683370190505b5090506000604051806060016040528060408152602001612197604091399050600181016020830160005b86811015611422576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016113c1565b50600386066001811461143c576002811461144d57611459565b613d3d60f01b600119830152611459565b603d60f81b6000198301525b505050918152949350505050565b60008061147360085490565b61147e906001611f78565b905061148a8382611680565b60405181907f94242c431036b9ba6723a138d4b275a5b38e13a95ef66227a45df427c0f843f390600090a292915050565b6001600160a01b0383166115165761151181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611539565b816001600160a01b0316836001600160a01b03161461153957611539838261169e565b6001600160a01b038216611550576105b38161173b565b826001600160a01b0316826001600160a01b0316146105b3576105b382826117ea565b60006001600160a01b0384163b1561167557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b7903390899088908890600401611e85565b602060405180830381600087803b1580156115d157600080fd5b505af1925050508015611601575060408051601f3d908101601f191682019092526115fe91810190611c91565b60015b61165b573d80801561162f576040519150601f19603f3d011682016040523d82523d6000602084013e611634565b606091505b5080516116535760405162461bcd60e51b815260040161047d90611ed5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fcb565b506001949350505050565b61169a82826040518060200160405280600081525061182e565b5050565b600060016116ab846107a4565b6116b59190611fc3565b600083815260076020526040902054909150808214611708576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061174d90600190611fc3565b60008381526009602052604081205460088054939450909284908110611775576117756120b2565b906000526020600020015490508060088381548110611796576117966120b2565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117ce576117ce61209c565b6001900381819060005260206000200160009055905550505050565b60006117f5836107a4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6118388383611861565b6118456000848484611573565b6105b35760405162461bcd60e51b815260040161047d90611ed5565b6001600160a01b0382166118b75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161047d565b6000818152600260205260409020546001600160a01b03161561191c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161047d565b611928600083836114bb565b6001600160a01b0382166000908152600360205260408120805460019290611951908490611f78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60405180608001604052806004905b60608152602001906001900390816119be5790505090565b8280546119e290612006565b90600052602060002090601f016020900481019282611a045760008555611a4a565b82601f10611a1d57805160ff1916838001178555611a4a565b82800160010185558215611a4a579182015b82811115611a4a578251825591602001919060010190611a2f565b50611a56929150611a5a565b5090565b5b80821115611a565760008155600101611a5b565b600067ffffffffffffffff80841115611a8a57611a8a6120c8565b604051601f8501601f19908116603f01168101908282118183101715611ab257611ab26120c8565b81604052809350858152868686011115611acb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611afc57600080fd5b919050565b600060208284031215611b1357600080fd5b611b1c82611ae5565b9392505050565b60008060408385031215611b3657600080fd5b611b3f83611ae5565b9150611b4d60208401611ae5565b90509250929050565b600080600060608486031215611b6b57600080fd5b611b7484611ae5565b9250611b8260208501611ae5565b9150604084013590509250925092565b60008060008060808587031215611ba857600080fd5b611bb185611ae5565b9350611bbf60208601611ae5565b925060408501359150606085013567ffffffffffffffff811115611be257600080fd5b8501601f81018713611bf357600080fd5b611c0287823560208401611a6f565b91505092959194509250565b60008060408385031215611c2157600080fd5b611c2a83611ae5565b915060208301358015158114611c3f57600080fd5b809150509250929050565b60008060408385031215611c5d57600080fd5b611c6683611ae5565b946020939093013593505050565b600060208284031215611c8657600080fd5b8135611b1c816120de565b600060208284031215611ca357600080fd5b8151611b1c816120de565b600060208284031215611cc057600080fd5b813567ffffffffffffffff811115611cd757600080fd5b8201601f81018413611ce857600080fd5b610fcb84823560208401611a6f565b600060208284031215611d0957600080fd5b5035919050565b60008151808452611d28816020860160208601611fda565b601f01601f19169290920160200192915050565b60008551611d4e818460208a01611fda565b855190830190611d62818360208a01611fda565b8551910190611d75818360208901611fda565b8451910190611d88818360208801611fda565b019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611dcb81601d850160208701611fda565b91909101601d0192915050565b727b226e616d65223a20225341544f534849202360681b81528251600090611e07816013850160208801611fda565b7f222c20226465736372697074696f6e223a2022222c2022696d616765223a20226013918401918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060338201528351611e6a81604d840160208801611fda565b61227d60f01b604d9290910191820152604f01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eb890830184611d10565b9695505050505050565b602081526000611b1c6020830184611d10565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f8b57611f8b612070565b500190565b600082611f9f57611f9f612086565b500490565b6000816000190483118215151615611fbe57611fbe612070565b500290565b600082821015611fd557611fd5612070565b500390565b60005b83811015611ff5578181015183820152602001611fdd565b83811115610a315750506000910152565b600181811c9082168061201a57607f821691505b6020821081141561203b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561205557612055612070565b5060010190565b60008261206b5761206b612086565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cea57600080fdfe3c666f726569676e4f626a65637420783d2232352220793d223235222077696474683d2233303022206865696768743d223330302220726571756972656446656174757265733d22687474703a2f2f7777772e77332e6f72672f54522f53564731312f6665617475726523457874656e736962696c697479223e3c7020786d6c6e733d22687474703a2f2f7777772e77332e6f72672f313939392f7868746d6c223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22776869746522202f3ea2646970667358221220edfa6364c7fe3c08c807e4d80c6002bda6c7ee9d79a1291048f2a9a0e6e3c35364736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102a3578063c87b56dd146102b6578063e65a1ab2146102c9578063e985e9c5146102e9578063f2fde38b14610325578063f3fe12c91461033857600080fd5b806370a0823114610249578063715018a61461025c5780638da5cb5b1461026457806395d89b4114610275578063a22cb4651461027d578063b5ecf9121461029057600080fd5b806323b872dd1161011557806323b872dd146101e15780632f745c59146101f45780633502a7161461020757806342842e0e146102105780634f6ccce7146102235780636352211e1461023657600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b610165610160366004611c74565b61034b565b60405190151581526020015b60405180910390f35b610182610376565b6040516101719190611ec2565b6101a261019d366004611cf7565b610408565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611c4a565b6104a2565b005b6008545b604051908152602001610171565b6101cd6101ef366004611b56565b6105b8565b6101d3610202366004611c4a565b6105e9565b6101d361083481565b6101cd61021e366004611b56565b61067f565b6101d3610231366004611cf7565b61069a565b6101a2610244366004611cf7565b61072d565b6101d3610257366004611b01565b6107a4565b6101cd61082b565b600b546001600160a01b03166101a2565b610182610891565b6101cd61028b366004611c0e565b6108a0565b61018261029e366004611cf7565b610965565b6101cd6102b1366004611b92565b6109ff565b6101826102c4366004611cf7565b610a37565b6101d36102d7366004611b01565b600d6020526000908152604090205481565b6101656102f7366004611b23565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd610333366004611b01565b610c22565b6101cd610346366004611cae565b610ced565b60006001600160e01b0319821663780e9d6360e01b1480610370575061037082610e1e565b92915050565b60606000805461038590612006565b80601f01602080910402602001604051908101604052809291908181526020018280546103b190612006565b80156103fe5780601f106103d3576101008083540402835291602001916103fe565b820191906000526020600020905b8154815290600101906020018083116103e157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ad8261072d565b9050806001600160a01b0316836001600160a01b0316141561051b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161047d565b336001600160a01b0382161480610537575061053781336102f7565b6105a95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161047d565b6105b38383610e6e565b505050565b6105c23382610edc565b6105de5760405162461bcd60e51b815260040161047d90611f27565b6105b3838383610fd3565b60006105f4836107a4565b82106106565760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161047d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105b3838383604051806020016040528060008152506109ff565b60006106a560085490565b82106107085760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161047d565b6008828154811061071b5761071b6120b2565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161047d565b60006001600160a01b03821661080f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161047d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161047d565b61088f600061117e565b565b60606001805461038590612006565b6001600160a01b0382163314156108f95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161047d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c602052600090815260409020805461097e90612006565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa90612006565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b505050505081565b610a093383610edc565b610a255760405162461bcd60e51b815260040161047d90611f27565b610a31848484846111d0565b50505050565b6060610a416119af565b60405180610100016040528060dc81526020016121d760dc913981526040805160e0810190915260a28082526120f560208301396020808301919091526000848152600c909152604090208054610a9790612006565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac390612006565b8015610b105780601f10610ae557610100808354040283529160200191610b10565b820191906000526020600020905b815481529060010190602001808311610af357829003601f168201915b505050505081600260048110610b2857610b286120b2565b60200201819052506040518060400160405280601a81526020017f3c2f703e3c2f666f726569676e4f626a6563743e3c2f7376673e00000000000081525081600360048110610b7957610b796120b2565b6020908102919091019190915281518282015160408085015160608601519151600095610ba99594939101611d3c565b60405160208183030381529060405290506000610bf6610bc886611203565b610bd184611301565b604051602001610be2929190611dd8565b604051602081830303815290604052611301565b905080604051602001610c099190611d93565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b03163314610c7c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161047d565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047d565b610cea8161117e565b50565b6002600a541415610d405760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161047d565b6002600a55610834610d5160085490565b610d5c906001611f78565b1115610d905760405162461bcd60e51b815260206004820152600360248201526209ac2f60eb1b604482015260640161047d565b336000908152600d602052604090205415610dd65760405162461bcd60e51b8152602060048201526006602482015265135a5b9d195960d21b604482015260640161047d565b6000610de133611467565b6000818152600c602090815260409091208451929350610e059290918501906119d6565b50336000908152600d6020526040902055506001600a55565b60006001600160e01b031982166380ac58cd60e01b1480610e4f57506001600160e01b03198216635b5e139f60e01b145b8061037057506301ffc9a760e01b6001600160e01b0319831614610370565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea38261072d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161047d565b6000610f608361072d565b9050806001600160a01b0316846001600160a01b03161480610f9b5750836001600160a01b0316610f9084610408565b6001600160a01b0316145b80610fcb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fe68261072d565b6001600160a01b03161461104e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161047d565b6001600160a01b0382166110b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161047d565b6110bb8383836114bb565b6110c6600082610e6e565b6001600160a01b03831660009081526003602052604081208054600192906110ef908490611fc3565b90915550506001600160a01b038216600090815260036020526040812080546001929061111d908490611f78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111db848484610fd3565b6111e784848484611573565b610a315760405162461bcd60e51b815260040161047d90611ed5565b6060816112275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611251578061123b81612041565b915061124a9050600a83611f90565b915061122b565b60008167ffffffffffffffff81111561126c5761126c6120c8565b6040519080825280601f01601f191660200182016040528015611296576020820181803683370190505b5090505b8415610fcb576112ab600183611fc3565b91506112b8600a8661205c565b6112c3906030611f78565b60f81b8183815181106112d8576112d86120b2565b60200101906001600160f81b031916908160001a9053506112fa600a86611f90565b945061129a565b805160609080611321575050604080516020810190915260008152919050565b60006003611330836002611f78565b61133a9190611f90565b611345906004611fa4565b90506000611354826020611f78565b67ffffffffffffffff81111561136c5761136c6120c8565b6040519080825280601f01601f191660200182016040528015611396576020820181803683370190505b5090506000604051806060016040528060408152602001612197604091399050600181016020830160005b86811015611422576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016113c1565b50600386066001811461143c576002811461144d57611459565b613d3d60f01b600119830152611459565b603d60f81b6000198301525b505050918152949350505050565b60008061147360085490565b61147e906001611f78565b905061148a8382611680565b60405181907f94242c431036b9ba6723a138d4b275a5b38e13a95ef66227a45df427c0f843f390600090a292915050565b6001600160a01b0383166115165761151181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611539565b816001600160a01b0316836001600160a01b03161461153957611539838261169e565b6001600160a01b038216611550576105b38161173b565b826001600160a01b0316826001600160a01b0316146105b3576105b382826117ea565b60006001600160a01b0384163b1561167557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b7903390899088908890600401611e85565b602060405180830381600087803b1580156115d157600080fd5b505af1925050508015611601575060408051601f3d908101601f191682019092526115fe91810190611c91565b60015b61165b573d80801561162f576040519150601f19603f3d011682016040523d82523d6000602084013e611634565b606091505b5080516116535760405162461bcd60e51b815260040161047d90611ed5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fcb565b506001949350505050565b61169a82826040518060200160405280600081525061182e565b5050565b600060016116ab846107a4565b6116b59190611fc3565b600083815260076020526040902054909150808214611708576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061174d90600190611fc3565b60008381526009602052604081205460088054939450909284908110611775576117756120b2565b906000526020600020015490508060088381548110611796576117966120b2565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117ce576117ce61209c565b6001900381819060005260206000200160009055905550505050565b60006117f5836107a4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6118388383611861565b6118456000848484611573565b6105b35760405162461bcd60e51b815260040161047d90611ed5565b6001600160a01b0382166118b75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161047d565b6000818152600260205260409020546001600160a01b03161561191c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161047d565b611928600083836114bb565b6001600160a01b0382166000908152600360205260408120805460019290611951908490611f78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60405180608001604052806004905b60608152602001906001900390816119be5790505090565b8280546119e290612006565b90600052602060002090601f016020900481019282611a045760008555611a4a565b82601f10611a1d57805160ff1916838001178555611a4a565b82800160010185558215611a4a579182015b82811115611a4a578251825591602001919060010190611a2f565b50611a56929150611a5a565b5090565b5b80821115611a565760008155600101611a5b565b600067ffffffffffffffff80841115611a8a57611a8a6120c8565b604051601f8501601f19908116603f01168101908282118183101715611ab257611ab26120c8565b81604052809350858152868686011115611acb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611afc57600080fd5b919050565b600060208284031215611b1357600080fd5b611b1c82611ae5565b9392505050565b60008060408385031215611b3657600080fd5b611b3f83611ae5565b9150611b4d60208401611ae5565b90509250929050565b600080600060608486031215611b6b57600080fd5b611b7484611ae5565b9250611b8260208501611ae5565b9150604084013590509250925092565b60008060008060808587031215611ba857600080fd5b611bb185611ae5565b9350611bbf60208601611ae5565b925060408501359150606085013567ffffffffffffffff811115611be257600080fd5b8501601f81018713611bf357600080fd5b611c0287823560208401611a6f565b91505092959194509250565b60008060408385031215611c2157600080fd5b611c2a83611ae5565b915060208301358015158114611c3f57600080fd5b809150509250929050565b60008060408385031215611c5d57600080fd5b611c6683611ae5565b946020939093013593505050565b600060208284031215611c8657600080fd5b8135611b1c816120de565b600060208284031215611ca357600080fd5b8151611b1c816120de565b600060208284031215611cc057600080fd5b813567ffffffffffffffff811115611cd757600080fd5b8201601f81018413611ce857600080fd5b610fcb84823560208401611a6f565b600060208284031215611d0957600080fd5b5035919050565b60008151808452611d28816020860160208601611fda565b601f01601f19169290920160200192915050565b60008551611d4e818460208a01611fda565b855190830190611d62818360208a01611fda565b8551910190611d75818360208901611fda565b8451910190611d88818360208801611fda565b019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611dcb81601d850160208701611fda565b91909101601d0192915050565b727b226e616d65223a20225341544f534849202360681b81528251600090611e07816013850160208801611fda565b7f222c20226465736372697074696f6e223a2022222c2022696d616765223a20226013918401918201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060338201528351611e6a81604d840160208801611fda565b61227d60f01b604d9290910191820152604f01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eb890830184611d10565b9695505050505050565b602081526000611b1c6020830184611d10565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f8b57611f8b612070565b500190565b600082611f9f57611f9f612086565b500490565b6000816000190483118215151615611fbe57611fbe612070565b500290565b600082821015611fd557611fd5612070565b500390565b60005b83811015611ff5578181015183820152602001611fdd565b83811115610a315750506000910152565b600181811c9082168061201a57607f821691505b6020821081141561203b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561205557612055612070565b5060010190565b60008261206b5761206b612086565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cea57600080fdfe3c666f726569676e4f626a65637420783d2232352220793d223235222077696474683d2233303022206865696768743d223330302220726571756972656446656174757265733d22687474703a2f2f7777772e77332e6f72672f54522f53564731312f6665617475726523457874656e736962696c697479223e3c7020786d6c6e733d22687474703a2f2f7777772e77332e6f72672f313939392f7868746d6c223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22776869746522202f3ea2646970667358221220edfa6364c7fe3c08c807e4d80c6002bda6c7ee9d79a1291048f2a9a0e6e3c35364736f6c63430008070033

Deployed Bytecode Sourcemap

51432:2682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38350:224;;;;;;:::i;:::-;;:::i;:::-;;;7574:14:1;;7567:22;7549:41;;7537:2;7522:18;38350:224:0;;;;;;;;25464:100;;;:::i;:::-;;;;;;;:::i;27023:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6872:32:1;;;6854:51;;6842:2;6827:18;27023:221:0;6708:203:1;26546:411:0;;;;;;:::i;:::-;;:::i;:::-;;38990:113;39078:10;:17;38990:113;;;15787:25:1;;;15775:2;15760:18;38990:113:0;15641:177:1;27913:339:0;;;;;;:::i;:::-;;:::i;38658:256::-;;;;;;:::i;:::-;;:::i;51633:43::-;;51672:4;51633:43;;28323:185;;;;;;:::i;:::-;;:::i;39180:233::-;;;;;;:::i;:::-;;:::i;25158:239::-;;;;;;:::i;:::-;;:::i;24888:208::-;;;;;;:::i;:::-;;:::i;9856:94::-;;;:::i;9205:87::-;9278:6;;-1:-1:-1;;;;;9278:6:0;9205:87;;25633:104;;;:::i;27316:295::-;;;;;;:::i;:::-;;:::i;51536:39::-;;;;;;:::i;:::-;;:::i;28579:328::-;;;;;;:::i;:::-;;:::i;52230:1093::-;;;;;;:::i;:::-;;:::i;51582:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;27682:164;;;;;;:::i;:::-;-1:-1:-1;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27682:164;10105:192;;;;;;:::i;:::-;;:::i;51727:302::-;;;;;;:::i;:::-;;:::i;38350:224::-;38452:4;-1:-1:-1;;;;;;38476:50:0;;-1:-1:-1;;;38476:50:0;;:90;;;38530:36;38554:11;38530:23;:36::i;:::-;38469:97;38350:224;-1:-1:-1;;38350:224:0:o;25464:100::-;25518:13;25551:5;25544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25464:100;:::o;27023:221::-;27099:7;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;27119:73;;;;-1:-1:-1;;;27119:73:0;;12401:2:1;27119:73:0;;;12383:21:1;12440:2;12420:18;;;12413:30;12479:34;12459:18;;;12452:62;-1:-1:-1;;;12530:18:1;;;12523:42;12582:19;;27119:73:0;;;;;;;;;-1:-1:-1;27212:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27212:24:0;;27023:221::o;26546:411::-;26627:13;26643:23;26658:7;26643:14;:23::i;:::-;26627:39;;26691:5;-1:-1:-1;;;;;26685:11:0;:2;-1:-1:-1;;;;;26685:11:0;;;26677:57;;;;-1:-1:-1;;;26677:57:0;;13916:2:1;26677:57:0;;;13898:21:1;13955:2;13935:18;;;13928:30;13994:34;13974:18;;;13967:62;-1:-1:-1;;;14045:18:1;;;14038:31;14086:19;;26677:57:0;13714:397:1;26677:57:0;8145:10;-1:-1:-1;;;;;26769:21:0;;;;:62;;-1:-1:-1;26794:37:0;26811:5;8145:10;27682:164;:::i;26794:37::-;26747:168;;;;-1:-1:-1;;;26747:168:0;;10794:2:1;26747:168:0;;;10776:21:1;10833:2;10813:18;;;10806:30;10872:34;10852:18;;;10845:62;10943:26;10923:18;;;10916:54;10987:19;;26747:168:0;10592:420:1;26747:168:0;26928:21;26937:2;26941:7;26928:8;:21::i;:::-;26616:341;26546:411;;:::o;27913:339::-;28108:41;8145:10;28141:7;28108:18;:41::i;:::-;28100:103;;;;-1:-1:-1;;;28100:103:0;;;;;;;:::i;:::-;28216:28;28226:4;28232:2;28236:7;28216:9;:28::i;38658:256::-;38755:7;38791:23;38808:5;38791:16;:23::i;:::-;38783:5;:31;38775:87;;;;-1:-1:-1;;;38775:87:0;;8027:2:1;38775:87:0;;;8009:21:1;8066:2;8046:18;;;8039:30;8105:34;8085:18;;;8078:62;-1:-1:-1;;;8156:18:1;;;8149:41;8207:19;;38775:87:0;7825:407:1;38775:87:0;-1:-1:-1;;;;;;38880:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38658:256::o;28323:185::-;28461:39;28478:4;28484:2;28488:7;28461:39;;;;;;;;;;;;:16;:39::i;39180:233::-;39255:7;39291:30;39078:10;:17;;38990:113;39291:30;39283:5;:38;39275:95;;;;-1:-1:-1;;;39275:95:0;;14736:2:1;39275:95:0;;;14718:21:1;14775:2;14755:18;;;14748:30;14814:34;14794:18;;;14787:62;-1:-1:-1;;;14865:18:1;;;14858:42;14917:19;;39275:95:0;14534:408:1;39275:95:0;39388:10;39399:5;39388:17;;;;;;;;:::i;:::-;;;;;;;;;39381:24;;39180:233;;;:::o;25158:239::-;25230:7;25266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25266:16:0;25301:19;25293:73;;;;-1:-1:-1;;;25293:73:0;;11630:2:1;25293:73:0;;;11612:21:1;11669:2;11649:18;;;11642:30;11708:34;11688:18;;;11681:62;-1:-1:-1;;;11759:18:1;;;11752:39;11808:19;;25293:73:0;11428:405:1;24888:208:0;24960:7;-1:-1:-1;;;;;24988:19:0;;24980:74;;;;-1:-1:-1;;;24980:74:0;;11219:2:1;24980:74:0;;;11201:21:1;11258:2;11238:18;;;11231:30;11297:34;11277:18;;;11270:62;-1:-1:-1;;;11348:18:1;;;11341:40;11398:19;;24980:74:0;11017:406:1;24980:74:0;-1:-1:-1;;;;;;25072:16:0;;;;;:9;:16;;;;;;;24888:208::o;9856:94::-;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;12814:2:1;9417:68:0;;;12796:21:1;;;12833:18;;;12826:30;12892:34;12872:18;;;12865:62;12944:18;;9417:68:0;12612:356:1;9417:68:0;9921:21:::1;9939:1;9921:9;:21::i;:::-;9856:94::o:0;25633:104::-;25689:13;25722:7;25715:14;;;;;:::i;27316:295::-;-1:-1:-1;;;;;27419:24:0;;8145:10;27419:24;;27411:62;;;;-1:-1:-1;;;27411:62:0;;10027:2:1;27411:62:0;;;10009:21:1;10066:2;10046:18;;;10039:30;10105:27;10085:18;;;10078:55;10150:18;;27411:62:0;9825:349:1;27411:62:0;8145:10;27486:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27486:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27486:53:0;;;;;;;;;;27555:48;;7549:41:1;;;27486:42:0;;8145:10;27555:48;;7522:18:1;27555:48:0;;;;;;;27316:295;;:::o;51536:39::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28579:328::-;28754:41;8145:10;28787:7;28754:18;:41::i;:::-;28746:103;;;;-1:-1:-1;;;28746:103:0;;;;;;;:::i;:::-;28860:39;28874:4;28880:2;28884:7;28893:5;28860:13;:39::i;:::-;28579:328;;;;:::o;52230:1093::-;52295:13;52321:22;;:::i;:::-;52356:233;;;;;;;;;;;;;;;;;;;52602:175;;;;;;;;;;;;;;52356:8;52602:175;;;:8;;;;:175;;;;52809:17;;;;:8;:17;;;;;;52798:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;52804:1;52798:8;;;;;;;:::i;:::-;;;;:28;;;;52839:39;;;;;;;;;;;;;;;;;:5;52845:1;52839:8;;;;;;;:::i;:::-;;;;;;;;;:39;;;;52938:8;;52948;;;;52958;;;;;52968;;;;52921:56;;52891:20;;52921:56;;52938:8;52948;52968;52921:56;;:::i;:::-;;;;;;;;;;;;;52891:87;;52999:18;53020:186;53087:17;53096:7;53087:8;:17::i;:::-;53168:28;53188:6;53168:13;:28::i;:::-;53047:156;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53020:13;:186::i;:::-;52999:207;;53283:4;53233:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53233:55:0;;;;;;;;;;52230:1093;-1:-1:-1;;;;;52230:1093:0:o;10105:192::-;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;12814:2:1;9417:68:0;;;12796:21:1;;;12833:18;;;12826:30;12892:34;12872:18;;;12865:62;12944:18;;9417:68:0;12612:356:1;9417:68:0;-1:-1:-1;;;;;10194:22:0;::::1;10186:73;;;::::0;-1:-1:-1;;;10186:73:0;;8858:2:1;10186:73:0::1;::::0;::::1;8840:21:1::0;8897:2;8877:18;;;8870:30;8936:34;8916:18;;;8909:62;-1:-1:-1;;;8987:18:1;;;8980:36;9033:19;;10186:73:0::1;8656:402:1::0;10186:73:0::1;10270:19;10280:8;10270:9;:19::i;:::-;10105:192:::0;:::o;51727:302::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;15149:2:1;12732:63:0;;;15131:21:1;15188:2;15168:18;;;15161:30;15227:33;15207:18;;;15200:61;15278:18;;12732:63:0;14947:355:1;12732:63:0;12144:1;12873:7;:18;51672:4:::1;51804:13;39078:10:::0;:17;;38990:113;51804:13:::1;:17;::::0;51820:1:::1;51804:17;:::i;:::-;:33;;51796:49;;;::::0;-1:-1:-1;;;51796:49:0;;13585:2:1;51796:49:0::1;::::0;::::1;13567:21:1::0;13624:1;13604:18;;;13597:29;-1:-1:-1;;;13642:18:1;;;13635:33;13685:18;;51796:49:0::1;13383:326:1::0;51796:49:0::1;51875:10;51864:22;::::0;;;:10:::1;:22;::::0;;;;;:27;51856:46:::1;;;::::0;-1:-1:-1;;;51856:46:0;;15509:2:1;51856:46:0::1;::::0;::::1;15491:21:1::0;15548:1;15528:18;;;15521:29;-1:-1:-1;;;15566:18:1;;;15559:36;15612:18;;51856:46:0::1;15307:329:1::0;51856:46:0::1;51913:7;51923:26;51938:10;51923:14;:26::i;:::-;51960:12;::::0;;;:8:::1;:12;::::0;;;;;;;:23;;51913:36;;-1:-1:-1;51960:23:0::1;::::0;:12;;:23;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;52005:10:0::1;51994:22;::::0;;;:10:::1;:22;::::0;;;;:27;-1:-1:-1;12100:1:0;13052:7;:22;51727:302::o;24519:305::-;24621:4;-1:-1:-1;;;;;;24658:40:0;;-1:-1:-1;;;24658:40:0;;:105;;-1:-1:-1;;;;;;;24715:48:0;;-1:-1:-1;;;24715:48:0;24658:105;:158;;;-1:-1:-1;;;;;;;;;;23235:40:0;;;24780:36;23126:157;34399:174;34474:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34474:29:0;-1:-1:-1;;;;;34474:29:0;;;;;;;;:24;;34528:23;34474:24;34528:14;:23::i;:::-;-1:-1:-1;;;;;34519:46:0;;;;;;;;;;;34399:174;;:::o;30711:348::-;30804:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;30821:73;;;;-1:-1:-1;;;30821:73:0;;10381:2:1;30821:73:0;;;10363:21:1;10420:2;10400:18;;;10393:30;10459:34;10439:18;;;10432:62;-1:-1:-1;;;10510:18:1;;;10503:42;10562:19;;30821:73:0;10179:408:1;30821:73:0;30905:13;30921:23;30936:7;30921:14;:23::i;:::-;30905:39;;30974:5;-1:-1:-1;;;;;30963:16:0;:7;-1:-1:-1;;;;;30963:16:0;;:51;;;;31007:7;-1:-1:-1;;;;;30983:31:0;:20;30995:7;30983:11;:20::i;:::-;-1:-1:-1;;;;;30983:31:0;;30963:51;:87;;;-1:-1:-1;;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31018:32;30955:96;30711:348;-1:-1:-1;;;;30711:348:0:o;33703:578::-;33862:4;-1:-1:-1;;;;;33835:31:0;:23;33850:7;33835:14;:23::i;:::-;-1:-1:-1;;;;;33835:31:0;;33827:85;;;;-1:-1:-1;;;33827:85:0;;13175:2:1;33827:85:0;;;13157:21:1;13214:2;13194:18;;;13187:30;13253:34;13233:18;;;13226:62;-1:-1:-1;;;13304:18:1;;;13297:39;13353:19;;33827:85:0;12973:405:1;33827:85:0;-1:-1:-1;;;;;33931:16:0;;33923:65;;;;-1:-1:-1;;;33923:65:0;;9622:2:1;33923:65:0;;;9604:21:1;9661:2;9641:18;;;9634:30;9700:34;9680:18;;;9673:62;-1:-1:-1;;;9751:18:1;;;9744:34;9795:19;;33923:65:0;9420:400:1;33923:65:0;34001:39;34022:4;34028:2;34032:7;34001:20;:39::i;:::-;34105:29;34122:1;34126:7;34105:8;:29::i;:::-;-1:-1:-1;;;;;34147:15:0;;;;;;:9;:15;;;;;:20;;34166:1;;34147:15;:20;;34166:1;;34147:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34178:13:0;;;;;;:9;:13;;;;;:18;;34195:1;;34178:13;:18;;34195:1;;34178:18;:::i;:::-;;;;-1:-1:-1;;34207:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34207:21:0;-1:-1:-1;;;;;34207:21:0;;;;;;;;;34246:27;;34207:16;;34246:27;;;;;;;33703:578;;;:::o;10305:173::-;10380:6;;;-1:-1:-1;;;;;10397:17:0;;;-1:-1:-1;;;;;;10397:17:0;;;;;;;10430:40;;10380:6;;;10397:17;10380:6;;10430:40;;10361:16;;10430:40;10350:128;10305:173;:::o;29789:315::-;29946:28;29956:4;29962:2;29966:7;29946:9;:28::i;:::-;29993:48;30016:4;30022:2;30026:7;30035:5;29993:22;:48::i;:::-;29985:111;;;;-1:-1:-1;;;29985:111:0;;;;;;;:::i;53335:715::-;53391:13;53604:10;53600:53;;-1:-1:-1;;53631:10:0;;;;;;;;;;;;-1:-1:-1;;;53631:10:0;;;;;53335:715::o;53600:53::-;53678:5;53663:12;53719:78;53726:9;;53719:78;;53752:8;;;;:::i;:::-;;-1:-1:-1;53775:10:0;;-1:-1:-1;53783:2:0;53775:10;;:::i;:::-;;;53719:78;;;53807:19;53839:6;53829:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53829:17:0;;53807:39;;53857:154;53864:10;;53857:154;;53891:11;53901:1;53891:11;;:::i;:::-;;-1:-1:-1;53960:10:0;53968:2;53960:5;:10;:::i;:::-;53947:24;;:2;:24;:::i;:::-;53934:39;;53917:6;53924;53917:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;53917:56:0;;;;;;;;-1:-1:-1;53988:11:0;53997:2;53988:11;;:::i;:::-;;;53857:154;;54465:1607;54563:11;;54523:13;;54589:8;54585:23;;-1:-1:-1;;54599:9:0;;;;;;;;;-1:-1:-1;54599:9:0;;;54465:1607;-1:-1:-1;54465:1607:0:o;54585:23::-;54660:18;54698:1;54687:7;:3;54693:1;54687:7;:::i;:::-;54686:13;;;;:::i;:::-;54681:19;;:1;:19;:::i;:::-;54660:40;-1:-1:-1;54758:19:0;54790:15;54660:40;54803:2;54790:15;:::i;:::-;54780:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54780:26:0;;54758:48;;54819:18;54840:5;;;;;;;;;;;;;;;;;54819:26;;54909:1;54902:5;54898:13;54954:2;54946:6;54942:15;55005:1;54973:777;55028:3;55025:1;55022:10;54973:777;;;55083:1;55126:12;;;;;55120:19;55221:4;55209:2;55205:14;;;;;55187:40;;55181:47;55330:2;55326:14;;;55322:25;;55308:40;;55302:47;55459:1;55455:13;;;55451:24;;55437:39;;55431:46;55579:16;;;;55565:31;;55559:38;55257:1;55253:11;;;55351:4;55298:58;;;55289:68;55382:11;;55427:57;;;55418:67;;;;55510:11;;55555:49;;55546:59;55634:3;55630:13;55663:22;;55733:1;55718:17;;;;55076:9;54973:777;;;54977:44;55782:1;55777:3;55773:11;55803:1;55798:84;;;;55901:1;55896:82;;;;55766:212;;55798:84;-1:-1:-1;;;;;55831:17:0;;55824:43;55798:84;;55896:82;-1:-1:-1;;;;;55929:17:0;;55922:41;55766:212;-1:-1:-1;;;55994:26:0;;;56001:6;54465:1607;-1:-1:-1;;;;54465:1607:0:o;52037:183::-;52090:4;52107:7;52117:13;39078:10;:17;;38990:113;52117:13;:17;;52133:1;52117:17;:::i;:::-;52107:27;;52145:18;52155:3;52160:2;52145:9;:18::i;:::-;52179:13;;52189:2;;52179:13;;;;;52210:2;52037:183;-1:-1:-1;;52037:183:0:o;40026:589::-;-1:-1:-1;;;;;40232:18:0;;40228:187;;40267:40;40299:7;41442:10;:17;;41415:24;;;;:15;:24;;;;;:44;;;41470:24;;;;;;;;;;;;41338:164;40267:40;40228:187;;;40337:2;-1:-1:-1;;;;;40329:10:0;:4;-1:-1:-1;;;;;40329:10:0;;40325:90;;40356:47;40389:4;40395:7;40356:32;:47::i;:::-;-1:-1:-1;;;;;40429:16:0;;40425:183;;40462:45;40499:7;40462:36;:45::i;40425:183::-;40535:4;-1:-1:-1;;;;;40529:10:0;:2;-1:-1:-1;;;;;40529:10:0;;40525:83;;40556:40;40584:2;40588:7;40556:27;:40::i;35138:803::-;35293:4;-1:-1:-1;;;;;35314:13:0;;15621:20;15669:8;35310:624;;35350:72;;-1:-1:-1;;;35350:72:0;;-1:-1:-1;;;;;35350:36:0;;;;;:72;;8145:10;;35401:4;;35407:7;;35416:5;;35350:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35350:72:0;;;;;;;;-1:-1:-1;;35350:72:0;;;;;;;;;;;;:::i;:::-;;;35346:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35596:13:0;;35592:272;;35639:60;;-1:-1:-1;;;35639:60:0;;;;;;;:::i;35592:272::-;35814:6;35808:13;35799:6;35795:2;35791:15;35784:38;35346:533;-1:-1:-1;;;;;;35473:55:0;-1:-1:-1;;;35473:55:0;;-1:-1:-1;35466:62:0;;35310:624;-1:-1:-1;35918:4:0;35138:803;;;;;;:::o;31401:110::-;31477:26;31487:2;31491:7;31477:26;;;;;;;;;;;;:9;:26::i;:::-;31401:110;;:::o;42129:988::-;42395:22;42445:1;42420:22;42437:4;42420:16;:22::i;:::-;:26;;;;:::i;:::-;42457:18;42478:26;;;:17;:26;;;;;;42395:51;;-1:-1:-1;42611:28:0;;;42607:328;;-1:-1:-1;;;;;42678:18:0;;42656:19;42678:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42729:30;;;;;;:44;;;42846:30;;:17;:30;;;;;:43;;;42607:328;-1:-1:-1;43031:26:0;;;;:17;:26;;;;;;;;43024:33;;;-1:-1:-1;;;;;43075:18:0;;;;;:12;:18;;;;;:34;;;;;;;43068:41;42129:988::o;43412:1079::-;43690:10;:17;43665:22;;43690:21;;43710:1;;43690:21;:::i;:::-;43722:18;43743:24;;;:15;:24;;;;;;44116:10;:26;;43665:46;;-1:-1:-1;43743:24:0;;43665:46;;44116:26;;;;;;:::i;:::-;;;;;;;;;44094:48;;44180:11;44155:10;44166;44155:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44260:28;;;:15;:28;;;;;;;:41;;;44432:24;;;;;44425:31;44467:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43483:1008;;;43412:1079;:::o;40916:221::-;41001:14;41018:20;41035:2;41018:16;:20::i;:::-;-1:-1:-1;;;;;41049:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41094:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40916:221:0:o;31738:321::-;31868:18;31874:2;31878:7;31868:5;:18::i;:::-;31919:54;31950:1;31954:2;31958:7;31967:5;31919:22;:54::i;:::-;31897:154;;;;-1:-1:-1;;;31897:154:0;;;;;;;:::i;32395:382::-;-1:-1:-1;;;;;32475:16:0;;32467:61;;;;-1:-1:-1;;;32467:61:0;;12040:2:1;32467:61:0;;;12022:21:1;;;12059:18;;;12052:30;12118:34;12098:18;;;12091:62;12170:18;;32467:61:0;11838:356:1;32467:61:0;30482:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;:30;32539:58;;;;-1:-1:-1;;;32539:58:0;;9265:2:1;32539:58:0;;;9247:21:1;9304:2;9284:18;;;9277:30;9343;9323:18;;;9316:58;9391:18;;32539:58:0;9063:352:1;32539:58:0;32610:45;32639:1;32643:2;32647:7;32610:20;:45::i;:::-;-1:-1:-1;;;;;32668:13:0;;;;;;:9;:13;;;;;:18;;32685:1;;32668:13;:18;;32685:1;;32668:18;:::i;:::-;;;;-1:-1:-1;;32697:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32697:21:0;-1:-1:-1;;;;;32697:21:0;;;;;;;;32736:33;;32697:16;;;32736:33;;32697:16;;32736:33;32395:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::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:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:858::-;4580:3;4618:6;4612:13;4634:53;4680:6;4675:3;4668:4;4660:6;4656:17;4634:53;:::i;:::-;4750:13;;4709:16;;;;4772:57;4750:13;4709:16;4806:4;4794:17;;4772:57;:::i;:::-;4896:13;;4851:20;;;4918:57;4896:13;4851:20;4952:4;4940:17;;4918:57;:::i;:::-;5042:13;;4997:20;;;5064:57;5042:13;4997:20;5098:4;5086:17;;5064:57;:::i;:::-;5137:20;;4305:858;-1:-1:-1;;;;;;4305:858:1:o;5168:448::-;5430:31;5425:3;5418:44;5400:3;5491:6;5485:13;5507:62;5562:6;5557:2;5552:3;5548:12;5541:4;5533:6;5529:17;5507:62;:::i;:::-;5589:16;;;;5607:2;5585:25;;5168:448;-1:-1:-1;;5168:448:1:o;5621:1082::-;-1:-1:-1;;;6121:63:1;;6207:13;;6103:3;;6229:62;6207:13;6279:2;6270:12;;6263:4;6251:17;;6229:62;:::i;:::-;6355:66;6350:2;6310:16;;;6342:11;;;6335:87;6451:28;6446:2;6438:11;;6431:49;6505:13;;6527:63;6505:13;6576:2;6568:11;;6561:4;6549:17;;6527:63;:::i;:::-;-1:-1:-1;;;6650:2:1;6609:17;;;;6642:11;;;6635:35;6694:2;6686:11;;5621:1082;-1:-1:-1;;;;5621:1082:1:o;6916:488::-;-1:-1:-1;;;;;7185:15:1;;;7167:34;;7237:15;;7232:2;7217:18;;7210:43;7284:2;7269:18;;7262:34;;;7332:3;7327:2;7312:18;;7305:31;;;7110:4;;7353:45;;7378:19;;7370:6;7353:45;:::i;:::-;7345:53;6916:488;-1:-1:-1;;;;;;6916:488:1:o;7601:219::-;7750:2;7739:9;7732:21;7713:4;7770:44;7810:2;7799:9;7795:18;7787:6;7770:44;:::i;8237:414::-;8439:2;8421:21;;;8478:2;8458:18;;;8451:30;8517:34;8512:2;8497:18;;8490:62;-1:-1:-1;;;8583:2:1;8568:18;;8561:48;8641:3;8626:19;;8237:414::o;14116:413::-;14318:2;14300:21;;;14357:2;14337:18;;;14330:30;14396:34;14391:2;14376:18;;14369:62;-1:-1:-1;;;14462:2:1;14447:18;;14440:47;14519:3;14504:19;;14116:413::o;15823:128::-;15863:3;15894:1;15890:6;15887:1;15884:13;15881:39;;;15900:18;;:::i;:::-;-1:-1:-1;15936:9:1;;15823:128::o;15956:120::-;15996:1;16022;16012:35;;16027:18;;:::i;:::-;-1:-1:-1;16061:9:1;;15956:120::o;16081:168::-;16121:7;16187:1;16183;16179:6;16175:14;16172:1;16169:21;16164:1;16157:9;16150:17;16146:45;16143:71;;;16194:18;;:::i;:::-;-1:-1:-1;16234:9:1;;16081:168::o;16254:125::-;16294:4;16322:1;16319;16316:8;16313:34;;;16327:18;;:::i;:::-;-1:-1:-1;16364:9:1;;16254:125::o;16384:258::-;16456:1;16466:113;16480:6;16477:1;16474:13;16466:113;;;16556:11;;;16550:18;16537:11;;;16530:39;16502:2;16495:10;16466:113;;;16597:6;16594:1;16591:13;16588:48;;;-1:-1:-1;;16632:1:1;16614:16;;16607:27;16384:258::o;16647:380::-;16726:1;16722:12;;;;16769;;;16790:61;;16844:4;16836:6;16832:17;16822:27;;16790:61;16897:2;16889:6;16886:14;16866:18;16863:38;16860:161;;;16943:10;16938:3;16934:20;16931:1;16924:31;16978:4;16975:1;16968:15;17006:4;17003:1;16996:15;16860:161;;16647:380;;;:::o;17032:135::-;17071:3;-1:-1:-1;;17092:17:1;;17089:43;;;17112:18;;:::i;:::-;-1:-1:-1;17159:1:1;17148:13;;17032:135::o;17172:112::-;17204:1;17230;17220:35;;17235:18;;:::i;:::-;-1:-1:-1;17269:9:1;;17172:112::o;17289:127::-;17350:10;17345:3;17341:20;17338:1;17331:31;17381:4;17378:1;17371:15;17405:4;17402:1;17395:15;17421:127;17482:10;17477:3;17473:20;17470:1;17463:31;17513:4;17510:1;17503:15;17537:4;17534:1;17527:15;17553:127;17614:10;17609:3;17605:20;17602:1;17595:31;17645:4;17642:1;17635:15;17669:4;17666:1;17659:15;17685:127;17746:10;17741:3;17737:20;17734:1;17727:31;17777:4;17774:1;17767:15;17801:4;17798:1;17791:15;17817:127;17878:10;17873:3;17869:20;17866:1;17859:31;17909:4;17906:1;17899:15;17933:4;17930:1;17923:15;17949:131;-1:-1:-1;;;;;;18023:32:1;;18013:43;;18003:71;;18070:1;18067;18060:12

Swarm Source

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