ETH Price: $3,340.03 (-1.03%)
Gas: 8 Gwei

Token

Cyber Zombie Society (CZS)
 

Overview

Max Total Supply

1,032 CZS

Holders

388

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nfthabib.eth
Balance
1 CZS
0x16c8bbc43b84bde6140618b776c754152cffc761
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Cyber Zombie Society is not only a collection of 3,333 NFTs placed on the Ethereum Blockchain. Cyber Zombie Society is a community of like-minded individuals, NFT & Crypto Enthusiasts, entrepreneurs and visionaries, that love to share knowledge and discuss ideas together! ...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CyberZombieSociety

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-11-20
*/

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

//Developer Info NFTDevs.io
//Written by Blockchainguy.net
//Email: [email protected]


/**
 * @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;
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


contract CyberZombieSociety is Ownable, ERC721 {
    uint constant presalePrice = 0.1 ether;
    uint public maxSupply = 3333;
   
    uint public totalSupply = 0;
   
    uint public sale_startTime = 1637514000;
    uint public presale_startTime = 1637427600;
   
    bool public pause_sale = false;
   
    uint public second_phase = sale_startTime + 10800; //3 Hours after Sale Starts
    uint public third_phase = second_phase + 10800; // 6 Hours after Sale Starts
   
    uint public overall_presale_limit = 1000;
   
    string public baseURI = "https://cyberzombiesociety.io/api/nft/";
    mapping(address => bool) private presaleList;
    constructor() ERC721("Cyber Zombie Society", "CZS"){}

   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 10, "Max 10 Allowed per transaction.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == get_current_price() * _count, "incorrect ether amount");
        require(block.timestamp >= sale_startTime,"Sale not Started Yet.");
        require(pause_sale == false, "Sale is Paused.");
       
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
           
            totalSupply += _count;
   }
   
   function buy_Presale(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 3, "Max 3 Allowed per transaction.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == presalePrice * _count, "incorrect ether amount");
        require(block.timestamp >= presale_startTime,"Pre Sale not Started Yet.");
        require(block.timestamp < sale_startTime,"Pre Sale Ended.");
        require(pause_sale == false, "Sale is Paused.");
        require(totalSupply + _count <= overall_presale_limit, "Exceeding Overall Presale Limit.");
       
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
           
            totalSupply += _count;
    }
   
    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }
   
    function get_current_price() public view returns(uint){
        if(block.timestamp >= sale_startTime && block.timestamp < second_phase){
            return 0.3 ether;
        }else if(block.timestamp >= second_phase && block.timestamp < third_phase){
            return 0.2 ether;
        }else{
            return 0.1 ether;
        }
       
    }

    function addPresaleList(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            presaleList[_wallets[i]] = true;
    }
   
    function checkPresale() public view returns(bool){
        return presaleList[msg.sender];
    }
   
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
   
    function setPauseSale(bool temp) external onlyOwner {
        pause_sale = temp;
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
    function set_start_time(uint256 time) external onlyOwner{
        sale_startTime = time;
    }
   
    function set_presale_time(uint256 time) external onlyOwner{
        presale_startTime = time;
    }
   
    function set_max_supply(uint256 _value) external onlyOwner{
        maxSupply = _value;
    }
    function set_second_phase(uint256 _value) external onlyOwner{
        second_phase = _value;
    }
    function set_third_phase(uint256 _value) external onlyOwner{
        third_phase = _value;
    }

    function set_overall_limit_presale(uint256 _value) external onlyOwner{
        overall_presale_limit = _value;
    }
   
    function isPresalestarted() external view returns (bool){
        if(block.timestamp >= presale_startTime && block.timestamp < sale_startTime){
            return true;
        }
        return false;
    }
   
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
    function withdrawTo(address _to) external onlyOwner {
        payable(_to).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_wallets","type":"address[]"}],"name":"addPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_Presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"checkPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_current_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPresalestarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overall_presale_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_startTime","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":[],"name":"sale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"second_phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"set_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"set_overall_limit_presale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_presale_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"set_second_phase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"set_third_phase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"third_phase","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600755600060085563619a7b1060098190556361992990600a55600b805460ff191690556200003990612a306200022e565b600c8190556200004c90612a306200022e565b600d556103e8600e55604051806060016040528060268152602001620028c16026913980516200008591600f9160209091019062000188565b503480156200009357600080fd5b506040518060400160405280601481526020017f4379626572205a6f6d62696520536f636965747900000000000000000000000081525060405180604001604052806003815260200162435a5360e81b81525062000100620000fa6200013460201b60201c565b62000138565b81516200011590600190602085019062000188565b5080516200012b90600290602084019062000188565b50505062000292565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001969062000255565b90600052602060002090601f016020900481019282620001ba576000855562000205565b82601f10620001d557805160ff191683800117855562000205565b8280016001018555821562000205579182015b8281111562000205578251825591602001919060010190620001e8565b506200021392915062000217565b5090565b5b8082111562000213576000815560010162000218565b600082198211156200025057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200026a57607f821691505b602082108114156200028c57634e487b7160e01b600052602260045260246000fd5b50919050565b61261f80620002a26000396000f3fe6080604052600436106102515760003560e01c80637c8255db11610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c51461067a578063ebb31510146106c3578063ed4c0817146106e3578063ee95b9e914610703578063f2fde38b14610723578063f50689291461074357600080fd5b8063b88d4fde146105f7578063c1580cb314610617578063c87b56dd14610631578063d5abeb0114610651578063d96a094a1461066757600080fd5b806395d89b41116100fd57806395d89b4114610562578063a0bcfc7f14610577578063a22cb46514610597578063aa29e23f146105b7578063b27b1a6d146105d757600080fd5b80637c8255db146104db5780638090dd0f146104fb5780638a938f2f146105115780638aa328a2146105315780638da5cb5b1461054457600080fd5b80632bd4629b116101d25780636352211e116101965780636352211e1461043c578063676a38d71461045c5780636c0360eb1461047157806370a0823114610486578063715018a6146104a657806372b0d90c146104bb57600080fd5b80632bd4629b146103c65780633ccfd60b146103dc5780633cfa79b4146103f157806342842e0e14610406578063533d80e71461042657600080fd5b8063081812fc11610219578063081812fc14610318578063095ea7b3146103505780630d018df41461037057806318160ddd1461039057806323b872dd146103a657600080fd5b8063013ef0551461025657806301ffc9a71461027857806302689663146102ad57806303158dde146102d257806306fdde03146102f6575b600080fd5b34801561026257600080fd5b506102766102713660046122b6565b610759565b005b34801561028457600080fd5b50610298610293366004612233565b610791565b60405190151581526020015b60405180910390f35b3480156102b957600080fd5b503360009081526010602052604090205460ff16610298565b3480156102de57600080fd5b506102e860095481565b6040519081526020016102a4565b34801561030257600080fd5b5061030b6107e3565b6040516102a49190612367565b34801561032457600080fd5b506103386103333660046122b6565b610875565b6040516001600160a01b0390911681526020016102a4565b34801561035c57600080fd5b5061027661036b36600461213a565b61090a565b34801561037c57600080fd5b5061027661038b3660046122b6565b610a20565b34801561039c57600080fd5b506102e860085481565b3480156103b257600080fd5b506102766103c1366004612058565b610a4f565b3480156103d257600080fd5b506102e8600e5481565b3480156103e857600080fd5b50610276610a80565b3480156103fd57600080fd5b50610298610ae7565b34801561041257600080fd5b50610276610421366004612058565b610b0d565b34801561043257600080fd5b506102e8600a5481565b34801561044857600080fd5b506103386104573660046122b6565b610b28565b34801561046857600080fd5b506102e8610b9f565b34801561047d57600080fd5b5061030b610bf8565b34801561049257600080fd5b506102e86104a136600461200a565b610c86565b3480156104b257600080fd5b50610276610d0d565b3480156104c757600080fd5b506102766104d636600461200a565b610d43565b3480156104e757600080fd5b506102766104f6366004612164565b610da6565b34801561050757600080fd5b506102e8600c5481565b34801561051d57600080fd5b5061027661052c3660046122b6565b610e9f565b61027661053f3660046122b6565b610ece565b34801561055057600080fd5b506000546001600160a01b0316610338565b34801561056e57600080fd5b5061030b611197565b34801561058357600080fd5b5061027661059236600461226d565b6111a6565b3480156105a357600080fd5b506102766105b2366004612110565b6111e3565b3480156105c357600080fd5b506102766105d2366004612218565b6112a8565b3480156105e357600080fd5b506102766105f23660046122b6565b6112e5565b34801561060357600080fd5b50610276610612366004612094565b611314565b34801561062357600080fd5b50600b546102989060ff1681565b34801561063d57600080fd5b5061030b61064c3660046122b6565b61134c565b34801561065d57600080fd5b506102e860075481565b6102766106753660046122b6565b611427565b34801561068657600080fd5b50610298610695366004612025565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106cf57600080fd5b506102766106de366004612164565b611634565b3480156106ef57600080fd5b506102766106fe3660046122b6565b6116c6565b34801561070f57600080fd5b5061027661071e3660046122b6565b6116f5565b34801561072f57600080fd5b5061027661073e36600461200a565b611724565b34801561074f57600080fd5b506102e8600d5481565b6000546001600160a01b0316331461078c5760405162461bcd60e51b8152600401610783906123cc565b60405180910390fd5b600e55565b60006001600160e01b031982166380ac58cd60e01b14806107c257506001600160e01b03198216635b5e139f60e01b145b806107dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107f290612511565b80601f016020809104026020016040519081016040528092919081815260200182805461081e90612511565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b506000908152600560205260409020546001600160a01b031690565b600061091582610b28565b9050806001600160a01b0316836001600160a01b031614156109835760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610783565b336001600160a01b038216148061099f575061099f8133610695565b610a115760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610783565b610a1b83836117bc565b505050565b6000546001600160a01b03163314610a4a5760405162461bcd60e51b8152600401610783906123cc565b600d55565b610a59338261182a565b610a755760405162461bcd60e51b815260040161078390612401565b610a1b838383611921565b6000546001600160a01b03163314610aaa5760405162461bcd60e51b8152600401610783906123cc565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610ae4573d6000803e3d6000fd5b50565b6000600a544210158015610afc575060095442105b15610b075750600190565b50600090565b610a1b83838360405180602001604052806000815250611314565b6000818152600360205260408120546001600160a01b0316806107dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610783565b60006009544210158015610bb45750600c5442105b15610bc65750670429d069189e000090565b600c544210158015610bd95750600d5442105b15610beb57506702c68af0bb14000090565b5067016345785d8a000090565b600f8054610c0590612511565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3190612511565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b505050505081565b60006001600160a01b038216610cf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610783565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d375760405162461bcd60e51b8152600401610783906123cc565b610d416000611ac1565b565b6000546001600160a01b03163314610d6d5760405162461bcd60e51b8152600401610783906123cc565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610da2573d6000803e3d6000fd5b5050565b6000546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610783906123cc565b6007548151600854610de29190612483565b1115610e295760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610783565b60005b8151811015610e8357610e71828281518110610e4a57610e4a6125a7565b6020026020010151826008546001610e629190612483565b610e6c9190612483565b611b11565b80610e7b8161254c565b915050610e2c565b50805160086000828254610e979190612483565b909155505050565b6000546001600160a01b03163314610ec95760405162461bcd60e51b8152600401610783906123cc565b600755565b60008111610f185760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610783565b6003811115610f695760405162461bcd60e51b815260206004820152601e60248201527f4d6178203320416c6c6f77656420706572207472616e73616374696f6e2e00006044820152606401610783565b60075481600854610f7a9190612483565b1115610fc15760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610783565b610fd38167016345785d8a00006124af565b341461101a5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610783565b600a5442101561106c5760405162461bcd60e51b815260206004820152601960248201527f5072652053616c65206e6f742053746172746564205965742e000000000000006044820152606401610783565b60095442106110af5760405162461bcd60e51b815260206004820152600f60248201526e2839329029b0b6329022b73232b21760891b6044820152606401610783565b600b5460ff16156110f45760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610783565b600e54816008546111059190612483565b11156111535760405162461bcd60e51b815260206004820181905260248201527f457863656564696e67204f766572616c6c2050726573616c65204c696d69742e6044820152606401610783565b60005b818110156111845761117233826008546001610e629190612483565b8061117c8161254c565b915050611156565b508060086000828254610e979190612483565b6060600280546107f290612511565b6000546001600160a01b031633146111d05760405162461bcd60e51b8152600401610783906123cc565b8051610da290600f906020840190611eed565b6001600160a01b03821633141561123c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610783565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112d25760405162461bcd60e51b8152600401610783906123cc565b600b805460ff1916911515919091179055565b6000546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610783906123cc565b600955565b61131e338361182a565b61133a5760405162461bcd60e51b815260040161078390612401565b61134684848484611b2b565b50505050565b6000818152600360205260409020546060906001600160a01b03166113cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610783565b60006113d5611b5e565b905060008151116113f55760405180602001604052806000815250611420565b806113ff84611b6d565b6040516020016114109291906122fb565b6040516020818303038152906040525b9392505050565b600081116114715760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610783565b600a8111156114c25760405162461bcd60e51b815260206004820152601f60248201527f4d617820313020416c6c6f77656420706572207472616e73616374696f6e2e006044820152606401610783565b600754816008546114d39190612483565b111561151a5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610783565b80611523610b9f565b61152d91906124af565b34146115745760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610783565b6009544210156115be5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b6044820152606401610783565b600b5460ff16156116035760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610783565b60005b818110156111845761162233826008546001610e629190612483565b8061162c8161254c565b915050611606565b6000546001600160a01b0316331461165e5760405162461bcd60e51b8152600401610783906123cc565b60005b8151811015610da257600160106000848481518110611682576116826125a7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806116be8161254c565b915050611661565b6000546001600160a01b031633146116f05760405162461bcd60e51b8152600401610783906123cc565b600c55565b6000546001600160a01b0316331461171f5760405162461bcd60e51b8152600401610783906123cc565b600a55565b6000546001600160a01b0316331461174e5760405162461bcd60e51b8152600401610783906123cc565b6001600160a01b0381166117b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610783565b610ae481611ac1565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f182610b28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166118a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b60006118ae83610b28565b9050806001600160a01b0316846001600160a01b031614806118e95750836001600160a01b03166118de84610875565b6001600160a01b0316145b8061191957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661193482610b28565b6001600160a01b03161461199c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610783565b6001600160a01b0382166119fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610783565b611a096000826117bc565b6001600160a01b0383166000908152600460205260408120805460019290611a329084906124ce565b90915550506001600160a01b0382166000908152600460205260408120805460019290611a60908490612483565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610da2828260405180602001604052806000815250611c6b565b611b36848484611921565b611b4284848484611c9e565b6113465760405162461bcd60e51b81526004016107839061237a565b6060600f80546107f290612511565b606081611b915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbb5780611ba58161254c565b9150611bb49050600a8361249b565b9150611b95565b60008167ffffffffffffffff811115611bd657611bd66125bd565b6040519080825280601f01601f191660200182016040528015611c00576020820181803683370190505b5090505b841561191957611c156001836124ce565b9150611c22600a86612567565b611c2d906030612483565b60f81b818381518110611c4257611c426125a7565b60200101906001600160f81b031916908160001a905350611c64600a8661249b565b9450611c04565b611c758383611dab565b611c826000848484611c9e565b610a1b5760405162461bcd60e51b81526004016107839061237a565b60006001600160a01b0384163b15611da057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ce290339089908890889060040161232a565b602060405180830381600087803b158015611cfc57600080fd5b505af1925050508015611d2c575060408051601f3d908101601f19168201909252611d2991810190612250565b60015b611d86573d808015611d5a576040519150601f19603f3d011682016040523d82523d6000602084013e611d5f565b606091505b508051611d7e5760405162461bcd60e51b81526004016107839061237a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611919565b506001949350505050565b6001600160a01b038216611e015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610783565b6000818152600360205260409020546001600160a01b031615611e665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610783565b6001600160a01b0382166000908152600460205260408120805460019290611e8f908490612483565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef990612511565b90600052602060002090601f016020900481019282611f1b5760008555611f61565b82601f10611f3457805160ff1916838001178555611f61565b82800160010185558215611f61579182015b82811115611f61578251825591602001919060010190611f46565b50611f6d929150611f71565b5090565b5b80821115611f6d5760008155600101611f72565b600067ffffffffffffffff831115611fa057611fa06125bd565b611fb3601f8401601f1916602001612452565b9050828152838383011115611fc757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ff557600080fd5b919050565b80358015158114611ff557600080fd5b60006020828403121561201c57600080fd5b61142082611fde565b6000806040838503121561203857600080fd5b61204183611fde565b915061204f60208401611fde565b90509250929050565b60008060006060848603121561206d57600080fd5b61207684611fde565b925061208460208501611fde565b9150604084013590509250925092565b600080600080608085870312156120aa57600080fd5b6120b385611fde565b93506120c160208601611fde565b925060408501359150606085013567ffffffffffffffff8111156120e457600080fd5b8501601f810187136120f557600080fd5b61210487823560208401611f86565b91505092959194509250565b6000806040838503121561212357600080fd5b61212c83611fde565b915061204f60208401611ffa565b6000806040838503121561214d57600080fd5b61215683611fde565b946020939093013593505050565b6000602080838503121561217757600080fd5b823567ffffffffffffffff8082111561218f57600080fd5b818501915085601f8301126121a357600080fd5b8135818111156121b5576121b56125bd565b8060051b91506121c6848301612452565b8181528481019084860184860187018a10156121e157600080fd5b600095505b8386101561220b576121f781611fde565b8352600195909501949186019186016121e6565b5098975050505050505050565b60006020828403121561222a57600080fd5b61142082611ffa565b60006020828403121561224557600080fd5b8135611420816125d3565b60006020828403121561226257600080fd5b8151611420816125d3565b60006020828403121561227f57600080fd5b813567ffffffffffffffff81111561229657600080fd5b8201601f810184136122a757600080fd5b61191984823560208401611f86565b6000602082840312156122c857600080fd5b5035919050565b600081518084526122e78160208601602086016124e5565b601f01601f19169290920160200192915050565b6000835161230d8184602088016124e5565b8351908301906123218183602088016124e5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235d908301846122cf565b9695505050505050565b60208152600061142060208301846122cf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561247b5761247b6125bd565b604052919050565b600082198211156124965761249661257b565b500190565b6000826124aa576124aa612591565b500490565b60008160001904831182151516156124c9576124c961257b565b500290565b6000828210156124e0576124e061257b565b500390565b60005b838110156125005781810151838201526020016124e8565b838111156113465750506000910152565b600181811c9082168061252557607f821691505b6020821081141561254657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125605761256061257b565b5060010190565b60008261257657612576612591565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae457600080fdfea26469706673582212204271fbf9e5a3d84e34f1633495e73f08909a2a9d760f304bee9010c31fe0540764736f6c6343000807003368747470733a2f2f63796265727a6f6d626965736f63696574792e696f2f6170692f6e66742f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637c8255db11610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c51461067a578063ebb31510146106c3578063ed4c0817146106e3578063ee95b9e914610703578063f2fde38b14610723578063f50689291461074357600080fd5b8063b88d4fde146105f7578063c1580cb314610617578063c87b56dd14610631578063d5abeb0114610651578063d96a094a1461066757600080fd5b806395d89b41116100fd57806395d89b4114610562578063a0bcfc7f14610577578063a22cb46514610597578063aa29e23f146105b7578063b27b1a6d146105d757600080fd5b80637c8255db146104db5780638090dd0f146104fb5780638a938f2f146105115780638aa328a2146105315780638da5cb5b1461054457600080fd5b80632bd4629b116101d25780636352211e116101965780636352211e1461043c578063676a38d71461045c5780636c0360eb1461047157806370a0823114610486578063715018a6146104a657806372b0d90c146104bb57600080fd5b80632bd4629b146103c65780633ccfd60b146103dc5780633cfa79b4146103f157806342842e0e14610406578063533d80e71461042657600080fd5b8063081812fc11610219578063081812fc14610318578063095ea7b3146103505780630d018df41461037057806318160ddd1461039057806323b872dd146103a657600080fd5b8063013ef0551461025657806301ffc9a71461027857806302689663146102ad57806303158dde146102d257806306fdde03146102f6575b600080fd5b34801561026257600080fd5b506102766102713660046122b6565b610759565b005b34801561028457600080fd5b50610298610293366004612233565b610791565b60405190151581526020015b60405180910390f35b3480156102b957600080fd5b503360009081526010602052604090205460ff16610298565b3480156102de57600080fd5b506102e860095481565b6040519081526020016102a4565b34801561030257600080fd5b5061030b6107e3565b6040516102a49190612367565b34801561032457600080fd5b506103386103333660046122b6565b610875565b6040516001600160a01b0390911681526020016102a4565b34801561035c57600080fd5b5061027661036b36600461213a565b61090a565b34801561037c57600080fd5b5061027661038b3660046122b6565b610a20565b34801561039c57600080fd5b506102e860085481565b3480156103b257600080fd5b506102766103c1366004612058565b610a4f565b3480156103d257600080fd5b506102e8600e5481565b3480156103e857600080fd5b50610276610a80565b3480156103fd57600080fd5b50610298610ae7565b34801561041257600080fd5b50610276610421366004612058565b610b0d565b34801561043257600080fd5b506102e8600a5481565b34801561044857600080fd5b506103386104573660046122b6565b610b28565b34801561046857600080fd5b506102e8610b9f565b34801561047d57600080fd5b5061030b610bf8565b34801561049257600080fd5b506102e86104a136600461200a565b610c86565b3480156104b257600080fd5b50610276610d0d565b3480156104c757600080fd5b506102766104d636600461200a565b610d43565b3480156104e757600080fd5b506102766104f6366004612164565b610da6565b34801561050757600080fd5b506102e8600c5481565b34801561051d57600080fd5b5061027661052c3660046122b6565b610e9f565b61027661053f3660046122b6565b610ece565b34801561055057600080fd5b506000546001600160a01b0316610338565b34801561056e57600080fd5b5061030b611197565b34801561058357600080fd5b5061027661059236600461226d565b6111a6565b3480156105a357600080fd5b506102766105b2366004612110565b6111e3565b3480156105c357600080fd5b506102766105d2366004612218565b6112a8565b3480156105e357600080fd5b506102766105f23660046122b6565b6112e5565b34801561060357600080fd5b50610276610612366004612094565b611314565b34801561062357600080fd5b50600b546102989060ff1681565b34801561063d57600080fd5b5061030b61064c3660046122b6565b61134c565b34801561065d57600080fd5b506102e860075481565b6102766106753660046122b6565b611427565b34801561068657600080fd5b50610298610695366004612025565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106cf57600080fd5b506102766106de366004612164565b611634565b3480156106ef57600080fd5b506102766106fe3660046122b6565b6116c6565b34801561070f57600080fd5b5061027661071e3660046122b6565b6116f5565b34801561072f57600080fd5b5061027661073e36600461200a565b611724565b34801561074f57600080fd5b506102e8600d5481565b6000546001600160a01b0316331461078c5760405162461bcd60e51b8152600401610783906123cc565b60405180910390fd5b600e55565b60006001600160e01b031982166380ac58cd60e01b14806107c257506001600160e01b03198216635b5e139f60e01b145b806107dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107f290612511565b80601f016020809104026020016040519081016040528092919081815260200182805461081e90612511565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b506000908152600560205260409020546001600160a01b031690565b600061091582610b28565b9050806001600160a01b0316836001600160a01b031614156109835760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610783565b336001600160a01b038216148061099f575061099f8133610695565b610a115760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610783565b610a1b83836117bc565b505050565b6000546001600160a01b03163314610a4a5760405162461bcd60e51b8152600401610783906123cc565b600d55565b610a59338261182a565b610a755760405162461bcd60e51b815260040161078390612401565b610a1b838383611921565b6000546001600160a01b03163314610aaa5760405162461bcd60e51b8152600401610783906123cc565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610ae4573d6000803e3d6000fd5b50565b6000600a544210158015610afc575060095442105b15610b075750600190565b50600090565b610a1b83838360405180602001604052806000815250611314565b6000818152600360205260408120546001600160a01b0316806107dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610783565b60006009544210158015610bb45750600c5442105b15610bc65750670429d069189e000090565b600c544210158015610bd95750600d5442105b15610beb57506702c68af0bb14000090565b5067016345785d8a000090565b600f8054610c0590612511565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3190612511565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b505050505081565b60006001600160a01b038216610cf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610783565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d375760405162461bcd60e51b8152600401610783906123cc565b610d416000611ac1565b565b6000546001600160a01b03163314610d6d5760405162461bcd60e51b8152600401610783906123cc565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610da2573d6000803e3d6000fd5b5050565b6000546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610783906123cc565b6007548151600854610de29190612483565b1115610e295760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610783565b60005b8151811015610e8357610e71828281518110610e4a57610e4a6125a7565b6020026020010151826008546001610e629190612483565b610e6c9190612483565b611b11565b80610e7b8161254c565b915050610e2c565b50805160086000828254610e979190612483565b909155505050565b6000546001600160a01b03163314610ec95760405162461bcd60e51b8152600401610783906123cc565b600755565b60008111610f185760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610783565b6003811115610f695760405162461bcd60e51b815260206004820152601e60248201527f4d6178203320416c6c6f77656420706572207472616e73616374696f6e2e00006044820152606401610783565b60075481600854610f7a9190612483565b1115610fc15760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610783565b610fd38167016345785d8a00006124af565b341461101a5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610783565b600a5442101561106c5760405162461bcd60e51b815260206004820152601960248201527f5072652053616c65206e6f742053746172746564205965742e000000000000006044820152606401610783565b60095442106110af5760405162461bcd60e51b815260206004820152600f60248201526e2839329029b0b6329022b73232b21760891b6044820152606401610783565b600b5460ff16156110f45760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610783565b600e54816008546111059190612483565b11156111535760405162461bcd60e51b815260206004820181905260248201527f457863656564696e67204f766572616c6c2050726573616c65204c696d69742e6044820152606401610783565b60005b818110156111845761117233826008546001610e629190612483565b8061117c8161254c565b915050611156565b508060086000828254610e979190612483565b6060600280546107f290612511565b6000546001600160a01b031633146111d05760405162461bcd60e51b8152600401610783906123cc565b8051610da290600f906020840190611eed565b6001600160a01b03821633141561123c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610783565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112d25760405162461bcd60e51b8152600401610783906123cc565b600b805460ff1916911515919091179055565b6000546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610783906123cc565b600955565b61131e338361182a565b61133a5760405162461bcd60e51b815260040161078390612401565b61134684848484611b2b565b50505050565b6000818152600360205260409020546060906001600160a01b03166113cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610783565b60006113d5611b5e565b905060008151116113f55760405180602001604052806000815250611420565b806113ff84611b6d565b6040516020016114109291906122fb565b6040516020818303038152906040525b9392505050565b600081116114715760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610783565b600a8111156114c25760405162461bcd60e51b815260206004820152601f60248201527f4d617820313020416c6c6f77656420706572207472616e73616374696f6e2e006044820152606401610783565b600754816008546114d39190612483565b111561151a5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610783565b80611523610b9f565b61152d91906124af565b34146115745760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610783565b6009544210156115be5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b6044820152606401610783565b600b5460ff16156116035760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610783565b60005b818110156111845761162233826008546001610e629190612483565b8061162c8161254c565b915050611606565b6000546001600160a01b0316331461165e5760405162461bcd60e51b8152600401610783906123cc565b60005b8151811015610da257600160106000848481518110611682576116826125a7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806116be8161254c565b915050611661565b6000546001600160a01b031633146116f05760405162461bcd60e51b8152600401610783906123cc565b600c55565b6000546001600160a01b0316331461171f5760405162461bcd60e51b8152600401610783906123cc565b600a55565b6000546001600160a01b0316331461174e5760405162461bcd60e51b8152600401610783906123cc565b6001600160a01b0381166117b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610783565b610ae481611ac1565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f182610b28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166118a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b60006118ae83610b28565b9050806001600160a01b0316846001600160a01b031614806118e95750836001600160a01b03166118de84610875565b6001600160a01b0316145b8061191957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661193482610b28565b6001600160a01b03161461199c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610783565b6001600160a01b0382166119fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610783565b611a096000826117bc565b6001600160a01b0383166000908152600460205260408120805460019290611a329084906124ce565b90915550506001600160a01b0382166000908152600460205260408120805460019290611a60908490612483565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610da2828260405180602001604052806000815250611c6b565b611b36848484611921565b611b4284848484611c9e565b6113465760405162461bcd60e51b81526004016107839061237a565b6060600f80546107f290612511565b606081611b915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbb5780611ba58161254c565b9150611bb49050600a8361249b565b9150611b95565b60008167ffffffffffffffff811115611bd657611bd66125bd565b6040519080825280601f01601f191660200182016040528015611c00576020820181803683370190505b5090505b841561191957611c156001836124ce565b9150611c22600a86612567565b611c2d906030612483565b60f81b818381518110611c4257611c426125a7565b60200101906001600160f81b031916908160001a905350611c64600a8661249b565b9450611c04565b611c758383611dab565b611c826000848484611c9e565b610a1b5760405162461bcd60e51b81526004016107839061237a565b60006001600160a01b0384163b15611da057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ce290339089908890889060040161232a565b602060405180830381600087803b158015611cfc57600080fd5b505af1925050508015611d2c575060408051601f3d908101601f19168201909252611d2991810190612250565b60015b611d86573d808015611d5a576040519150601f19603f3d011682016040523d82523d6000602084013e611d5f565b606091505b508051611d7e5760405162461bcd60e51b81526004016107839061237a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611919565b506001949350505050565b6001600160a01b038216611e015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610783565b6000818152600360205260409020546001600160a01b031615611e665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610783565b6001600160a01b0382166000908152600460205260408120805460019290611e8f908490612483565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef990612511565b90600052602060002090601f016020900481019282611f1b5760008555611f61565b82601f10611f3457805160ff1916838001178555611f61565b82800160010185558215611f61579182015b82811115611f61578251825591602001919060010190611f46565b50611f6d929150611f71565b5090565b5b80821115611f6d5760008155600101611f72565b600067ffffffffffffffff831115611fa057611fa06125bd565b611fb3601f8401601f1916602001612452565b9050828152838383011115611fc757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ff557600080fd5b919050565b80358015158114611ff557600080fd5b60006020828403121561201c57600080fd5b61142082611fde565b6000806040838503121561203857600080fd5b61204183611fde565b915061204f60208401611fde565b90509250929050565b60008060006060848603121561206d57600080fd5b61207684611fde565b925061208460208501611fde565b9150604084013590509250925092565b600080600080608085870312156120aa57600080fd5b6120b385611fde565b93506120c160208601611fde565b925060408501359150606085013567ffffffffffffffff8111156120e457600080fd5b8501601f810187136120f557600080fd5b61210487823560208401611f86565b91505092959194509250565b6000806040838503121561212357600080fd5b61212c83611fde565b915061204f60208401611ffa565b6000806040838503121561214d57600080fd5b61215683611fde565b946020939093013593505050565b6000602080838503121561217757600080fd5b823567ffffffffffffffff8082111561218f57600080fd5b818501915085601f8301126121a357600080fd5b8135818111156121b5576121b56125bd565b8060051b91506121c6848301612452565b8181528481019084860184860187018a10156121e157600080fd5b600095505b8386101561220b576121f781611fde565b8352600195909501949186019186016121e6565b5098975050505050505050565b60006020828403121561222a57600080fd5b61142082611ffa565b60006020828403121561224557600080fd5b8135611420816125d3565b60006020828403121561226257600080fd5b8151611420816125d3565b60006020828403121561227f57600080fd5b813567ffffffffffffffff81111561229657600080fd5b8201601f810184136122a757600080fd5b61191984823560208401611f86565b6000602082840312156122c857600080fd5b5035919050565b600081518084526122e78160208601602086016124e5565b601f01601f19169290920160200192915050565b6000835161230d8184602088016124e5565b8351908301906123218183602088016124e5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061235d908301846122cf565b9695505050505050565b60208152600061142060208301846122cf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561247b5761247b6125bd565b604052919050565b600082198211156124965761249661257b565b500190565b6000826124aa576124aa612591565b500490565b60008160001904831182151516156124c9576124c961257b565b500290565b6000828210156124e0576124e061257b565b500390565b60005b838110156125005781810151838201526020016124e8565b838111156113465750506000910152565b600181811c9082168061252557607f821691505b6020821081141561254657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125605761256061257b565b5060010190565b60008261257657612576612591565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae457600080fdfea26469706673582212204271fbf9e5a3d84e34f1633495e73f08909a2a9d760f304bee9010c31fe0540764736f6c63430008070033

Deployed Bytecode Sourcemap

34510:4589:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38518:118;;;;;;;;;;-1:-1:-1;38518:118:0;;;;;:::i;:::-;;:::i;:::-;;22362:305;;;;;;;;;;-1:-1:-1;22362:305:0;;;;;:::i;:::-;;:::i;:::-;;;6646:14:1;;6639:22;6621:41;;6609:2;6594:18;22362:305:0;;;;;;;;37556:98;;;;;;;;;;-1:-1:-1;37635:10:0;37600:4;37623:23;;;:11;:23;;;;;;;;37556:98;;34688:39;;;;;;;;;;;;;;;;;;;17302:25:1;;;17290:2;17275:18;34688:39:0;17156:177:1;23307:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24866:221::-;;;;;;;;;;-1:-1:-1;24866:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5944:32:1;;;5926:51;;5914:2;5899:18;24866:221:0;5780:203:1;24389:411:0;;;;;;;;;;-1:-1:-1;24389:411:0;;;;;:::i;:::-;;:::i;38412:98::-;;;;;;;;;;-1:-1:-1;38412:98:0;;;;;:::i;:::-;;:::i;34649:27::-;;;;;;;;;;;;;;;;25756:339;;;;;;;;;;-1:-1:-1;25756:339:0;;;;;:::i;:::-;;:::i;35001:40::-;;;;;;;;;;;;;;;;38869:106;;;;;;;;;;;;;:::i;38647:211::-;;;;;;;;;;;;;:::i;26166:185::-;;;;;;;;;;-1:-1:-1;26166:185:0;;;;;:::i;:::-;;:::i;34734:42::-;;;;;;;;;;;;;;;;23001:239;;;;;;;;;;-1:-1:-1;23001:239:0;;;;;:::i;:::-;;:::i;37011:358::-;;;;;;;;;;;;;:::i;35053:64::-;;;;;;;;;;;;;:::i;22731:208::-;;;;;;;;;;-1:-1:-1;22731:208:0;;;;;:::i;:::-;;:::i;14209:94::-;;;;;;;;;;;;;:::i;38981:115::-;;;;;;;;;;-1:-1:-1;38981:115:0;;;;;:::i;:::-;;:::i;36692:308::-;;;;;;;;;;-1:-1:-1;36692:308:0;;;;;:::i;:::-;;:::i;34830:49::-;;;;;;;;;;;;;;;;38205:95;;;;;;;;;;-1:-1:-1;38205:95:0;;;;;:::i;:::-;;:::i;35874:807::-;;;;;;:::i;:::-;;:::i;13558:87::-;;;;;;;;;;-1:-1:-1;13604:7:0;13631:6;-1:-1:-1;;;;;13631:6:0;13558:87;;23476:104;;;;;;;;;;;;;:::i;37665:92::-;;;;;;;;;;-1:-1:-1;37665:92:0;;;;;:::i;:::-;;:::i;25159:295::-;;;;;;;;;;-1:-1:-1;25159:295:0;;;;;:::i;:::-;;:::i;37768:88::-;;;;;;;;;;-1:-1:-1;37768:88:0;;;;;:::i;:::-;;:::i;37986:96::-;;;;;;;;;;-1:-1:-1;37986:96:0;;;;;:::i;:::-;;:::i;26422:328::-;;;;;;;;;;-1:-1:-1;26422:328:0;;;;;:::i;:::-;;:::i;34788:30::-;;;;;;;;;;-1:-1:-1;34788:30:0;;;;;;;;23651:334;;;;;;;;;;-1:-1:-1;23651:334:0;;;;;:::i;:::-;;:::i;34609:28::-;;;;;;;;;;;;;;;;35235:629;;;;;;:::i;:::-;;:::i;25525:164::-;;;;;;;;;;-1:-1:-1;25525:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25646:25:0;;;25622:4;25646:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25525:164;37377:168;;;;;;;;;;-1:-1:-1;37377:168:0;;;;;:::i;:::-;;:::i;38306:100::-;;;;;;;;;;-1:-1:-1;38306:100:0;;;;;:::i;:::-;;:::i;38093:101::-;;;;;;;;;;-1:-1:-1;38093:101:0;;;;;:::i;:::-;;:::i;14458:192::-;;;;;;;;;;-1:-1:-1;14458:192:0;;;;;:::i;:::-;;:::i;34914:46::-;;;;;;;;;;;;;;;;38518:118;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;;;;;;;;;38598:21:::1;:30:::0;38518:118::o;22362:305::-;22464:4;-1:-1:-1;;;;;;22501:40:0;;-1:-1:-1;;;22501:40:0;;:105;;-1:-1:-1;;;;;;;22558:48:0;;-1:-1:-1;;;22558:48:0;22501:105;:158;;;-1:-1:-1;;;;;;;;;;15672:40:0;;;22623:36;22481:178;22362:305;-1:-1:-1;;22362:305:0:o;23307:100::-;23361:13;23394:5;23387:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23307:100;:::o;24866:221::-;24942:7;28349:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28349:16:0;24962:73;;;;-1:-1:-1;;;24962:73:0;;12837:2:1;24962:73:0;;;12819:21:1;12876:2;12856:18;;;12849:30;12915:34;12895:18;;;12888:62;-1:-1:-1;;;12966:18:1;;;12959:42;13018:19;;24962:73:0;12635:408:1;24962:73:0;-1:-1:-1;25055:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25055:24:0;;24866:221::o;24389:411::-;24470:13;24486:23;24501:7;24486:14;:23::i;:::-;24470:39;;24534:5;-1:-1:-1;;;;;24528:11:0;:2;-1:-1:-1;;;;;24528:11:0;;;24520:57;;;;-1:-1:-1;;;24520:57:0;;14787:2:1;24520:57:0;;;14769:21:1;14826:2;14806:18;;;14799:30;14865:34;14845:18;;;14838:62;-1:-1:-1;;;14916:18:1;;;14909:31;14957:19;;24520:57:0;14585:397:1;24520:57:0;778:10;-1:-1:-1;;;;;24612:21:0;;;;:62;;-1:-1:-1;24637:37:0;24654:5;778:10;25525:164;:::i;24637:37::-;24590:168;;;;-1:-1:-1;;;24590:168:0;;10520:2:1;24590:168:0;;;10502:21:1;10559:2;10539:18;;;10532:30;10598:34;10578:18;;;10571:62;10669:26;10649:18;;;10642:54;10713:19;;24590:168:0;10318:420:1;24590:168:0;24771:21;24780:2;24784:7;24771:8;:21::i;:::-;24459:341;24389:411;;:::o;38412:98::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;38482:11:::1;:20:::0;38412:98::o;25756:339::-;25951:41;778:10;25984:7;25951:18;:41::i;:::-;25943:103;;;;-1:-1:-1;;;25943:103:0;;;;;;;:::i;:::-;26059:28;26069:4;26075:2;26079:7;26059:9;:28::i;38869:106::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;13604:7;13631:6;;38919:48:::1;::::0;-1:-1:-1;;;;;13631:6:0;;;;38945:21:::1;38919:48:::0;::::1;;;::::0;38945:21;;38919:48;13604:7;38919:48;38945:21;13631:6;38919:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38869:106::o:0;38647:211::-;38698:4;38736:17;;38717:15;:36;;:72;;;;;38775:14;;38757:15;:32;38717:72;38714:114;;;-1:-1:-1;38812:4:0;;38647:211::o;38714:114::-;-1:-1:-1;38845:5:0;;38647:211::o;26166:185::-;26304:39;26321:4;26327:2;26331:7;26304:39;;;;;;;;;;;;:16;:39::i;23001:239::-;23073:7;23109:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23109:16:0;23144:19;23136:73;;;;-1:-1:-1;;;23136:73:0;;11356:2:1;23136:73:0;;;11338:21:1;11395:2;11375:18;;;11368:30;11434:34;11414:18;;;11407:62;-1:-1:-1;;;11485:18:1;;;11478:39;11534:19;;23136:73:0;11154:405:1;37011:358:0;37060:4;37098:14;;37079:15;:33;;:67;;;;;37134:12;;37116:15;:30;37079:67;37076:277;;;-1:-1:-1;37169:9:0;;37011:358::o;37076:277::-;37217:12;;37198:15;:31;;:64;;;;;37251:11;;37233:15;:29;37198:64;37195:158;;;-1:-1:-1;37285:9:0;;37011:358::o;37195:158::-;-1:-1:-1;37332:9:0;;37011:358::o;35053:64::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22731:208::-;22803:7;-1:-1:-1;;;;;22831:19:0;;22823:74;;;;-1:-1:-1;;;22823:74:0;;10945:2:1;22823:74:0;;;10927:21:1;10984:2;10964:18;;;10957:30;11023:34;11003:18;;;10996:62;-1:-1:-1;;;11074:18:1;;;11067:40;11124:19;;22823:74:0;10743:406:1;22823:74:0;-1:-1:-1;;;;;;22915:16:0;;;;;:9;:16;;;;;;;22731:208::o;14209:94::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;14274:21:::1;14292:1;14274:9;:21::i;:::-;14209:94::o:0;38981:115::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;39044:44:::1;::::0;-1:-1:-1;;;;;39044:21:0;::::1;::::0;39066::::1;39044:44:::0;::::1;;;::::0;::::1;::::0;;;39066:21;39044;:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38981:115:::0;:::o;36692:308::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;36806:9:::1;;36787:8;:15;36773:11;;:29;;;;:::i;:::-;:42;;36765:77;;;::::0;-1:-1:-1;;;36765:77:0;;16663:2:1;36765:77:0::1;::::0;::::1;16645:21:1::0;16702:2;16682:18;;;16675:30;-1:-1:-1;;;16721:18:1;;;16714:52;16783:18;;36765:77:0::1;16461:346:1::0;36765:77:0::1;36857:6;36853:98;36873:8;:15;36869:1;:19;36853:98;;;36908:43;36918:8;36927:1;36918:11;;;;;;;;:::i;:::-;;;;;;;36949:1;36931:11;;36945:1;36931:15;;;;:::i;:::-;:19;;;;:::i;:::-;36908:9;:43::i;:::-;36890:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36853:98;;;;36977:8;:15;36962:11;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;36692:308:0:o;38205:95::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;38274:9:::1;:18:::0;38205:95::o;35874:807::-;35950:1;35941:6;:10;35933:46;;;;-1:-1:-1;;;35933:46:0;;16311:2:1;35933:46:0;;;16293:21:1;16350:2;16330:18;;;16323:30;-1:-1:-1;;;16369:18:1;;;16362:53;16432:18;;35933:46:0;16109:347:1;35933:46:0;36008:1;35998:6;:11;;35990:54;;;;-1:-1:-1;;;35990:54:0;;12478:2:1;35990:54:0;;;12460:21:1;12517:2;12497:18;;;12490:30;12556:32;12536:18;;;12529:60;12606:18;;35990:54:0;12276:354:1;35990:54:0;36087:9;;36077:6;36063:11;;:20;;;;:::i;:::-;:33;;36055:68;;;;-1:-1:-1;;;36055:68:0;;11766:2:1;36055:68:0;;;11748:21:1;11805:2;11785:18;;;11778:30;-1:-1:-1;;;11824:18:1;;;11817:52;11886:18;;36055:68:0;11564:346:1;36055:68:0;36155:21;36170:6;34593:9;36155:21;:::i;:::-;36142:9;:34;36134:69;;;;-1:-1:-1;;;36134:69:0;;9815:2:1;36134:69:0;;;9797:21:1;9854:2;9834:18;;;9827:30;-1:-1:-1;;;9873:18:1;;;9866:52;9935:18;;36134:69:0;9613:346:1;36134:69:0;36241:17;;36222:15;:36;;36214:73;;;;-1:-1:-1;;;36214:73:0;;10166:2:1;36214:73:0;;;10148:21:1;10205:2;10185:18;;;10178:30;10244:27;10224:18;;;10217:55;10289:18;;36214:73:0;9964:349:1;36214:73:0;36324:14;;36306:15;:32;36298:59;;;;-1:-1:-1;;;36298:59:0;;15549:2:1;36298:59:0;;;15531:21:1;15588:2;15568:18;;;15561:30;-1:-1:-1;;;15607:18:1;;;15600:45;15662:18;;36298:59:0;15347:339:1;36298:59:0;36376:10;;;;:19;36368:47;;;;-1:-1:-1;;;36368:47:0;;17014:2:1;36368:47:0;;;16996:21:1;17053:2;17033:18;;;17026:30;-1:-1:-1;;;17072:18:1;;;17065:45;17127:18;;36368:47:0;16812:339:1;36368:47:0;36458:21;;36448:6;36434:11;;:20;;;;:::i;:::-;:45;;36426:90;;;;-1:-1:-1;;;36426:90:0;;7099:2:1;36426:90:0;;;7081:21:1;;;7118:18;;;7111:30;7177:34;7157:18;;;7150:62;7229:18;;36426:90:0;6897:356:1;36426:90:0;36540:6;36536:88;36556:6;36552:1;:10;36536:88;;;36582:42;36592:10;36622:1;36604:11;;36618:1;36604:15;;;;:::i;36582:42::-;36564:3;;;;:::i;:::-;;;;36536:88;;;;36667:6;36652:11;;:21;;;;;;;:::i;23476:104::-;23532:13;23565:7;23558:14;;;;;:::i;37665:92::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;37735:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;25159:295::-:0;-1:-1:-1;;;;;25262:24:0;;778:10;25262:24;;25254:62;;;;-1:-1:-1;;;25254:62:0;;9048:2:1;25254:62:0;;;9030:21:1;9087:2;9067:18;;;9060:30;9126:27;9106:18;;;9099:55;9171:18;;25254:62:0;8846:349:1;25254:62:0;778:10;25329:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25329:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25329:53:0;;;;;;;;;;25398:48;;6621:41:1;;;25329:42:0;;778:10;25398:48;;6594:18:1;25398:48:0;;;;;;;25159:295;;:::o;37768:88::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;37831:10:::1;:17:::0;;-1:-1:-1;;37831:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37768:88::o;37986:96::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;38053:14:::1;:21:::0;37986:96::o;26422:328::-;26597:41;778:10;26630:7;26597:18;:41::i;:::-;26589:103;;;;-1:-1:-1;;;26589:103:0;;;;;;;:::i;:::-;26703:39;26717:4;26723:2;26727:7;26736:5;26703:13;:39::i;:::-;26422:328;;;;:::o;23651:334::-;28325:4;28349:16;;;:7;:16;;;;;;23724:13;;-1:-1:-1;;;;;28349:16:0;23750:76;;;;-1:-1:-1;;;23750:76:0;;14371:2:1;23750:76:0;;;14353:21:1;14410:2;14390:18;;;14383:30;14449:34;14429:18;;;14422:62;-1:-1:-1;;;14500:18:1;;;14493:45;14555:19;;23750:76:0;14169:411:1;23750:76:0;23839:21;23863:10;:8;:10::i;:::-;23839:34;;23915:1;23897:7;23891:21;:25;:86;;;;;;;;;;;;;;;;;23943:7;23952:18;:7;:16;:18::i;:::-;23926:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23891:86;23884:93;23651:334;-1:-1:-1;;;23651:334:0:o;35235:629::-;35303:1;35294:6;:10;35286:46;;;;-1:-1:-1;;;35286:46:0;;16311:2:1;35286:46:0;;;16293:21:1;16350:2;16330:18;;;16323:30;-1:-1:-1;;;16369:18:1;;;16362:53;16432:18;;35286:46:0;16109:347:1;35286:46:0;35361:2;35351:6;:12;;35343:56;;;;-1:-1:-1;;;35343:56:0;;15189:2:1;35343:56:0;;;15171:21:1;15228:2;15208:18;;;15201:30;15267:33;15247:18;;;15240:61;15318:18;;35343:56:0;14987:355:1;35343:56:0;35442:9;;35432:6;35418:11;;:20;;;;:::i;:::-;:33;;35410:68;;;;-1:-1:-1;;;35410:68:0;;11766:2:1;35410:68:0;;;11748:21:1;11805:2;11785:18;;;11778:30;-1:-1:-1;;;11824:18:1;;;11817:52;11886:18;;35410:68:0;11564:346:1;35410:68:0;35532:6;35510:19;:17;:19::i;:::-;:28;;;;:::i;:::-;35497:9;:41;35489:76;;;;-1:-1:-1;;;35489:76:0;;9815:2:1;35489:76:0;;;9797:21:1;9854:2;9834:18;;;9827:30;-1:-1:-1;;;9873:18:1;;;9866:52;9935:18;;35489:76:0;9613:346:1;35489:76:0;35603:14;;35584:15;:33;;35576:66;;;;-1:-1:-1;;;35576:66:0;;13611:2:1;35576:66:0;;;13593:21:1;13650:2;13630:18;;;13623:30;-1:-1:-1;;;13669:18:1;;;13662:51;13730:18;;35576:66:0;13409:345:1;35576:66:0;35661:10;;;;:19;35653:47;;;;-1:-1:-1;;;35653:47:0;;17014:2:1;35653:47:0;;;16996:21:1;17053:2;17033:18;;;17026:30;-1:-1:-1;;;17072:18:1;;;17065:45;17127:18;;35653:47:0;16812:339:1;35653:47:0;35724:6;35720:88;35740:6;35736:1;:10;35720:88;;;35766:42;35776:10;35806:1;35788:11;;35802:1;35788:15;;;;:::i;35766:42::-;35748:3;;;;:::i;:::-;;;;35720:88;;37377:168;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;37459:6:::1;37455:82;37471:8;:15;37467:1;:19;37455:82;;;37533:4;37506:11;:24;37518:8;37527:1;37518:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;37506:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;37506:24:0;:31;;-1:-1:-1;;37506:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37488:3;::::1;::::0;::::1;:::i;:::-;;;;37455:82;;38306:100:::0;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;38377:12:::1;:21:::0;38306:100::o;38093:101::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;38162:17:::1;:24:::0;38093:101::o;14458:192::-;13604:7;13631:6;-1:-1:-1;;;;;13631:6:0;778:10;13778:23;13770:68;;;;-1:-1:-1;;;13770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14547:22:0;::::1;14539:73;;;::::0;-1:-1:-1;;;14539:73:0;;7879:2:1;14539:73:0::1;::::0;::::1;7861:21:1::0;7918:2;7898:18;;;7891:30;7957:34;7937:18;;;7930:62;-1:-1:-1;;;8008:18:1;;;8001:36;8054:19;;14539:73:0::1;7677:402:1::0;14539:73:0::1;14623:19;14633:8;14623:9;:19::i;32242:174::-:0;32317:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32317:29:0;-1:-1:-1;;;;;32317:29:0;;;;;;;;:24;;32371:23;32317:24;32371:14;:23::i;:::-;-1:-1:-1;;;;;32362:46:0;;;;;;;;;;;32242:174;;:::o;28554:348::-;28647:4;28349:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28349:16:0;28664:73;;;;-1:-1:-1;;;28664:73:0;;9402:2:1;28664:73:0;;;9384:21:1;9441:2;9421:18;;;9414:30;9480:34;9460:18;;;9453:62;-1:-1:-1;;;9531:18:1;;;9524:42;9583:19;;28664:73:0;9200:408:1;28664:73:0;28748:13;28764:23;28779:7;28764:14;:23::i;:::-;28748:39;;28817:5;-1:-1:-1;;;;;28806:16:0;:7;-1:-1:-1;;;;;28806:16:0;;:51;;;;28850:7;-1:-1:-1;;;;;28826:31:0;:20;28838:7;28826:11;:20::i;:::-;-1:-1:-1;;;;;28826:31:0;;28806:51;:87;;;-1:-1:-1;;;;;;25646:25:0;;;25622:4;25646:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28861:32;28798:96;28554:348;-1:-1:-1;;;;28554:348:0:o;31546:578::-;31705:4;-1:-1:-1;;;;;31678:31:0;:23;31693:7;31678:14;:23::i;:::-;-1:-1:-1;;;;;31678:31:0;;31670:85;;;;-1:-1:-1;;;31670:85:0;;13961:2:1;31670:85:0;;;13943:21:1;14000:2;13980:18;;;13973:30;14039:34;14019:18;;;14012:62;-1:-1:-1;;;14090:18:1;;;14083:39;14139:19;;31670:85:0;13759:405:1;31670:85:0;-1:-1:-1;;;;;31774:16:0;;31766:65;;;;-1:-1:-1;;;31766:65:0;;8643:2:1;31766:65:0;;;8625:21:1;8682:2;8662:18;;;8655:30;8721:34;8701:18;;;8694:62;-1:-1:-1;;;8772:18:1;;;8765:34;8816:19;;31766:65:0;8441:400:1;31766:65:0;31948:29;31965:1;31969:7;31948:8;:29::i;:::-;-1:-1:-1;;;;;31990:15:0;;;;;;:9;:15;;;;;:20;;32009:1;;31990:15;:20;;32009:1;;31990:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32021:13:0;;;;;;:9;:13;;;;;:18;;32038:1;;32021:13;:18;;32038:1;;32021:18;:::i;:::-;;;;-1:-1:-1;;32050:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32050:21:0;-1:-1:-1;;;;;32050:21:0;;;;;;;;;32089:27;;32050:16;;32089:27;;;;;;;31546:578;;;:::o;14658:173::-;14714:16;14733:6;;-1:-1:-1;;;;;14750:17:0;;;-1:-1:-1;;;;;;14750:17:0;;;;;;14783:40;;14733:6;;;;;;;14783:40;;14714:16;14783:40;14703:128;14658:173;:::o;29244:110::-;29320:26;29330:2;29334:7;29320:26;;;;;;;;;;;;:9;:26::i;27632:315::-;27789:28;27799:4;27805:2;27809:7;27789:9;:28::i;:::-;27836:48;27859:4;27865:2;27869:7;27878:5;27836:22;:48::i;:::-;27828:111;;;;-1:-1:-1;;;27828:111:0;;;;;;;:::i;37867:108::-;37927:13;37960:7;37953:14;;;;;:::i;1163:723::-;1219:13;1440:10;1436:53;;-1:-1:-1;;1467:10:0;;;;;;;;;;;;-1:-1:-1;;;1467:10:0;;;;;1163:723::o;1436:53::-;1514:5;1499:12;1555:78;1562:9;;1555:78;;1588:8;;;;:::i;:::-;;-1:-1:-1;1611:10:0;;-1:-1:-1;1619:2:0;1611:10;;:::i;:::-;;;1555:78;;;1643:19;1675:6;1665:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1665:17:0;;1643:39;;1693:154;1700:10;;1693:154;;1727:11;1737:1;1727:11;;:::i;:::-;;-1:-1:-1;1796:10:0;1804:2;1796:5;:10;:::i;:::-;1783:24;;:2;:24;:::i;:::-;1770:39;;1753:6;1760;1753:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1753:56:0;;;;;;;;-1:-1:-1;1824:11:0;1833:2;1824:11;;:::i;:::-;;;1693:154;;29581:321;29711:18;29717:2;29721:7;29711:5;:18::i;:::-;29762:54;29793:1;29797:2;29801:7;29810:5;29762:22;:54::i;:::-;29740:154;;;;-1:-1:-1;;;29740:154:0;;;;;;;:::i;32981:799::-;33136:4;-1:-1:-1;;;;;33157:13:0;;3951:20;3999:8;33153:620;;33193:72;;-1:-1:-1;;;33193:72:0;;-1:-1:-1;;;;;33193:36:0;;;;;:72;;778:10;;33244:4;;33250:7;;33259:5;;33193:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33193:72:0;;;;;;;;-1:-1:-1;;33193:72:0;;;;;;;;;;;;:::i;:::-;;;33189:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33435:13:0;;33431:272;;33478:60;;-1:-1:-1;;;33478:60:0;;;;;;;:::i;33431:272::-;33653:6;33647:13;33638:6;33634:2;33630:15;33623:38;33189:529;-1:-1:-1;;;;;;33316:51:0;-1:-1:-1;;;33316:51:0;;-1:-1:-1;33309:58:0;;33153:620;-1:-1:-1;33757:4:0;32981:799;;;;;;:::o;30238:382::-;-1:-1:-1;;;;;30318:16:0;;30310:61;;;;-1:-1:-1;;;30310:61:0;;12117:2:1;30310:61:0;;;12099:21:1;;;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;12247:18;;30310:61:0;11915:356:1;30310:61:0;28325:4;28349:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28349:16:0;:30;30382:58;;;;-1:-1:-1;;;30382:58:0;;8286:2:1;30382:58:0;;;8268:21:1;8325:2;8305:18;;;8298:30;8364;8344:18;;;8337:58;8412:18;;30382:58:0;8084:352:1;30382:58:0;-1:-1:-1;;;;;30511:13:0;;;;;;:9;:13;;;;;:18;;30528:1;;30511:13;:18;;30528:1;;30511:18;:::i;:::-;;;;-1:-1:-1;;30540:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30540:21:0;-1:-1:-1;;;;;30540:21:0;;;;;;;;30579:33;;30540:16;;;30579:33;;30540:16;;30579:33;30238: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:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:470::-;5484:3;5522:6;5516:13;5538:53;5584:6;5579:3;5572:4;5564:6;5560:17;5538:53;:::i;:::-;5654:13;;5613:16;;;;5676:57;5654:13;5613:16;5710:4;5698:17;;5676:57;:::i;:::-;5749:20;;5305:470;-1:-1:-1;;;;5305:470:1:o;5988:488::-;-1:-1:-1;;;;;6257:15:1;;;6239:34;;6309:15;;6304:2;6289:18;;6282:43;6356:2;6341:18;;6334:34;;;6404:3;6399:2;6384:18;;6377:31;;;6182:4;;6425:45;;6450:19;;6442:6;6425:45;:::i;:::-;6417:53;5988:488;-1:-1:-1;;;;;;5988:488:1:o;6673:219::-;6822:2;6811:9;6804:21;6785:4;6842:44;6882:2;6871:9;6867:18;6859:6;6842:44;:::i;7258:414::-;7460:2;7442:21;;;7499:2;7479:18;;;7472:30;7538:34;7533:2;7518:18;;7511:62;-1:-1:-1;;;7604:2:1;7589:18;;7582:48;7662:3;7647:19;;7258:414::o;13048:356::-;13250:2;13232:21;;;13269:18;;;13262:30;13328:34;13323:2;13308:18;;13301:62;13395:2;13380:18;;13048:356::o;15691:413::-;15893:2;15875:21;;;15932:2;15912:18;;;15905:30;15971:34;15966:2;15951:18;;15944:62;-1:-1:-1;;;16037:2:1;16022:18;;16015:47;16094:3;16079:19;;15691:413::o;17338:275::-;17409:2;17403:9;17474:2;17455:13;;-1:-1:-1;;17451:27:1;17439:40;;17509:18;17494:34;;17530:22;;;17491:62;17488:88;;;17556:18;;:::i;:::-;17592:2;17585:22;17338:275;;-1:-1:-1;17338:275:1:o;17618:128::-;17658:3;17689:1;17685:6;17682:1;17679:13;17676:39;;;17695:18;;:::i;:::-;-1:-1:-1;17731:9:1;;17618:128::o;17751:120::-;17791:1;17817;17807:35;;17822:18;;:::i;:::-;-1:-1:-1;17856:9:1;;17751:120::o;17876:168::-;17916:7;17982:1;17978;17974:6;17970:14;17967:1;17964:21;17959:1;17952:9;17945:17;17941:45;17938:71;;;17989:18;;:::i;:::-;-1:-1:-1;18029:9:1;;17876:168::o;18049:125::-;18089:4;18117:1;18114;18111:8;18108:34;;;18122:18;;:::i;:::-;-1:-1:-1;18159:9:1;;18049:125::o;18179:258::-;18251:1;18261:113;18275:6;18272:1;18269:13;18261:113;;;18351:11;;;18345:18;18332:11;;;18325:39;18297:2;18290:10;18261:113;;;18392:6;18389:1;18386:13;18383:48;;;-1:-1:-1;;18427:1:1;18409:16;;18402:27;18179:258::o;18442:380::-;18521:1;18517:12;;;;18564;;;18585:61;;18639:4;18631:6;18627:17;18617:27;;18585:61;18692:2;18684:6;18681:14;18661:18;18658:38;18655:161;;;18738:10;18733:3;18729:20;18726:1;18719:31;18773:4;18770:1;18763:15;18801:4;18798:1;18791:15;18655:161;;18442:380;;;:::o;18827:135::-;18866:3;-1:-1:-1;;18887:17:1;;18884:43;;;18907:18;;:::i;:::-;-1:-1:-1;18954:1:1;18943:13;;18827:135::o;18967:112::-;18999:1;19025;19015:35;;19030:18;;:::i;:::-;-1:-1:-1;19064:9:1;;18967:112::o;19084:127::-;19145:10;19140:3;19136:20;19133:1;19126:31;19176:4;19173:1;19166:15;19200:4;19197:1;19190:15;19216:127;19277:10;19272:3;19268:20;19265:1;19258:31;19308:4;19305:1;19298:15;19332:4;19329:1;19322:15;19348:127;19409:10;19404:3;19400:20;19397:1;19390:31;19440:4;19437:1;19430:15;19464:4;19461:1;19454:15;19480:127;19541:10;19536:3;19532:20;19529:1;19522:31;19572:4;19569:1;19562:15;19596:4;19593:1;19586:15;19612:131;-1:-1:-1;;;;;;19686:32:1;;19676:43;;19666:71;;19733:1;19730;19723:12

Swarm Source

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