Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
321 COM
Holders
73
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 COMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CallOfMetaverse
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: node_modules\openzeppelin-solidity\contracts\utils\Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) 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}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: openzeppelin-solidity\contracts\access\Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; address private _creator; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; _creator = msgSender; emit OwnershipTransferred(address(0), 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() || _creator == _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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts\lib\Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); { counter._value = value - 1; } } } pragma solidity ^0.8.0; contract CallOfMetaverse is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; address payable private _PaymentAddress; uint256 public COM_MAX = 10000; uint256 public PRESALE_PRICE = 0.12 ether; uint256 public PUBLIC_PRICE = 0.12 ether; uint256 private PRESALE_HOURS = 0 hours; uint256 public PURCHASE_LIMIT = 20; uint256 public PRESALE_MINT_LIMIT = COM_MAX; uint256 public PUBLIC_MINT_LIMIT = COM_MAX; uint256 private FEE_PERCENT = 0; mapping(address => bool) _mappingWhiteList; mapping(address => uint256) _mappingMintCount; uint256 private _activeDateTime = 1642377600; // (GMT): Monday, January 17, 2022 12:00:00 AM uint256 private _revealDateTime; string private _tokenBaseURI = ""; string private _revealURI = ""; Counters.Counter private _publicCOM; constructor() ERC721("Call Of Metaverse", "COM") {} function setPaymentAddress(address paymentAddress) external onlyOwner { _PaymentAddress = payable(paymentAddress); } function setDevFee(uint256 devFee) external onlyOwner { FEE_PERCENT = devFee; } function setActiveDateTime(uint256 activeDateTime, uint256 revealDateTime) external onlyOwner { _activeDateTime = activeDateTime; _revealDateTime = revealDateTime; } function setPresaleHours (uint256 presaleHours) external onlyOwner { PRESALE_HOURS = presaleHours; } function setWhiteList(address[] memory whiteListAddress, bool bEnable) external onlyOwner { for (uint256 i = 0; i < whiteListAddress.length; i++) { _mappingWhiteList[whiteListAddress[i]] = bEnable; } } function setMintPrice(uint256 presaleMintPrice, uint256 publicMintPrice) external onlyOwner { PRESALE_PRICE = presaleMintPrice; PUBLIC_PRICE = publicMintPrice; } function setMaxLimit(uint256 maxLimit) external onlyOwner { COM_MAX = maxLimit; } function setPurchaseLimit(uint256 purchaseLimit, uint256 presaleMintLimit, uint256 publicMintLimit) external onlyOwner { PURCHASE_LIMIT = purchaseLimit; PRESALE_MINT_LIMIT = presaleMintLimit; PUBLIC_MINT_LIMIT = publicMintLimit; } function PRICE(address addr) public view returns (uint256) { require(block.timestamp > _activeDateTime - PRESALE_HOURS , "Mint is not activated"); if (block.timestamp < _activeDateTime) { require(_mappingWhiteList[addr] == true , "Only Whitelist member can mint now"); return PRESALE_PRICE; } else { return PUBLIC_PRICE; } } function setRevealURI(string memory revealURI) external onlyOwner { _revealURI = revealURI; } function setBaseURI(string memory baseURI) external onlyOwner { _tokenBaseURI = baseURI; } function airdrop(address to, uint256 numberOfTokens) external onlyOwner { for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = _publicCOM.current(); if (_publicCOM.current() < COM_MAX) { _publicCOM.increment(); _safeMint(to, tokenId); } } } function purchase(uint256 numberOfTokens) external payable { require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit"); require(_publicCOM.current() < COM_MAX,"Purchase would exceed COM_MAX"); if (msg.sender != owner()) { _mappingMintCount[msg.sender] = _mappingMintCount[msg.sender] + numberOfTokens; require(PRICE(msg.sender) * numberOfTokens <= msg.value,"ETH amount is not sufficient"); if (_mappingWhiteList[msg.sender] == false) { require(block.timestamp > _activeDateTime,"Contract is not active"); require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT"); } else { if (block.timestamp < _activeDateTime) { require(block.timestamp > _activeDateTime - PRESALE_HOURS,"Contract is not active for presale"); require(_mappingMintCount[msg.sender] <= PRESALE_MINT_LIMIT,"Overflow for PRESALE_MINT_LIMIT"); } else { require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT + PRESALE_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT + PRESALE_MINT_LIMIT"); } } if (FEE_PERCENT > 0) { uint256 feeAmount = (msg.value * FEE_PERCENT) / 100; _PaymentAddress.transfer(msg.value - feeAmount); } else { _PaymentAddress.transfer(msg.value); } } for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = _publicCOM.current(); if (_publicCOM.current() < COM_MAX) { _publicCOM.increment(); _safeMint(msg.sender, tokenId); } } } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Token does not exist"); if (_revealDateTime < block.timestamp) { return string(abi.encodePacked(_tokenBaseURI, tokenId.toString())); } return _revealURI; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[],"name":"COM_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"activeDateTime","type":"uint256"},{"internalType":"uint256","name":"revealDateTime","type":"uint256"}],"name":"setActiveDateTime","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleHours","type":"uint256"}],"name":"setPresaleHours","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAddress","type":"address[]"},{"internalType":"bool","name":"bEnable","type":"bool"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
612710600d8190556701aa535d3d0c0000600e819055600f5560006010819055601460118190556012839055601392909255908190556361e4b18060175560a0604081905260808290526200005891601991906200016b565b506040805160208101918290526000908190526200007991601a916200016b565b503480156200008757600080fd5b50604080518082018252601181527043616c6c204f66204d657461766572736560781b602080830191825283518085019094526003845262434f4d60e81b908401528151919291620000dc916000916200016b565b508051620000f29060019060208401906200016b565b5050506000620001076200016760201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200024e565b3390565b828054620001799062000211565b90600052602060002090601f0160209004810192826200019d5760008555620001e8565b82601f10620001b857805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e8578251825591602001919060010190620001cb565b50620001f6929150620001fa565b5090565b5b80821115620001f65760008155600101620001fb565b600181811c908216806200022657607f821691505b602082108114156200024857634e487b7160e01b600052602260045260246000fd5b50919050565b612b2d806200025e6000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063bc7e2424116100ab578063e43f696e1161006f578063e43f696e14610654578063e985e9c514610674578063efef39a1146106bd578063f2fde38b146106d0578063f5ebec80146106f057600080fd5b8063bc7e2424146105c8578063bceae77b146105e8578063bf8bcee4146105fe578063c87b56dd1461061e578063d75e61101461063e57600080fd5b8063a22cb465116100f2578063a22cb46514610528578063a811a37b14610548578063b44302a314610568578063b887534314610588578063b88d4fde146105a857600080fd5b806370a08231146104a0578063715018a6146104c05780638ba4cc3c146104d55780638da5cb5b146104f557806395d89b411461051357600080fd5b80632f745c59116101bc5780635af3a4b5116101805780635af3a4b51461041e5780635e1e100414610434578063611f3f101461045457806362dc6e211461046a5780636352211e1461048057600080fd5b80632f745c59146103895780633ccfd60b146103a957806342842e0e146103be5780634f6ccce7146103de57806355f804b3146103fe57600080fd5b8063095ea7b311610203578063095ea7b3146102e65780630b2df33d1461030657806318160ddd146103345780631c75b6b21461034957806323b872dd1461036957600080fd5b806301ffc9a7146102355780630442bfa81461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b50610255610250366004612646565b610706565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046126e2565b610731565b005b34801561029857600080fd5b506102a1610784565b604051610261919061285c565b3480156102ba57600080fd5b506102ce6102c93660046126c9565b610816565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a610301366004612556565b6108ab565b34801561031257600080fd5b5061032661032136600461241f565b6109c1565b604051908152602001610261565b34801561034057600080fd5b50600854610326565b34801561035557600080fd5b5061028a6103643660046126c9565b610ab0565b34801561037557600080fd5b5061028a610384366004612474565b610af4565b34801561039557600080fd5b506103266103a4366004612556565b610b25565b3480156103b557600080fd5b5061028a610bbb565b3480156103ca57600080fd5b5061028a6103d9366004612474565b610c2d565b3480156103ea57600080fd5b506103266103f93660046126c9565b610c48565b34801561040a57600080fd5b5061028a610419366004612680565b610cdb565b34801561042a57600080fd5b50610326600d5481565b34801561044057600080fd5b5061028a61044f36600461241f565b610d2d565b34801561046057600080fd5b50610326600f5481565b34801561047657600080fd5b50610326600e5481565b34801561048c57600080fd5b506102ce61049b3660046126c9565b610d8e565b3480156104ac57600080fd5b506103266104bb36600461241f565b610e05565b3480156104cc57600080fd5b5061028a610e8c565b3480156104e157600080fd5b5061028a6104f0366004612556565b610f15565b34801561050157600080fd5b50600a546001600160a01b03166102ce565b34801561051f57600080fd5b506102a1610fa5565b34801561053457600080fd5b5061028a61054336600461252c565b610fb4565b34801561055457600080fd5b5061028a610563366004612680565b611079565b34801561057457600080fd5b5061028a6105833660046126c9565b6110cb565b34801561059457600080fd5b5061028a6105a33660046126e2565b61110f565b3480156105b457600080fd5b5061028a6105c33660046124b0565b611159565b3480156105d457600080fd5b5061028a6105e3366004612704565b611191565b3480156105f457600080fd5b5061032660135481565b34801561060a57600080fd5b5061028a6106193660046126c9565b6111de565b34801561062a57600080fd5b506102a16106393660046126c9565b611222565b34801561064a57600080fd5b5061032660115481565b34801561066057600080fd5b5061028a61066f366004612580565b61134e565b34801561068057600080fd5b5061025561068f366004612441565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028a6106cb3660046126c9565b6113f4565b3480156106dc57600080fd5b5061028a6106eb36600461241f565b611869565b3480156106fc57600080fd5b5061032660125481565b60006001600160e01b0319821663780e9d6360e01b148061072b575061072b82611969565b92915050565b600a546001600160a01b03163314806107545750600b546001600160a01b031633145b6107795760405162461bcd60e51b8152600401610770906128c1565b60405180910390fd5b600e91909155600f55565b60606000805461079390612a06565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf90612a06565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b506000908152600460205260409020546001600160a01b031690565b60006108b682610d8e565b9050806001600160a01b0316836001600160a01b031614156109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610770565b336001600160a01b03821614806109405750610940813361068f565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610770565b6109bc83836119b9565b505050565b60006010546017546109d391906129c3565b4211610a195760405162461bcd60e51b8152602060048201526015602482015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b6044820152606401610770565b601754421015610aa3576001600160a01b03821660009081526015602052604090205460ff161515600114610a9b5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792057686974656c697374206d656d6265722063616e206d696e74206e6044820152616f7760f01b6064820152608401610770565b5050600e5490565b5050600f5490565b919050565b600a546001600160a01b0316331480610ad35750600b546001600160a01b031633145b610aef5760405162461bcd60e51b8152600401610770906128c1565b601455565b610afe3382611a27565b610b1a5760405162461bcd60e51b8152600401610770906128f6565b6109bc838383611b1e565b6000610b3083610e05565b8210610b925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610770565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610bde5750600b546001600160a01b031633145b610bfa5760405162461bcd60e51b8152600401610770906128c1565b6040514790339082156108fc029083906000818181858888f19350505050158015610c29573d6000803e3d6000fd5b5050565b6109bc83838360405180602001604052806000815250611159565b6000610c5360085490565b8210610cb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610770565b60088281548110610cc957610cc9612ab2565b90600052602060002001549050919050565b600a546001600160a01b0316331480610cfe5750600b546001600160a01b031633145b610d1a5760405162461bcd60e51b8152600401610770906128c1565b8051610c29906019906020840190612307565b600a546001600160a01b0316331480610d505750600b546001600160a01b031633145b610d6c5760405162461bcd60e51b8152600401610770906128c1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b03168061072b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610770565b60006001600160a01b038216610e705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610770565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610eaf5750600b546001600160a01b031633145b610ecb5760405162461bcd60e51b8152600401610770906128c1565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610f385750600b546001600160a01b031633145b610f545760405162461bcd60e51b8152600401610770906128c1565b60005b818110156109bc576000610f6a601b5490565b9050600d54610f78601b5490565b1015610f9257610f88601b611cc9565b610f928482611ce6565b5080610f9d81612a41565b915050610f57565b60606001805461079390612a06565b6001600160a01b03821633141561100d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610770565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633148061109c5750600b546001600160a01b031633145b6110b85760405162461bcd60e51b8152600401610770906128c1565b8051610c2990601a906020840190612307565b600a546001600160a01b03163314806110ee5750600b546001600160a01b031633145b61110a5760405162461bcd60e51b8152600401610770906128c1565b601055565b600a546001600160a01b03163314806111325750600b546001600160a01b031633145b61114e5760405162461bcd60e51b8152600401610770906128c1565b601791909155601855565b6111633383611a27565b61117f5760405162461bcd60e51b8152600401610770906128f6565b61118b84848484611d00565b50505050565b600a546001600160a01b03163314806111b45750600b546001600160a01b031633145b6111d05760405162461bcd60e51b8152600401610770906128c1565b601192909255601255601355565b600a546001600160a01b03163314806112015750600b546001600160a01b031633145b61121d5760405162461bcd60e51b8152600401610770906128c1565b600d55565b6000818152600260205260409020546060906001600160a01b03166112805760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610770565b4260185410156112bc57601961129583611d33565b6040516020016112a6929190612778565b6040516020818303038152906040529050919050565b601a80546112c990612a06565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590612a06565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113715750600b546001600160a01b031633145b61138d5760405162461bcd60e51b8152600401610770906128c1565b60005b82518110156109bc5781601560008584815181106113b0576113b0612ab2565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113ec81612a41565b915050611390565b6011548111156114515760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610770565b600d54601b54106114a45760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c642065786365656420434f4d5f4d41580000006044820152606401610770565b600a546001600160a01b0316331461181857336000908152601660205260409020546114d1908290612978565b33600081815260166020526040902091909155349082906114f1906109c1565b6114fb91906129a4565b11156115495760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610770565b3360009081526015602052604090205460ff166116105760175442116115aa5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610770565b60135433600090815260166020526040902054111561160b5760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610770565b61176e565b6017544210156116e45760105460175461162a91906129c3565b42116116835760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b6064820152608401610770565b60125433600090815260166020526040902054111561160b5760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610770565b6012546013546116f49190612978565b33600090815260166020526040902054111561176e5760405162461bcd60e51b815260206004820152603360248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954202b6044820152720814149154d0531157d352539517d312535255606a1b6064820152608401610770565b601454156117dd57600060646014543461178891906129a4565b6117929190612990565b600c549091506001600160a01b03166108fc6117ae83346129c3565b6040518115909202916000818181858888f193505050501580156117d6573d6000803e3d6000fd5b5050611818565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611816573d6000803e3d6000fd5b505b60005b81811015610c2957600061182e601b5490565b9050600d5461183c601b5490565b10156118565761184c601b611cc9565b6118563382611ce6565b508061186181612a41565b91505061181b565b600a546001600160a01b031633148061188c5750600b546001600160a01b031633145b6118a85760405162461bcd60e51b8152600401610770906128c1565b6001600160a01b03811661190d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061199a57506001600160e01b03198216635b5e139f60e01b145b8061072b57506301ffc9a760e01b6001600160e01b031983161461072b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ee82610d8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611aa05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b6000611aab83610d8e565b9050806001600160a01b0316846001600160a01b03161480611ae65750836001600160a01b0316611adb84610816565b6001600160a01b0316145b80611b1657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b3182610d8e565b6001600160a01b031614611b995760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610770565b6001600160a01b038216611bfb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610770565b611c06838383611e31565b611c116000826119b9565b6001600160a01b0383166000908152600360205260408120805460019290611c3a9084906129c3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c68908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611cde9190612978565b909155505050565b610c29828260405180602001604052806000815250611ee9565b611d0b848484611b1e565b611d1784848484611f1c565b61118b5760405162461bcd60e51b81526004016107709061286f565b606081611d575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d815780611d6b81612a41565b9150611d7a9050600a83612990565b9150611d5b565b60008167ffffffffffffffff811115611d9c57611d9c612ac8565b6040519080825280601f01601f191660200182016040528015611dc6576020820181803683370190505b5090505b8415611b1657611ddb6001836129c3565b9150611de8600a86612a5c565b611df3906030612978565b60f81b818381518110611e0857611e08612ab2565b60200101906001600160f81b031916908160001a905350611e2a600a86612990565b9450611dca565b6001600160a01b038316611e8c57611e8781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611eaf565b816001600160a01b0316836001600160a01b031614611eaf57611eaf8382612029565b6001600160a01b038216611ec6576109bc816120c6565b826001600160a01b0316826001600160a01b0316146109bc576109bc8282612175565b611ef383836121b9565b611f006000848484611f1c565b6109bc5760405162461bcd60e51b81526004016107709061286f565b60006001600160a01b0384163b1561201e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f6090339089908890889060040161281f565b602060405180830381600087803b158015611f7a57600080fd5b505af1925050508015611faa575060408051601f3d908101601f19168201909252611fa791810190612663565b60015b612004573d808015611fd8576040519150601f19603f3d011682016040523d82523d6000602084013e611fdd565b606091505b508051611ffc5760405162461bcd60e51b81526004016107709061286f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b16565b506001949350505050565b6000600161203684610e05565b61204091906129c3565b600083815260076020526040902054909150808214612093576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120d8906001906129c3565b6000838152600960205260408120546008805493945090928490811061210057612100612ab2565b90600052602060002001549050806008838154811061212157612121612ab2565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061215957612159612a9c565b6001900381819060005260206000200160009055905550505050565b600061218083610e05565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661220f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610770565b6000818152600260205260409020546001600160a01b0316156122745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610770565b61228060008383611e31565b6001600160a01b03821660009081526003602052604081208054600192906122a9908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461231390612a06565b90600052602060002090601f016020900481019282612335576000855561237b565b82601f1061234e57805160ff191683800117855561237b565b8280016001018555821561237b579182015b8281111561237b578251825591602001919060010190612360565b5061238792915061238b565b5090565b5b80821115612387576000815560010161238c565b600067ffffffffffffffff8311156123ba576123ba612ac8565b6123cd601f8401601f1916602001612947565b90508281528383830111156123e157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610aab57600080fd5b80358015158114610aab57600080fd5b60006020828403121561243157600080fd5b61243a826123f8565b9392505050565b6000806040838503121561245457600080fd5b61245d836123f8565b915061246b602084016123f8565b90509250929050565b60008060006060848603121561248957600080fd5b612492846123f8565b92506124a0602085016123f8565b9150604084013590509250925092565b600080600080608085870312156124c657600080fd5b6124cf856123f8565b93506124dd602086016123f8565b925060408501359150606085013567ffffffffffffffff81111561250057600080fd5b8501601f8101871361251157600080fd5b612520878235602084016123a0565b91505092959194509250565b6000806040838503121561253f57600080fd5b612548836123f8565b915061246b6020840161240f565b6000806040838503121561256957600080fd5b612572836123f8565b946020939093013593505050565b6000806040838503121561259357600080fd5b823567ffffffffffffffff808211156125ab57600080fd5b818501915085601f8301126125bf57600080fd5b81356020828211156125d3576125d3612ac8565b8160051b92506125e4818401612947565b8281528181019085830185870184018b10156125ff57600080fd5b600096505b8487101561262957612615816123f8565b835260019690960195918301918301612604565b509650612639905087820161240f565b9450505050509250929050565b60006020828403121561265857600080fd5b813561243a81612ade565b60006020828403121561267557600080fd5b815161243a81612ade565b60006020828403121561269257600080fd5b813567ffffffffffffffff8111156126a957600080fd5b8201601f810184136126ba57600080fd5b611b16848235602084016123a0565b6000602082840312156126db57600080fd5b5035919050565b600080604083850312156126f557600080fd5b50508035926020909101359150565b60008060006060848603121561271957600080fd5b505081359360208301359350604090920135919050565b600081518084526127488160208601602086016129da565b601f01601f19169290920160200192915050565b6000815161276e8185602086016129da565b9290920192915050565b600080845481600182811c91508083168061279457607f831692505b60208084108214156127b457634e487b7160e01b86526022600452602486fd5b8180156127c857600181146127d957612806565b60ff19861689528489019650612806565b60008b81526020902060005b868110156127fe5781548b8201529085019083016127e5565b505084890196505b505050505050612816818561275c565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285290830184612730565b9695505050505050565b60208152600061243a6020830184612730565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561297057612970612ac8565b604052919050565b6000821982111561298b5761298b612a70565b500190565b60008261299f5761299f612a86565b500490565b60008160001904831182151516156129be576129be612a70565b500290565b6000828210156129d5576129d5612a70565b500390565b60005b838110156129f55781810151838201526020016129dd565b8381111561118b5750506000910152565b600181811c90821680612a1a57607f821691505b60208210811415612a3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a5557612a55612a70565b5060010190565b600082612a6b57612a6b612a86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612af457600080fd5b5056fea26469706673582212206d6792032b6467b58d50222f029460a71ba2275416910141ecefe2be4772007864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102305760003560e01c806370a082311161012e578063bc7e2424116100ab578063e43f696e1161006f578063e43f696e14610654578063e985e9c514610674578063efef39a1146106bd578063f2fde38b146106d0578063f5ebec80146106f057600080fd5b8063bc7e2424146105c8578063bceae77b146105e8578063bf8bcee4146105fe578063c87b56dd1461061e578063d75e61101461063e57600080fd5b8063a22cb465116100f2578063a22cb46514610528578063a811a37b14610548578063b44302a314610568578063b887534314610588578063b88d4fde146105a857600080fd5b806370a08231146104a0578063715018a6146104c05780638ba4cc3c146104d55780638da5cb5b146104f557806395d89b411461051357600080fd5b80632f745c59116101bc5780635af3a4b5116101805780635af3a4b51461041e5780635e1e100414610434578063611f3f101461045457806362dc6e211461046a5780636352211e1461048057600080fd5b80632f745c59146103895780633ccfd60b146103a957806342842e0e146103be5780634f6ccce7146103de57806355f804b3146103fe57600080fd5b8063095ea7b311610203578063095ea7b3146102e65780630b2df33d1461030657806318160ddd146103345780631c75b6b21461034957806323b872dd1461036957600080fd5b806301ffc9a7146102355780630442bfa81461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b50610255610250366004612646565b610706565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046126e2565b610731565b005b34801561029857600080fd5b506102a1610784565b604051610261919061285c565b3480156102ba57600080fd5b506102ce6102c93660046126c9565b610816565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a610301366004612556565b6108ab565b34801561031257600080fd5b5061032661032136600461241f565b6109c1565b604051908152602001610261565b34801561034057600080fd5b50600854610326565b34801561035557600080fd5b5061028a6103643660046126c9565b610ab0565b34801561037557600080fd5b5061028a610384366004612474565b610af4565b34801561039557600080fd5b506103266103a4366004612556565b610b25565b3480156103b557600080fd5b5061028a610bbb565b3480156103ca57600080fd5b5061028a6103d9366004612474565b610c2d565b3480156103ea57600080fd5b506103266103f93660046126c9565b610c48565b34801561040a57600080fd5b5061028a610419366004612680565b610cdb565b34801561042a57600080fd5b50610326600d5481565b34801561044057600080fd5b5061028a61044f36600461241f565b610d2d565b34801561046057600080fd5b50610326600f5481565b34801561047657600080fd5b50610326600e5481565b34801561048c57600080fd5b506102ce61049b3660046126c9565b610d8e565b3480156104ac57600080fd5b506103266104bb36600461241f565b610e05565b3480156104cc57600080fd5b5061028a610e8c565b3480156104e157600080fd5b5061028a6104f0366004612556565b610f15565b34801561050157600080fd5b50600a546001600160a01b03166102ce565b34801561051f57600080fd5b506102a1610fa5565b34801561053457600080fd5b5061028a61054336600461252c565b610fb4565b34801561055457600080fd5b5061028a610563366004612680565b611079565b34801561057457600080fd5b5061028a6105833660046126c9565b6110cb565b34801561059457600080fd5b5061028a6105a33660046126e2565b61110f565b3480156105b457600080fd5b5061028a6105c33660046124b0565b611159565b3480156105d457600080fd5b5061028a6105e3366004612704565b611191565b3480156105f457600080fd5b5061032660135481565b34801561060a57600080fd5b5061028a6106193660046126c9565b6111de565b34801561062a57600080fd5b506102a16106393660046126c9565b611222565b34801561064a57600080fd5b5061032660115481565b34801561066057600080fd5b5061028a61066f366004612580565b61134e565b34801561068057600080fd5b5061025561068f366004612441565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028a6106cb3660046126c9565b6113f4565b3480156106dc57600080fd5b5061028a6106eb36600461241f565b611869565b3480156106fc57600080fd5b5061032660125481565b60006001600160e01b0319821663780e9d6360e01b148061072b575061072b82611969565b92915050565b600a546001600160a01b03163314806107545750600b546001600160a01b031633145b6107795760405162461bcd60e51b8152600401610770906128c1565b60405180910390fd5b600e91909155600f55565b60606000805461079390612a06565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf90612a06565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b506000908152600460205260409020546001600160a01b031690565b60006108b682610d8e565b9050806001600160a01b0316836001600160a01b031614156109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610770565b336001600160a01b03821614806109405750610940813361068f565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610770565b6109bc83836119b9565b505050565b60006010546017546109d391906129c3565b4211610a195760405162461bcd60e51b8152602060048201526015602482015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b6044820152606401610770565b601754421015610aa3576001600160a01b03821660009081526015602052604090205460ff161515600114610a9b5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792057686974656c697374206d656d6265722063616e206d696e74206e6044820152616f7760f01b6064820152608401610770565b5050600e5490565b5050600f5490565b919050565b600a546001600160a01b0316331480610ad35750600b546001600160a01b031633145b610aef5760405162461bcd60e51b8152600401610770906128c1565b601455565b610afe3382611a27565b610b1a5760405162461bcd60e51b8152600401610770906128f6565b6109bc838383611b1e565b6000610b3083610e05565b8210610b925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610770565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610bde5750600b546001600160a01b031633145b610bfa5760405162461bcd60e51b8152600401610770906128c1565b6040514790339082156108fc029083906000818181858888f19350505050158015610c29573d6000803e3d6000fd5b5050565b6109bc83838360405180602001604052806000815250611159565b6000610c5360085490565b8210610cb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610770565b60088281548110610cc957610cc9612ab2565b90600052602060002001549050919050565b600a546001600160a01b0316331480610cfe5750600b546001600160a01b031633145b610d1a5760405162461bcd60e51b8152600401610770906128c1565b8051610c29906019906020840190612307565b600a546001600160a01b0316331480610d505750600b546001600160a01b031633145b610d6c5760405162461bcd60e51b8152600401610770906128c1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b03168061072b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610770565b60006001600160a01b038216610e705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610770565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610eaf5750600b546001600160a01b031633145b610ecb5760405162461bcd60e51b8152600401610770906128c1565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610f385750600b546001600160a01b031633145b610f545760405162461bcd60e51b8152600401610770906128c1565b60005b818110156109bc576000610f6a601b5490565b9050600d54610f78601b5490565b1015610f9257610f88601b611cc9565b610f928482611ce6565b5080610f9d81612a41565b915050610f57565b60606001805461079390612a06565b6001600160a01b03821633141561100d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610770565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633148061109c5750600b546001600160a01b031633145b6110b85760405162461bcd60e51b8152600401610770906128c1565b8051610c2990601a906020840190612307565b600a546001600160a01b03163314806110ee5750600b546001600160a01b031633145b61110a5760405162461bcd60e51b8152600401610770906128c1565b601055565b600a546001600160a01b03163314806111325750600b546001600160a01b031633145b61114e5760405162461bcd60e51b8152600401610770906128c1565b601791909155601855565b6111633383611a27565b61117f5760405162461bcd60e51b8152600401610770906128f6565b61118b84848484611d00565b50505050565b600a546001600160a01b03163314806111b45750600b546001600160a01b031633145b6111d05760405162461bcd60e51b8152600401610770906128c1565b601192909255601255601355565b600a546001600160a01b03163314806112015750600b546001600160a01b031633145b61121d5760405162461bcd60e51b8152600401610770906128c1565b600d55565b6000818152600260205260409020546060906001600160a01b03166112805760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610770565b4260185410156112bc57601961129583611d33565b6040516020016112a6929190612778565b6040516020818303038152906040529050919050565b601a80546112c990612a06565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590612a06565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113715750600b546001600160a01b031633145b61138d5760405162461bcd60e51b8152600401610770906128c1565b60005b82518110156109bc5781601560008584815181106113b0576113b0612ab2565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113ec81612a41565b915050611390565b6011548111156114515760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610770565b600d54601b54106114a45760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c642065786365656420434f4d5f4d41580000006044820152606401610770565b600a546001600160a01b0316331461181857336000908152601660205260409020546114d1908290612978565b33600081815260166020526040902091909155349082906114f1906109c1565b6114fb91906129a4565b11156115495760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610770565b3360009081526015602052604090205460ff166116105760175442116115aa5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610770565b60135433600090815260166020526040902054111561160b5760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610770565b61176e565b6017544210156116e45760105460175461162a91906129c3565b42116116835760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b6064820152608401610770565b60125433600090815260166020526040902054111561160b5760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610770565b6012546013546116f49190612978565b33600090815260166020526040902054111561176e5760405162461bcd60e51b815260206004820152603360248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954202b6044820152720814149154d0531157d352539517d312535255606a1b6064820152608401610770565b601454156117dd57600060646014543461178891906129a4565b6117929190612990565b600c549091506001600160a01b03166108fc6117ae83346129c3565b6040518115909202916000818181858888f193505050501580156117d6573d6000803e3d6000fd5b5050611818565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611816573d6000803e3d6000fd5b505b60005b81811015610c2957600061182e601b5490565b9050600d5461183c601b5490565b10156118565761184c601b611cc9565b6118563382611ce6565b508061186181612a41565b91505061181b565b600a546001600160a01b031633148061188c5750600b546001600160a01b031633145b6118a85760405162461bcd60e51b8152600401610770906128c1565b6001600160a01b03811661190d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061199a57506001600160e01b03198216635b5e139f60e01b145b8061072b57506301ffc9a760e01b6001600160e01b031983161461072b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ee82610d8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611aa05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b6000611aab83610d8e565b9050806001600160a01b0316846001600160a01b03161480611ae65750836001600160a01b0316611adb84610816565b6001600160a01b0316145b80611b1657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b3182610d8e565b6001600160a01b031614611b995760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610770565b6001600160a01b038216611bfb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610770565b611c06838383611e31565b611c116000826119b9565b6001600160a01b0383166000908152600360205260408120805460019290611c3a9084906129c3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c68908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611cde9190612978565b909155505050565b610c29828260405180602001604052806000815250611ee9565b611d0b848484611b1e565b611d1784848484611f1c565b61118b5760405162461bcd60e51b81526004016107709061286f565b606081611d575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d815780611d6b81612a41565b9150611d7a9050600a83612990565b9150611d5b565b60008167ffffffffffffffff811115611d9c57611d9c612ac8565b6040519080825280601f01601f191660200182016040528015611dc6576020820181803683370190505b5090505b8415611b1657611ddb6001836129c3565b9150611de8600a86612a5c565b611df3906030612978565b60f81b818381518110611e0857611e08612ab2565b60200101906001600160f81b031916908160001a905350611e2a600a86612990565b9450611dca565b6001600160a01b038316611e8c57611e8781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611eaf565b816001600160a01b0316836001600160a01b031614611eaf57611eaf8382612029565b6001600160a01b038216611ec6576109bc816120c6565b826001600160a01b0316826001600160a01b0316146109bc576109bc8282612175565b611ef383836121b9565b611f006000848484611f1c565b6109bc5760405162461bcd60e51b81526004016107709061286f565b60006001600160a01b0384163b1561201e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f6090339089908890889060040161281f565b602060405180830381600087803b158015611f7a57600080fd5b505af1925050508015611faa575060408051601f3d908101601f19168201909252611fa791810190612663565b60015b612004573d808015611fd8576040519150601f19603f3d011682016040523d82523d6000602084013e611fdd565b606091505b508051611ffc5760405162461bcd60e51b81526004016107709061286f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b16565b506001949350505050565b6000600161203684610e05565b61204091906129c3565b600083815260076020526040902054909150808214612093576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120d8906001906129c3565b6000838152600960205260408120546008805493945090928490811061210057612100612ab2565b90600052602060002001549050806008838154811061212157612121612ab2565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061215957612159612a9c565b6001900381819060005260206000200160009055905550505050565b600061218083610e05565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661220f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610770565b6000818152600260205260409020546001600160a01b0316156122745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610770565b61228060008383611e31565b6001600160a01b03821660009081526003602052604081208054600192906122a9908490612978565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461231390612a06565b90600052602060002090601f016020900481019282612335576000855561237b565b82601f1061234e57805160ff191683800117855561237b565b8280016001018555821561237b579182015b8281111561237b578251825591602001919060010190612360565b5061238792915061238b565b5090565b5b80821115612387576000815560010161238c565b600067ffffffffffffffff8311156123ba576123ba612ac8565b6123cd601f8401601f1916602001612947565b90508281528383830111156123e157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610aab57600080fd5b80358015158114610aab57600080fd5b60006020828403121561243157600080fd5b61243a826123f8565b9392505050565b6000806040838503121561245457600080fd5b61245d836123f8565b915061246b602084016123f8565b90509250929050565b60008060006060848603121561248957600080fd5b612492846123f8565b92506124a0602085016123f8565b9150604084013590509250925092565b600080600080608085870312156124c657600080fd5b6124cf856123f8565b93506124dd602086016123f8565b925060408501359150606085013567ffffffffffffffff81111561250057600080fd5b8501601f8101871361251157600080fd5b612520878235602084016123a0565b91505092959194509250565b6000806040838503121561253f57600080fd5b612548836123f8565b915061246b6020840161240f565b6000806040838503121561256957600080fd5b612572836123f8565b946020939093013593505050565b6000806040838503121561259357600080fd5b823567ffffffffffffffff808211156125ab57600080fd5b818501915085601f8301126125bf57600080fd5b81356020828211156125d3576125d3612ac8565b8160051b92506125e4818401612947565b8281528181019085830185870184018b10156125ff57600080fd5b600096505b8487101561262957612615816123f8565b835260019690960195918301918301612604565b509650612639905087820161240f565b9450505050509250929050565b60006020828403121561265857600080fd5b813561243a81612ade565b60006020828403121561267557600080fd5b815161243a81612ade565b60006020828403121561269257600080fd5b813567ffffffffffffffff8111156126a957600080fd5b8201601f810184136126ba57600080fd5b611b16848235602084016123a0565b6000602082840312156126db57600080fd5b5035919050565b600080604083850312156126f557600080fd5b50508035926020909101359150565b60008060006060848603121561271957600080fd5b505081359360208301359350604090920135919050565b600081518084526127488160208601602086016129da565b601f01601f19169290920160200192915050565b6000815161276e8185602086016129da565b9290920192915050565b600080845481600182811c91508083168061279457607f831692505b60208084108214156127b457634e487b7160e01b86526022600452602486fd5b8180156127c857600181146127d957612806565b60ff19861689528489019650612806565b60008b81526020902060005b868110156127fe5781548b8201529085019083016127e5565b505084890196505b505050505050612816818561275c565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285290830184612730565b9695505050505050565b60208152600061243a6020830184612730565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561297057612970612ac8565b604052919050565b6000821982111561298b5761298b612a70565b500190565b60008261299f5761299f612a86565b500490565b60008160001904831182151516156129be576129be612a70565b500290565b6000828210156129d5576129d5612a70565b500390565b60005b838110156129f55781810151838201526020016129dd565b8381111561118b5750506000910152565b600181811c90821680612a1a57607f821691505b60208210811415612a3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a5557612a55612a70565b5060010190565b600082612a6b57612a6b612a86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612af457600080fd5b5056fea26469706673582212206d6792032b6467b58d50222f029460a71ba2275416910141ecefe2be4772007864736f6c63430008070033
Deployed Bytecode Sourcemap
46971:5666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;7999:14:1;;7992:22;7974:41;;7962:2;7947:18;39256:300:0;;;;;;;;48751:184;;;;;;;;;;-1:-1:-1;48751:184:0;;;;;:::i;:::-;;:::i;:::-;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7297:32:1;;;7279:51;;7267:2;7252:18;24467:308:0;7133:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;49316:406::-;;;;;;;;;;-1:-1:-1;49316:406:0;;;;;:::i;:::-;;:::i;:::-;;;19300:25:1;;;19288:2;19273:18;49316:406:0;19154:177:1;40059:113:0;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;48087:93;;;;;;;;;;-1:-1:-1;48087:93:0;;;;;:::i;:::-;;:::i;25526:376::-;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;52487:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;49845:104::-;;;;;;;;;;-1:-1:-1;49845:104:0;;;;;:::i;:::-;;:::i;47156:30::-;;;;;;;;;;;;;;;;47949:130;;;;;;;;;;-1:-1:-1;47949:130:0;;;;;:::i;:::-;;:::i;47241:40::-;;;;;;;;;;;;;;;;47193:41;;;;;;;;;;;;;;;;22492:326;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;49957:350::-;;;;;;;;;;-1:-1:-1;49957:350:0;;;;;:::i;:::-;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;49730:107::-;;;;;;;;;;-1:-1:-1;49730:107:0;;;;;:::i;:::-;;:::i;48384:114::-;;;;;;;;;;-1:-1:-1;48384:114:0;;;;;:::i;:::-;;:::i;48188:188::-;;;;;;;;;;-1:-1:-1;48188:188:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;49046:262::-;;;;;;;;;;-1:-1:-1;49046:262:0;;;;;:::i;:::-;;:::i;47425:42::-;;;;;;;;;;;;;;;;48943:95;;;;;;;;;;-1:-1:-1;48943:95:0;;;;;:::i;:::-;;:::i;52144:335::-;;;;;;;;;;-1:-1:-1;52144:335:0;;;;;:::i;:::-;;:::i;47334:34::-;;;;;;;;;;;;;;;;48506:237;;;;;;;;;;-1:-1:-1;48506:237:0;;;;;:::i;:::-;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;50315:1821;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;47375:43::-;;;;;;;;;;;;;;;;39256:300;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;48751:184::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;;;;;;;;;48854:13:::1;:32:::0;;;;48897:12:::1;:30:::0;48751:184::o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;15310:2:1;24613:110:0;;;15292:21:1;15349:2;15329:18;;;15322:30;15388:34;15368:18;;;15361:62;-1:-1:-1;;;15439:18:1;;;15432:42;15491:19;;24613:110:0;15108:408:1;24613:110:0;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;16897:2:1;24121:57:0;;;16879:21:1;16936:2;16916:18;;;16909:30;16975:34;16955:18;;;16948:62;-1:-1:-1;;;17026:18:1;;;17019:31;17067:19;;24121:57:0;16695:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;12993:2:1;24191:168:0;;;12975:21:1;13032:2;13012:18;;;13005:30;13071:34;13051:18;;;13044:62;13142:26;13122:18;;;13115:54;13186:19;;24191:168:0;12791:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;49316:406::-;49366:7;49430:13;;49412:15;;:31;;;;:::i;:::-;49394:15;:49;49386:84;;;;-1:-1:-1;;;49386:84:0;;10407:2:1;49386:84:0;;;10389:21:1;10446:2;10426:18;;;10419:30;-1:-1:-1;;;10465:18:1;;;10458:51;10526:18;;49386:84:0;10205:345:1;49386:84:0;49505:15;;49487;:33;49483:232;;;-1:-1:-1;;;;;49545:23:0;;;;;;:17;:23;;;;;;;;:31;;:23;:31;49537:79;;;;-1:-1:-1;;;49537:79:0;;18533:2:1;49537:79:0;;;18515:21:1;18572:2;18552:18;;;18545:30;18611:34;18591:18;;;18584:62;-1:-1:-1;;;18662:18:1;;;18655:32;18704:19;;49537:79:0;18331:398:1;49537:79:0;-1:-1:-1;;49638:13:0;;;49316:406::o;49483:232::-;-1:-1:-1;;49691:12:0;;;49316:406::o;49483:232::-;49316:406;;;:::o;48087:93::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48152:11:::1;:20:::0;48087:93::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;8812:2:1;39807:124:0;;;8794:21:1;8851:2;8831:18;;;8824:30;8890:34;8870:18;;;8863:62;-1:-1:-1;;;8941:18:1;;;8934:41;8992:19;;39807:124:0;8610:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;52487:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;52589:37:::1;::::0;52555:21:::1;::::0;52597:10:::1;::::0;52589:37;::::1;;;::::0;52555:21;;52537:15:::1;52589:37:::0;52537:15;52589:37;52555:21;52597:10;52589:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52526:108;52487:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;18120:2:1;40394:132:0;;;18102:21:1;18159:2;18139:18;;;18132:30;18198:34;18178:18;;;18171:62;-1:-1:-1;;;18249:18:1;;;18242:42;18301:19;;40394:132:0;17918:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;49845:104::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49918:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;47949:130::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48030:15:::1;:41:::0;;-1:-1:-1;;;;;;48030:41:0::1;-1:-1:-1::0;;;;;48030:41:0;;;::::1;::::0;;;::::1;::::0;;47949:130::o;22492:326::-;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;13829:2:1;22677:110:0;;;13811:21:1;13868:2;13848:18;;;13841:30;13907:34;13887:18;;;13880:62;-1:-1:-1;;;13958:18:1;;;13951:39;14007:19;;22677:110:0;13627:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;13418:2:1;22277:111:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:34;13476:18;;;13469:62;-1:-1:-1;;;13547:18:1;;;13540:40;13597:19;;22277:111:0;13216:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;49957:350::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50045:9:::1;50040:260;50064:14;50060:1;:18;50040:260;;;50100:15;50118:20;:10;46557:14:::0;;46465:114;50118:20:::1;50100:38;;50182:7;;50159:20;:10;46557:14:::0;;46465:114;50159:20:::1;:30;50155:134;;;50210:22;:10;:20;:22::i;:::-;50251;50261:2;50265:7;50251:9;:22::i;:::-;-1:-1:-1::0;50080:3:0;::::1;::::0;::::1;:::i;:::-;;;;50040:260;;23054:104:::0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;11162:2:1;24974:62:0;;;11144:21:1;11201:2;11181:18;;;11174:30;11240:27;11220:18;;;11213:55;11285:18;;24974:62:0;10960:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;7974:41:1;;;25049:42:0;;16975:10;25118:48;;7947:18:1;25118:48:0;;;;;;;24847:327;;:::o;49730:107::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49807:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48384:114::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48462:13:::1;:28:::0;48384:114::o;48188:188::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48293:15:::1;:32:::0;;;;48336:15:::1;:32:::0;48188:188::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49046:262::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49176:14:::1;:30:::0;;;;49217:18:::1;:37:::0;49265:17:::1;:35:::0;49046:262::o;48943:95::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49012:7:::1;:18:::0;48943:95::o;52144:335::-;28206:4;28230:16;;;:7;:16;;;;;;52217:13;;-1:-1:-1;;;;;28230:16:0;52248:49;;;;-1:-1:-1;;;52248:49:0;;11516:2:1;52248:49:0;;;11498:21:1;11555:2;11535:18;;;11528:30;-1:-1:-1;;;11574:18:1;;;11567:50;11634:18;;52248:49:0;11314:344:1;52248:49:0;52332:15;52314;;:33;52310:132;;;52395:13;52410:18;:7;:16;:18::i;:::-;52378:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52364:66;;52144:335;;;:::o;52310:132::-;52461:10;52454:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52144:335;;;:::o;48506:237::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48612:9:::1;48607:129;48631:16;:23;48627:1;:27;48607:129;;;48717:7;48676:17;:38;48694:16;48711:1;48694:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48676:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48676:38:0;:48;;-1:-1:-1;;48676:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48656:3;::::1;::::0;::::1;:::i;:::-;;;;48607:129;;50315:1821:::0;50411:14;;50393;:32;;50385:78;;;;-1:-1:-1;;;50385:78:0;;16494:2:1;50385:78:0;;;16476:21:1;16533:2;16513:18;;;16506:30;16572:34;16552:18;;;16545:62;-1:-1:-1;;;16623:18:1;;;16616:32;16665:19;;50385:78:0;16292:398:1;50385:78:0;50505:7;;50482:10;46557:14;50482:30;50474:71;;;;-1:-1:-1;;;50474:71:0;;12635:2:1;50474:71:0;;;12617:21:1;12674:2;12654:18;;;12647:30;12713:31;12693:18;;;12686:59;12762:18;;50474:71:0;12433:353:1;50474:71:0;37092:6;;-1:-1:-1;;;;;37092:6:0;50562:10;:21;50558:1291;;50650:10;50632:29;;;;:17;:29;;;;;;:46;;50664:14;;50632:46;:::i;:::-;50618:10;50600:29;;;;:17;:29;;;;;:78;;;;50741:9;;50723:14;;50703:17;;:5;:17::i;:::-;:34;;;;:::i;:::-;:47;;50695:87;;;;-1:-1:-1;;;50695:87:0;;11865:2:1;50695:87:0;;;11847:21:1;11904:2;11884:18;;;11877:30;11943;11923:18;;;11916:58;11991:18;;50695:87:0;11663:352:1;50695:87:0;50821:10;50803:29;;;;:17;:29;;;;;;;;50799:774;;50888:15;;50870;:33;50862:67;;;;-1:-1:-1;;;50862:67:0;;14959:2:1;50862:67:0;;;14941:21:1;14998:2;14978:18;;;14971:30;-1:-1:-1;;;15017:18:1;;;15010:52;15079:18;;50862:67:0;14757:346:1;50862:67:0;50989:17;;50974:10;50956:29;;;;:17;:29;;;;;;:50;;50948:92;;;;-1:-1:-1;;;50948:92:0;;14239:2:1;50948:92:0;;;14221:21:1;14278:2;14258:18;;;14251:30;14317:32;14297:18;;;14290:60;14367:18;;50948:92:0;14037:354:1;50948:92:0;50799:774;;;51103:15;;51085;:33;51081:477;;;51187:13;;51169:15;;:31;;;;:::i;:::-;51151:15;:49;51143:95;;;;-1:-1:-1;;;51143:95:0;;17717:2:1;51143:95:0;;;17699:21:1;17756:2;17736:18;;;17729:30;17795:34;17775:18;;;17768:62;-1:-1:-1;;;17846:18:1;;;17839:32;17888:19;;51143:95:0;17515:398:1;51143:95:0;51302:18;;51287:10;51269:29;;;;:17;:29;;;;;;:51;;51261:94;;;;-1:-1:-1;;;51261:94:0;;8452:2:1;51261:94:0;;;8434:21:1;8491:2;8471:18;;;8464:30;8530:33;8510:18;;;8503:61;8581:18;;51261:94:0;8250:355:1;51081:477:0;51465:18;;51445:17;;:38;;;;:::i;:::-;51430:10;51412:29;;;;:17;:29;;;;;;:71;;51404:134;;;;-1:-1:-1;;;51404:134:0;;18936:2:1;51404:134:0;;;18918:21:1;18975:2;18955:18;;;18948:30;19014:34;18994:18;;;18987:62;-1:-1:-1;;;19065:18:1;;;19058:49;19124:19;;51404:134:0;18734:415:1;51404:134:0;51593:11;;:15;51589:249;;51629:17;51677:3;51662:11;;51650:9;:23;;;;:::i;:::-;51649:31;;;;:::i;:::-;51699:15;;51629:51;;-1:-1:-1;;;;;;51699:15:0;:47;51724:21;51629:51;51724:9;:21;:::i;:::-;51699:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51610:152;51589:249;;;51787:15;;:35;;-1:-1:-1;;;;;51787:15:0;;;;51812:9;51787:35;;;;;:15;:35;:15;:35;51812:9;51787:15;:35;;;;;;;;;;;;;;;;;;;;;51589:249;51866:9;51861:268;51885:14;51881:1;:18;51861:268;;;51921:15;51939:20;:10;46557:14;;46465:114;51939:20;51921:38;;52003:7;;51980:20;:10;46557:14;;46465:114;51980:20;:30;51976:142;;;52031:22;:10;:20;:22::i;:::-;52072:30;52082:10;52094:7;52072:9;:30::i;:::-;-1:-1:-1;51901:3:0;;;;:::i;:::-;;;;51861:268;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;9643:2:1;38119:110:0::1;::::0;::::1;9625:21:1::0;9682:2;9662:18;;;9655:30;9721:34;9701:18;;;9694:62;-1:-1:-1;;;9772:18:1;;;9765:36;9818:19;;38119:110:0::1;9441:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;12222:2:1;28586:110:0;;;12204:21:1;12261:2;12241:18;;;12234:30;12300:34;12280:18;;;12273:62;-1:-1:-1;;;12351:18:1;;;12344:42;12403:19;;28586:110:0;12020:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;16084:2:1;31655:122:0;;;16066:21:1;16123:2;16103:18;;;16096:30;16162:34;16142:18;;;16135:62;-1:-1:-1;;;16213:18:1;;;16206:39;16262:19;;31655:122:0;15882:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;10757:2:1;31788:65:0;;;10739:21:1;10796:2;10776:18;;;10769:30;10835:34;10815:18;;;10808:62;-1:-1:-1;;;10886:18:1;;;10879:34;10930:19;;31788:65:0;10555:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;41182:589;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;14598:2:1;30295:61:0;;;14580:21:1;;;14617:18;;;14610:30;14676:34;14656:18;;;14649:62;14728:18;;30295:61:0;14396:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;10050:2:1;30367:58:0;;;10032:21:1;10089:2;10069:18;;;10062:30;10128;10108:18;;;10101:58;10176:18;;30367:58:0;9848:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223: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;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;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;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:1033::-;2836:6;2844;2897:2;2885:9;2876:7;2872:23;2868:32;2865:52;;;2913:1;2910;2903:12;2865:52;2953:9;2940:23;2982:18;3023:2;3015:6;3012:14;3009:34;;;3039:1;3036;3029:12;3009:34;3077:6;3066:9;3062:22;3052:32;;3122:7;3115:4;3111:2;3107:13;3103:27;3093:55;;3144:1;3141;3134:12;3093:55;3180:2;3167:16;3202:4;3225:2;3221;3218:10;3215:36;;;3231:18;;:::i;:::-;3277:2;3274:1;3270:10;3260:20;;3300:28;3324:2;3320;3316:11;3300:28;:::i;:::-;3362:15;;;3393:12;;;;3425:11;;;3455;;;3451:20;;3448:33;-1:-1:-1;3445:53:1;;;3494:1;3491;3484:12;3445:53;3516:1;3507:10;;3526:169;3540:2;3537:1;3534:9;3526:169;;;3597:23;3616:3;3597:23;:::i;:::-;3585:36;;3558:1;3551:9;;;;;3641:12;;;;3673;;3526:169;;;-1:-1:-1;3714:5:1;-1:-1:-1;3738:35:1;;-1:-1:-1;3754:18:1;;;3738:35;:::i;:::-;3728:45;;;;;;2746:1033;;;;;:::o;3784:245::-;3842:6;3895:2;3883:9;3874:7;3870:23;3866:32;3863:52;;;3911:1;3908;3901:12;3863:52;3950:9;3937:23;3969:30;3993:5;3969:30;:::i;4034:249::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4204:9;4198:16;4223:30;4247:5;4223:30;:::i;4288:450::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4466:9;4453:23;4499:18;4491:6;4488:30;4485:50;;;4531:1;4528;4521:12;4485:50;4554:22;;4607:4;4599:13;;4595:27;-1:-1:-1;4585:55:1;;4636:1;4633;4626:12;4585:55;4659:73;4724:7;4719:2;4706:16;4701:2;4697;4693:11;4659:73;:::i;4743:180::-;4802:6;4855:2;4843:9;4834:7;4830:23;4826:32;4823:52;;;4871:1;4868;4861:12;4823:52;-1:-1:-1;4894:23:1;;4743:180;-1:-1:-1;4743:180:1:o;4928:248::-;4996:6;5004;5057:2;5045:9;5036:7;5032:23;5028:32;5025:52;;;5073:1;5070;5063:12;5025:52;-1:-1:-1;;5096:23:1;;;5166:2;5151:18;;;5138:32;;-1:-1:-1;4928:248:1:o;5181:316::-;5258:6;5266;5274;5327:2;5315:9;5306:7;5302:23;5298:32;5295:52;;;5343:1;5340;5333:12;5295:52;-1:-1:-1;;5366:23:1;;;5436:2;5421:18;;5408:32;;-1:-1:-1;5487:2:1;5472:18;;;5459:32;;5181:316;-1:-1:-1;5181:316:1:o;5502:257::-;5543:3;5581:5;5575:12;5608:6;5603:3;5596:19;5624:63;5680:6;5673:4;5668:3;5664:14;5657:4;5650:5;5646:16;5624:63;:::i;:::-;5741:2;5720:15;-1:-1:-1;;5716:29:1;5707:39;;;;5748:4;5703:50;;5502:257;-1:-1:-1;;5502:257:1:o;5764:185::-;5806:3;5844:5;5838:12;5859:52;5904:6;5899:3;5892:4;5885:5;5881:16;5859:52;:::i;:::-;5927:16;;;;;5764:185;-1:-1:-1;;5764:185:1:o;5954:1174::-;6130:3;6159:1;6192:6;6186:13;6222:3;6244:1;6272:9;6268:2;6264:18;6254:28;;6332:2;6321:9;6317:18;6354;6344:61;;6398:4;6390:6;6386:17;6376:27;;6344:61;6424:2;6472;6464:6;6461:14;6441:18;6438:38;6435:165;;;-1:-1:-1;;;6499:33:1;;6555:4;6552:1;6545:15;6585:4;6506:3;6573:17;6435:165;6616:18;6643:104;;;;6761:1;6756:320;;;;6609:467;;6643:104;-1:-1:-1;;6676:24:1;;6664:37;;6721:16;;;;-1:-1:-1;6643:104:1;;6756:320;19689:1;19682:14;;;19726:4;19713:18;;6851:1;6865:165;6879:6;6876:1;6873:13;6865:165;;;6957:14;;6944:11;;;6937:35;7000:16;;;;6894:10;;6865:165;;;6869:3;;7059:6;7054:3;7050:16;7043:23;;6609:467;;;;;;;7092:30;7118:3;7110:6;7092:30;:::i;:::-;7085:37;5954:1174;-1:-1:-1;;;;;5954:1174:1:o;7341:488::-;-1:-1:-1;;;;;7610:15:1;;;7592:34;;7662:15;;7657:2;7642:18;;7635:43;7709:2;7694:18;;7687:34;;;7757:3;7752:2;7737:18;;7730:31;;;7535:4;;7778:45;;7803:19;;7795:6;7778:45;:::i;:::-;7770:53;7341:488;-1:-1:-1;;;;;;7341:488:1:o;8026:219::-;8175:2;8164:9;8157:21;8138:4;8195:44;8235:2;8224:9;8220:18;8212:6;8195:44;:::i;9022:414::-;9224:2;9206:21;;;9263:2;9243:18;;;9236:30;9302:34;9297:2;9282:18;;9275:62;-1:-1:-1;;;9368:2:1;9353:18;;9346:48;9426:3;9411:19;;9022:414::o;15521:356::-;15723:2;15705:21;;;15742:18;;;15735:30;15801:34;15796:2;15781:18;;15774:62;15868:2;15853:18;;15521:356::o;17097:413::-;17299:2;17281:21;;;17338:2;17318:18;;;17311:30;17377:34;17372:2;17357:18;;17350:62;-1:-1:-1;;;17443:2:1;17428:18;;17421:47;17500:3;17485:19;;17097:413::o;19336:275::-;19407:2;19401:9;19472:2;19453:13;;-1:-1:-1;;19449:27:1;19437:40;;19507:18;19492:34;;19528:22;;;19489:62;19486:88;;;19554:18;;:::i;:::-;19590:2;19583:22;19336:275;;-1:-1:-1;19336:275:1:o;19742:128::-;19782:3;19813:1;19809:6;19806:1;19803:13;19800:39;;;19819:18;;:::i;:::-;-1:-1:-1;19855:9:1;;19742:128::o;19875:120::-;19915:1;19941;19931:35;;19946:18;;:::i;:::-;-1:-1:-1;19980:9:1;;19875:120::o;20000:168::-;20040:7;20106:1;20102;20098:6;20094:14;20091:1;20088:21;20083:1;20076:9;20069:17;20065:45;20062:71;;;20113:18;;:::i;:::-;-1:-1:-1;20153:9:1;;20000:168::o;20173:125::-;20213:4;20241:1;20238;20235:8;20232:34;;;20246:18;;:::i;:::-;-1:-1:-1;20283:9:1;;20173:125::o;20303:258::-;20375:1;20385:113;20399:6;20396:1;20393:13;20385:113;;;20475:11;;;20469:18;20456:11;;;20449:39;20421:2;20414:10;20385:113;;;20516:6;20513:1;20510:13;20507:48;;;-1:-1:-1;;20551:1:1;20533:16;;20526:27;20303:258::o;20566:380::-;20645:1;20641:12;;;;20688;;;20709:61;;20763:4;20755:6;20751:17;20741:27;;20709:61;20816:2;20808:6;20805:14;20785:18;20782:38;20779:161;;;20862:10;20857:3;20853:20;20850:1;20843:31;20897:4;20894:1;20887:15;20925:4;20922:1;20915:15;20779:161;;20566:380;;;:::o;20951:135::-;20990:3;-1:-1:-1;;21011:17:1;;21008:43;;;21031:18;;:::i;:::-;-1:-1:-1;21078:1:1;21067:13;;20951:135::o;21091:112::-;21123:1;21149;21139:35;;21154:18;;:::i;:::-;-1:-1:-1;21188:9:1;;21091:112::o;21208:127::-;21269:10;21264:3;21260:20;21257:1;21250:31;21300:4;21297:1;21290:15;21324:4;21321:1;21314:15;21340:127;21401:10;21396:3;21392:20;21389:1;21382:31;21432:4;21429:1;21422:15;21456:4;21453:1;21446:15;21472:127;21533:10;21528:3;21524:20;21521:1;21514:31;21564:4;21561:1;21554:15;21588:4;21585:1;21578:15;21604:127;21665:10;21660:3;21656:20;21653:1;21646:31;21696:4;21693:1;21686:15;21720:4;21717:1;21710:15;21736:127;21797:10;21792:3;21788:20;21785:1;21778:31;21828:4;21825:1;21818:15;21852:4;21849:1;21842:15;21868:131;-1:-1:-1;;;;;;21942:32:1;;21932:43;;21922:71;;21989:1;21986;21979:12;21922:71;21868:131;:::o
Swarm Source
ipfs://6d6792032b6467b58d50222f029460a71ba2275416910141ecefe2be47720078
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.