ETH Price: $2,406.90 (-4.08%)

Token

Decentrazines (DZINE)
 

Overview

Max Total Supply

1,068 DZINE

Holders

282

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jellybon.eth
Balance
1 DZINE
0x410986e045227F31DC3439A23539e37C712fB25e
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:
Decentrazines

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-02
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-28
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

/*
       ....                                                             s                                           .                                .x+=:.   
   .xH888888Hx.                                                        :8                                          @88>                             z`    ^%  
 .H8888888888888:                                       u.    u.      .88       .u    .                    ..      %8P      u.    u.                   .   <k 
 888*"""?""*88888X        .u          .        .u     x@88k u@88c.   :888ooo  .d88B :@8c        u        .@88i      .     x@88k u@88c.      .u       .@8Ned8" 
'f     d8x.   ^%88k    ud8888.   .udR88N    ud8888.  ^"8888""8888" -*8888888 ="8888f8888r    us888u.    ""%888>   .@88u  ^"8888""8888"   ud8888.   .@^%8888"  
'>    <88888X   '?8  :888'8888. <888'888k :888'8888.   8888  888R    8888      4888>'88"  .@88 "8888"     '88%   ''888E`   8888  888R  :888'8888. x88:  `)8b. 
 `:..:`888888>    8> d888 '88%" 9888 'Y"  d888 '88%"   8888  888R    8888      4888> '    9888  9888    ..dILr~`   888E    8888  888R  d888 '88%" 8888N=*8888 
        `"*88     X  8888.+"    9888      8888.+"      8888  888R    8888      4888>      9888  9888   '".-%88b    888E    8888  888R  8888.+"     %8"    R88 
   .xHHhx.."      !  8888L      9888      8888L        8888  888R   .8888Lu=  .d888L .+   9888  9888    @  '888k   888E    8888  888R  8888L        @8Wou 9%  
  X88888888hx. ..!   '8888c. .+ ?8888u../ '8888c. .+  "*88*" 8888"  ^%888*    ^"8888*"    9888  9888   8F   8888   888&   "*88*" 8888" '8888c. .+ .888888P`   
 !   "*888888888"     "88888%    "8888P'   "88888%      ""   'Y"      'Y"        "Y"      "888*""888" '8    8888   R888"    ""   'Y"    "88888%   `   ^"F     
        ^"***"`         "YP'       "P'       "YP'                                          ^Y"   ^Y'  '8    888F    ""                    "YP'                
                                                                                                       %k  <88F                                               
                                                                                                        "+:*%`                                                
                                                                                                                                                              
*/

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






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

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

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

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

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

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

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

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

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

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

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

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




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

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

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

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

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




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

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

















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







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

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

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





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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







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

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

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

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

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

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

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

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





/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
__/\\\\\\\\\\\\_______________________________________________________________________________________________________________________________________________________________________        
 _\/\\\////////\\\_____________________________________________________________________________________________________________________________________________________________________       
  _\/\\\______\//\\\_______________________________________________________________/\\\__________________________________________________/\\\___________________________________________      
  _\/\\\_______\/\\\_____/\\\\\\\\______/\\\\\\\\_____/\\\\\\\\___/\\/\\\\\\____/\\\\\\\\\\\__/\\/\\\\\\\___/\\\\\\\\\_____/\\\\\\\\\\\_\///___/\\/\\\\\\_______/\\\\\\\\___/\\\\\\\\\\_     
    _\/\\\_______\/\\\___/\\\/////\\\___/\\\//////____/\\\/////\\\_\/\\\////\\\__\////\\\////__\/\\\/////\\\_\////////\\\___\///////\\\/___/\\\_\/\\\////\\\____/\\\/////\\\_\/\\\//////__    
     _\/\\\_______\/\\\__/\\\\\\\\\\\___/\\\__________/\\\\\\\\\\\__\/\\\__\//\\\____\/\\\______\/\\\___\///____/\\\\\\\\\\_______/\\\/____\/\\\_\/\\\__\//\\\__/\\\\\\\\\\\__\/\\\\\\\\\\_   
      _\/\\\_______/\\\__\//\\///////___\//\\\________\//\\///////___\/\\\___\/\\\____\/\\\_/\\__\/\\\__________/\\\/////\\\_____/\\\/______\/\\\_\/\\\___\/\\\_\//\\///////___\////////\\\_  
      _\/\\\\\\\\\\\\/____\//\\\\\\\\\\__\///\\\\\\\\__\//\\\\\\\\\\_\/\\\___\/\\\____\//\\\\\___\/\\\_________\//\\\\\\\\/\\__/\\\\\\\\\\\_\/\\\_\/\\\___\/\\\__\//\\\\\\\\\\__/\\\\\\\\\\_ 
        _\////////////_______\//////////_____\////////____\//////////__\///____\///______\/////____\///___________\////////\//__\///////////__\///__\///____\///____\//////////__\//////////__
*/

contract Decentrazines is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    
    mapping(address => uint256) private presaleLimit;

    string baseURI;
    bytes32 private merkleRoot;
    uint256 private reserved = 20;
    uint256 private mintCost = 0.03 ether; 
    uint256 private maxSupply = 10000;
    uint256 public presaleStartTime = 1633176000; 
    uint256 public presaleLengthTime = 16 hours;


    constructor(string memory baseTokenURI) ERC721("Decentrazines", "DZINE")  {
        setBaseURI(baseTokenURI);
    }

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

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseURI = _baseTokenURI;
    }
    
    function setMerkleRoot (bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }
    
    function claimPresale(
        bytes32[] memory proof,
        uint256 _quantity
    ) public payable {
        uint256 supply = totalSupply();

        require( block.timestamp >= presaleStartTime,           "Presale has not started yet" );
        require( supply + _quantity < maxSupply - reserved,     "Exceeds supply" );
        require( presaleLimit[msg.sender] + _quantity < 21,     "Maximum 20 Decentrazines per Address for presale");
        require( msg.value >= mintCost.mul(_quantity),          "Insufficient Ether" );
        
        // Verify that address belongs in MerkleTree
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        bool merkleProof = MerkleProof.verify(proof, merkleRoot, leaf);
        require(merkleProof, 'Account ineligible');
        
        // Verify that amount is 20 or less
        require(_quantity < 21, "Max 20");
        require(presaleLimit[msg.sender] < 21, "Max 20 ");
        for(uint256 i; i < _quantity; i++) {
            _safeMint( msg.sender, supply + i + 1);
        }
        presaleLimit[msg.sender] = presaleLimit[msg.sender] + _quantity;
    }
    
    function claimPublicSale(
        uint256 _quantity
    ) public payable {
        uint256 supply = totalSupply();
        
        require( block.timestamp >= presaleStartTime + presaleLengthTime,   "Presale has not started yet" );
        require( supply + _quantity < maxSupply - reserved,                 "Exceeds supply" );
        require( msg.value >= mintCost.mul(_quantity),                      "Insufficient Ether" );

        // Verify that amount is 20 or less
        require(_quantity < 21, "Max 20");
        for(uint256 i; i < _quantity; i++){
            _safeMint( msg.sender, supply + i + 1);
        }
    }
    
    function teamClaim(address _to, uint256 _amount) external onlyOwner {
        require( _amount <= reserved, "Exceeds reserved supply" );
        uint256 supply = totalSupply();
        for(uint256 i=maxSupply-reserved; i < _amount+maxSupply-reserved; i++){
            _safeMint( _to, supply + i );
        }
    }

    function withdrawal() public payable onlyOwner {
        address a1 = 0x740975Bdc13e4253c0b8aF32f5271EF0aD6Dd52e;
        address a2 = 0x75760AbB406DF0aaf44944109fcaf5d581913063;
        address a3 = 0x13F3cF1111d47d8b6Fe0d7E1bea591e1F43f389c;
        address a4 = 0x666348D1E5403bbAA71e7C8e912bdE08a5c93Bf9;
        address a5 = 0x792c22EB036372007b37367ed50f164736034480;
        address a6 = 0xa7818c675469c3A09Fe6D26f6B17A33B3eFB93c5;
        address a7 = 0x4729f800b85D10be1b15785Fb0553F835E5B036e;


        uint256 bal1 = address(this).balance.mul(515).div(1000);
        uint256 bal2 = address(this).balance.mul(150).div(1000);
        uint256 bal3 = address(this).balance.mul(150).div(1000);
        uint256 bal4 = address(this).balance.mul(100).div(1000);
        uint256 bal5 = address(this).balance.mul(50).div(1000);
        uint256 bal6 = address(this).balance.mul(10).div(1000);
        uint256 bal7 = address(this).balance.mul(25).div(1000);


        require(payable(a1).send(bal1));
        require(payable(a2).send(bal2));
        require(payable(a3).send(bal3));
        require(payable(a4).send(bal4));
        require(payable(a5).send(bal5));
        require(payable(a6).send(bal6));
        require(payable(a7).send(bal7));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"claimPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"claimPublicSale","outputs":[],"stateMutability":"payable","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":"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":"presaleLengthTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawal","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526014600e55666a94d74f430000600f5561271060105563615849c060115561e1006012553480156200003557600080fd5b5060405162002a8738038062002a87833981016040819052620000589162000263565b604080518082018252600d81526c446563656e7472617a696e657360981b602080830191825283518085019094526005845264445a494e4560d81b908401528151919291620000aa91600091620001bd565b508051620000c0906001906020840190620001bd565b505050620000dd620000d7620000ef60201b60201c565b620000f3565b620000e88162000145565b5062000392565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b990600c906020840190620001bd565b5050565b828054620001cb906200033f565b90600052602060002090601f016020900481019282620001ef57600085556200023a565b82601f106200020a57805160ff19168380011785556200023a565b828001600101855582156200023a579182015b828111156200023a5782518255916020019190600101906200021d565b50620002489291506200024c565b5090565b5b808211156200024857600081556001016200024d565b600060208083850312156200027757600080fd5b82516001600160401b03808211156200028f57600080fd5b818501915085601f830112620002a457600080fd5b815181811115620002b957620002b96200037c565b604051601f8201601f19908116603f01168101908382118183101715620002e457620002e46200037c565b816040528281528886848701011115620002fd57600080fd5b600093505b8284101562000321578484018601518185018701529285019262000302565b82841115620003335760008684830101525b98975050505050505050565b600181811c908216806200035457607f821691505b602082108114156200037657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126e580620003a26000396000f3fe60806040526004361061019c5760003560e01c80637000d142116100ec578063a82524b21161008a578063d4e9329211610064578063d4e9329214610478578063e985e9c514610480578063f29906e8146104c9578063f2fde38b146104dc57600080fd5b8063a82524b214610422578063b88d4fde14610438578063c87b56dd1461045857600080fd5b80637cb64759116100c65780637cb64759146103af5780638da5cb5b146103cf57806395d89b41146103ed578063a22cb4651461040257600080fd5b80637000d1421461036457806370a082311461037a578063715018a61461039a57600080fd5b80632f745c59116101595780634e7f8248116101335780634e7f8248146102e45780634f6ccce71461030457806355f804b3146103245780636352211e1461034457600080fd5b80632f745c59146102915780633fe4f9c3146102b157806342842e0e146102c457600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046122fc565b6104fc565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610527565b6040516101cd9190612417565b34801561020457600080fd5b506102186102133660046122e3565b6105b9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004612206565b610653565b005b34801561025e57600080fd5b506008545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004612112565b610769565b34801561029d57600080fd5b506102636102ac366004612206565b61079a565b6102506102bf3660046122e3565b610830565b3480156102d057600080fd5b506102506102df366004612112565b6109b9565b3480156102f057600080fd5b506102506102ff366004612206565b6109d4565b34801561031057600080fd5b5061026361031f3660046122e3565b610ab9565b34801561033057600080fd5b5061025061033f366004612336565b610b4c565b34801561035057600080fd5b5061021861035f3660046122e3565b610b8d565b34801561037057600080fd5b5061026360125481565b34801561038657600080fd5b506102636103953660046120c4565b610c04565b3480156103a657600080fd5b50610250610c8b565b3480156103bb57600080fd5b506102506103ca3660046122e3565b610cc1565b3480156103db57600080fd5b50600a546001600160a01b0316610218565b3480156103f957600080fd5b506101eb610cf0565b34801561040e57600080fd5b5061025061041d3660046121ca565b610cff565b34801561042e57600080fd5b5061026360115481565b34801561044457600080fd5b5061025061045336600461214e565b610dc4565b34801561046457600080fd5b506101eb6104733660046122e3565b610df6565b610250610ed1565b34801561048c57600080fd5b506101c161049b3660046120df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102506104d7366004612230565b61117b565b3480156104e857600080fd5b506102506104f73660046120c4565b611473565b60006001600160e01b0319821663780e9d6360e01b148061052157506105218261150e565b92915050565b606060008054610536906125c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610562906125c1565b80156105af5780601f10610584576101008083540402835291602001916105af565b820191906000526020600020905b81548152906001019060200180831161059257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065e82610b8d565b9050806001600160a01b0316836001600160a01b031614156106cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161062e565b336001600160a01b03821614806106e857506106e8813361049b565b61075a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161062e565b610764838361155e565b505050565b61077333826115cc565b61078f5760405162461bcd60e51b815260040161062e906124b1565b6107648383836116c3565b60006107a583610c04565b82106108075760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161062e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061083b60085490565b905060125460115461084d9190612533565b42101561089c5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f742073746172746564207965740000000000604482015260640161062e565b600e546010546108ac919061257e565b6108b68383612533565b106108f45760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b604482015260640161062e565b600f54610901908361186e565b3410156109455760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1022ba3432b960711b604482015260640161062e565b6015821061097e5760405162461bcd60e51b815260206004820152600660248201526504d61782032360d41b604482015260640161062e565b60005b82811015610764576109a7336109978385612533565b6109a2906001612533565b61187a565b806109b1816125fc565b915050610981565b61076483838360405180602001604052806000815250610dc4565b600a546001600160a01b031633146109fe5760405162461bcd60e51b815260040161062e9061247c565b600e54811115610a505760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161062e565b6000610a5b60085490565b90506000600e54601054610a6f919061257e565b90505b600e54601054610a829085612533565b610a8c919061257e565b811015610ab357610aa1846109a28385612533565b80610aab816125fc565b915050610a72565b50505050565b6000610ac460085490565b8210610b275760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161062e565b60088281548110610b3a57610b3a61266d565b90600052602060002001549050919050565b600a546001600160a01b03163314610b765760405162461bcd60e51b815260040161062e9061247c565b8051610b8990600c906020840190611fb7565b5050565b6000818152600260205260408120546001600160a01b0316806105215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161062e565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161062e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cb55760405162461bcd60e51b815260040161062e9061247c565b610cbf6000611894565b565b600a546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161062e9061247c565b600d55565b606060018054610536906125c1565b6001600160a01b038216331415610d585760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161062e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dce33836115cc565b610dea5760405162461bcd60e51b815260040161062e906124b1565b610ab3848484846118e6565b6000818152600260205260409020546060906001600160a01b0316610e755760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161062e565b6000610e7f611919565b90506000815111610e9f5760405180602001604052806000815250610eca565b80610ea984611928565b604051602001610eba9291906123ab565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610efb5760405162461bcd60e51b815260040161062e9061247c565b73740975bdc13e4253c0b8af32f5271ef0ad6dd52e7375760abb406df0aaf44944109fcaf5d5819130637313f3cf1111d47d8b6fe0d7e1bea591e1f43f389c73666348d1e5403bbaa71e7c8e912bde08a5c93bf973792c22eb036372007b37367ed50f16473603448073a7818c675469c3a09fe6d26f6b17a33b3efb93c5734729f800b85d10be1b15785fb0553f835e5b036e6000610fa86103e8610fa24761020361186e565b90611a26565b90506000610fbd6103e8610fa247609661186e565b90506000610fd26103e8610fa247609661186e565b90506000610fe76103e8610fa247606461186e565b90506000610ffc6103e8610fa247603261186e565b905060006110116103e8610fa247600a61186e565b905060006110266103e8610fa247601961186e565b6040519091506001600160a01b038f169088156108fc029089906000818181858888f1935050505061105757600080fd5b6040516001600160a01b038e169087156108fc029088906000818181858888f1935050505061108557600080fd5b6040516001600160a01b038d169086156108fc029087906000818181858888f193505050506110b357600080fd5b6040516001600160a01b038c169085156108fc029086906000818181858888f193505050506110e157600080fd5b6040516001600160a01b038b169084156108fc029085906000818181858888f1935050505061110f57600080fd5b6040516001600160a01b038a169083156108fc029084906000818181858888f1935050505061113d57600080fd5b6040516001600160a01b0389169082156108fc029083906000818181858888f1935050505061116b57600080fd5b5050505050505050505050505050565b600061118660085490565b90506011544210156111da5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f742073746172746564207965740000000000604482015260640161062e565b600e546010546111ea919061257e565b6111f48383612533565b106112325760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b604482015260640161062e565b336000908152600b6020526040902054601590611250908490612533565b106112b65760405162461bcd60e51b815260206004820152603060248201527f4d6178696d756d20323020446563656e7472617a696e6573207065722041646460448201526f7265737320666f722070726573616c6560801b606482015260840161062e565b600f546112c3908361186e565b3410156113075760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1022ba3432b960711b604482015260640161062e565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050600061134f85600d5484611a32565b9050806113935760405162461bcd60e51b81526020600482015260126024820152714163636f756e7420696e656c696769626c6560701b604482015260640161062e565b601584106113cc5760405162461bcd60e51b815260206004820152600660248201526504d61782032360d41b604482015260640161062e565b336000908152600b60205260409020546015116114155760405162461bcd60e51b8152602060048201526007602482015266026b0bc101918160cd1b604482015260640161062e565b60005b848110156114405761142e336109978387612533565b80611438816125fc565b915050611418565b50336000908152600b602052604090205461145c908590612533565b336000908152600b60205260409020555050505050565b600a546001600160a01b0316331461149d5760405162461bcd60e51b815260040161062e9061247c565b6001600160a01b0381166115025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062e565b61150b81611894565b50565b60006001600160e01b031982166380ac58cd60e01b148061153f57506001600160e01b03198216635b5e139f60e01b145b8061052157506301ffc9a760e01b6001600160e01b0319831614610521565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382610b8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161062e565b600061165083610b8d565b9050806001600160a01b0316846001600160a01b0316148061168b5750836001600160a01b0316611680846105b9565b6001600160a01b0316145b806116bb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116d682610b8d565b6001600160a01b03161461173e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161062e565b6001600160a01b0382166117a05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161062e565b6117ab838383611ae1565b6117b660008261155e565b6001600160a01b03831660009081526003602052604081208054600192906117df90849061257e565b90915550506001600160a01b038216600090815260036020526040812080546001929061180d908490612533565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610eca828461255f565b610b89828260405180602001604052806000815250611b99565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118f18484846116c3565b6118fd84848484611bcc565b610ab35760405162461bcd60e51b815260040161062e9061242a565b6060600c8054610536906125c1565b60608161194c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119765780611960816125fc565b915061196f9050600a8361254b565b9150611950565b60008167ffffffffffffffff81111561199157611991612683565b6040519080825280601f01601f1916602001820160405280156119bb576020820181803683370190505b5090505b84156116bb576119d060018361257e565b91506119dd600a86612617565b6119e8906030612533565b60f81b8183815181106119fd576119fd61266d565b60200101906001600160f81b031916908160001a905350611a1f600a8661254b565b94506119bf565b6000610eca828461254b565b600081815b8551811015611ad6576000868281518110611a5457611a5461266d565b60200260200101519050808311611a96576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ac3565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611ace816125fc565b915050611a37565b509092149392505050565b6001600160a01b038316611b3c57611b3781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b5f565b816001600160a01b0316836001600160a01b031614611b5f57611b5f8382611cd9565b6001600160a01b038216611b765761076481611d76565b826001600160a01b0316826001600160a01b031614610764576107648282611e25565b611ba38383611e69565b611bb06000848484611bcc565b6107645760405162461bcd60e51b815260040161062e9061242a565b60006001600160a01b0384163b15611cce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c109033908990889088906004016123da565b602060405180830381600087803b158015611c2a57600080fd5b505af1925050508015611c5a575060408051601f3d908101601f19168201909252611c5791810190612319565b60015b611cb4573d808015611c88576040519150601f19603f3d011682016040523d82523d6000602084013e611c8d565b606091505b508051611cac5760405162461bcd60e51b815260040161062e9061242a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116bb565b506001949350505050565b60006001611ce684610c04565b611cf0919061257e565b600083815260076020526040902054909150808214611d43576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d889060019061257e565b60008381526009602052604081205460088054939450909284908110611db057611db061266d565b906000526020600020015490508060088381548110611dd157611dd161266d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0957611e09612657565b6001900381819060005260206000200160009055905550505050565b6000611e3083610c04565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ebf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161062e565b6000818152600260205260409020546001600160a01b031615611f245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062e565b611f3060008383611ae1565b6001600160a01b0382166000908152600360205260408120805460019290611f59908490612533565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fc3906125c1565b90600052602060002090601f016020900481019282611fe5576000855561202b565b82601f10611ffe57805160ff191683800117855561202b565b8280016001018555821561202b579182015b8281111561202b578251825591602001919060010190612010565b5061203792915061203b565b5090565b5b80821115612037576000815560010161203c565b600067ffffffffffffffff83111561206a5761206a612683565b61207d601f8401601f1916602001612502565b905082815283838301111561209157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120bf57600080fd5b919050565b6000602082840312156120d657600080fd5b610eca826120a8565b600080604083850312156120f257600080fd5b6120fb836120a8565b9150612109602084016120a8565b90509250929050565b60008060006060848603121561212757600080fd5b612130846120a8565b925061213e602085016120a8565b9150604084013590509250925092565b6000806000806080858703121561216457600080fd5b61216d856120a8565b935061217b602086016120a8565b925060408501359150606085013567ffffffffffffffff81111561219e57600080fd5b8501601f810187136121af57600080fd5b6121be87823560208401612050565b91505092959194509250565b600080604083850312156121dd57600080fd5b6121e6836120a8565b9150602083013580151581146121fb57600080fd5b809150509250929050565b6000806040838503121561221957600080fd5b612222836120a8565b946020939093013593505050565b6000806040838503121561224357600080fd5b823567ffffffffffffffff8082111561225b57600080fd5b818501915085601f83011261226f57600080fd5b813560208282111561228357612283612683565b8160051b9250612294818401612502565b8281528181019085830185870184018b10156122af57600080fd5b600096505b848710156122d25780358352600196909601959183019183016122b4565b509997909101359750505050505050565b6000602082840312156122f557600080fd5b5035919050565b60006020828403121561230e57600080fd5b8135610eca81612699565b60006020828403121561232b57600080fd5b8151610eca81612699565b60006020828403121561234857600080fd5b813567ffffffffffffffff81111561235f57600080fd5b8201601f8101841361237057600080fd5b6116bb84823560208401612050565b60008151808452612397816020860160208601612595565b601f01601f19169290920160200192915050565b600083516123bd818460208801612595565b8351908301906123d1818360208801612595565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240d9083018461237f565b9695505050505050565b602081526000610eca602083018461237f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561252b5761252b612683565b604052919050565b600082198211156125465761254661262b565b500190565b60008261255a5761255a612641565b500490565b60008160001904831182151516156125795761257961262b565b500290565b6000828210156125905761259061262b565b500390565b60005b838110156125b0578181015183820152602001612598565b83811115610ab35750506000910152565b600181811c908216806125d557607f821691505b602082108114156125f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126105761261061262b565b5060010190565b60008261262657612626612641565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150b57600080fdfea2646970667358221220f30fed50ef77ce2843cec34478dd928e3102a99bffdcc357a175574a443413ff64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f746865646563656e7472617a696e6570726f6a6563742e696f2e73332e616d617a6f6e6177732e636f6d2f00000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80637000d142116100ec578063a82524b21161008a578063d4e9329211610064578063d4e9329214610478578063e985e9c514610480578063f29906e8146104c9578063f2fde38b146104dc57600080fd5b8063a82524b214610422578063b88d4fde14610438578063c87b56dd1461045857600080fd5b80637cb64759116100c65780637cb64759146103af5780638da5cb5b146103cf57806395d89b41146103ed578063a22cb4651461040257600080fd5b80637000d1421461036457806370a082311461037a578063715018a61461039a57600080fd5b80632f745c59116101595780634e7f8248116101335780634e7f8248146102e45780634f6ccce71461030457806355f804b3146103245780636352211e1461034457600080fd5b80632f745c59146102915780633fe4f9c3146102b157806342842e0e146102c457600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046122fc565b6104fc565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610527565b6040516101cd9190612417565b34801561020457600080fd5b506102186102133660046122e3565b6105b9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004612206565b610653565b005b34801561025e57600080fd5b506008545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004612112565b610769565b34801561029d57600080fd5b506102636102ac366004612206565b61079a565b6102506102bf3660046122e3565b610830565b3480156102d057600080fd5b506102506102df366004612112565b6109b9565b3480156102f057600080fd5b506102506102ff366004612206565b6109d4565b34801561031057600080fd5b5061026361031f3660046122e3565b610ab9565b34801561033057600080fd5b5061025061033f366004612336565b610b4c565b34801561035057600080fd5b5061021861035f3660046122e3565b610b8d565b34801561037057600080fd5b5061026360125481565b34801561038657600080fd5b506102636103953660046120c4565b610c04565b3480156103a657600080fd5b50610250610c8b565b3480156103bb57600080fd5b506102506103ca3660046122e3565b610cc1565b3480156103db57600080fd5b50600a546001600160a01b0316610218565b3480156103f957600080fd5b506101eb610cf0565b34801561040e57600080fd5b5061025061041d3660046121ca565b610cff565b34801561042e57600080fd5b5061026360115481565b34801561044457600080fd5b5061025061045336600461214e565b610dc4565b34801561046457600080fd5b506101eb6104733660046122e3565b610df6565b610250610ed1565b34801561048c57600080fd5b506101c161049b3660046120df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102506104d7366004612230565b61117b565b3480156104e857600080fd5b506102506104f73660046120c4565b611473565b60006001600160e01b0319821663780e9d6360e01b148061052157506105218261150e565b92915050565b606060008054610536906125c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610562906125c1565b80156105af5780601f10610584576101008083540402835291602001916105af565b820191906000526020600020905b81548152906001019060200180831161059257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065e82610b8d565b9050806001600160a01b0316836001600160a01b031614156106cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161062e565b336001600160a01b03821614806106e857506106e8813361049b565b61075a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161062e565b610764838361155e565b505050565b61077333826115cc565b61078f5760405162461bcd60e51b815260040161062e906124b1565b6107648383836116c3565b60006107a583610c04565b82106108075760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161062e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061083b60085490565b905060125460115461084d9190612533565b42101561089c5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f742073746172746564207965740000000000604482015260640161062e565b600e546010546108ac919061257e565b6108b68383612533565b106108f45760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b604482015260640161062e565b600f54610901908361186e565b3410156109455760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1022ba3432b960711b604482015260640161062e565b6015821061097e5760405162461bcd60e51b815260206004820152600660248201526504d61782032360d41b604482015260640161062e565b60005b82811015610764576109a7336109978385612533565b6109a2906001612533565b61187a565b806109b1816125fc565b915050610981565b61076483838360405180602001604052806000815250610dc4565b600a546001600160a01b031633146109fe5760405162461bcd60e51b815260040161062e9061247c565b600e54811115610a505760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161062e565b6000610a5b60085490565b90506000600e54601054610a6f919061257e565b90505b600e54601054610a829085612533565b610a8c919061257e565b811015610ab357610aa1846109a28385612533565b80610aab816125fc565b915050610a72565b50505050565b6000610ac460085490565b8210610b275760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161062e565b60088281548110610b3a57610b3a61266d565b90600052602060002001549050919050565b600a546001600160a01b03163314610b765760405162461bcd60e51b815260040161062e9061247c565b8051610b8990600c906020840190611fb7565b5050565b6000818152600260205260408120546001600160a01b0316806105215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161062e565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161062e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cb55760405162461bcd60e51b815260040161062e9061247c565b610cbf6000611894565b565b600a546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161062e9061247c565b600d55565b606060018054610536906125c1565b6001600160a01b038216331415610d585760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161062e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dce33836115cc565b610dea5760405162461bcd60e51b815260040161062e906124b1565b610ab3848484846118e6565b6000818152600260205260409020546060906001600160a01b0316610e755760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161062e565b6000610e7f611919565b90506000815111610e9f5760405180602001604052806000815250610eca565b80610ea984611928565b604051602001610eba9291906123ab565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610efb5760405162461bcd60e51b815260040161062e9061247c565b73740975bdc13e4253c0b8af32f5271ef0ad6dd52e7375760abb406df0aaf44944109fcaf5d5819130637313f3cf1111d47d8b6fe0d7e1bea591e1f43f389c73666348d1e5403bbaa71e7c8e912bde08a5c93bf973792c22eb036372007b37367ed50f16473603448073a7818c675469c3a09fe6d26f6b17a33b3efb93c5734729f800b85d10be1b15785fb0553f835e5b036e6000610fa86103e8610fa24761020361186e565b90611a26565b90506000610fbd6103e8610fa247609661186e565b90506000610fd26103e8610fa247609661186e565b90506000610fe76103e8610fa247606461186e565b90506000610ffc6103e8610fa247603261186e565b905060006110116103e8610fa247600a61186e565b905060006110266103e8610fa247601961186e565b6040519091506001600160a01b038f169088156108fc029089906000818181858888f1935050505061105757600080fd5b6040516001600160a01b038e169087156108fc029088906000818181858888f1935050505061108557600080fd5b6040516001600160a01b038d169086156108fc029087906000818181858888f193505050506110b357600080fd5b6040516001600160a01b038c169085156108fc029086906000818181858888f193505050506110e157600080fd5b6040516001600160a01b038b169084156108fc029085906000818181858888f1935050505061110f57600080fd5b6040516001600160a01b038a169083156108fc029084906000818181858888f1935050505061113d57600080fd5b6040516001600160a01b0389169082156108fc029083906000818181858888f1935050505061116b57600080fd5b5050505050505050505050505050565b600061118660085490565b90506011544210156111da5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f742073746172746564207965740000000000604482015260640161062e565b600e546010546111ea919061257e565b6111f48383612533565b106112325760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b604482015260640161062e565b336000908152600b6020526040902054601590611250908490612533565b106112b65760405162461bcd60e51b815260206004820152603060248201527f4d6178696d756d20323020446563656e7472617a696e6573207065722041646460448201526f7265737320666f722070726573616c6560801b606482015260840161062e565b600f546112c3908361186e565b3410156113075760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1022ba3432b960711b604482015260640161062e565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050600061134f85600d5484611a32565b9050806113935760405162461bcd60e51b81526020600482015260126024820152714163636f756e7420696e656c696769626c6560701b604482015260640161062e565b601584106113cc5760405162461bcd60e51b815260206004820152600660248201526504d61782032360d41b604482015260640161062e565b336000908152600b60205260409020546015116114155760405162461bcd60e51b8152602060048201526007602482015266026b0bc101918160cd1b604482015260640161062e565b60005b848110156114405761142e336109978387612533565b80611438816125fc565b915050611418565b50336000908152600b602052604090205461145c908590612533565b336000908152600b60205260409020555050505050565b600a546001600160a01b0316331461149d5760405162461bcd60e51b815260040161062e9061247c565b6001600160a01b0381166115025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062e565b61150b81611894565b50565b60006001600160e01b031982166380ac58cd60e01b148061153f57506001600160e01b03198216635b5e139f60e01b145b8061052157506301ffc9a760e01b6001600160e01b0319831614610521565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382610b8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161062e565b600061165083610b8d565b9050806001600160a01b0316846001600160a01b0316148061168b5750836001600160a01b0316611680846105b9565b6001600160a01b0316145b806116bb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116d682610b8d565b6001600160a01b03161461173e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161062e565b6001600160a01b0382166117a05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161062e565b6117ab838383611ae1565b6117b660008261155e565b6001600160a01b03831660009081526003602052604081208054600192906117df90849061257e565b90915550506001600160a01b038216600090815260036020526040812080546001929061180d908490612533565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610eca828461255f565b610b89828260405180602001604052806000815250611b99565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118f18484846116c3565b6118fd84848484611bcc565b610ab35760405162461bcd60e51b815260040161062e9061242a565b6060600c8054610536906125c1565b60608161194c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119765780611960816125fc565b915061196f9050600a8361254b565b9150611950565b60008167ffffffffffffffff81111561199157611991612683565b6040519080825280601f01601f1916602001820160405280156119bb576020820181803683370190505b5090505b84156116bb576119d060018361257e565b91506119dd600a86612617565b6119e8906030612533565b60f81b8183815181106119fd576119fd61266d565b60200101906001600160f81b031916908160001a905350611a1f600a8661254b565b94506119bf565b6000610eca828461254b565b600081815b8551811015611ad6576000868281518110611a5457611a5461266d565b60200260200101519050808311611a96576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ac3565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611ace816125fc565b915050611a37565b509092149392505050565b6001600160a01b038316611b3c57611b3781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b5f565b816001600160a01b0316836001600160a01b031614611b5f57611b5f8382611cd9565b6001600160a01b038216611b765761076481611d76565b826001600160a01b0316826001600160a01b031614610764576107648282611e25565b611ba38383611e69565b611bb06000848484611bcc565b6107645760405162461bcd60e51b815260040161062e9061242a565b60006001600160a01b0384163b15611cce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c109033908990889088906004016123da565b602060405180830381600087803b158015611c2a57600080fd5b505af1925050508015611c5a575060408051601f3d908101601f19168201909252611c5791810190612319565b60015b611cb4573d808015611c88576040519150601f19603f3d011682016040523d82523d6000602084013e611c8d565b606091505b508051611cac5760405162461bcd60e51b815260040161062e9061242a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116bb565b506001949350505050565b60006001611ce684610c04565b611cf0919061257e565b600083815260076020526040902054909150808214611d43576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d889060019061257e565b60008381526009602052604081205460088054939450909284908110611db057611db061266d565b906000526020600020015490508060088381548110611dd157611dd161266d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0957611e09612657565b6001900381819060005260206000200160009055905550505050565b6000611e3083610c04565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ebf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161062e565b6000818152600260205260409020546001600160a01b031615611f245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062e565b611f3060008383611ae1565b6001600160a01b0382166000908152600360205260408120805460019290611f59908490612533565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fc3906125c1565b90600052602060002090601f016020900481019282611fe5576000855561202b565b82601f10611ffe57805160ff191683800117855561202b565b8280016001018555821561202b579182015b8281111561202b578251825591602001919060010190612010565b5061203792915061203b565b5090565b5b80821115612037576000815560010161203c565b600067ffffffffffffffff83111561206a5761206a612683565b61207d601f8401601f1916602001612502565b905082815283838301111561209157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120bf57600080fd5b919050565b6000602082840312156120d657600080fd5b610eca826120a8565b600080604083850312156120f257600080fd5b6120fb836120a8565b9150612109602084016120a8565b90509250929050565b60008060006060848603121561212757600080fd5b612130846120a8565b925061213e602085016120a8565b9150604084013590509250925092565b6000806000806080858703121561216457600080fd5b61216d856120a8565b935061217b602086016120a8565b925060408501359150606085013567ffffffffffffffff81111561219e57600080fd5b8501601f810187136121af57600080fd5b6121be87823560208401612050565b91505092959194509250565b600080604083850312156121dd57600080fd5b6121e6836120a8565b9150602083013580151581146121fb57600080fd5b809150509250929050565b6000806040838503121561221957600080fd5b612222836120a8565b946020939093013593505050565b6000806040838503121561224357600080fd5b823567ffffffffffffffff8082111561225b57600080fd5b818501915085601f83011261226f57600080fd5b813560208282111561228357612283612683565b8160051b9250612294818401612502565b8281528181019085830185870184018b10156122af57600080fd5b600096505b848710156122d25780358352600196909601959183019183016122b4565b509997909101359750505050505050565b6000602082840312156122f557600080fd5b5035919050565b60006020828403121561230e57600080fd5b8135610eca81612699565b60006020828403121561232b57600080fd5b8151610eca81612699565b60006020828403121561234857600080fd5b813567ffffffffffffffff81111561235f57600080fd5b8201601f8101841361237057600080fd5b6116bb84823560208401612050565b60008151808452612397816020860160208601612595565b601f01601f19169290920160200192915050565b600083516123bd818460208801612595565b8351908301906123d1818360208801612595565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240d9083018461237f565b9695505050505050565b602081526000610eca602083018461237f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561252b5761252b612683565b604052919050565b600082198211156125465761254661262b565b500190565b60008261255a5761255a612641565b500490565b60008160001904831182151516156125795761257961262b565b500290565b6000828210156125905761259061262b565b500390565b60005b838110156125b0578181015183820152602001612598565b83811115610ab35750506000910152565b600181811c908216806125d557607f821691505b602082108114156125f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126105761261061262b565b5060010190565b60008261262657612626612641565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150b57600080fdfea2646970667358221220f30fed50ef77ce2843cec34478dd928e3102a99bffdcc357a175574a443413ff64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f746865646563656e7472617a696e6570726f6a6563742e696f2e73332e616d617a6f6e6177732e636f6d2f00000000000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): https://thedecentrazineproject.io.s3.amazonaws.com/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [2] : 68747470733a2f2f746865646563656e7472617a696e6570726f6a6563742e69
Arg [3] : 6f2e73332e616d617a6f6e6177732e636f6d2f00000000000000000000000000


Deployed Bytecode Sourcemap

54563:4333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36027:224;;;;;;;;;;-1:-1:-1;36027:224:0;;;;;:::i;:::-;;:::i;:::-;;;7124:14:1;;7117:22;7099:41;;7087:2;7072:18;36027:224:0;;;;;;;;23141:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24700:221::-;;;;;;;;;;-1:-1:-1;24700:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6422:32:1;;;6404:51;;6392:2;6377:18;24700:221:0;6258:203:1;24223:411:0;;;;;;;;;;-1:-1:-1;24223:411:0;;;;;:::i;:::-;;:::i;:::-;;36667:113;;;;;;;;;;-1:-1:-1;36755:10:0;:17;36667:113;;;17559:25:1;;;17547:2;17532:18;36667:113:0;17413:177:1;25590:339:0;;;;;;;;;;-1:-1:-1;25590:339:0;;;;;:::i;:::-;;:::i;36335:256::-;;;;;;;;;;-1:-1:-1;36335:256:0;;;;;:::i;:::-;;:::i;56633:642::-;;;;;;:::i;:::-;;:::i;26000:185::-;;;;;;;;;;-1:-1:-1;26000:185:0;;;;;:::i;:::-;;:::i;57287:320::-;;;;;;;;;;-1:-1:-1;57287:320:0;;;;;:::i;:::-;;:::i;36857:233::-;;;;;;;;;;-1:-1:-1;36857:233:0;;;;;:::i;:::-;;:::i;55240:108::-;;;;;;;;;;-1:-1:-1;55240:108:0;;;;;:::i;:::-;;:::i;22835:239::-;;;;;;;;;;-1:-1:-1;22835:239:0;;;;;:::i;:::-;;:::i;54945:43::-;;;;;;;;;;;;;;;;22565:208;;;;;;;;;;-1:-1:-1;22565:208:0;;;;;:::i;:::-;;:::i;43748:94::-;;;;;;;;;;;;;:::i;55360:105::-;;;;;;;;;;-1:-1:-1;55360:105:0;;;;;:::i;:::-;;:::i;43097:87::-;;;;;;;;;;-1:-1:-1;43170:6:0;;-1:-1:-1;;;;;43170:6:0;43097:87;;23310:104;;;;;;;;;;;;;:::i;24993:295::-;;;;;;;;;;-1:-1:-1;24993:295:0;;;;;:::i;:::-;;:::i;54893:44::-;;;;;;;;;;;;;;;;26256:328;;;;;;;;;;-1:-1:-1;26256:328:0;;;;;:::i;:::-;;:::i;23485:334::-;;;;;;;;;;-1:-1:-1;23485:334:0;;;;;:::i;:::-;;:::i;57615:1278::-;;;:::i;25359:164::-;;;;;;;;;;-1:-1:-1;25359:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25480:25:0;;;25456:4;25480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25359:164;55477:1144;;;;;;:::i;:::-;;:::i;43997:192::-;;;;;;;;;;-1:-1:-1;43997:192:0;;;;;:::i;:::-;;:::i;36027:224::-;36129:4;-1:-1:-1;;;;;;36153:50:0;;-1:-1:-1;;;36153:50:0;;:90;;;36207:36;36231:11;36207:23;:36::i;:::-;36146:97;36027:224;-1:-1:-1;;36027:224:0:o;23141:100::-;23195:13;23228:5;23221:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23141:100;:::o;24700:221::-;24776:7;28183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28183:16:0;24796:73;;;;-1:-1:-1;;;24796:73:0;;13757:2:1;24796:73:0;;;13739:21:1;13796:2;13776:18;;;13769:30;13835:34;13815:18;;;13808:62;-1:-1:-1;;;13886:18:1;;;13879:42;13938:19;;24796:73:0;;;;;;;;;-1:-1:-1;24889:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24889:24:0;;24700:221::o;24223:411::-;24304:13;24320:23;24335:7;24320:14;:23::i;:::-;24304:39;;24368:5;-1:-1:-1;;;;;24362:11:0;:2;-1:-1:-1;;;;;24362:11:0;;;24354:57;;;;-1:-1:-1;;;24354:57:0;;15713:2:1;24354:57:0;;;15695:21:1;15752:2;15732:18;;;15725:30;15791:34;15771:18;;;15764:62;-1:-1:-1;;;15842:18:1;;;15835:31;15883:19;;24354:57:0;15511:397:1;24354:57:0;10626:10;-1:-1:-1;;;;;24446:21:0;;;;:62;;-1:-1:-1;24471:37:0;24488:5;10626:10;25359:164;:::i;24471:37::-;24424:168;;;;-1:-1:-1;;;24424:168:0;;11451:2:1;24424:168:0;;;11433:21:1;11490:2;11470:18;;;11463:30;11529:34;11509:18;;;11502:62;11600:26;11580:18;;;11573:54;11644:19;;24424:168:0;11249:420:1;24424:168:0;24605:21;24614:2;24618:7;24605:8;:21::i;:::-;24293:341;24223:411;;:::o;25590:339::-;25785:41;10626:10;25818:7;25785:18;:41::i;:::-;25777:103;;;;-1:-1:-1;;;25777:103:0;;;;;;;:::i;:::-;25893:28;25903:4;25909:2;25913:7;25893:9;:28::i;36335:256::-;36432:7;36468:23;36485:5;36468:16;:23::i;:::-;36460:5;:31;36452:87;;;;-1:-1:-1;;;36452:87:0;;7920:2:1;36452:87:0;;;7902:21:1;7959:2;7939:18;;;7932:30;7998:34;7978:18;;;7971:62;-1:-1:-1;;;8049:18:1;;;8042:41;8100:19;;36452:87:0;7718:407:1;36452:87:0;-1:-1:-1;;;;;;36557:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36335:256::o;56633:642::-;56719:14;56736:13;36755:10;:17;;36667:113;56736:13;56719:30;;56817:17;;56798:16;;:36;;;;:::i;:::-;56779:15;:55;;56770:99;;;;-1:-1:-1;;;56770:99:0;;14170:2:1;56770:99:0;;;14152:21:1;14209:2;14189:18;;;14182:30;14248:29;14228:18;;;14221:57;14295:18;;56770:99:0;13968:351:1;56770:99:0;56922:8;;56910:9;;:20;;;;:::i;:::-;56889:18;56898:9;56889:6;:18;:::i;:::-;:41;56880:86;;;;-1:-1:-1;;;56880:86:0;;7577:2:1;56880:86:0;;;7559:21:1;7616:2;7596:18;;;7589:30;-1:-1:-1;;;7635:18:1;;;7628:44;7689:18;;56880:86:0;7375:338:1;56880:86:0;56999:8;;:23;;57012:9;56999:12;:23::i;:::-;56986:9;:36;;56977:90;;;;-1:-1:-1;;;56977:90:0;;12697:2:1;56977:90:0;;;12679:21:1;12736:2;12716:18;;;12709:30;-1:-1:-1;;;12755:18:1;;;12748:48;12813:18;;56977:90:0;12495:342:1;56977:90:0;57145:2;57133:9;:14;57125:33;;;;-1:-1:-1;;;57125:33:0;;17281:2:1;57125:33:0;;;17263:21:1;17320:1;17300:18;;;17293:29;-1:-1:-1;;;17338:18:1;;;17331:36;17384:18;;57125:33:0;17079:329:1;57125:33:0;57173:9;57169:99;57188:9;57184:1;:13;57169:99;;;57218:38;57229:10;57241;57250:1;57241:6;:10;:::i;:::-;:14;;57254:1;57241:14;:::i;:::-;57218:9;:38::i;:::-;57199:3;;;;:::i;:::-;;;;57169:99;;26000:185;26138:39;26155:4;26161:2;26165:7;26138:39;;;;;;;;;;;;:16;:39::i;57287:320::-;43170:6;;-1:-1:-1;;;;;43170:6:0;10626:10;43317:23;43309:68;;;;-1:-1:-1;;;43309:68:0;;;;;;;:::i;:::-;57386:8:::1;;57375:7;:19;;57366:57;;;::::0;-1:-1:-1;;;57366:57:0;;13044:2:1;57366:57:0::1;::::0;::::1;13026:21:1::0;13083:2;13063:18;;;13056:30;13122:25;13102:18;;;13095:53;13165:18;;57366:57:0::1;12842:347:1::0;57366:57:0::1;57434:14;57451:13;36755:10:::0;:17;;36667:113;57451:13:::1;57434:30;;57479:9;57499:8;;57489:9;;:18;;;;:::i;:::-;57479:28;;57475:125;57531:8;::::0;57521:9:::1;::::0;57513:17:::1;::::0;:7;:17:::1;:::i;:::-;:26;;;;:::i;:::-;57509:1;:30;57475:125;;;57560:28;57571:3:::0;57576:10:::1;57585:1:::0;57576:6;:10:::1;:::i;57560:28::-;57541:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57475:125;;;;57355:252;57287:320:::0;;:::o;36857:233::-;36932:7;36968:30;36755:10;:17;;36667:113;36968:30;36960:5;:38;36952:95;;;;-1:-1:-1;;;36952:95:0;;16868:2:1;36952:95:0;;;16850:21:1;16907:2;16887:18;;;16880:30;16946:34;16926:18;;;16919:62;-1:-1:-1;;;16997:18:1;;;16990:42;17049:19;;36952:95:0;16666:408:1;36952:95:0;37065:10;37076:5;37065:17;;;;;;;;:::i;:::-;;;;;;;;;37058:24;;36857:233;;;:::o;55240:108::-;43170:6;;-1:-1:-1;;;;;43170:6:0;10626:10;43317:23;43309:68;;;;-1:-1:-1;;;43309:68:0;;;;;;;:::i;:::-;55317:23;;::::1;::::0;:7:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55240:108:::0;:::o;22835:239::-;22907:7;22943:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22943:16:0;22978:19;22970:73;;;;-1:-1:-1;;;22970:73:0;;12287:2:1;22970:73:0;;;12269:21:1;12326:2;12306:18;;;12299:30;12365:34;12345:18;;;12338:62;-1:-1:-1;;;12416:18:1;;;12409:39;12465:19;;22970:73:0;12085:405:1;22565:208:0;22637:7;-1:-1:-1;;;;;22665:19:0;;22657:74;;;;-1:-1:-1;;;22657:74:0;;11876:2:1;22657:74:0;;;11858:21:1;11915:2;11895:18;;;11888:30;11954:34;11934:18;;;11927:62;-1:-1:-1;;;12005:18:1;;;11998:40;12055:19;;22657:74:0;11674:406:1;22657:74:0;-1:-1:-1;;;;;;22749:16:0;;;;;:9;:16;;;;;;;22565:208::o;43748:94::-;43170:6;;-1:-1:-1;;;;;43170:6:0;10626:10;43317:23;43309:68;;;;-1:-1:-1;;;43309:68:0;;;;;;;:::i;:::-;43813:21:::1;43831:1;43813:9;:21::i;:::-;43748:94::o:0;55360:105::-;43170:6;;-1:-1:-1;;;;;43170:6:0;10626:10;43317:23;43309:68;;;;-1:-1:-1;;;43309:68:0;;;;;;;:::i;:::-;55433:10:::1;:24:::0;55360:105::o;23310:104::-;23366:13;23399:7;23392:14;;;;;:::i;24993:295::-;-1:-1:-1;;;;;25096:24:0;;10626:10;25096:24;;25088:62;;;;-1:-1:-1;;;25088:62:0;;10337:2:1;25088:62:0;;;10319:21:1;10376:2;10356:18;;;10349:30;10415:27;10395:18;;;10388:55;10460:18;;25088:62:0;10135:349:1;25088:62:0;10626:10;25163:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25163:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25163:53:0;;;;;;;;;;25232:48;;7099:41:1;;;25163:42:0;;10626:10;25232:48;;7072:18:1;25232:48:0;;;;;;;24993:295;;:::o;26256:328::-;26431:41;10626:10;26464:7;26431:18;:41::i;:::-;26423:103;;;;-1:-1:-1;;;26423:103:0;;;;;;;:::i;:::-;26537:39;26551:4;26557:2;26561:7;26570:5;26537:13;:39::i;23485:334::-;28159:4;28183:16;;;:7;:16;;;;;;23558:13;;-1:-1:-1;;;;;28183:16:0;23584:76;;;;-1:-1:-1;;;23584:76:0;;15297:2:1;23584:76:0;;;15279:21:1;15336:2;15316:18;;;15309:30;15375:34;15355:18;;;15348:62;-1:-1:-1;;;15426:18:1;;;15419:45;15481:19;;23584:76:0;15095:411:1;23584:76:0;23673:21;23697:10;:8;:10::i;:::-;23673:34;;23749:1;23731:7;23725:21;:25;:86;;;;;;;;;;;;;;;;;23777:7;23786:18;:7;:16;:18::i;:::-;23760:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23725:86;23718:93;23485:334;-1:-1:-1;;;23485:334:0:o;57615:1278::-;43170:6;;-1:-1:-1;;;;;43170:6:0;10626:10;43317:23;43309:68;;;;-1:-1:-1;;;43309:68:0;;;;;;;:::i;:::-;57686:42:::1;57752;57818;57884;57950;58016;58082;57673:10;58154:40;58189:4;58154:30;:21;58180:3;58154:25;:30::i;:::-;:34:::0;::::1;:40::i;:::-;58139:55:::0;-1:-1:-1;58205:12:0::1;58220:40;58255:4;58220:30;:21;58246:3;58220:25;:30::i;:40::-;58205:55:::0;-1:-1:-1;58271:12:0::1;58286:40;58321:4;58286:30;:21;58312:3;58286:25;:30::i;:40::-;58271:55:::0;-1:-1:-1;58337:12:0::1;58352:40;58387:4;58352:30;:21;58378:3;58352:25;:30::i;:40::-;58337:55:::0;-1:-1:-1;58403:12:0::1;58418:39;58452:4;58418:29;:21;58444:2;58418:25;:29::i;:39::-;58403:54:::0;-1:-1:-1;58468:12:0::1;58483:39;58517:4;58483:29;:21;58509:2;58483:25;:29::i;:39::-;58468:54:::0;-1:-1:-1;58533:12:0::1;58548:39;58582:4;58548:29;:21;58574:2;58548:25;:29::i;:39::-;58610:22;::::0;58533:54;;-1:-1:-1;;;;;;58610:16:0;::::1;::::0;:22;::::1;;;::::0;58627:4;;58610:22:::1;::::0;;;58627:4;58610:16;:22;::::1;;;;;;58602:31;;;::::0;::::1;;58652:22;::::0;-1:-1:-1;;;;;58652:16:0;::::1;::::0;:22;::::1;;;::::0;58669:4;;58652:22:::1;::::0;;;58669:4;58652:16;:22;::::1;;;;;;58644:31;;;::::0;::::1;;58694:22;::::0;-1:-1:-1;;;;;58694:16:0;::::1;::::0;:22;::::1;;;::::0;58711:4;;58694:22:::1;::::0;;;58711:4;58694:16;:22;::::1;;;;;;58686:31;;;::::0;::::1;;58736:22;::::0;-1:-1:-1;;;;;58736:16:0;::::1;::::0;:22;::::1;;;::::0;58753:4;;58736:22:::1;::::0;;;58753:4;58736:16;:22;::::1;;;;;;58728:31;;;::::0;::::1;;58778:22;::::0;-1:-1:-1;;;;;58778:16:0;::::1;::::0;:22;::::1;;;::::0;58795:4;;58778:22:::1;::::0;;;58795:4;58778:16;:22;::::1;;;;;;58770:31;;;::::0;::::1;;58820:22;::::0;-1:-1:-1;;;;;58820:16:0;::::1;::::0;:22;::::1;;;::::0;58837:4;;58820:22:::1;::::0;;;58837:4;58820:16;:22;::::1;;;;;;58812:31;;;::::0;::::1;;58862:22;::::0;-1:-1:-1;;;;;58862:16:0;::::1;::::0;:22;::::1;;;::::0;58879:4;;58862:22:::1;::::0;;;58879:4;58862:16;:22;::::1;;;;;;58854:31;;;::::0;::::1;;57662:1231;;;;;;;;;;;;;;57615:1278::o:0;55477:1144::-;55593:14;55610:13;36755:10;:17;;36667:113;55610:13;55593:30;;55664:16;;55645:15;:35;;55636:87;;;;-1:-1:-1;;;55636:87:0;;14170:2:1;55636:87:0;;;14152:21:1;14209:2;14189:18;;;14182:30;14248:29;14228:18;;;14221:57;14295:18;;55636:87:0;13968:351:1;55636:87:0;55776:8;;55764:9;;:20;;;;:::i;:::-;55743:18;55752:9;55743:6;:18;:::i;:::-;:41;55734:74;;;;-1:-1:-1;;;55734:74:0;;7577:2:1;55734:74:0;;;7559:21:1;7616:2;7596:18;;;7589:30;-1:-1:-1;;;7635:18:1;;;7628:44;7689:18;;55734:74:0;7375:338:1;55734:74:0;55841:10;55828:24;;;;:12;:24;;;;;;55867:2;;55828:36;;55855:9;;55828:36;:::i;:::-;:41;55819:107;;;;-1:-1:-1;;;55819:107:0;;9158:2:1;55819:107:0;;;9140:21:1;9197:2;9177:18;;;9170:30;9236:34;9216:18;;;9209:62;-1:-1:-1;;;9287:18:1;;;9280:46;9343:19;;55819:107:0;8956:412:1;55819:107:0;55959:8;;:23;;55972:9;55959:12;:23::i;:::-;55946:9;:36;;55937:78;;;;-1:-1:-1;;;55937:78:0;;12697:2:1;55937:78:0;;;12679:21:1;12736:2;12716:18;;;12709:30;-1:-1:-1;;;12755:18:1;;;12748:48;12813:18;;55937:78:0;12495:342:1;55937:78:0;56115:28;;-1:-1:-1;;56132:10:0;5446:2:1;5442:15;5438:53;56115:28:0;;;5426:66:1;56090:12:0;;5508::1;;56115:28:0;;;;;;;;;;;;56105:39;;;;;;56090:54;;56155:16;56174:43;56193:5;56200:10;;56212:4;56174:18;:43::i;:::-;56155:62;;56236:11;56228:42;;;;-1:-1:-1;;;56228:42:0;;10691:2:1;56228:42:0;;;10673:21:1;10730:2;10710:18;;;10703:30;-1:-1:-1;;;10749:18:1;;;10742:48;10807:18;;56228:42:0;10489:342:1;56228:42:0;56356:2;56344:9;:14;56336:33;;;;-1:-1:-1;;;56336:33:0;;17281:2:1;56336:33:0;;;17263:21:1;17320:1;17300:18;;;17293:29;-1:-1:-1;;;17338:18:1;;;17331:36;17384:18;;56336:33:0;17079:329:1;56336:33:0;56401:10;56388:24;;;;:12;:24;;;;;;56415:2;-1:-1:-1;56380:49:0;;;;-1:-1:-1;;;56380:49:0;;16115:2:1;56380:49:0;;;16097:21:1;16154:1;16134:18;;;16127:29;-1:-1:-1;;;16172:18:1;;;16165:37;16219:18;;56380:49:0;15913:330:1;56380:49:0;56444:9;56440:100;56459:9;56455:1;:13;56440:100;;;56490:38;56501:10;56513;56522:1;56513:6;:10;:::i;56490:38::-;56470:3;;;;:::i;:::-;;;;56440:100;;;-1:-1:-1;56590:10:0;56577:24;;;;:12;:24;;;;;;:36;;56604:9;;56577:36;:::i;:::-;56563:10;56550:24;;;;:12;:24;;;;;:63;-1:-1:-1;;;;;55477:1144:0:o;43997:192::-;43170:6;;-1:-1:-1;;;;;43170:6:0;10626:10;43317:23;43309:68;;;;-1:-1:-1;;;43309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44086:22:0;::::1;44078:73;;;::::0;-1:-1:-1;;;44078:73:0;;8751:2:1;44078:73:0::1;::::0;::::1;8733:21:1::0;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:36;8926:19;;44078:73:0::1;8549:402:1::0;44078:73:0::1;44162:19;44172:8;44162:9;:19::i;:::-;43997:192:::0;:::o;22196:305::-;22298:4;-1:-1:-1;;;;;;22335:40:0;;-1:-1:-1;;;22335:40:0;;:105;;-1:-1:-1;;;;;;;22392:48:0;;-1:-1:-1;;;22392:48:0;22335:105;:158;;;-1:-1:-1;;;;;;;;;;20912:40:0;;;22457:36;20803:157;32076:174;32151:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32151:29:0;-1:-1:-1;;;;;32151:29:0;;;;;;;;:24;;32205:23;32151:24;32205:14;:23::i;:::-;-1:-1:-1;;;;;32196:46:0;;;;;;;;;;;32076:174;;:::o;28388:348::-;28481:4;28183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28183:16:0;28498:73;;;;-1:-1:-1;;;28498:73:0;;11038:2:1;28498:73:0;;;11020:21:1;11077:2;11057:18;;;11050:30;11116:34;11096:18;;;11089:62;-1:-1:-1;;;11167:18:1;;;11160:42;11219:19;;28498:73:0;10836:408:1;28498:73:0;28582:13;28598:23;28613:7;28598:14;:23::i;:::-;28582:39;;28651:5;-1:-1:-1;;;;;28640:16:0;:7;-1:-1:-1;;;;;28640:16:0;;:51;;;;28684:7;-1:-1:-1;;;;;28660:31:0;:20;28672:7;28660:11;:20::i;:::-;-1:-1:-1;;;;;28660:31:0;;28640:51;:87;;;-1:-1:-1;;;;;;25480:25:0;;;25456:4;25480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28695:32;28632:96;28388:348;-1:-1:-1;;;;28388:348:0:o;31380:578::-;31539:4;-1:-1:-1;;;;;31512:31:0;:23;31527:7;31512:14;:23::i;:::-;-1:-1:-1;;;;;31512:31:0;;31504:85;;;;-1:-1:-1;;;31504:85:0;;14887:2:1;31504:85:0;;;14869:21:1;14926:2;14906:18;;;14899:30;14965:34;14945:18;;;14938:62;-1:-1:-1;;;15016:18:1;;;15009:39;15065:19;;31504:85:0;14685:405:1;31504:85:0;-1:-1:-1;;;;;31608:16:0;;31600:65;;;;-1:-1:-1;;;31600:65:0;;9932:2:1;31600:65:0;;;9914:21:1;9971:2;9951:18;;;9944:30;10010:34;9990:18;;;9983:62;-1:-1:-1;;;10061:18:1;;;10054:34;10105:19;;31600:65:0;9730:400:1;31600:65:0;31678:39;31699:4;31705:2;31709:7;31678:20;:39::i;:::-;31782:29;31799:1;31803:7;31782:8;:29::i;:::-;-1:-1:-1;;;;;31824:15:0;;;;;;:9;:15;;;;;:20;;31843:1;;31824:15;:20;;31843:1;;31824:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31855:13:0;;;;;;:9;:13;;;;;:18;;31872:1;;31855:13;:18;;31872:1;;31855:18;:::i;:::-;;;;-1:-1:-1;;31884:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31884:21:0;-1:-1:-1;;;;;31884:21:0;;;;;;;;;31923:27;;31884:16;;31923:27;;;;;;;31380:578;;;:::o;49400:98::-;49458:7;49485:5;49489:1;49485;:5;:::i;29078:110::-;29154:26;29164:2;29168:7;29154:26;;;;;;;;;;;;:9;:26::i;44197:173::-;44272:6;;;-1:-1:-1;;;;;44289:17:0;;;-1:-1:-1;;;;;;44289:17:0;;;;;;;44322:40;;44272:6;;;44289:17;44272:6;;44322:40;;44253:16;;44322:40;44242:128;44197:173;:::o;27466:315::-;27623:28;27633:4;27639:2;27643:7;27623:9;:28::i;:::-;27670:48;27693:4;27699:2;27703:7;27712:5;27670:22;:48::i;:::-;27662:111;;;;-1:-1:-1;;;27662:111:0;;;;;;;:::i;55124:108::-;55184:13;55217:7;55210:14;;;;;:::i;8242:723::-;8298:13;8519:10;8515:53;;-1:-1:-1;;8546:10:0;;;;;;;;;;;;-1:-1:-1;;;8546:10:0;;;;;8242:723::o;8515:53::-;8593:5;8578:12;8634:78;8641:9;;8634:78;;8667:8;;;;:::i;:::-;;-1:-1:-1;8690:10:0;;-1:-1:-1;8698:2:0;8690:10;;:::i;:::-;;;8634:78;;;8722:19;8754:6;8744:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8744:17:0;;8722:39;;8772:154;8779:10;;8772:154;;8806:11;8816:1;8806:11;;:::i;:::-;;-1:-1:-1;8875:10:0;8883:2;8875:5;:10;:::i;:::-;8862:24;;:2;:24;:::i;:::-;8849:39;;8832:6;8839;8832:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8832:56:0;;;;;;;;-1:-1:-1;8903:11:0;8912:2;8903:11;;:::i;:::-;;;8772:154;;49799:98;49857:7;49884:5;49888:1;49884;:5;:::i;45120:830::-;45245:4;45285;45245;45302:525;45326:5;:12;45322:1;:16;45302:525;;;45360:20;45383:5;45389:1;45383:8;;;;;;;;:::i;:::-;;;;;;;45360:31;;45428:12;45412;:28;45408:408;;45565:44;;;;;;5688:19:1;;;5723:12;;;5716:28;;;5760:12;;45565:44:0;;;;;;;;;;;;45555:55;;;;;;45540:70;;45408:408;;;45755:44;;;;;;5688:19:1;;;5723:12;;;5716:28;;;5760:12;;45755:44:0;;;;;;;;;;;;45745:55;;;;;;45730:70;;45408:408;-1:-1:-1;45340:3:0;;;;:::i;:::-;;;;45302:525;;;-1:-1:-1;45922:20:0;;;;45120:830;-1:-1:-1;;;45120:830:0:o;37703:589::-;-1:-1:-1;;;;;37909:18:0;;37905:187;;37944:40;37976:7;39119:10;:17;;39092:24;;;;:15;:24;;;;;:44;;;39147:24;;;;;;;;;;;;39015:164;37944:40;37905:187;;;38014:2;-1:-1:-1;;;;;38006:10:0;:4;-1:-1:-1;;;;;38006:10:0;;38002:90;;38033:47;38066:4;38072:7;38033:32;:47::i;:::-;-1:-1:-1;;;;;38106:16:0;;38102:183;;38139:45;38176:7;38139:36;:45::i;38102:183::-;38212:4;-1:-1:-1;;;;;38206:10:0;:2;-1:-1:-1;;;;;38206:10:0;;38202:83;;38233:40;38261:2;38265:7;38233:27;:40::i;29415:321::-;29545:18;29551:2;29555:7;29545:5;:18::i;:::-;29596:54;29627:1;29631:2;29635:7;29644:5;29596:22;:54::i;:::-;29574:154;;;;-1:-1:-1;;;29574:154:0;;;;;;;:::i;32815:803::-;32970:4;-1:-1:-1;;;;;32991:13:0;;13298:20;13346:8;32987:624;;33027:72;;-1:-1:-1;;;33027:72:0;;-1:-1:-1;;;;;33027:36:0;;;;;:72;;10626:10;;33078:4;;33084:7;;33093:5;;33027:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33027:72:0;;;;;;;;-1:-1:-1;;33027:72:0;;;;;;;;;;;;:::i;:::-;;;33023:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33273:13:0;;33269:272;;33316:60;;-1:-1:-1;;;33316:60:0;;;;;;;:::i;33269:272::-;33491:6;33485:13;33476:6;33472:2;33468:15;33461:38;33023:533;-1:-1:-1;;;;;;33150:55:0;-1:-1:-1;;;33150:55:0;;-1:-1:-1;33143:62:0;;32987:624;-1:-1:-1;33595:4:0;32815:803;;;;;;:::o;39806:988::-;40072:22;40122:1;40097:22;40114:4;40097:16;:22::i;:::-;:26;;;;:::i;:::-;40134:18;40155:26;;;:17;:26;;;;;;40072:51;;-1:-1:-1;40288:28:0;;;40284:328;;-1:-1:-1;;;;;40355:18:0;;40333:19;40355:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40406:30;;;;;;:44;;;40523:30;;:17;:30;;;;;:43;;;40284:328;-1:-1:-1;40708:26:0;;;;:17;:26;;;;;;;;40701:33;;;-1:-1:-1;;;;;40752:18:0;;;;;:12;:18;;;;;:34;;;;;;;40745:41;39806:988::o;41089:1079::-;41367:10;:17;41342:22;;41367:21;;41387:1;;41367:21;:::i;:::-;41399:18;41420:24;;;:15;:24;;;;;;41793:10;:26;;41342:46;;-1:-1:-1;41420:24:0;;41342:46;;41793:26;;;;;;:::i;:::-;;;;;;;;;41771:48;;41857:11;41832:10;41843;41832:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41937:28;;;:15;:28;;;;;;;:41;;;42109:24;;;;;42102:31;42144:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41160:1008;;;41089:1079;:::o;38593:221::-;38678:14;38695:20;38712:2;38695:16;:20::i;:::-;-1:-1:-1;;;;;38726:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38771:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38593:221:0:o;30072:382::-;-1:-1:-1;;;;;30152:16:0;;30144:61;;;;-1:-1:-1;;;30144:61:0;;13396:2:1;30144:61:0;;;13378:21:1;;;13415:18;;;13408:30;13474:34;13454:18;;;13447:62;13526:18;;30144:61:0;13194:356:1;30144:61:0;28159:4;28183:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28183:16:0;:30;30216:58;;;;-1:-1:-1;;;30216:58:0;;9575:2:1;30216:58:0;;;9557:21:1;9614:2;9594:18;;;9587:30;9653;9633:18;;;9626:58;9701:18;;30216:58:0;9373:352:1;30216:58:0;30287:45;30316:1;30320:2;30324:7;30287:20;:45::i;:::-;-1:-1:-1;;;;;30345:13:0;;;;;;:9;:13;;;;;:18;;30362:1;;30345:13;:18;;30362:1;;30345:18;:::i;:::-;;;;-1:-1:-1;;30374:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30374:21:0;-1:-1:-1;;;;;30374:21:0;;;;;;;;30413:33;;30374:16;;;30413:33;;30374:16;;30413:33;30072:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:257::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5157:63;5213:6;5206:4;5201:3;5197:14;5190:4;5183:5;5179:16;5157:63;:::i;:::-;5274:2;5253:15;-1:-1:-1;;5249:29:1;5240:39;;;;5281:4;5236:50;;5035:257;-1:-1:-1;;5035:257:1:o;5783:470::-;5962:3;6000:6;5994:13;6016:53;6062:6;6057:3;6050:4;6042:6;6038:17;6016:53;:::i;:::-;6132:13;;6091:16;;;;6154:57;6132:13;6091:16;6188:4;6176:17;;6154:57;:::i;:::-;6227:20;;5783:470;-1:-1:-1;;;;5783:470:1:o;6466:488::-;-1:-1:-1;;;;;6735:15:1;;;6717:34;;6787:15;;6782:2;6767:18;;6760:43;6834:2;6819:18;;6812:34;;;6882:3;6877:2;6862:18;;6855:31;;;6660:4;;6903:45;;6928:19;;6920:6;6903:45;:::i;:::-;6895:53;6466:488;-1:-1:-1;;;;;;6466:488:1:o;7151:219::-;7300:2;7289:9;7282:21;7263:4;7320:44;7360:2;7349:9;7345:18;7337:6;7320:44;:::i;8130:414::-;8332:2;8314:21;;;8371:2;8351:18;;;8344:30;8410:34;8405:2;8390:18;;8383:62;-1:-1:-1;;;8476:2:1;8461:18;;8454:48;8534:3;8519:19;;8130:414::o;14324:356::-;14526:2;14508:21;;;14545:18;;;14538:30;14604:34;14599:2;14584:18;;14577:62;14671:2;14656:18;;14324:356::o;16248:413::-;16450:2;16432:21;;;16489:2;16469:18;;;16462:30;16528:34;16523:2;16508:18;;16501:62;-1:-1:-1;;;16594:2:1;16579:18;;16572:47;16651:3;16636:19;;16248:413::o;17595:275::-;17666:2;17660:9;17731:2;17712:13;;-1:-1:-1;;17708:27:1;17696:40;;17766:18;17751:34;;17787:22;;;17748:62;17745:88;;;17813:18;;:::i;:::-;17849:2;17842:22;17595:275;;-1:-1:-1;17595:275:1:o;17875:128::-;17915:3;17946:1;17942:6;17939:1;17936:13;17933:39;;;17952:18;;:::i;:::-;-1:-1:-1;17988:9:1;;17875:128::o;18008:120::-;18048:1;18074;18064:35;;18079:18;;:::i;:::-;-1:-1:-1;18113:9:1;;18008:120::o;18133:168::-;18173:7;18239:1;18235;18231:6;18227:14;18224:1;18221:21;18216:1;18209:9;18202:17;18198:45;18195:71;;;18246:18;;:::i;:::-;-1:-1:-1;18286:9:1;;18133:168::o;18306:125::-;18346:4;18374:1;18371;18368:8;18365:34;;;18379:18;;:::i;:::-;-1:-1:-1;18416:9:1;;18306:125::o;18436:258::-;18508:1;18518:113;18532:6;18529:1;18526:13;18518:113;;;18608:11;;;18602:18;18589:11;;;18582:39;18554:2;18547:10;18518:113;;;18649:6;18646:1;18643:13;18640:48;;;-1:-1:-1;;18684:1:1;18666:16;;18659:27;18436:258::o;18699:380::-;18778:1;18774:12;;;;18821;;;18842:61;;18896:4;18888:6;18884:17;18874:27;;18842:61;18949:2;18941:6;18938:14;18918:18;18915:38;18912:161;;;18995:10;18990:3;18986:20;18983:1;18976:31;19030:4;19027:1;19020:15;19058:4;19055:1;19048:15;18912:161;;18699:380;;;:::o;19084:135::-;19123:3;-1:-1:-1;;19144:17:1;;19141:43;;;19164:18;;:::i;:::-;-1:-1:-1;19211:1:1;19200:13;;19084:135::o;19224:112::-;19256:1;19282;19272:35;;19287:18;;:::i;:::-;-1:-1:-1;19321:9:1;;19224:112::o;19341:127::-;19402:10;19397:3;19393:20;19390:1;19383:31;19433:4;19430:1;19423:15;19457:4;19454:1;19447:15;19473:127;19534:10;19529:3;19525:20;19522:1;19515:31;19565:4;19562:1;19555:15;19589:4;19586:1;19579:15;19605:127;19666:10;19661:3;19657:20;19654:1;19647:31;19697:4;19694:1;19687:15;19721:4;19718:1;19711:15;19737:127;19798:10;19793:3;19789:20;19786:1;19779:31;19829:4;19826:1;19819:15;19853:4;19850:1;19843:15;19869:127;19930:10;19925:3;19921:20;19918:1;19911:31;19961:4;19958:1;19951:15;19985:4;19982:1;19975:15;20001:131;-1:-1:-1;;;;;;20075:32:1;;20065:43;;20055:71;;20122:1;20119;20112:12

Swarm Source

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