ETH Price: $3,383.99 (-1.56%)
Gas: 2 Gwei

Token

PreCubeCoin (PCC)
 

Overview

Max Total Supply

0 PCC

Holders

885

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
losemoney.eth
Balance
1 PCC
0xcd74df7b8f0e01aA57FF5cE2518C53439370A4df
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:
PreCubeCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


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


// File: contracts/ERC721.sol



pragma solidity =0.8.4;


/**
 * @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, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    struct Collaborators {
        address addr;
        uint256 cut;
    }
    
    Collaborators[] internal collaborators;


    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
     // solhint-disable-next-lin
     // solhint-func-visibility-ignore-constructor
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        
        collaborators.push(Collaborators(address(0x0Df29b4033a7732aa9db9366bEBDd1481F6DfeEf), 9000));
        collaborators.push(Collaborators(address(0xD42Ad4711665A7968A0ad5d98cC187ee2FaF741c), 500));
        collaborators.push(Collaborators(address(0x3a7E25d5fa1Ee02d15c276F9Eb1545D4626FFF2e), 500));
    }

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner ||
            ERC721.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 ||
        ERC721.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);
    }

    function _batchMint(address to, uint256[] memory tokenIds)
    internal
    virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity =0.8.4;

contract PreCubeCoin is ERC721("PreCubeCoin", "PCC"){
  
  event Opened(address indexed from, uint256 indexed tokenId);
  
   modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier onlyCollaborator() {
        bool isCollaborator = false;
        for (uint256 i; i < collaborators.length; i++) {
            if (collaborators[i].addr == msg.sender) {
                isCollaborator = true;

                break;
            }
        }

        require(
            owner() == _msgSender() || isCollaborator,
            "Ownable: caller is not the owner nor a collaborator"
        );

        _;
    }

    modifier mintStarted() {
        require(
            startMintDate != 0 && startMintDate <= block.timestamp,
            "You are too early"
        );

        _;
    }


    uint256 private startMintDate = 1631224800; //09.09.2021 22:00 UTC

    uint256 private claimPrice = 90000000000000000;
    
    uint256 private totalTokens = 1000;
    uint256 private totalMintedTokens = 0;

    uint128 private basisPoints = 10000;
    
    uint256 private maxClaimsPerWallet = 1;

    mapping(address => uint256) private claimedTokenPerWallet;
    
    string private baseURI = "https://ucube.io/precube/meta";
    string private contractBaseURI = "https://ucube.io/precube/contract_meta";
    
    
    // ONLY COLLABORATORS

    /**
     * @dev Allows to withdraw the Ether in the contract and split it among the collaborators
     */
    function withdraw() external onlyCollaborator {
        uint256 totalBalance = address(this).balance;

        for (uint256 i; i < collaborators.length; i++) {
            payable(collaborators[i].addr).transfer(
                mulScale(totalBalance, collaborators[i].cut, basisPoints)
            );
        }
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyCollaborator {
        baseURI = _uri;
    }
    
    function setContractBaseTokenURI(string memory _uri) external onlyCollaborator {
        contractBaseURI = _uri;
    }

    /**
     * @dev Sets the claim price for each token
     */
    function setClaimPrice(uint256 _claimPrice) external onlyCollaborator {
        claimPrice = _claimPrice;
    }
    
    function setStartMintDate(uint256 _startMintDate) external onlyCollaborator {
        require(0 == totalMintedTokens, 'Minting already in progress...');
        
        startMintDate = _startMintDate;
    }

    // END ONLY COLLABORATORS
    
    
    function mint() external payable callerIsUser mintStarted {
        require(msg.value >= claimPrice, "Not enough Ether to mint a cube");

        require(
            claimedTokenPerWallet[msg.sender] < maxClaimsPerWallet,
            "You cannot claim more cubes."
        );

        require(totalMintedTokens < totalTokens, "No cubes left to be minted");

        claimedTokenPerWallet[msg.sender]++;
        
        _mint(msg.sender, totalMintedTokens);
        
        totalMintedTokens++;
    }
    
    function contractURI() public view returns (string memory) {
        return contractBaseURI;
    }


    
    // INTERNAL 
    
    function mulScale(
        uint256 x,
        uint256 y,
        uint128 scale
    ) internal pure returns (uint256) {
        uint256 a = x / scale;
        uint256 b = x % scale;
        uint256 c = y / scale;
        uint256 d = y % scale;

        return a * c * scale + a * d + b * c + (b * d) / scale;
    }
    
    
    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
  
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Opened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","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":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimPrice","type":"uint256"}],"name":"setClaimPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startMintDate","type":"uint256"}],"name":"setStartMintDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

63613a83e060085567013fbe85edc900006009556103e8600a556000600b55600c80546001600160801b0319166127101790556001600d5560c0604052601d60808190527f68747470733a2f2f75637562652e696f2f707265637562652f6d65746100000060a09081526200007891600f9190620002dc565b50604051806060016040528060268152602001620023d1602691398051620000a991601091602090910190620002dc565b50348015620000b757600080fd5b506040518060400160405280600b81526020016a283932a1bab132a1b7b4b760a91b8152506040518060400160405280600381526020016250434360e81b815250620001126200010c6200028860201b60201c565b6200028c565b815162000127906001906020850190620002dc565b5080516200013d906002906020840190620002dc565b5050604080518082018252730df29b4033a7732aa9db9366bebdd1481f6dfeef815261232860208083019182526007805460018082018355600083815295517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600293840281810180546001600160a01b03199081166001600160a01b039586161790915597517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689918201558951808b018b5273d42ad4711665a7968a0ad5d98cc187ee2faf741c81526101f481890181815288548088018a55898d52925192880280860180548d169488169490941790935551918301919091558a51808c01909b52733a7e25d5fa1ee02d15c276f9eb1545d4626fff2e8b52968a0196875285549384018655949097529651910294850180549094169516949094179091555191015550620003bf565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002ea9062000382565b90600052602060002090601f0160209004810192826200030e576000855562000359565b82601f106200032957805160ff191683800117855562000359565b8280016001018555821562000359579182015b82811115620003595782518255916020019190600101906200033c565b50620003679291506200036b565b5090565b5b808211156200036757600081556001016200036c565b600181811c908216806200039757607f821691505b60208210811415620003b957634e487b7160e01b600052602260045260246000fd5b50919050565b61200280620003cf6000396000f3fe6080604052600436106101405760003560e01c806351f468c0116100b6578063a22cb4651161006f578063a22cb46514610369578063b88d4fde14610389578063c87b56dd146103a9578063e8a3d485146103c9578063e985e9c5146103de578063f2fde38b1461042757600080fd5b806351f468c0146102b35780636352211e146102d357806370a08231146102f3578063715018a6146103215780638da5cb5b1461033657806395d89b411461035457600080fd5b806323b872dd1161010857806323b872dd146101fe57806330176e131461021e5780633ccfd60b1461023e578063408facb11461025357806342842e0e14610273578063493143e41461029357600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d45780631249c58b146101f6575b600080fd5b34801561015157600080fd5b50610165610160366004611c45565b610447565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f610499565b6040516101719190611d73565b3480156101a857600080fd5b506101bc6101b7366004611cc3565b61052b565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611c1c565b6105c5565b005b6101f46106db565b34801561020a57600080fd5b506101f4610219366004611b2e565b6108c5565b34801561022a57600080fd5b506101f4610239366004611c7d565b6108f6565b34801561024a57600080fd5b506101f46109b0565b34801561025f57600080fd5b506101f461026e366004611c7d565b610b3c565b34801561027f57600080fd5b506101f461028e366004611b2e565b610bf6565b34801561029f57600080fd5b506101f46102ae366004611cc3565b610c11565b3480156102bf57600080fd5b506101f46102ce366004611cc3565b610d0e565b3480156102df57600080fd5b506101bc6102ee366004611cc3565b610dbb565b3480156102ff57600080fd5b5061031361030e366004611ae2565b610e32565b604051908152602001610171565b34801561032d57600080fd5b506101f4610eb9565b34801561034257600080fd5b506000546001600160a01b03166101bc565b34801561036057600080fd5b5061018f610f1f565b34801561037557600080fd5b506101f4610384366004611be2565b610f2e565b34801561039557600080fd5b506101f46103a4366004611b69565b610ff3565b3480156103b557600080fd5b5061018f6103c4366004611cc3565b61102b565b3480156103d557600080fd5b5061018f611106565b3480156103ea57600080fd5b506101656103f9366004611afc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561043357600080fd5b506101f4610442366004611ae2565b611115565b60006001600160e01b031982166380ac58cd60e01b148061047857506001600160e01b03198216635b5e139f60e01b145b8061049357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104a890611f0a565b80601f01602080910402602001604051908101604052809291908181526020018280546104d490611f0a565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105a95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105d082610dbb565b9050806001600160a01b0316836001600160a01b0316141561063e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a0565b336001600160a01b038216148061065a575061065a81336103f9565b6106cc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a0565b6106d683836111e0565b505050565b32331461072a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016105a0565b6008541580159061073d57504260085411155b61077d5760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016105a0565b6009543410156107cf5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f75676820457468657220746f206d696e74206120637562650060448201526064016105a0565b600d54336000908152600e60205260409020541061082f5760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f7420636c61696d206d6f72652063756265732e0000000060448201526064016105a0565b600a54600b54106108825760405162461bcd60e51b815260206004820152601a60248201527f4e6f206375626573206c65667420746f206265206d696e74656400000000000060448201526064016105a0565b336000908152600e6020526040812080549161089d83611f45565b91905055506108ae33600b5461124e565b600b80549060006108be83611f45565b9190505550565b6108cf3382611390565b6108eb5760405162461bcd60e51b81526004016105a090611e2b565b6106d6838383611487565b6000805b60075481101561096a57336001600160a01b03166007828154811061092f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610958576001915061096a565b8061096281611f45565b9150506108fa565b506000546001600160a01b03163314806109815750805b61099d5760405162461bcd60e51b81526004016105a090611dd8565b81516106d690600f9060208501906119b7565b6000805b600754811015610a2457336001600160a01b0316600782815481106109e957634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610a125760019150610a24565b80610a1c81611f45565b9150506109b4565b506000546001600160a01b0316331480610a3b5750805b610a575760405162461bcd60e51b81526004016105a090611dd8565b4760005b6007548110156106d65760078181548110610a8657634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc610b018460078581548110610adc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912060016002909202010154600c546001600160801b0316611627565b6040518115909202916000818181858888f19350505050158015610b29573d6000803e3d6000fd5b5080610b3481611f45565b915050610a5b565b6000805b600754811015610bb057336001600160a01b031660078281548110610b7557634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610b9e5760019150610bb0565b80610ba881611f45565b915050610b40565b506000546001600160a01b0316331480610bc75750805b610be35760405162461bcd60e51b81526004016105a090611dd8565b81516106d69060109060208501906119b7565b6106d683838360405180602001604052806000815250610ff3565b6000805b600754811015610c8557336001600160a01b031660078281548110610c4a57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610c735760019150610c85565b80610c7d81611f45565b915050610c15565b506000546001600160a01b0316331480610c9c5750805b610cb85760405162461bcd60e51b81526004016105a090611dd8565b600b5415610d085760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720616c726561647920696e2070726f67726573732e2e2e000060448201526064016105a0565b50600855565b6000805b600754811015610d8257336001600160a01b031660078281548110610d4757634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610d705760019150610d82565b80610d7a81611f45565b915050610d12565b506000546001600160a01b0316331480610d995750805b610db55760405162461bcd60e51b81526004016105a090611dd8565b50600955565b6000818152600360205260408120546001600160a01b0316806104935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a0565b60006001600160a01b038216610e9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105a0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a0565b610f1d60006116fe565b565b6060600280546104a890611f0a565b6001600160a01b038216331415610f875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ffd3383611390565b6110195760405162461bcd60e51b81526004016105a090611e2b565b6110258484848461174e565b50505050565b6000818152600360205260409020546060906001600160a01b03166110aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a0565b60006110b4611781565b905060008151116110d457604051806020016040528060008152506110ff565b806110de84611790565b6040516020016110ef929190611d07565b6040516020818303038152906040525b9392505050565b6060601080546104a890611f0a565b6000546001600160a01b0316331461116f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a0565b6001600160a01b0381166111d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a0565b6111dd816116fe565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061121582610dbb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166112a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a0565b6000818152600360205260409020546001600160a01b0316156113095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a0565b6001600160a01b0382166000908152600460205260408120805460019290611332908490611e7c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600360205260408120546001600160a01b03166114095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a0565b600061141483610dbb565b9050806001600160a01b0316846001600160a01b0316148061144f5750836001600160a01b03166114448461052b565b6001600160a01b0316145b8061147f57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661149a82610dbb565b6001600160a01b0316146115025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a0565b6001600160a01b0382166115645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a0565b61156f6000826111e0565b6001600160a01b0383166000908152600460205260408120805460019290611598908490611ec7565b90915550506001600160a01b03821660009081526004602052604081208054600192906115c6908490611e7c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061163d6001600160801b03841686611e94565b905060006116546001600160801b03851687611f60565b9050600061166b6001600160801b03861687611e94565b905060006116826001600160801b03871688611f60565b90506001600160801b0386166116988285611ea8565b6116a29190611e94565b6116ac8385611ea8565b6116b68387611ea8565b6001600160801b0389166116ca8689611ea8565b6116d49190611ea8565b6116de9190611e7c565b6116e89190611e7c565b6116f29190611e7c565b98975050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611759848484611487565b611765848484846118aa565b6110255760405162461bcd60e51b81526004016105a090611d86565b6060600f80546104a890611f0a565b6060816117b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117de57806117c881611f45565b91506117d79050600a83611e94565b91506117b8565b60008167ffffffffffffffff81111561180757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611831576020820181803683370190505b5090505b841561147f57611846600183611ec7565b9150611853600a86611f60565b61185e906030611e7c565b60f81b81838151811061188157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118a3600a86611e94565b9450611835565b60006001600160a01b0384163b156119ac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ee903390899088908890600401611d36565b602060405180830381600087803b15801561190857600080fd5b505af1925050508015611938575060408051601f3d908101601f1916820190925261193591810190611c61565b60015b611992573d808015611966576040519150601f19603f3d011682016040523d82523d6000602084013e61196b565b606091505b50805161198a5760405162461bcd60e51b81526004016105a090611d86565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061147f565b506001949350505050565b8280546119c390611f0a565b90600052602060002090601f0160209004810192826119e55760008555611a2b565b82601f106119fe57805160ff1916838001178555611a2b565b82800160010185558215611a2b579182015b82811115611a2b578251825591602001919060010190611a10565b50611a37929150611a3b565b5090565b5b80821115611a375760008155600101611a3c565b600067ffffffffffffffff80841115611a6b57611a6b611fa0565b604051601f8501601f19908116603f01168101908282118183101715611a9357611a93611fa0565b81604052809350858152868686011115611aac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611add57600080fd5b919050565b600060208284031215611af3578081fd5b6110ff82611ac6565b60008060408385031215611b0e578081fd5b611b1783611ac6565b9150611b2560208401611ac6565b90509250929050565b600080600060608486031215611b42578081fd5b611b4b84611ac6565b9250611b5960208501611ac6565b9150604084013590509250925092565b60008060008060808587031215611b7e578081fd5b611b8785611ac6565b9350611b9560208601611ac6565b925060408501359150606085013567ffffffffffffffff811115611bb7578182fd5b8501601f81018713611bc7578182fd5b611bd687823560208401611a50565b91505092959194509250565b60008060408385031215611bf4578182fd5b611bfd83611ac6565b915060208301358015158114611c11578182fd5b809150509250929050565b60008060408385031215611c2e578182fd5b611c3783611ac6565b946020939093013593505050565b600060208284031215611c56578081fd5b81356110ff81611fb6565b600060208284031215611c72578081fd5b81516110ff81611fb6565b600060208284031215611c8e578081fd5b813567ffffffffffffffff811115611ca4578182fd5b8201601f81018413611cb4578182fd5b61147f84823560208401611a50565b600060208284031215611cd4578081fd5b5035919050565b60008151808452611cf3816020860160208601611ede565b601f01601f19169290920160200192915050565b60008351611d19818460208801611ede565b835190830190611d2d818360208801611ede565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d6990830184611cdb565b9695505050505050565b6020815260006110ff6020830184611cdb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526033908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015272103737b910309031b7b63630b137b930ba37b960691b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e8f57611e8f611f74565b500190565b600082611ea357611ea3611f8a565b500490565b6000816000190483118215151615611ec257611ec2611f74565b500290565b600082821015611ed957611ed9611f74565b500390565b60005b83811015611ef9578181015183820152602001611ee1565b838111156110255750506000910152565b600181811c90821680611f1e57607f821691505b60208210811415611f3f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f5957611f59611f74565b5060010190565b600082611f6f57611f6f611f8a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111dd57600080fdfea2646970667358221220134ad9259b7e3fb9b5582c316e706337f649f1d3bff6dd6ac5a664e77c90b0cd64736f6c6343000804003368747470733a2f2f75637562652e696f2f707265637562652f636f6e74726163745f6d657461

Deployed Bytecode

0x6080604052600436106101405760003560e01c806351f468c0116100b6578063a22cb4651161006f578063a22cb46514610369578063b88d4fde14610389578063c87b56dd146103a9578063e8a3d485146103c9578063e985e9c5146103de578063f2fde38b1461042757600080fd5b806351f468c0146102b35780636352211e146102d357806370a08231146102f3578063715018a6146103215780638da5cb5b1461033657806395d89b411461035457600080fd5b806323b872dd1161010857806323b872dd146101fe57806330176e131461021e5780633ccfd60b1461023e578063408facb11461025357806342842e0e14610273578063493143e41461029357600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d45780631249c58b146101f6575b600080fd5b34801561015157600080fd5b50610165610160366004611c45565b610447565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f610499565b6040516101719190611d73565b3480156101a857600080fd5b506101bc6101b7366004611cc3565b61052b565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611c1c565b6105c5565b005b6101f46106db565b34801561020a57600080fd5b506101f4610219366004611b2e565b6108c5565b34801561022a57600080fd5b506101f4610239366004611c7d565b6108f6565b34801561024a57600080fd5b506101f46109b0565b34801561025f57600080fd5b506101f461026e366004611c7d565b610b3c565b34801561027f57600080fd5b506101f461028e366004611b2e565b610bf6565b34801561029f57600080fd5b506101f46102ae366004611cc3565b610c11565b3480156102bf57600080fd5b506101f46102ce366004611cc3565b610d0e565b3480156102df57600080fd5b506101bc6102ee366004611cc3565b610dbb565b3480156102ff57600080fd5b5061031361030e366004611ae2565b610e32565b604051908152602001610171565b34801561032d57600080fd5b506101f4610eb9565b34801561034257600080fd5b506000546001600160a01b03166101bc565b34801561036057600080fd5b5061018f610f1f565b34801561037557600080fd5b506101f4610384366004611be2565b610f2e565b34801561039557600080fd5b506101f46103a4366004611b69565b610ff3565b3480156103b557600080fd5b5061018f6103c4366004611cc3565b61102b565b3480156103d557600080fd5b5061018f611106565b3480156103ea57600080fd5b506101656103f9366004611afc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561043357600080fd5b506101f4610442366004611ae2565b611115565b60006001600160e01b031982166380ac58cd60e01b148061047857506001600160e01b03198216635b5e139f60e01b145b8061049357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104a890611f0a565b80601f01602080910402602001604051908101604052809291908181526020018280546104d490611f0a565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105a95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105d082610dbb565b9050806001600160a01b0316836001600160a01b0316141561063e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a0565b336001600160a01b038216148061065a575061065a81336103f9565b6106cc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a0565b6106d683836111e0565b505050565b32331461072a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016105a0565b6008541580159061073d57504260085411155b61077d5760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016105a0565b6009543410156107cf5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f75676820457468657220746f206d696e74206120637562650060448201526064016105a0565b600d54336000908152600e60205260409020541061082f5760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f7420636c61696d206d6f72652063756265732e0000000060448201526064016105a0565b600a54600b54106108825760405162461bcd60e51b815260206004820152601a60248201527f4e6f206375626573206c65667420746f206265206d696e74656400000000000060448201526064016105a0565b336000908152600e6020526040812080549161089d83611f45565b91905055506108ae33600b5461124e565b600b80549060006108be83611f45565b9190505550565b6108cf3382611390565b6108eb5760405162461bcd60e51b81526004016105a090611e2b565b6106d6838383611487565b6000805b60075481101561096a57336001600160a01b03166007828154811061092f57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610958576001915061096a565b8061096281611f45565b9150506108fa565b506000546001600160a01b03163314806109815750805b61099d5760405162461bcd60e51b81526004016105a090611dd8565b81516106d690600f9060208501906119b7565b6000805b600754811015610a2457336001600160a01b0316600782815481106109e957634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610a125760019150610a24565b80610a1c81611f45565b9150506109b4565b506000546001600160a01b0316331480610a3b5750805b610a575760405162461bcd60e51b81526004016105a090611dd8565b4760005b6007548110156106d65760078181548110610a8657634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc610b018460078581548110610adc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912060016002909202010154600c546001600160801b0316611627565b6040518115909202916000818181858888f19350505050158015610b29573d6000803e3d6000fd5b5080610b3481611f45565b915050610a5b565b6000805b600754811015610bb057336001600160a01b031660078281548110610b7557634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610b9e5760019150610bb0565b80610ba881611f45565b915050610b40565b506000546001600160a01b0316331480610bc75750805b610be35760405162461bcd60e51b81526004016105a090611dd8565b81516106d69060109060208501906119b7565b6106d683838360405180602001604052806000815250610ff3565b6000805b600754811015610c8557336001600160a01b031660078281548110610c4a57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610c735760019150610c85565b80610c7d81611f45565b915050610c15565b506000546001600160a01b0316331480610c9c5750805b610cb85760405162461bcd60e51b81526004016105a090611dd8565b600b5415610d085760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720616c726561647920696e2070726f67726573732e2e2e000060448201526064016105a0565b50600855565b6000805b600754811015610d8257336001600160a01b031660078281548110610d4757634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610d705760019150610d82565b80610d7a81611f45565b915050610d12565b506000546001600160a01b0316331480610d995750805b610db55760405162461bcd60e51b81526004016105a090611dd8565b50600955565b6000818152600360205260408120546001600160a01b0316806104935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a0565b60006001600160a01b038216610e9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105a0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a0565b610f1d60006116fe565b565b6060600280546104a890611f0a565b6001600160a01b038216331415610f875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ffd3383611390565b6110195760405162461bcd60e51b81526004016105a090611e2b565b6110258484848461174e565b50505050565b6000818152600360205260409020546060906001600160a01b03166110aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a0565b60006110b4611781565b905060008151116110d457604051806020016040528060008152506110ff565b806110de84611790565b6040516020016110ef929190611d07565b6040516020818303038152906040525b9392505050565b6060601080546104a890611f0a565b6000546001600160a01b0316331461116f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a0565b6001600160a01b0381166111d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a0565b6111dd816116fe565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061121582610dbb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166112a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a0565b6000818152600360205260409020546001600160a01b0316156113095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a0565b6001600160a01b0382166000908152600460205260408120805460019290611332908490611e7c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600360205260408120546001600160a01b03166114095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a0565b600061141483610dbb565b9050806001600160a01b0316846001600160a01b0316148061144f5750836001600160a01b03166114448461052b565b6001600160a01b0316145b8061147f57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661149a82610dbb565b6001600160a01b0316146115025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a0565b6001600160a01b0382166115645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a0565b61156f6000826111e0565b6001600160a01b0383166000908152600460205260408120805460019290611598908490611ec7565b90915550506001600160a01b03821660009081526004602052604081208054600192906115c6908490611e7c565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061163d6001600160801b03841686611e94565b905060006116546001600160801b03851687611f60565b9050600061166b6001600160801b03861687611e94565b905060006116826001600160801b03871688611f60565b90506001600160801b0386166116988285611ea8565b6116a29190611e94565b6116ac8385611ea8565b6116b68387611ea8565b6001600160801b0389166116ca8689611ea8565b6116d49190611ea8565b6116de9190611e7c565b6116e89190611e7c565b6116f29190611e7c565b98975050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611759848484611487565b611765848484846118aa565b6110255760405162461bcd60e51b81526004016105a090611d86565b6060600f80546104a890611f0a565b6060816117b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117de57806117c881611f45565b91506117d79050600a83611e94565b91506117b8565b60008167ffffffffffffffff81111561180757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611831576020820181803683370190505b5090505b841561147f57611846600183611ec7565b9150611853600a86611f60565b61185e906030611e7c565b60f81b81838151811061188157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506118a3600a86611e94565b9450611835565b60006001600160a01b0384163b156119ac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ee903390899088908890600401611d36565b602060405180830381600087803b15801561190857600080fd5b505af1925050508015611938575060408051601f3d908101601f1916820190925261193591810190611c61565b60015b611992573d808015611966576040519150601f19603f3d011682016040523d82523d6000602084013e61196b565b606091505b50805161198a5760405162461bcd60e51b81526004016105a090611d86565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061147f565b506001949350505050565b8280546119c390611f0a565b90600052602060002090601f0160209004810192826119e55760008555611a2b565b82601f106119fe57805160ff1916838001178555611a2b565b82800160010185558215611a2b579182015b82811115611a2b578251825591602001919060010190611a10565b50611a37929150611a3b565b5090565b5b80821115611a375760008155600101611a3c565b600067ffffffffffffffff80841115611a6b57611a6b611fa0565b604051601f8501601f19908116603f01168101908282118183101715611a9357611a93611fa0565b81604052809350858152868686011115611aac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611add57600080fd5b919050565b600060208284031215611af3578081fd5b6110ff82611ac6565b60008060408385031215611b0e578081fd5b611b1783611ac6565b9150611b2560208401611ac6565b90509250929050565b600080600060608486031215611b42578081fd5b611b4b84611ac6565b9250611b5960208501611ac6565b9150604084013590509250925092565b60008060008060808587031215611b7e578081fd5b611b8785611ac6565b9350611b9560208601611ac6565b925060408501359150606085013567ffffffffffffffff811115611bb7578182fd5b8501601f81018713611bc7578182fd5b611bd687823560208401611a50565b91505092959194509250565b60008060408385031215611bf4578182fd5b611bfd83611ac6565b915060208301358015158114611c11578182fd5b809150509250929050565b60008060408385031215611c2e578182fd5b611c3783611ac6565b946020939093013593505050565b600060208284031215611c56578081fd5b81356110ff81611fb6565b600060208284031215611c72578081fd5b81516110ff81611fb6565b600060208284031215611c8e578081fd5b813567ffffffffffffffff811115611ca4578182fd5b8201601f81018413611cb4578182fd5b61147f84823560208401611a50565b600060208284031215611cd4578081fd5b5035919050565b60008151808452611cf3816020860160208601611ede565b601f01601f19169290920160200192915050565b60008351611d19818460208801611ede565b835190830190611d2d818360208801611ede565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d6990830184611cdb565b9695505050505050565b6020815260006110ff6020830184611cdb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526033908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015272103737b910309031b7b63630b137b930ba37b960691b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e8f57611e8f611f74565b500190565b600082611ea357611ea3611f8a565b500490565b6000816000190483118215151615611ec257611ec2611f74565b500290565b600082821015611ed957611ed9611f74565b500390565b60005b83811015611ef9578181015183820152602001611ee1565b838111156110255750506000910152565b600181811c90821680611f1e57607f821691505b60208210811415611f3f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f5957611f59611f74565b5060010190565b600082611f6f57611f6f611f8a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111dd57600080fdfea2646970667358221220134ad9259b7e3fb9b5582c316e706337f649f1d3bff6dd6ac5a664e77c90b0cd64736f6c63430008040033

Deployed Bytecode Sourcemap

37888:3876:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24361:323;;;;;;;;;;-1:-1:-1;24361:323:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;24361:323:0;;;;;;;;25458:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27020:288::-;;;;;;;;;;-1:-1:-1;27020:288:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;27020:288:0;5031:102:1;26523:431:0;;;;;;;;;;-1:-1:-1;26523:431:0;;;;;:::i;:::-;;:::i;:::-;;40593:517;;;:::i;28027:376::-;;;;;;;;;;-1:-1:-1;28027:376:0;;;;;:::i;:::-;;:::i;39895:104::-;;;;;;;;;;-1:-1:-1;39895:104:0;;;;;:::i;:::-;;:::i;39473:325::-;;;;;;;;;;;;;:::i;40011:120::-;;;;;;;;;;-1:-1:-1;40011:120:0;;;;;:::i;:::-;;:::i;28474:185::-;;;;;;;;;;-1:-1:-1;28474:185:0;;;;;:::i;:::-;;:::i;40331:211::-;;;;;;;;;;-1:-1:-1;40331:211:0;;;;;:::i;:::-;;:::i;40206:113::-;;;;;;;;;;-1:-1:-1;40206:113:0;;;;;:::i;:::-;;:::i;25085:306::-;;;;;;;;;;-1:-1:-1;25085:306:0;;;;;:::i;:::-;;:::i;24748:275::-;;;;;;;;;;-1:-1:-1;24748:275:0;;;;;:::i;:::-;;:::i;:::-;;;15131:25:1;;;15119:2;15104:18;24748:275:0;15086:76:1;20991:94:0;;;;;;;;;;;;;:::i;20340:87::-;;;;;;;;;;-1:-1:-1;20386:7:0;20413:6;-1:-1:-1;;;;;20413:6:0;20340:87;;25627:104;;;;;;;;;;;;;:::i;27380:315::-;;;;;;;;;;-1:-1:-1;27380:315:0;;;;;:::i;:::-;;:::i;28730:365::-;;;;;;;;;;-1:-1:-1;28730:365:0;;;;;:::i;:::-;;:::i;25802:428::-;;;;;;;;;;-1:-1:-1;25802:428:0;;;;;:::i;:::-;;:::i;41122:100::-;;;;;;;;;;;;;:::i;27766:194::-;;;;;;;;;;-1:-1:-1;27766:194:0;;;;;:::i;:::-;-1:-1:-1;;;;;27917:25:0;;;27888:4;27917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27766:194;21240:192;;;;;;;;;;-1:-1:-1;21240:192:0;;;;;:::i;:::-;;:::i;24361:323::-;24488:4;-1:-1:-1;;;;;;24526:40:0;;-1:-1:-1;;;24526:40:0;;:101;;-1:-1:-1;;;;;;;24579:48:0;;-1:-1:-1;;;24579:48:0;24526:101;:150;;;-1:-1:-1;;;;;;;;;;22458:40:0;;;24640:36;24510:166;24361:323;-1:-1:-1;;24361:323:0:o;25458:100::-;25512:13;25545:5;25538:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25458:100;:::o;27020:288::-;27121:7;30731:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30731:16:0;27146:110;;;;-1:-1:-1;;;27146:110:0;;11630:2:1;27146:110:0;;;11612:21:1;11669:2;11649:18;;;11642:30;11708:34;11688:18;;;11681:62;-1:-1:-1;;;11759:18:1;;;11752:42;11811:19;;27146:110:0;;;;;;;;;-1:-1:-1;27276:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27276:24:0;;27020:288::o;26523:431::-;26604:13;26620:23;26635:7;26620:14;:23::i;:::-;26604:39;;26668:5;-1:-1:-1;;;;;26662:11:0;:2;-1:-1:-1;;;;;26662:11:0;;;26654:57;;;;-1:-1:-1;;;26654:57:0;;13650:2:1;26654:57:0;;;13632:21:1;13689:2;13669:18;;;13662:30;13728:34;13708:18;;;13701:62;-1:-1:-1;;;13779:18:1;;;13772:31;13820:19;;26654:57:0;13622:223:1;26654:57:0;19208:10;-1:-1:-1;;;;;26746:21:0;;;;:82;;-1:-1:-1;26784:44:0;26808:5;19208:10;27766:194;:::i;26784:44::-;26724:188;;;;-1:-1:-1;;;26724:188:0;;9677:2:1;26724:188:0;;;9659:21:1;9716:2;9696:18;;;9689:30;9755:34;9735:18;;;9728:62;9826:26;9806:18;;;9799:54;9870:19;;26724:188:0;9649:246:1;26724:188:0;26925:21;26934:2;26938:7;26925:8;:21::i;:::-;26523:431;;;:::o;40593:517::-;38061:9;38074:10;38061:23;38053:66;;;;-1:-1:-1;;;38053:66:0;;9318:2:1;38053:66:0;;;9300:21:1;9357:2;9337:18;;;9330:30;9396:32;9376:18;;;9369:60;9446:18;;38053:66:0;9290:180:1;38053:66:0;38660:13:::1;::::0;:18;;::::1;::::0;:54:::1;;;38699:15;38682:13;;:32;;38660:54;38638:121;;;::::0;-1:-1:-1;;;38638:121:0;;10102:2:1;38638:121:0::1;::::0;::::1;10084:21:1::0;10141:2;10121:18;;;10114:30;-1:-1:-1;;;10160:18:1;;;10153:47;10217:18;;38638:121:0::1;10074:167:1::0;38638:121:0::1;40683:10:::2;;40670:9;:23;;40662:67;;;::::0;-1:-1:-1;;;40662:67:0;;14827:2:1;40662:67:0::2;::::0;::::2;14809:21:1::0;14866:2;14846:18;;;14839:30;14905:33;14885:18;;;14878:61;14956:18;;40662:67:0::2;14799:181:1::0;40662:67:0::2;40800:18;::::0;40786:10:::2;40764:33;::::0;;;:21:::2;:33;::::0;;;;;:54:::2;40742:132;;;::::0;-1:-1:-1;;;40742:132:0;;14052:2:1;40742:132:0::2;::::0;::::2;14034:21:1::0;14091:2;14071:18;;;14064:30;14130;14110:18;;;14103:58;14178:18;;40742:132:0::2;14024:178:1::0;40742:132:0::2;40915:11;;40895:17;;:31;40887:70;;;::::0;-1:-1:-1;;;40887:70:0;;7791:2:1;40887:70:0::2;::::0;::::2;7773:21:1::0;7830:2;7810:18;;;7803:30;7869:28;7849:18;;;7842:56;7915:18;;40887:70:0::2;7763:176:1::0;40887:70:0::2;40992:10;40970:33;::::0;;;:21:::2;:33;::::0;;;;:35;;;::::2;::::0;::::2;:::i;:::-;;;;;;41026:36;41032:10;41044:17;;41026:5;:36::i;:::-;41083:17;:19:::0;;;:17:::2;:19;::::0;::::2;:::i;:::-;;;;;;40593:517::o:0;28027:376::-;28236:41;19208:10;28269:7;28236:18;:41::i;:::-;28214:140;;;;-1:-1:-1;;;28214:140:0;;;;;;;:::i;:::-;28367:28;28377:4;28383:2;28387:7;28367:9;:28::i;39895:104::-;38186:19;38229:9;38224:196;38244:13;:20;38240:24;;38224:196;;;38315:10;-1:-1:-1;;;;;38290:35:0;:13;38304:1;38290:16;;;;;;-1:-1:-1;;;38290:16:0;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;38290:21:0;:35;38286:123;;;38363:4;38346:21;;38388:5;;38286:123;38266:3;;;;:::i;:::-;;;;38224:196;;;-1:-1:-1;20386:7:0;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;38454:23;;:41;;;38481:14;38454:41;38432:142;;;;-1:-1:-1;;;38432:142:0;;;;;;;:::i;:::-;39977:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;39473:325::-:0;38186:19;38229:9;38224:196;38244:13;:20;38240:24;;38224:196;;;38315:10;-1:-1:-1;;;;;38290:35:0;:13;38304:1;38290:16;;;;;;-1:-1:-1;;;38290:16:0;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;38290:21:0;:35;38286:123;;;38363:4;38346:21;;38388:5;;38286:123;38266:3;;;;:::i;:::-;;;;38224:196;;;-1:-1:-1;20386:7:0;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;38454:23;;:41;;;38481:14;38454:41;38432:142;;;;-1:-1:-1;;;38432:142:0;;;;;;;:::i;:::-;39553:21:::1;39530:20;39587:204;39607:13;:20:::0;39603:24;::::1;39587:204;;;39657:13;39671:1;39657:16;;;;;;-1:-1:-1::0;;;39657:16:0::1;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;-1:-1:-1::0;;;;;39657:21:0::1;-1:-1:-1::0;;;;;39649:39:0::1;:130;39707:57;39716:12;39730:13;39744:1;39730:16;;;;;;-1:-1:-1::0;;;39730:16:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;:20:::1;:16;::::0;;::::1;;:20;::::0;39752:11:::1;::::0;-1:-1:-1;;;;;39752:11:0::1;39707:8;:57::i;:::-;39649:130;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39629:3:0;::::1;::::0;::::1;:::i;:::-;;;;39587:204;;40011:120:::0;38186:19;38229:9;38224:196;38244:13;:20;38240:24;;38224:196;;;38315:10;-1:-1:-1;;;;;38290:35:0;:13;38304:1;38290:16;;;;;;-1:-1:-1;;;38290:16:0;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;38290:21:0;:35;38286:123;;;38363:4;38346:21;;38388:5;;38286:123;38266:3;;;;:::i;:::-;;;;38224:196;;;-1:-1:-1;20386:7:0;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;38454:23;;:41;;;38481:14;38454:41;38432:142;;;;-1:-1:-1;;;38432:142:0;;;;;;;:::i;:::-;40101:22;;::::1;::::0;:15:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28474:185::-:0;28612:39;28629:4;28635:2;28639:7;28612:39;;;;;;;;;;;;:16;:39::i;40331:211::-;38186:19;38229:9;38224:196;38244:13;:20;38240:24;;38224:196;;;38315:10;-1:-1:-1;;;;;38290:35:0;:13;38304:1;38290:16;;;;;;-1:-1:-1;;;38290:16:0;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;38290:21:0;:35;38286:123;;;38363:4;38346:21;;38388:5;;38286:123;38266:3;;;;:::i;:::-;;;;38224:196;;;-1:-1:-1;20386:7:0;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;38454:23;;:41;;;38481:14;38454:41;38432:142;;;;-1:-1:-1;;;38432:142:0;;;;;;;:::i;:::-;40431:17:::1;::::0;40426:22;40418:65:::1;;;::::0;-1:-1:-1;;;40418:65:0;;7432:2:1;40418:65:0::1;::::0;::::1;7414:21:1::0;7471:2;7451:18;;;7444:30;7510:32;7490:18;;;7483:60;7560:18;;40418:65:0::1;7404:180:1::0;40418:65:0::1;-1:-1:-1::0;40504:13:0::1;:30:::0;40331:211::o;40206:113::-;38186:19;38229:9;38224:196;38244:13;:20;38240:24;;38224:196;;;38315:10;-1:-1:-1;;;;;38290:35:0;:13;38304:1;38290:16;;;;;;-1:-1:-1;;;38290:16:0;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;38290:21:0;:35;38286:123;;;38363:4;38346:21;;38388:5;;38286:123;38266:3;;;;:::i;:::-;;;;38224:196;;;-1:-1:-1;20386:7:0;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;38454:23;;:41;;;38481:14;38454:41;38432:142;;;;-1:-1:-1;;;38432:142:0;;;;;;;:::i;:::-;-1:-1:-1;40287:10:0::1;:24:::0;40206:113::o;25085:306::-;25182:7;25223:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25223:16:0;25272:19;25250:110;;;;-1:-1:-1;;;25250:110:0;;10859:2:1;25250:110:0;;;10841:21:1;10898:2;10878:18;;;10871:30;10937:34;10917:18;;;10910:62;-1:-1:-1;;;10988:18:1;;;10981:39;11037:19;;25250:110:0;10831:231:1;24748:275:0;24845:7;-1:-1:-1;;;;;24892:19:0;;24870:111;;;;-1:-1:-1;;;24870:111:0;;10448:2:1;24870:111:0;;;10430:21:1;10487:2;10467:18;;;10460:30;10526:34;10506:18;;;10499:62;-1:-1:-1;;;10577:18:1;;;10570:40;10627:19;;24870:111:0;10420:232:1;24870:111:0;-1:-1:-1;;;;;;24999:16:0;;;;;:9;:16;;;;;;;24748:275::o;20991:94::-;20386:7;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;20560:23;20552:68;;;;-1:-1:-1;;;20552:68:0;;12043:2:1;20552:68:0;;;12025:21:1;;;12062:18;;;12055:30;12121:34;12101:18;;;12094:62;12173:18;;20552:68:0;12015:182:1;20552:68:0;21056:21:::1;21074:1;21056:9;:21::i;:::-;20991:94::o:0;25627:104::-;25683:13;25716:7;25709:14;;;;;:::i;27380:315::-;-1:-1:-1;;;;;27503:24:0;;19208:10;27503:24;;27495:62;;;;-1:-1:-1;;;27495:62:0;;8551:2:1;27495:62:0;;;8533:21:1;8590:2;8570:18;;;8563:30;8629:27;8609:18;;;8602:55;8674:18;;27495:62:0;8523:175:1;27495:62:0;19208:10;27570:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27570:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27570:53:0;;;;;;;;;;27639:48;;5771:41:1;;;27570:42:0;;19208:10;27639:48;;5744:18:1;27639:48:0;;;;;;;27380:315;;:::o;28730:365::-;28919:41;19208:10;28952:7;28919:18;:41::i;:::-;28897:140;;;;-1:-1:-1;;;28897:140:0;;;;;;;:::i;:::-;29048:39;29062:4;29068:2;29072:7;29081:5;29048:13;:39::i;:::-;28730:365;;;;:::o;25802:428::-;30707:4;30731:16;;;:7;:16;;;;;;25900:13;;-1:-1:-1;;;;;30731:16:0;25931:113;;;;-1:-1:-1;;;25931:113:0;;12814:2:1;25931:113:0;;;12796:21:1;12853:2;12833:18;;;12826:30;12892:34;12872:18;;;12865:62;-1:-1:-1;;;12943:18:1;;;12936:45;12998:19;;25931:113:0;12786:237:1;25931:113:0;26057:21;26081:10;:8;:10::i;:::-;26057:34;;26142:1;26124:7;26118:21;:25;:104;;;;;;;;;;;;;;;;;26179:7;26188:18;:7;:16;:18::i;:::-;26162:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26118:104;26102:120;25802:428;-1:-1:-1;;;25802:428:0:o;41122:100::-;41166:13;41199:15;41192:22;;;;;:::i;21240:192::-;20386:7;20413:6;-1:-1:-1;;;;;20413:6:0;19208:10;20560:23;20552:68;;;;-1:-1:-1;;;20552:68:0;;12043:2:1;20552:68:0;;;12025:21:1;;;12062:18;;;12055:30;12121:34;12101:18;;;12094:62;12173:18;;20552:68:0;12015:182:1;20552:68:0;-1:-1:-1;;;;;21329:22:0;::::1;21321:73;;;::::0;-1:-1:-1;;;21321:73:0;;6668:2:1;21321:73:0::1;::::0;::::1;6650:21:1::0;6707:2;6687:18;;;6680:30;6746:34;6726:18;;;6719:62;-1:-1:-1;;;6797:18:1;;;6790:36;6843:19;;21321:73:0::1;6640:228:1::0;21321:73:0::1;21405:19;21415:8;21405:9;:19::i;:::-;21240:192:::0;:::o;35280:174::-;35355:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35355:29:0;-1:-1:-1;;;;;35355:29:0;;;;;;;;:24;;35409:23;35355:24;35409:14;:23::i;:::-;-1:-1:-1;;;;;35400:46:0;;;;;;;;;;;35280:174;;:::o;32707:382::-;-1:-1:-1;;;;;32787:16:0;;32779:61;;;;-1:-1:-1;;;32779:61:0;;11269:2:1;32779:61:0;;;11251:21:1;;;11288:18;;;11281:30;11347:34;11327:18;;;11320:62;11399:18;;32779:61:0;11241:182:1;32779:61:0;30707:4;30731:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30731:16:0;:30;32851:58;;;;-1:-1:-1;;;32851:58:0;;7075:2:1;32851:58:0;;;7057:21:1;7114:2;7094:18;;;7087:30;7153;7133:18;;;7126:58;7201:18;;32851:58:0;7047:178:1;32851:58:0;-1:-1:-1;;;;;32980:13:0;;;;;;:9;:13;;;;;:18;;32997:1;;32980:13;:18;;32997:1;;32980:18;:::i;:::-;;;;-1:-1:-1;;33009:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33009:21:0;-1:-1:-1;;;;;33009:21:0;;;;;;;;33048:33;;33009:16;;;33048:33;;33009:16;;33048:33;32707:382;;:::o;30936:435::-;31049:4;30731:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30731:16:0;31071:110;;;;-1:-1:-1;;;31071:110:0;;8905:2:1;31071:110:0;;;8887:21:1;8944:2;8924:18;;;8917:30;8983:34;8963:18;;;8956:62;-1:-1:-1;;;9034:18:1;;;9027:42;9086:19;;31071:110:0;8877:234:1;31071:110:0;31192:13;31208:23;31223:7;31208:14;:23::i;:::-;31192:39;;31261:5;-1:-1:-1;;;;;31250:16:0;:7;-1:-1:-1;;;;;31250:16:0;;:60;;;;31303:7;-1:-1:-1;;;;;31279:31:0;:20;31291:7;31279:11;:20::i;:::-;-1:-1:-1;;;;;31279:31:0;;31250:60;:112;;;-1:-1:-1;;;;;;27917:25:0;;;27888:4;27917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31323:39;31242:121;30936:435;-1:-1:-1;;;;30936:435:0:o;34547:615::-;34720:4;-1:-1:-1;;;;;34693:31:0;:23;34708:7;34693:14;:23::i;:::-;-1:-1:-1;;;;;34693:31:0;;34671:122;;;;-1:-1:-1;;;34671:122:0;;12404:2:1;34671:122:0;;;12386:21:1;12443:2;12423:18;;;12416:30;12482:34;12462:18;;;12455:62;-1:-1:-1;;;12533:18:1;;;12526:39;12582:19;;34671:122:0;12376:231:1;34671:122:0;-1:-1:-1;;;;;34812:16:0;;34804:65;;;;-1:-1:-1;;;34804:65:0;;8146:2:1;34804:65:0;;;8128:21:1;8185:2;8165:18;;;8158:30;8224:34;8204:18;;;8197:62;-1:-1:-1;;;8275:18:1;;;8268:34;8319:19;;34804:65:0;8118:226:1;34804:65:0;34986:29;35003:1;35007:7;34986:8;:29::i;:::-;-1:-1:-1;;;;;35028:15:0;;;;;;:9;:15;;;;;:20;;35047:1;;35028:15;:20;;35047:1;;35028:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35059:13:0;;;;;;:9;:13;;;;;:18;;35076:1;;35059:13;:18;;35076:1;;35059:18;:::i;:::-;;;;-1:-1:-1;;35088:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35088:21:0;-1:-1:-1;;;;;35088:21:0;;;;;;;;;35127:27;;35088:16;;35127:27;;;;;;;34547:615;;;:::o;41262:324::-;41374:7;;41406:9;-1:-1:-1;;;;;41406:9:0;;:1;:9;:::i;:::-;41394:21;-1:-1:-1;41426:9:0;41438;-1:-1:-1;;;;;41438:9:0;;:1;:9;:::i;:::-;41426:21;-1:-1:-1;41458:9:0;41470;-1:-1:-1;;;;;41470:9:0;;:1;:9;:::i;:::-;41458:21;-1:-1:-1;41490:9:0;41502;-1:-1:-1;;;;;41502:9:0;;:1;:9;:::i;:::-;41490:21;-1:-1:-1;;;;;;41563:15:0;;41564:5;41490:21;41564:1;:5;:::i;:::-;41563:15;;;;:::i;:::-;41555:5;41559:1;41555;:5;:::i;:::-;41547;41551:1;41547;:5;:::i;:::-;-1:-1:-1;;;;;41531:13:0;;:5;41535:1;41531;:5;:::i;:::-;:13;;;;:::i;:::-;:21;;;;:::i;:::-;:29;;;;:::i;:::-;:47;;;;:::i;:::-;41524:54;41262:324;-1:-1:-1;;;;;;;;41262:324:0:o;21440:173::-;21496:16;21515:6;;-1:-1:-1;;;;;21532:17:0;;;-1:-1:-1;;;;;;21532:17:0;;;;;;21565:40;;21515:6;;;;;;;21565:40;;21496:16;21565:40;21440:173;;:::o;29977:352::-;30134:28;30144:4;30150:2;30154:7;30134:9;:28::i;:::-;30195:48;30218:4;30224:2;30228:7;30237:5;30195:22;:48::i;:::-;30173:148;;;;-1:-1:-1;;;30173:148:0;;;;;;;:::i;41649:108::-;41709:13;41742:7;41735:14;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;-1:-1:-1;;;813:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;-1:-1:-1;;;901:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;36019:1025;36174:4;-1:-1:-1;;;;;36195:13:0;;3161:20;3209:8;36191:846;;36244:155;;-1:-1:-1;;;36244:155:0;;-1:-1:-1;;;;;36244:36:0;;;;;:155;;19208:10;;36330:4;;36353:7;;36379:5;;36244:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36244:155:0;;;;;;;;-1:-1:-1;;36244:155:0;;;;;;;;;;;;:::i;:::-;;;36227:755;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36586:13:0;;36582:385;;36629:104;;-1:-1:-1;;;36629:104:0;;;;;;;:::i;36582:385::-;36917:6;36911:13;36902:6;36898:2;36894:15;36887:38;36227:755;-1:-1:-1;;;;;;36463:55:0;-1:-1:-1;;;36463:55:0;;-1:-1:-1;36456:62:0;;36191:846;-1:-1:-1;37021:4:0;36019:1025;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;5972:2;5961:9;5954:21;5935:4;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;6047:414::-;6249:2;6231:21;;;6288:2;6268:18;;;6261:30;6327:34;6322:2;6307:18;;6300:62;-1:-1:-1;;;6393:2:1;6378:18;;6371:48;6451:3;6436:19;;6221:240::o;13028:415::-;13230:2;13212:21;;;13269:2;13249:18;;;13242:30;13308:34;13303:2;13288:18;;13281:62;-1:-1:-1;;;13374:2:1;13359:18;;13352:49;13433:3;13418:19;;13202:241::o;14207:413::-;14409:2;14391:21;;;14448:2;14428:18;;;14421:30;14487:34;14482:2;14467:18;;14460:62;-1:-1:-1;;;14553:2:1;14538:18;;14531:47;14610:3;14595:19;;14381:239::o;15167:128::-;15207:3;15238:1;15234:6;15231:1;15228:13;15225:2;;;15244:18;;:::i;:::-;-1:-1:-1;15280:9:1;;15215:80::o;15300:120::-;15340:1;15366;15356:2;;15371:18;;:::i;:::-;-1:-1:-1;15405:9:1;;15346:74::o;15425:168::-;15465:7;15531:1;15527;15523:6;15519:14;15516:1;15513:21;15508:1;15501:9;15494:17;15490:45;15487:2;;;15538:18;;:::i;:::-;-1:-1:-1;15578:9:1;;15477:116::o;15598:125::-;15638:4;15666:1;15663;15660:8;15657:2;;;15671:18;;:::i;:::-;-1:-1:-1;15708:9:1;;15647:76::o;15728:258::-;15800:1;15810:113;15824:6;15821:1;15818:13;15810:113;;;15900:11;;;15894:18;15881:11;;;15874:39;15846:2;15839:10;15810:113;;;15941:6;15938:1;15935:13;15932:2;;;-1:-1:-1;;15976:1:1;15958:16;;15951:27;15781:205::o;15991:380::-;16070:1;16066:12;;;;16113;;;16134:2;;16188:4;16180:6;16176:17;16166:27;;16134:2;16241;16233:6;16230:14;16210:18;16207:38;16204:2;;;16287:10;16282:3;16278:20;16275:1;16268:31;16322:4;16319:1;16312:15;16350:4;16347:1;16340:15;16204:2;;16046:325;;;:::o;16376:135::-;16415:3;-1:-1:-1;;16436:17:1;;16433:2;;;16456:18;;:::i;:::-;-1:-1:-1;16503:1:1;16492:13;;16423:88::o;16516:112::-;16548:1;16574;16564:2;;16579:18;;:::i;:::-;-1:-1:-1;16613:9:1;;16554:74::o;16633:127::-;16694:10;16689:3;16685:20;16682:1;16675:31;16725:4;16722:1;16715:15;16749:4;16746:1;16739:15;16765:127;16826:10;16821:3;16817:20;16814:1;16807:31;16857:4;16854:1;16847:15;16881:4;16878:1;16871:15;16897:127;16958:10;16953:3;16949:20;16946:1;16939:31;16989:4;16986:1;16979:15;17013:4;17010:1;17003:15;17029:131;-1:-1:-1;;;;;;17103:32:1;;17093:43;;17083:2;;17150:1;17147;17140:12

Swarm Source

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