ERC-721
NFT
Overview
Max Total Supply
3,500 WYVERN
Holders
1,840
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WYVERNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COSMICWYVERNS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-11 */ /** *Submitted for verification at Etherscan.io on 2021-11-11 */ /** *Submitted for verification at Etherscan.io on 2021-11-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional 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); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = 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(), "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. */ /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Implementation of 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; string public _baseURI; /** * @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 base = baseURI(); return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function baseURI() internal view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } 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(); } } pragma solidity ^0.8.0; contract COSMICWYVERNS is ERC721Enumerable, Ownable { using SafeMath for uint256; uint public maxSupply =3500; uint private whiteListCounter =1; uint256 public price = 0.05 ether; uint public reserve = 50; bool public isPaused = true; bool public isPreSalePaused=true; uint256 private tokenId=1; struct SpecificAddresses{ address userAddress; uint counter; } mapping(address => SpecificAddresses) public _whiteList; mapping(address=>bool) public _addressExist; constructor(string memory baseURI) ERC721("Cosmic Wyverns", "WYVERN") { setBaseURI(baseURI); } function setBaseURI(string memory baseURI) public onlyOwner { _baseURI = baseURI; } function setPrice(uint256 _newPrice) public onlyOwner() { price = _newPrice; } function setMaxSupply(uint256 _quantity) public onlyOwner { maxSupply=_quantity; } function flipPauseStatus() public onlyOwner { isPaused = !isPaused; } function flipPreSalePauseStatus() public onlyOwner { isPreSalePaused = !isPreSalePaused; } function getPrice(uint256 _quantity) public view returns (uint256) { return _quantity*price ; } function reserveTokens(uint quantity) public onlyOwner { require(quantity <= reserve, "The quantity exceeds the reserve."); reserve -= quantity; for (uint i = 0; i < quantity; i++) { _safeMint(msg.sender, totalsupply()); tokenId++; } } function addWhiteListBundle(address[] memory whiteAddress)public onlyOwner { for (uint i = 0; i < whiteAddress.length; i++) { require(!_addressExist[whiteAddress[i]],"Address already Exist"); _whiteList[whiteAddress[i]]=SpecificAddresses({ userAddress :whiteAddress[i], counter:whiteListCounter }); _addressExist[whiteAddress[i]]=true; } } function preSalemint() public payable{ require(isPreSalePaused == false, "Sale is not active at the moment"); require(totalSupply()<maxSupply,"Quantity is greater than remaining Supply"); require(price== msg.value, "Sent ether value is incorrect"); require(_addressExist[msg.sender]==true,"Address not Found in whitelist"); SpecificAddresses storage myaddress = _whiteList[msg.sender]; require(myaddress.counter==1,"The Amount Selected is Greater than the Remaining Amount of the Token at this Address"); _safeMint(msg.sender, totalsupply()); tokenId++; myaddress.counter-=1; } function mint() public payable { require(isPaused == false, "Sale is not active at the moment"); require(totalSupply()<=maxSupply,"Quantity must be lesser then MaxSupply"); require(price== msg.value, "Sent ether value is incorrect"); _safeMint(msg.sender, totalsupply()); tokenId++; } function tokensOfOwner(address _owner) public view returns (uint256[] memory) { uint256 count = balanceOf(_owner); uint256[] memory result = new uint256[](count); for (uint256 index = 0; index < count; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } function withdraw() public onlyOwner { uint amount = address(this).balance; (bool success, ) = payable(owner()).call { value: amount }(""); require(success, "Failed to send Ether"); } function totalsupply() private view returns (uint) { return tokenId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteList","outputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"counter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteAddress","type":"address[]"}],"name":"addWhiteListBundle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSalePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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
6080604052610dac600c556001600d81905566b1a2bc2ec50000600e556032600f556010805461ffff19166101011790556011553480156200004057600080fd5b5060405162002ccf38038062002ccf833981016040819052620000639162000264565b604080518082018252600e81526d436f736d69632057797665726e7360901b6020808301918252835180850190945260068452652bacab22a92760d11b908401528151919291620000b791600091620001be565b508051620000cd906001906020840190620001be565b5050506000620000e26200014260201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200013b8162000146565b5062000393565b3390565b600b546001600160a01b03163314620001a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ba906006906020840190620001be565b5050565b828054620001cc9062000340565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b600060208083850312156200027857600080fd5b82516001600160401b03808211156200029057600080fd5b818501915085601f830112620002a557600080fd5b815181811115620002ba57620002ba6200037d565b604051601f8201601f19908116603f01168101908382118183101715620002e557620002e56200037d565b816040528281528886848701011115620002fe57600080fd5b600093505b8284101562000322578484018601518185018701529285019262000303565b82841115620003345760008684830101525b98975050505050505050565b600181811c908216806200035557607f821691505b602082108114156200037757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61292c80620003a36000396000f3fe6080604052600436106102255760003560e01c80638462151c11610123578063c87b56dd116100ab578063e75722301161006f578063e757223014610653578063e985e9c514610673578063f2fde38b146106bc578063f83fe734146106dc578063fa62884c146106fc57600080fd5b8063c87b56dd146105df578063cd3293de146105ff578063d031370b14610615578063d5abeb0114610635578063e04449ce1461064b57600080fd5b8063a035b1fe116100f2578063a035b1fe1461053f578063a22cb46514610555578063b187bd2614610575578063b88d4fde1461058f578063c2f03776146105af57600080fd5b80638462151c146104bf5780638da5cb5b146104ec57806391b7f5ed1461050a57806395d89b411461052a57600080fd5b80632f745c59116101b15780636352211e116101755780636352211e1461043557806367f8ccb8146104555780636f8b44b01461046a57806370a082311461048a578063743976a0146104aa57600080fd5b80632f745c59146103a05780633ccfd60b146103c057806342842e0e146103d55780634f6ccce7146103f557806355f804b31461041557600080fd5b8063095ea7b3116101f8578063095ea7b3146103185780631249c58b1461033a57806318160ddd1461034257806323b872dd146103615780632e280e321461038157600080fd5b806301ffc9a71461022a57806305d60ffb1461025f57806306fdde03146102be578063081812fc146102e0575b600080fd5b34801561023657600080fd5b5061024a6102453660046124e6565b610711565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061029f61027a3660046122c6565b601260205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610256565b3480156102ca57600080fd5b506102d361073c565b604051610256919061265e565b3480156102ec57600080fd5b506103006102fb366004612569565b6107ce565b6040516001600160a01b039091168152602001610256565b34801561032457600080fd5b50610338610333366004612408565b610868565b005b61033861097e565b34801561034e57600080fd5b506009545b604051908152602001610256565b34801561036d57600080fd5b5061033861037c366004612314565b610aae565b34801561038d57600080fd5b5060105461024a90610100900460ff1681565b3480156103ac57600080fd5b506103536103bb366004612408565b610adf565b3480156103cc57600080fd5b50610338610b75565b3480156103e157600080fd5b506103386103f0366004612314565b610c4f565b34801561040157600080fd5b50610353610410366004612569565b610c6a565b34801561042157600080fd5b50610338610430366004612520565b610cfd565b34801561044157600080fd5b50610300610450366004612569565b610d3a565b34801561046157600080fd5b50610338610db1565b34801561047657600080fd5b50610338610485366004612569565b610df8565b34801561049657600080fd5b506103536104a53660046122c6565b610e27565b3480156104b657600080fd5b506102d3610eae565b3480156104cb57600080fd5b506104df6104da3660046122c6565b610f3c565b604051610256919061261a565b3480156104f857600080fd5b50600b546001600160a01b0316610300565b34801561051657600080fd5b50610338610525366004612569565b610fde565b34801561053657600080fd5b506102d361100d565b34801561054b57600080fd5b50610353600e5481565b34801561056157600080fd5b506103386105703660046123cc565b61101c565b34801561058157600080fd5b5060105461024a9060ff1681565b34801561059b57600080fd5b506103386105aa366004612350565b6110e1565b3480156105bb57600080fd5b5061024a6105ca3660046122c6565b60136020526000908152604090205460ff1681565b3480156105eb57600080fd5b506102d36105fa366004612569565b611119565b34801561060b57600080fd5b50610353600f5481565b34801561062157600080fd5b50610338610630366004612569565b6111f4565b34801561064157600080fd5b50610353600c5481565b6103386112d2565b34801561065f57600080fd5b5061035361066e366004612569565b611529565b34801561067f57600080fd5b5061024a61068e3660046122e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c857600080fd5b506103386106d73660046122c6565b611539565b3480156106e857600080fd5b506103386106f7366004612432565b6115d4565b34801561070857600080fd5b50610338611799565b60006001600160e01b0319821663780e9d6360e01b14806107365750610736826117d7565b92915050565b60606000805461074b90612808565b80601f016020809104026020016040519081016040528092919081815260200182805461077790612808565b80156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087382610d3a565b9050806001600160a01b0316836001600160a01b031614156108e15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610843565b336001600160a01b03821614806108fd57506108fd813361068e565b61096f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610843565b6109798383611827565b505050565b60105460ff16156109d15760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610843565b600c546009541115610a345760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b6064820152608401610843565b34600e5414610a855760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610843565b610a9733610a9260115490565b611895565b60118054906000610aa783612843565b9190505550565b610ab833826118af565b610ad45760405162461bcd60e51b8152600401610843906126f8565b6109798383836119a6565b6000610aea83610e27565b8210610b4c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610843565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610b9f5760405162461bcd60e51b8152600401610843906126c3565b476000610bb4600b546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610bfe576040519150601f19603f3d011682016040523d82523d6000602084013e610c03565b606091505b5050905080610c4b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610843565b5050565b610979838383604051806020016040528060008152506110e1565b6000610c7560095490565b8210610cd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610843565b60098281548110610ceb57610ceb6128b4565b90600052602060002001549050919050565b600b546001600160a01b03163314610d275760405162461bcd60e51b8152600401610843906126c3565b8051610c4b9060069060208401906121b9565b6000818152600260205260408120546001600160a01b0316806107365760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610843565b600b546001600160a01b03163314610ddb5760405162461bcd60e51b8152600401610843906126c3565b6010805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314610e225760405162461bcd60e51b8152600401610843906126c3565b600c55565b60006001600160a01b038216610e925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610843565b506001600160a01b031660009081526003602052604090205490565b60068054610ebb90612808565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee790612808565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b505050505081565b60606000610f4983610e27565b905060008167ffffffffffffffff811115610f6657610f666128ca565b604051908082528060200260200182016040528015610f8f578160200160208202803683370190505b50905060005b82811015610fd657610fa78582610adf565b828281518110610fb957610fb96128b4565b602090810291909101015280610fce81612843565b915050610f95565b509392505050565b600b546001600160a01b031633146110085760405162461bcd60e51b8152600401610843906126c3565b600e55565b60606001805461074b90612808565b6001600160a01b0382163314156110755760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610843565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110eb33836118af565b6111075760405162461bcd60e51b8152600401610843906126f8565b61111384848484611b51565b50505050565b6000818152600260205260409020546060906001600160a01b03166111985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610843565b60006111a2611b84565b905060008151116111c257604051806020016040528060008152506111ed565b806111cc84611b93565b6040516020016111dd9291906125ae565b6040516020818303038152906040525b9392505050565b600b546001600160a01b0316331461121e5760405162461bcd60e51b8152600401610843906126c3565b600f5481111561127a5760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b6064820152608401610843565b80600f600082825461128c91906127c5565b90915550600090505b81811015610c4b576112aa33610a9260115490565b601180549060006112ba83612843565b919050555080806112ca90612843565b915050611295565b601054610100900460ff161561132a5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610843565b600c546009541061138f5760405162461bcd60e51b815260206004820152602960248201527f5175616e746974792069732067726561746572207468616e2072656d61696e696044820152686e6720537570706c7960b81b6064820152608401610843565b34600e54146113e05760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610843565b3360009081526013602052604090205460ff1615156001146114445760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206e6f7420466f756e6420696e2077686974656c69737400006044820152606401610843565b336000908152601260205260409020600180820154146114ea5760405162461bcd60e51b815260206004820152605560248201527f54686520416d6f756e742053656c65637465642069732047726561746572207460448201527f68616e207468652052656d61696e696e6720416d6f756e74206f662074686520606482015274546f6b656e2061742074686973204164647265737360581b608482015260a401610843565b6114f733610a9260115490565b6011805490600061150783612843565b9190505550600181600101600082825461152191906127c5565b909155505050565b6000600e548261073691906127a6565b600b546001600160a01b031633146115635760405162461bcd60e51b8152600401610843906126c3565b6001600160a01b0381166115c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610843565b6115d181611c91565b50565b600b546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610843906126c3565b60005b8151811015610c4b5760136000838381518110611620576116206128b4565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff161561168c5760405162461bcd60e51b81526020600482015260156024820152741059191c995cdcc8185b1c9958591e48115e1a5cdd605a1b6044820152606401610843565b60405180604001604052808383815181106116a9576116a96128b4565b60200260200101516001600160a01b03168152602001600d54815250601260008484815181106116db576116db6128b4565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010155905050600160136000848481518110611755576117556128b4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061179181612843565b915050611601565b600b546001600160a01b031633146117c35760405162461bcd60e51b8152600401610843906126c3565b6010805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061180857506001600160e01b03198216635b5e139f60e01b145b8061073657506301ffc9a760e01b6001600160e01b0319831614610736565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185c82610d3a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c4b828260405180602001604052806000815250611ce3565b6000818152600260205260408120546001600160a01b03166119285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610843565b600061193383610d3a565b9050806001600160a01b0316846001600160a01b0316148061196e5750836001600160a01b0316611963846107ce565b6001600160a01b0316145b8061199e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119b982610d3a565b6001600160a01b031614611a215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610843565b6001600160a01b038216611a835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610843565b611a8e838383611d16565b611a99600082611827565b6001600160a01b0383166000908152600360205260408120805460019290611ac29084906127c5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611af090849061277a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611b5c8484846119a6565b611b6884848484611dce565b6111135760405162461bcd60e51b815260040161084390612671565b60606006805461074b90612808565b606081611bb75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be15780611bcb81612843565b9150611bda9050600a83612792565b9150611bbb565b60008167ffffffffffffffff811115611bfc57611bfc6128ca565b6040519080825280601f01601f191660200182016040528015611c26576020820181803683370190505b5090505b841561199e57611c3b6001836127c5565b9150611c48600a8661285e565b611c5390603061277a565b60f81b818381518110611c6857611c686128b4565b60200101906001600160f81b031916908160001a905350611c8a600a86612792565b9450611c2a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ced8383611edb565b611cfa6000848484611dce565b6109795760405162461bcd60e51b815260040161084390612671565b6001600160a01b038316611d7157611d6c81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611d94565b816001600160a01b0316836001600160a01b031614611d9457611d948382612029565b6001600160a01b038216611dab57610979816120c6565b826001600160a01b0316826001600160a01b031614610979576109798282612175565b60006001600160a01b0384163b15611ed057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e129033908990889088906004016125dd565b602060405180830381600087803b158015611e2c57600080fd5b505af1925050508015611e5c575060408051601f3d908101601f19168201909252611e5991810190612503565b60015b611eb6573d808015611e8a576040519150601f19603f3d011682016040523d82523d6000602084013e611e8f565b606091505b508051611eae5760405162461bcd60e51b815260040161084390612671565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061199e565b506001949350505050565b6001600160a01b038216611f315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610843565b6000818152600260205260409020546001600160a01b031615611f965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610843565b611fa260008383611d16565b6001600160a01b0382166000908152600360205260408120805460019290611fcb90849061277a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161203684610e27565b61204091906127c5565b600083815260086020526040902054909150808214612093576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120d8906001906127c5565b6000838152600a602052604081205460098054939450909284908110612100576121006128b4565b906000526020600020015490508060098381548110612121576121216128b4565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806121595761215961289e565b6001900381819060005260206000200160009055905550505050565b600061218083610e27565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546121c590612808565b90600052602060002090601f0160209004810192826121e7576000855561222d565b82601f1061220057805160ff191683800117855561222d565b8280016001018555821561222d579182015b8281111561222d578251825591602001919060010190612212565b5061223992915061223d565b5090565b5b80821115612239576000815560010161223e565b600067ffffffffffffffff83111561226c5761226c6128ca565b61227f601f8401601f1916602001612749565b905082815283838301111561229357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122c157600080fd5b919050565b6000602082840312156122d857600080fd5b6111ed826122aa565b600080604083850312156122f457600080fd5b6122fd836122aa565b915061230b602084016122aa565b90509250929050565b60008060006060848603121561232957600080fd5b612332846122aa565b9250612340602085016122aa565b9150604084013590509250925092565b6000806000806080858703121561236657600080fd5b61236f856122aa565b935061237d602086016122aa565b925060408501359150606085013567ffffffffffffffff8111156123a057600080fd5b8501601f810187136123b157600080fd5b6123c087823560208401612252565b91505092959194509250565b600080604083850312156123df57600080fd5b6123e8836122aa565b9150602083013580151581146123fd57600080fd5b809150509250929050565b6000806040838503121561241b57600080fd5b612424836122aa565b946020939093013593505050565b6000602080838503121561244557600080fd5b823567ffffffffffffffff8082111561245d57600080fd5b818501915085601f83011261247157600080fd5b813581811115612483576124836128ca565b8060051b9150612494848301612749565b8181528481019084860184860187018a10156124af57600080fd5b600095505b838610156124d9576124c5816122aa565b8352600195909501949186019186016124b4565b5098975050505050505050565b6000602082840312156124f857600080fd5b81356111ed816128e0565b60006020828403121561251557600080fd5b81516111ed816128e0565b60006020828403121561253257600080fd5b813567ffffffffffffffff81111561254957600080fd5b8201601f8101841361255a57600080fd5b61199e84823560208401612252565b60006020828403121561257b57600080fd5b5035919050565b6000815180845261259a8160208601602086016127dc565b601f01601f19169290920160200192915050565b600083516125c08184602088016127dc565b8351908301906125d48183602088016127dc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261090830184612582565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561265257835183529284019291840191600101612636565b50909695505050505050565b6020815260006111ed6020830184612582565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612772576127726128ca565b604052919050565b6000821982111561278d5761278d612872565b500190565b6000826127a1576127a1612888565b500490565b60008160001904831182151516156127c0576127c0612872565b500290565b6000828210156127d7576127d7612872565b500390565b60005b838110156127f75781810151838201526020016127df565b838111156111135750506000910152565b600181811c9082168061281c57607f821691505b6020821081141561283d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285757612857612872565b5060010190565b60008261286d5761286d612888565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d157600080fdfea26469706673582212202a1a2de640d1a1e19ebab233896f2267381173ad458880a7217d1e5dc07c37cb64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636f736d69632d6261636b656e642e6865726f6b756170702e636f6d2f6e66742f6d657461646174612f0000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c80638462151c11610123578063c87b56dd116100ab578063e75722301161006f578063e757223014610653578063e985e9c514610673578063f2fde38b146106bc578063f83fe734146106dc578063fa62884c146106fc57600080fd5b8063c87b56dd146105df578063cd3293de146105ff578063d031370b14610615578063d5abeb0114610635578063e04449ce1461064b57600080fd5b8063a035b1fe116100f2578063a035b1fe1461053f578063a22cb46514610555578063b187bd2614610575578063b88d4fde1461058f578063c2f03776146105af57600080fd5b80638462151c146104bf5780638da5cb5b146104ec57806391b7f5ed1461050a57806395d89b411461052a57600080fd5b80632f745c59116101b15780636352211e116101755780636352211e1461043557806367f8ccb8146104555780636f8b44b01461046a57806370a082311461048a578063743976a0146104aa57600080fd5b80632f745c59146103a05780633ccfd60b146103c057806342842e0e146103d55780634f6ccce7146103f557806355f804b31461041557600080fd5b8063095ea7b3116101f8578063095ea7b3146103185780631249c58b1461033a57806318160ddd1461034257806323b872dd146103615780632e280e321461038157600080fd5b806301ffc9a71461022a57806305d60ffb1461025f57806306fdde03146102be578063081812fc146102e0575b600080fd5b34801561023657600080fd5b5061024a6102453660046124e6565b610711565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061029f61027a3660046122c6565b601260205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610256565b3480156102ca57600080fd5b506102d361073c565b604051610256919061265e565b3480156102ec57600080fd5b506103006102fb366004612569565b6107ce565b6040516001600160a01b039091168152602001610256565b34801561032457600080fd5b50610338610333366004612408565b610868565b005b61033861097e565b34801561034e57600080fd5b506009545b604051908152602001610256565b34801561036d57600080fd5b5061033861037c366004612314565b610aae565b34801561038d57600080fd5b5060105461024a90610100900460ff1681565b3480156103ac57600080fd5b506103536103bb366004612408565b610adf565b3480156103cc57600080fd5b50610338610b75565b3480156103e157600080fd5b506103386103f0366004612314565b610c4f565b34801561040157600080fd5b50610353610410366004612569565b610c6a565b34801561042157600080fd5b50610338610430366004612520565b610cfd565b34801561044157600080fd5b50610300610450366004612569565b610d3a565b34801561046157600080fd5b50610338610db1565b34801561047657600080fd5b50610338610485366004612569565b610df8565b34801561049657600080fd5b506103536104a53660046122c6565b610e27565b3480156104b657600080fd5b506102d3610eae565b3480156104cb57600080fd5b506104df6104da3660046122c6565b610f3c565b604051610256919061261a565b3480156104f857600080fd5b50600b546001600160a01b0316610300565b34801561051657600080fd5b50610338610525366004612569565b610fde565b34801561053657600080fd5b506102d361100d565b34801561054b57600080fd5b50610353600e5481565b34801561056157600080fd5b506103386105703660046123cc565b61101c565b34801561058157600080fd5b5060105461024a9060ff1681565b34801561059b57600080fd5b506103386105aa366004612350565b6110e1565b3480156105bb57600080fd5b5061024a6105ca3660046122c6565b60136020526000908152604090205460ff1681565b3480156105eb57600080fd5b506102d36105fa366004612569565b611119565b34801561060b57600080fd5b50610353600f5481565b34801561062157600080fd5b50610338610630366004612569565b6111f4565b34801561064157600080fd5b50610353600c5481565b6103386112d2565b34801561065f57600080fd5b5061035361066e366004612569565b611529565b34801561067f57600080fd5b5061024a61068e3660046122e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c857600080fd5b506103386106d73660046122c6565b611539565b3480156106e857600080fd5b506103386106f7366004612432565b6115d4565b34801561070857600080fd5b50610338611799565b60006001600160e01b0319821663780e9d6360e01b14806107365750610736826117d7565b92915050565b60606000805461074b90612808565b80601f016020809104026020016040519081016040528092919081815260200182805461077790612808565b80156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087382610d3a565b9050806001600160a01b0316836001600160a01b031614156108e15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610843565b336001600160a01b03821614806108fd57506108fd813361068e565b61096f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610843565b6109798383611827565b505050565b60105460ff16156109d15760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610843565b600c546009541115610a345760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b6064820152608401610843565b34600e5414610a855760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610843565b610a9733610a9260115490565b611895565b60118054906000610aa783612843565b9190505550565b610ab833826118af565b610ad45760405162461bcd60e51b8152600401610843906126f8565b6109798383836119a6565b6000610aea83610e27565b8210610b4c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610843565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610b9f5760405162461bcd60e51b8152600401610843906126c3565b476000610bb4600b546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610bfe576040519150601f19603f3d011682016040523d82523d6000602084013e610c03565b606091505b5050905080610c4b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610843565b5050565b610979838383604051806020016040528060008152506110e1565b6000610c7560095490565b8210610cd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610843565b60098281548110610ceb57610ceb6128b4565b90600052602060002001549050919050565b600b546001600160a01b03163314610d275760405162461bcd60e51b8152600401610843906126c3565b8051610c4b9060069060208401906121b9565b6000818152600260205260408120546001600160a01b0316806107365760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610843565b600b546001600160a01b03163314610ddb5760405162461bcd60e51b8152600401610843906126c3565b6010805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314610e225760405162461bcd60e51b8152600401610843906126c3565b600c55565b60006001600160a01b038216610e925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610843565b506001600160a01b031660009081526003602052604090205490565b60068054610ebb90612808565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee790612808565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b505050505081565b60606000610f4983610e27565b905060008167ffffffffffffffff811115610f6657610f666128ca565b604051908082528060200260200182016040528015610f8f578160200160208202803683370190505b50905060005b82811015610fd657610fa78582610adf565b828281518110610fb957610fb96128b4565b602090810291909101015280610fce81612843565b915050610f95565b509392505050565b600b546001600160a01b031633146110085760405162461bcd60e51b8152600401610843906126c3565b600e55565b60606001805461074b90612808565b6001600160a01b0382163314156110755760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610843565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110eb33836118af565b6111075760405162461bcd60e51b8152600401610843906126f8565b61111384848484611b51565b50505050565b6000818152600260205260409020546060906001600160a01b03166111985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610843565b60006111a2611b84565b905060008151116111c257604051806020016040528060008152506111ed565b806111cc84611b93565b6040516020016111dd9291906125ae565b6040516020818303038152906040525b9392505050565b600b546001600160a01b0316331461121e5760405162461bcd60e51b8152600401610843906126c3565b600f5481111561127a5760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b6064820152608401610843565b80600f600082825461128c91906127c5565b90915550600090505b81811015610c4b576112aa33610a9260115490565b601180549060006112ba83612843565b919050555080806112ca90612843565b915050611295565b601054610100900460ff161561132a5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610843565b600c546009541061138f5760405162461bcd60e51b815260206004820152602960248201527f5175616e746974792069732067726561746572207468616e2072656d61696e696044820152686e6720537570706c7960b81b6064820152608401610843565b34600e54146113e05760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610843565b3360009081526013602052604090205460ff1615156001146114445760405162461bcd60e51b815260206004820152601e60248201527f41646472657373206e6f7420466f756e6420696e2077686974656c69737400006044820152606401610843565b336000908152601260205260409020600180820154146114ea5760405162461bcd60e51b815260206004820152605560248201527f54686520416d6f756e742053656c65637465642069732047726561746572207460448201527f68616e207468652052656d61696e696e6720416d6f756e74206f662074686520606482015274546f6b656e2061742074686973204164647265737360581b608482015260a401610843565b6114f733610a9260115490565b6011805490600061150783612843565b9190505550600181600101600082825461152191906127c5565b909155505050565b6000600e548261073691906127a6565b600b546001600160a01b031633146115635760405162461bcd60e51b8152600401610843906126c3565b6001600160a01b0381166115c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610843565b6115d181611c91565b50565b600b546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610843906126c3565b60005b8151811015610c4b5760136000838381518110611620576116206128b4565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff161561168c5760405162461bcd60e51b81526020600482015260156024820152741059191c995cdcc8185b1c9958591e48115e1a5cdd605a1b6044820152606401610843565b60405180604001604052808383815181106116a9576116a96128b4565b60200260200101516001600160a01b03168152602001600d54815250601260008484815181106116db576116db6128b4565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010155905050600160136000848481518110611755576117556128b4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061179181612843565b915050611601565b600b546001600160a01b031633146117c35760405162461bcd60e51b8152600401610843906126c3565b6010805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061180857506001600160e01b03198216635b5e139f60e01b145b8061073657506301ffc9a760e01b6001600160e01b0319831614610736565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185c82610d3a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c4b828260405180602001604052806000815250611ce3565b6000818152600260205260408120546001600160a01b03166119285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610843565b600061193383610d3a565b9050806001600160a01b0316846001600160a01b0316148061196e5750836001600160a01b0316611963846107ce565b6001600160a01b0316145b8061199e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119b982610d3a565b6001600160a01b031614611a215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610843565b6001600160a01b038216611a835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610843565b611a8e838383611d16565b611a99600082611827565b6001600160a01b0383166000908152600360205260408120805460019290611ac29084906127c5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611af090849061277a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611b5c8484846119a6565b611b6884848484611dce565b6111135760405162461bcd60e51b815260040161084390612671565b60606006805461074b90612808565b606081611bb75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be15780611bcb81612843565b9150611bda9050600a83612792565b9150611bbb565b60008167ffffffffffffffff811115611bfc57611bfc6128ca565b6040519080825280601f01601f191660200182016040528015611c26576020820181803683370190505b5090505b841561199e57611c3b6001836127c5565b9150611c48600a8661285e565b611c5390603061277a565b60f81b818381518110611c6857611c686128b4565b60200101906001600160f81b031916908160001a905350611c8a600a86612792565b9450611c2a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ced8383611edb565b611cfa6000848484611dce565b6109795760405162461bcd60e51b815260040161084390612671565b6001600160a01b038316611d7157611d6c81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611d94565b816001600160a01b0316836001600160a01b031614611d9457611d948382612029565b6001600160a01b038216611dab57610979816120c6565b826001600160a01b0316826001600160a01b031614610979576109798282612175565b60006001600160a01b0384163b15611ed057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e129033908990889088906004016125dd565b602060405180830381600087803b158015611e2c57600080fd5b505af1925050508015611e5c575060408051601f3d908101601f19168201909252611e5991810190612503565b60015b611eb6573d808015611e8a576040519150601f19603f3d011682016040523d82523d6000602084013e611e8f565b606091505b508051611eae5760405162461bcd60e51b815260040161084390612671565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061199e565b506001949350505050565b6001600160a01b038216611f315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610843565b6000818152600260205260409020546001600160a01b031615611f965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610843565b611fa260008383611d16565b6001600160a01b0382166000908152600360205260408120805460019290611fcb90849061277a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161203684610e27565b61204091906127c5565b600083815260086020526040902054909150808214612093576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906120d8906001906127c5565b6000838152600a602052604081205460098054939450909284908110612100576121006128b4565b906000526020600020015490508060098381548110612121576121216128b4565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806121595761215961289e565b6001900381819060005260206000200160009055905550505050565b600061218083610e27565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546121c590612808565b90600052602060002090601f0160209004810192826121e7576000855561222d565b82601f1061220057805160ff191683800117855561222d565b8280016001018555821561222d579182015b8281111561222d578251825591602001919060010190612212565b5061223992915061223d565b5090565b5b80821115612239576000815560010161223e565b600067ffffffffffffffff83111561226c5761226c6128ca565b61227f601f8401601f1916602001612749565b905082815283838301111561229357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122c157600080fd5b919050565b6000602082840312156122d857600080fd5b6111ed826122aa565b600080604083850312156122f457600080fd5b6122fd836122aa565b915061230b602084016122aa565b90509250929050565b60008060006060848603121561232957600080fd5b612332846122aa565b9250612340602085016122aa565b9150604084013590509250925092565b6000806000806080858703121561236657600080fd5b61236f856122aa565b935061237d602086016122aa565b925060408501359150606085013567ffffffffffffffff8111156123a057600080fd5b8501601f810187136123b157600080fd5b6123c087823560208401612252565b91505092959194509250565b600080604083850312156123df57600080fd5b6123e8836122aa565b9150602083013580151581146123fd57600080fd5b809150509250929050565b6000806040838503121561241b57600080fd5b612424836122aa565b946020939093013593505050565b6000602080838503121561244557600080fd5b823567ffffffffffffffff8082111561245d57600080fd5b818501915085601f83011261247157600080fd5b813581811115612483576124836128ca565b8060051b9150612494848301612749565b8181528481019084860184860187018a10156124af57600080fd5b600095505b838610156124d9576124c5816122aa565b8352600195909501949186019186016124b4565b5098975050505050505050565b6000602082840312156124f857600080fd5b81356111ed816128e0565b60006020828403121561251557600080fd5b81516111ed816128e0565b60006020828403121561253257600080fd5b813567ffffffffffffffff81111561254957600080fd5b8201601f8101841361255a57600080fd5b61199e84823560208401612252565b60006020828403121561257b57600080fd5b5035919050565b6000815180845261259a8160208601602086016127dc565b601f01601f19169290920160200192915050565b600083516125c08184602088016127dc565b8351908301906125d48183602088016127dc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261090830184612582565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561265257835183529284019291840191600101612636565b50909695505050505050565b6020815260006111ed6020830184612582565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612772576127726128ca565b604052919050565b6000821982111561278d5761278d612872565b500190565b6000826127a1576127a1612888565b500490565b60008160001904831182151516156127c0576127c0612872565b500290565b6000828210156127d7576127d7612872565b500390565b60005b838110156127f75781810151838201526020016127df565b838111156111135750506000910152565b600181811c9082168061281c57607f821691505b6020821081141561283d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285757612857612872565b5060010190565b60008261286d5761286d612888565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d157600080fdfea26469706673582212202a1a2de640d1a1e19ebab233896f2267381173ad458880a7217d1e5dc07c37cb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636f736d69632d6261636b656e642e6865726f6b756170702e636f6d2f6e66742f6d657461646174612f0000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://cosmic-backend.herokuapp.com/nft/metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 68747470733a2f2f636f736d69632d6261636b656e642e6865726f6b75617070
Arg [3] : 2e636f6d2f6e66742f6d657461646174612f0000000000000000000000000000
Deployed Bytecode Sourcemap
48820:3888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42645:224;;;;;;;;;;-1:-1:-1;42645:224:0;;;;;:::i;:::-;;:::i;:::-;;;7515:14:1;;7508:22;7490:41;;7478:2;7463:18;42645:224:0;;;;;;;;49278:55;;;;;;;;;;-1:-1:-1;49278:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49278:55:0;;;;;;;;;;-1:-1:-1;;;;;6626:32:1;;;6608:51;;6690:2;6675:18;;6668:34;;;;6581:18;49278:55:0;6434:274:1;30623:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32177:221::-;;;;;;;;;;-1:-1:-1;32177:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5897:32:1;;;5879:51;;5867:2;5852:18;32177:221:0;5733:203:1;31700:411:0;;;;;;;;;;-1:-1:-1;31700:411:0;;;;;:::i;:::-;;:::i;:::-;;51630:356;;;:::i;43285:113::-;;;;;;;;;;-1:-1:-1;43373:10:0;:17;43285:113;;;18609:25:1;;;18597:2;18582:18;43285:113:0;18463:177:1;33067:339:0;;;;;;;;;;-1:-1:-1;33067:339:0;;;;;:::i;:::-;;:::i;49098:32::-;;;;;;;;;;-1:-1:-1;49098:32:0;;;;;;;;;;;42953:256;;;;;;;;;;-1:-1:-1;42953:256:0;;;;;:::i;:::-;;:::i;52351:246::-;;;;;;;;;;;;;:::i;33477:185::-;;;;;;;;;;-1:-1:-1;33477:185:0;;;;;:::i;:::-;;:::i;43475:233::-;;;;;;;;;;-1:-1:-1;43475:233:0;;;;;:::i;:::-;;:::i;49516:97::-;;;;;;;;;;-1:-1:-1;49516:97:0;;;;;:::i;:::-;;:::i;30317:239::-;;;;;;;;;;-1:-1:-1;30317:239:0;;;;;:::i;:::-;;:::i;49910:104::-;;;;;;;;;;;;;:::i;49719:96::-;;;;;;;;;;-1:-1:-1;49719:96:0;;;;;:::i;:::-;;:::i;30047:208::-;;;;;;;;;;-1:-1:-1;30047:208:0;;;;;:::i;:::-;;:::i;29345:22::-;;;;;;;;;;;;;:::i;51992:351::-;;;;;;;;;;-1:-1:-1;51992:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27210:87::-;;;;;;;;;;-1:-1:-1;27283:6:0;;-1:-1:-1;;;;;27283:6:0;27210:87;;49619:92;;;;;;;;;;-1:-1:-1;49619:92:0;;;;;:::i;:::-;;:::i;30792:104::-;;;;;;;;;;;;;:::i;48992:33::-;;;;;;;;;;;;;;;;32470:295;;;;;;;;;;-1:-1:-1;32470:295:0;;;;;:::i;:::-;;:::i;49064:27::-;;;;;;;;;;-1:-1:-1;49064:27:0;;;;;;;;33733:328;;;;;;;;;;-1:-1:-1;33733:328:0;;;;;:::i;:::-;;:::i;49340:43::-;;;;;;;;;;-1:-1:-1;49340:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30967:324;;;;;;;;;;-1:-1:-1;30967:324:0;;;;;:::i;:::-;;:::i;49033:24::-;;;;;;;;;;;;;;;;50147:302;;;;;;;;;;-1:-1:-1;50147:302:0;;;;;:::i;:::-;;:::i;48918:28::-;;;;;;;;;;;;;;;;50920:704;;;:::i;50020:121::-;;;;;;;;;;-1:-1:-1;50020:121:0;;;;;:::i;:::-;;:::i;32836:164::-;;;;;;;;;;-1:-1:-1;32836:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32957:25:0;;;32933:4;32957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32836:164;28013:192;;;;;;;;;;-1:-1:-1;28013:192:0;;;;;:::i;:::-;;:::i;50459:450::-;;;;;;;;;;-1:-1:-1;50459:450:0;;;;;:::i;:::-;;:::i;49821:83::-;;;;;;;;;;;;;:::i;42645:224::-;42747:4;-1:-1:-1;;;;;;42771:50:0;;-1:-1:-1;;;42771:50:0;;:90;;;42825:36;42849:11;42825:23;:36::i;:::-;42764:97;42645:224;-1:-1:-1;;42645:224:0:o;30623:100::-;30677:13;30710:5;30703:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30623:100;:::o;32177:221::-;32253:7;35660:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35660:16:0;32273:73;;;;-1:-1:-1;;;32273:73:0;;15064:2:1;32273:73:0;;;15046:21:1;15103:2;15083:18;;;15076:30;15142:34;15122:18;;;15115:62;-1:-1:-1;;;15193:18:1;;;15186:42;15245:19;;32273:73:0;;;;;;;;;-1:-1:-1;32366:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32366:24:0;;32177:221::o;31700:411::-;31781:13;31797:23;31812:7;31797:14;:23::i;:::-;31781:39;;31845:5;-1:-1:-1;;;;;31839:11:0;:2;-1:-1:-1;;;;;31839:11:0;;;31831:57;;;;-1:-1:-1;;;31831:57:0;;17071:2:1;31831:57:0;;;17053:21:1;17110:2;17090:18;;;17083:30;17149:34;17129:18;;;17122:62;-1:-1:-1;;;17200:18:1;;;17193:31;17241:19;;31831:57:0;16869:397:1;31831:57:0;26041:10;-1:-1:-1;;;;;31923:21:0;;;;:62;;-1:-1:-1;31948:37:0;31965:5;26041:10;32836:164;:::i;31948:37::-;31901:168;;;;-1:-1:-1;;;31901:168:0;;13099:2:1;31901:168:0;;;13081:21:1;13138:2;13118:18;;;13111:30;13177:34;13157:18;;;13150:62;13248:26;13228:18;;;13221:54;13292:19;;31901:168:0;12897:420:1;31901:168:0;32082:21;32091:2;32095:7;32082:8;:21::i;:::-;31770:341;31700:411;;:::o;51630:356::-;51680:8;;;;:17;51672:62;;;;-1:-1:-1;;;51672:62:0;;18304:2:1;51672:62:0;;;18286:21:1;;;18323:18;;;18316:30;18382:34;18362:18;;;18355:62;18434:18;;51672:62:0;18102:356:1;51672:62:0;51768:9;;43373:10;:17;51753:24;;51745:74;;;;-1:-1:-1;;;51745:74:0;;15838:2:1;51745:74:0;;;15820:21:1;15877:2;15857:18;;;15850:30;15916:34;15896:18;;;15889:62;-1:-1:-1;;;15967:18:1;;;15960:36;16013:19;;51745:74:0;15636:402:1;51745:74:0;51846:9;51838:5;;:17;51830:59;;;;-1:-1:-1;;;51830:59:0;;14345:2:1;51830:59:0;;;14327:21:1;14384:2;14364:18;;;14357:30;14423:31;14403:18;;;14396:59;14472:18;;51830:59:0;14143:353:1;51830:59:0;51904:36;51914:10;51926:13;52690:7;;;52616:89;51926:13;51904:9;:36::i;:::-;51955:7;:9;;;:7;:9;;;:::i;:::-;;;;;;51630:356::o;33067:339::-;33262:41;26041:10;33295:7;33262:18;:41::i;:::-;33254:103;;;;-1:-1:-1;;;33254:103:0;;;;;;;:::i;:::-;33370:28;33380:4;33386:2;33390:7;33370:9;:28::i;42953:256::-;43050:7;43086:23;43103:5;43086:16;:23::i;:::-;43078:5;:31;43070:87;;;;-1:-1:-1;;;43070:87:0;;7968:2:1;43070:87:0;;;7950:21:1;8007:2;7987:18;;;7980:30;8046:34;8026:18;;;8019:62;-1:-1:-1;;;8097:18:1;;;8090:41;8148:19;;43070:87:0;7766:407:1;43070:87:0;-1:-1:-1;;;;;;43175:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42953:256::o;52351:246::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;52412:21:::1;52398:11;52471:7;27283:6:::0;;-1:-1:-1;;;;;27283:6:0;;27210:87;52471:7:::1;-1:-1:-1::0;;;;;52463:21:0::1;52507:6;52463:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52444:84;;;52547:7;52539:40;;;::::0;-1:-1:-1;;;52539:40:0;;10674:2:1;52539:40:0::1;::::0;::::1;10656:21:1::0;10713:2;10693:18;;;10686:30;-1:-1:-1;;;10732:18:1;;;10725:50;10792:18;;52539:40:0::1;10472:344:1::0;52539:40:0::1;52388:209;;52351:246::o:0;33477:185::-;33615:39;33632:4;33638:2;33642:7;33615:39;;;;;;;;;;;;:16;:39::i;43475:233::-;43550:7;43586:30;43373:10;:17;;43285:113;43586:30;43578:5;:38;43570:95;;;;-1:-1:-1;;;43570:95:0;;17891:2:1;43570:95:0;;;17873:21:1;17930:2;17910:18;;;17903:30;17969:34;17949:18;;;17942:62;-1:-1:-1;;;18020:18:1;;;18013:42;18072:19;;43570:95:0;17689:408:1;43570:95:0;43683:10;43694:5;43683:17;;;;;;;;:::i;:::-;;;;;;;;;43676:24;;43475:233;;;:::o;49516:97::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;49587:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30317:239::-:0;30389:7;30425:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30425:16:0;30460:19;30452:73;;;;-1:-1:-1;;;30452:73:0;;13935:2:1;30452:73:0;;;13917:21:1;13974:2;13954:18;;;13947:30;14013:34;13993:18;;;13986:62;-1:-1:-1;;;14064:18:1;;;14057:39;14113:19;;30452:73:0;13733:405:1;49910:104:0;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;49991:15:::1;::::0;;-1:-1:-1;;49972:34:0;::::1;49991:15;::::0;;;::::1;;;49990:16;49972:34:::0;;::::1;;::::0;;49910:104::o;49719:96::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;49788:9:::1;:19:::0;49719:96::o;30047:208::-;30119:7;-1:-1:-1;;;;;30147:19:0;;30139:74;;;;-1:-1:-1;;;30139:74:0;;13524:2:1;30139:74:0;;;13506:21:1;13563:2;13543:18;;;13536:30;13602:34;13582:18;;;13575:62;-1:-1:-1;;;13653:18:1;;;13646:40;13703:19;;30139:74:0;13322:406:1;30139:74:0;-1:-1:-1;;;;;;30231:16:0;;;;;:9;:16;;;;;;;30047:208::o;29345:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51992:351::-;52052:16;52086:13;52102:17;52112:6;52102:9;:17::i;:::-;52086:33;;52130:23;52170:5;52156:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52156:20:0;;52130:46;;52192:13;52187:125;52219:5;52211;:13;52187:125;;;52266:34;52286:6;52294:5;52266:19;:34::i;:::-;52250:6;52257:5;52250:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;52226:7;;;;:::i;:::-;;;;52187:125;;;-1:-1:-1;52329:6:0;51992:351;-1:-1:-1;;;51992:351:0:o;49619:92::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;49686:5:::1;:17:::0;49619:92::o;30792:104::-;30848:13;30881:7;30874:14;;;;;:::i;32470:295::-;-1:-1:-1;;;;;32573:24:0;;26041:10;32573:24;;32565:62;;;;-1:-1:-1;;;32565:62:0;;11428:2:1;32565:62:0;;;11410:21:1;11467:2;11447:18;;;11440:30;11506:27;11486:18;;;11479:55;11551:18;;32565:62:0;11226:349:1;32565:62:0;26041:10;32640:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32640:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32640:53:0;;;;;;;;;;32709:48;;7490:41:1;;;32640:42:0;;26041:10;32709:48;;7463:18:1;32709:48:0;;;;;;;32470:295;;:::o;33733:328::-;33908:41;26041:10;33941:7;33908:18;:41::i;:::-;33900:103;;;;-1:-1:-1;;;33900:103:0;;;;;;;:::i;:::-;34014:39;34028:4;34034:2;34038:7;34047:5;34014:13;:39::i;:::-;33733:328;;;;:::o;30967:324::-;35636:4;35660:16;;;:7;:16;;;;;;31040:13;;-1:-1:-1;;;;;35660:16:0;31066:76;;;;-1:-1:-1;;;31066:76:0;;16655:2:1;31066:76:0;;;16637:21:1;16694:2;16674:18;;;16667:30;16733:34;16713:18;;;16706:62;-1:-1:-1;;;16784:18:1;;;16777:45;16839:19;;31066:76:0;16453:411:1;31066:76:0;31155:18;31176:9;:7;:9::i;:::-;31155:30;;31224:1;31209:4;31203:18;:22;:80;;;;;;;;;;;;;;;;;31252:4;31258:18;:7;:16;:18::i;:::-;31235:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31203:80;31196:87;30967:324;-1:-1:-1;;;30967:324:0:o;50147:302::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;50233:7:::1;;50221:8;:19;;50213:65;;;::::0;-1:-1:-1;;;50213:65:0;;10272:2:1;50213:65:0::1;::::0;::::1;10254:21:1::0;10311:2;10291:18;;;10284:30;10350:34;10330:18;;;10323:62;-1:-1:-1;;;10401:18:1;;;10394:31;10442:19;;50213:65:0::1;10070:397:1::0;50213:65:0::1;50300:8;50289:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;50324:6:0::1;::::0;-1:-1:-1;50319:123:0::1;50340:8;50336:1;:12;50319:123;;;50370:36;50380:10;50392:13;52690:7:::0;;;52616:89;50370:36:::1;50421:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;50350:3;;;;;:::i;:::-;;;;50319:123;;50920:704:::0;50994:15;;;;;;;:24;50986:69;;;;-1:-1:-1;;;50986:69:0;;18304:2:1;50986:69:0;;;18286:21:1;;;18323:18;;;18316:30;18382:34;18362:18;;;18355:62;18434:18;;50986:69:0;18102:356:1;50986:69:0;51086:9;;43373:10;:17;51072:23;51064:76;;;;-1:-1:-1;;;51064:76:0;;12195:2:1;51064:76:0;;;12177:21:1;12234:2;12214:18;;;12207:30;12273:34;12253:18;;;12246:62;-1:-1:-1;;;12324:18:1;;;12317:39;12373:19;;51064:76:0;11993:405:1;51064:76:0;51167:9;51159:5;;:17;51151:59;;;;-1:-1:-1;;;51151:59:0;;14345:2:1;51151:59:0;;;14327:21:1;14384:2;14364:18;;;14357:30;14423:31;14403:18;;;14396:59;14472:18;;51151:59:0;14143:353:1;51151:59:0;51243:10;51229:25;;;;:13;:25;;;;;;;;:31;;:25;:31;51221:73;;;;-1:-1:-1;;;51221:73:0;;9563:2:1;51221:73:0;;;9545:21:1;9602:2;9582:18;;;9575:30;9641:32;9621:18;;;9614:60;9691:18;;51221:73:0;9361:354:1;51221:73:0;51354:10;51305:35;51343:22;;;:10;:22;;;;;51384:17;;;;;:20;51376:117;;;;-1:-1:-1;;;51376:117:0;;12605:2:1;51376:117:0;;;12587:21:1;12644:2;12624:18;;;12617:30;12683:34;12663:18;;;12656:62;12754:34;12734:18;;;12727:62;-1:-1:-1;;;12805:19:1;;;12798:52;12867:19;;51376:117:0;12403:489:1;51376:117:0;51510:36;51520:10;51532:13;52690:7;;;52616:89;51510:36;51561:7;:9;;;:7;:9;;;:::i;:::-;;;;;;51606:1;51587:9;:17;;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;50920:704:0:o;50020:121::-;50078:7;50127:5;;50117:9;:15;;;;:::i;28013:192::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28102:22:0;::::1;28094:73;;;::::0;-1:-1:-1;;;28094:73:0;;8799:2:1;28094:73:0::1;::::0;::::1;8781:21:1::0;8838:2;8818:18;;;8811:30;8877:34;8857:18;;;8850:62;-1:-1:-1;;;8928:18:1;;;8921:36;8974:19;;28094:73:0::1;8597:402:1::0;28094:73:0::1;28178:19;28188:8;28178:9;:19::i;:::-;28013:192:::0;:::o;50459:450::-;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;50554:6:::1;50549:349;50570:12;:19;50566:1;:23;50549:349;;;50631:13;:30;50645:12;50658:1;50645:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50631:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50631:30:0;;::::1;;50630:31;50622:64;;;::::0;-1:-1:-1;;;50622:64:0;;9922:2:1;50622:64:0::1;::::0;::::1;9904:21:1::0;9961:2;9941:18;;;9934:30;-1:-1:-1;;;9980:18:1;;;9973:51;10041:18;;50622:64:0::1;9720:345:1::0;50622:64:0::1;50725:116;;;;;;;;50772:12;50785:1;50772:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50725:116:0::1;;;;;50810:16;;50725:116;;::::0;50697:10:::1;:27;50708:12;50721:1;50708:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50697:27:0::1;-1:-1:-1::0;;;;;50697:27:0::1;;;;;;;;;;;;:144;;;;;;;;;;;;;-1:-1:-1::0;;;;;50697:144:0::1;;;;;-1:-1:-1::0;;;;;50697:144:0::1;;;;;;;;;;;;;;;;;50886:4;50855:13;:30;50869:12;50882:1;50869:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50855:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50855:30:0;:35;;-1:-1:-1;;50855:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50591:3;::::1;::::0;::::1;:::i;:::-;;;;50549:349;;49821:83:::0;27283:6;;-1:-1:-1;;;;;27283:6:0;26041:10;27430:23;27422:68;;;;-1:-1:-1;;;27422:68:0;;;;;;;:::i;:::-;49888:8:::1;::::0;;-1:-1:-1;;49876:20:0;::::1;49888:8;::::0;;::::1;49887:9;49876:20;::::0;;49821:83::o;29678:305::-;29780:4;-1:-1:-1;;;;;;29817:40:0;;-1:-1:-1;;;29817:40:0;;:105;;-1:-1:-1;;;;;;;29874:48:0;;-1:-1:-1;;;29874:48:0;29817:105;:158;;;-1:-1:-1;;;;;;;;;;19056:40:0;;;29939:36;18947:157;39553:174;39628:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39628:29:0;-1:-1:-1;;;;;39628:29:0;;;;;;;;:24;;39682:23;39628:24;39682:14;:23::i;:::-;-1:-1:-1;;;;;39673:46:0;;;;;;;;;;;39553:174;;:::o;36555:110::-;36631:26;36641:2;36645:7;36631:26;;;;;;;;;;;;:9;:26::i;35865:348::-;35958:4;35660:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35660:16:0;35975:73;;;;-1:-1:-1;;;35975:73:0;;11782:2:1;35975:73:0;;;11764:21:1;11821:2;11801:18;;;11794:30;11860:34;11840:18;;;11833:62;-1:-1:-1;;;11911:18:1;;;11904:42;11963:19;;35975:73:0;11580:408:1;35975:73:0;36059:13;36075:23;36090:7;36075:14;:23::i;:::-;36059:39;;36128:5;-1:-1:-1;;;;;36117:16:0;:7;-1:-1:-1;;;;;36117:16:0;;:51;;;;36161:7;-1:-1:-1;;;;;36137:31:0;:20;36149:7;36137:11;:20::i;:::-;-1:-1:-1;;;;;36137:31:0;;36117:51;:87;;;-1:-1:-1;;;;;;32957:25:0;;;32933:4;32957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36172:32;36109:96;35865:348;-1:-1:-1;;;;35865:348:0:o;38857:578::-;39016:4;-1:-1:-1;;;;;38989:31:0;:23;39004:7;38989:14;:23::i;:::-;-1:-1:-1;;;;;38989:31:0;;38981:85;;;;-1:-1:-1;;;38981:85:0;;16245:2:1;38981:85:0;;;16227:21:1;16284:2;16264:18;;;16257:30;16323:34;16303:18;;;16296:62;-1:-1:-1;;;16374:18:1;;;16367:39;16423:19;;38981:85:0;16043:405:1;38981:85:0;-1:-1:-1;;;;;39085:16:0;;39077:65;;;;-1:-1:-1;;;39077:65:0;;11023:2:1;39077:65:0;;;11005:21:1;11062:2;11042:18;;;11035:30;11101:34;11081:18;;;11074:62;-1:-1:-1;;;11152:18:1;;;11145:34;11196:19;;39077:65:0;10821:400:1;39077:65:0;39155:39;39176:4;39182:2;39186:7;39155:20;:39::i;:::-;39259:29;39276:1;39280:7;39259:8;:29::i;:::-;-1:-1:-1;;;;;39301:15:0;;;;;;:9;:15;;;;;:20;;39320:1;;39301:15;:20;;39320:1;;39301:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39332:13:0;;;;;;:9;:13;;;;;:18;;39349:1;;39332:13;:18;;39349:1;;39332:18;:::i;:::-;;;;-1:-1:-1;;39361:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39361:21:0;-1:-1:-1;;;;;39361:21:0;;;;;;;;;39400:27;;39361:16;;39400:27;;;;;;;38857:578;;;:::o;34943:315::-;35100:28;35110:4;35116:2;35120:7;35100:9;:28::i;:::-;35147:48;35170:4;35176:2;35180:7;35189:5;35147:22;:48::i;:::-;35139:111;;;;-1:-1:-1;;;35139:111:0;;;;;;;:::i;31539:99::-;31589:13;31622:8;31615:15;;;;;:::i;6975:723::-;7031:13;7252:10;7248:53;;-1:-1:-1;;7279:10:0;;;;;;;;;;;;-1:-1:-1;;;7279:10:0;;;;;6975:723::o;7248:53::-;7326:5;7311:12;7367:78;7374:9;;7367:78;;7400:8;;;;:::i;:::-;;-1:-1:-1;7423:10:0;;-1:-1:-1;7431:2:0;7423:10;;:::i;:::-;;;7367:78;;;7455:19;7487:6;7477:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7477:17:0;;7455:39;;7505:154;7512:10;;7505:154;;7539:11;7549:1;7539:11;;:::i;:::-;;-1:-1:-1;7608:10:0;7616:2;7608:5;:10;:::i;:::-;7595:24;;:2;:24;:::i;:::-;7582:39;;7565:6;7572;7565:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7565:56:0;;;;;;;;-1:-1:-1;7636:11:0;7645:2;7636:11;;:::i;:::-;;;7505:154;;28213:173;28288:6;;;-1:-1:-1;;;;;28305:17:0;;;-1:-1:-1;;;;;;28305:17:0;;;;;;;28338:40;;28288:6;;;28305:17;28288:6;;28338:40;;28269:16;;28338:40;28258:128;28213:173;:::o;36892:321::-;37022:18;37028:2;37032:7;37022:5;:18::i;:::-;37073:54;37104:1;37108:2;37112:7;37121:5;37073:22;:54::i;:::-;37051:154;;;;-1:-1:-1;;;37051:154:0;;;;;;;:::i;44321:589::-;-1:-1:-1;;;;;44527:18:0;;44523:187;;44562:40;44594:7;45737:10;:17;;45710:24;;;;:15;:24;;;;;:44;;;45765:24;;;;;;;;;;;;45633:164;44562:40;44523:187;;;44632:2;-1:-1:-1;;;;;44624:10:0;:4;-1:-1:-1;;;;;44624:10:0;;44620:90;;44651:47;44684:4;44690:7;44651:32;:47::i;:::-;-1:-1:-1;;;;;44724:16:0;;44720:183;;44757:45;44794:7;44757:36;:45::i;44720:183::-;44830:4;-1:-1:-1;;;;;44824:10:0;:2;-1:-1:-1;;;;;44824:10:0;;44820:83;;44851:40;44879:2;44883:7;44851:27;:40::i;40292:803::-;40447:4;-1:-1:-1;;;;;40468:13:0;;9765:20;9813:8;40464:624;;40504:72;;-1:-1:-1;;;40504:72:0;;-1:-1:-1;;;;;40504:36:0;;;;;:72;;26041:10;;40555:4;;40561:7;;40570:5;;40504:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40504:72:0;;;;;;;;-1:-1:-1;;40504:72:0;;;;;;;;;;;;:::i;:::-;;;40500:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40750:13:0;;40746:272;;40793:60;;-1:-1:-1;;;40793:60:0;;;;;;;:::i;40746:272::-;40968:6;40962:13;40953:6;40949:2;40945:15;40938:38;40500:533;-1:-1:-1;;;;;;40627:55:0;-1:-1:-1;;;40627:55:0;;-1:-1:-1;40620:62:0;;40464:624;-1:-1:-1;41072:4:0;40292:803;;;;;;:::o;37549:382::-;-1:-1:-1;;;;;37629:16:0;;37621:61;;;;-1:-1:-1;;;37621:61:0;;14703:2:1;37621:61:0;;;14685:21:1;;;14722:18;;;14715:30;14781:34;14761:18;;;14754:62;14833:18;;37621:61:0;14501:356:1;37621:61:0;35636:4;35660:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35660:16:0;:30;37693:58;;;;-1:-1:-1;;;37693:58:0;;9206:2:1;37693:58:0;;;9188:21:1;9245:2;9225:18;;;9218:30;9284;9264:18;;;9257:58;9332:18;;37693:58:0;9004:352:1;37693:58:0;37764:45;37793:1;37797:2;37801:7;37764:20;:45::i;:::-;-1:-1:-1;;;;;37822:13:0;;;;;;:9;:13;;;;;:18;;37839:1;;37822:13;:18;;37839:1;;37822:18;:::i;:::-;;;;-1:-1:-1;;37851:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37851:21:0;-1:-1:-1;;;;;37851:21:0;;;;;;;;37890:33;;37851:16;;;37890:33;;37851:16;;37890:33;37549:382;;:::o;46424:988::-;46690:22;46740:1;46715:22;46732:4;46715:16;:22::i;:::-;:26;;;;:::i;:::-;46752:18;46773:26;;;:17;:26;;;;;;46690:51;;-1:-1:-1;46906:28:0;;;46902:328;;-1:-1:-1;;;;;46973:18:0;;46951:19;46973:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47024:30;;;;;;:44;;;47141:30;;:17;:30;;;;;:43;;;46902:328;-1:-1:-1;47326:26:0;;;;:17;:26;;;;;;;;47319:33;;;-1:-1:-1;;;;;47370:18:0;;;;;:12;:18;;;;;:34;;;;;;;47363:41;46424:988::o;47707:1079::-;47985:10;:17;47960:22;;47985:21;;48005:1;;47985:21;:::i;:::-;48017:18;48038:24;;;:15;:24;;;;;;48411:10;:26;;47960:46;;-1:-1:-1;48038:24:0;;47960:46;;48411:26;;;;;;:::i;:::-;;;;;;;;;48389:48;;48475:11;48450:10;48461;48450:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48555:28;;;:15;:28;;;;;;;:41;;;48727:24;;;;;48720:31;48762:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47778:1008;;;47707:1079;:::o;45211:221::-;45296:14;45313:20;45330:2;45313:16;:20::i;:::-;-1:-1:-1;;;;;45344:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45389:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45211:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:1;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:1:o;5048:470::-;5227:3;5265:6;5259:13;5281:53;5327:6;5322:3;5315:4;5307:6;5303:17;5281:53;:::i;:::-;5397:13;;5356:16;;;;5419:57;5397:13;5356:16;5453:4;5441:17;;5419:57;:::i;:::-;5492:20;;5048:470;-1:-1:-1;;;;5048:470:1:o;5941:488::-;-1:-1:-1;;;;;6210:15:1;;;6192:34;;6262:15;;6257:2;6242:18;;6235:43;6309:2;6294:18;;6287:34;;;6357:3;6352:2;6337:18;;6330:31;;;6135:4;;6378:45;;6403:19;;6395:6;6378:45;:::i;:::-;6370:53;5941:488;-1:-1:-1;;;;;;5941:488:1:o;6713:632::-;6884:2;6936:21;;;7006:13;;6909:18;;;7028:22;;;6855:4;;6884:2;7107:15;;;;7081:2;7066:18;;;6855:4;7150:169;7164:6;7161:1;7158:13;7150:169;;;7225:13;;7213:26;;7294:15;;;;7259:12;;;;7186:1;7179:9;7150:169;;;-1:-1:-1;7336:3:1;;6713:632;-1:-1:-1;;;;;;6713:632:1:o;7542:219::-;7691:2;7680:9;7673:21;7654:4;7711:44;7751:2;7740:9;7736:18;7728:6;7711:44;:::i;8178:414::-;8380:2;8362:21;;;8419:2;8399:18;;;8392:30;8458:34;8453:2;8438:18;;8431:62;-1:-1:-1;;;8524:2:1;8509:18;;8502:48;8582:3;8567:19;;8178:414::o;15275:356::-;15477:2;15459:21;;;15496:18;;;15489:30;15555:34;15550:2;15535:18;;15528:62;15622:2;15607:18;;15275:356::o;17271:413::-;17473:2;17455:21;;;17512:2;17492:18;;;17485:30;17551:34;17546:2;17531:18;;17524:62;-1:-1:-1;;;17617:2:1;17602:18;;17595:47;17674:3;17659:19;;17271:413::o;18645:275::-;18716:2;18710:9;18781:2;18762:13;;-1:-1:-1;;18758:27:1;18746:40;;18816:18;18801:34;;18837:22;;;18798:62;18795:88;;;18863:18;;:::i;:::-;18899:2;18892:22;18645:275;;-1:-1:-1;18645:275:1:o;18925:128::-;18965:3;18996:1;18992:6;18989:1;18986:13;18983:39;;;19002:18;;:::i;:::-;-1:-1:-1;19038:9:1;;18925:128::o;19058:120::-;19098:1;19124;19114:35;;19129:18;;:::i;:::-;-1:-1:-1;19163:9:1;;19058:120::o;19183:168::-;19223:7;19289:1;19285;19281:6;19277:14;19274:1;19271:21;19266:1;19259:9;19252:17;19248:45;19245:71;;;19296:18;;:::i;:::-;-1:-1:-1;19336:9:1;;19183:168::o;19356:125::-;19396:4;19424:1;19421;19418:8;19415:34;;;19429:18;;:::i;:::-;-1:-1:-1;19466:9:1;;19356:125::o;19486:258::-;19558:1;19568:113;19582:6;19579:1;19576:13;19568:113;;;19658:11;;;19652:18;19639:11;;;19632:39;19604:2;19597:10;19568:113;;;19699:6;19696:1;19693:13;19690:48;;;-1:-1:-1;;19734:1:1;19716:16;;19709:27;19486:258::o;19749:380::-;19828:1;19824:12;;;;19871;;;19892:61;;19946:4;19938:6;19934:17;19924:27;;19892:61;19999:2;19991:6;19988:14;19968:18;19965:38;19962:161;;;20045:10;20040:3;20036:20;20033:1;20026:31;20080:4;20077:1;20070:15;20108:4;20105:1;20098:15;19962:161;;19749:380;;;:::o;20134:135::-;20173:3;-1:-1:-1;;20194:17:1;;20191:43;;;20214:18;;:::i;:::-;-1:-1:-1;20261:1:1;20250:13;;20134:135::o;20274:112::-;20306:1;20332;20322:35;;20337:18;;:::i;:::-;-1:-1:-1;20371:9:1;;20274:112::o;20391:127::-;20452:10;20447:3;20443:20;20440:1;20433:31;20483:4;20480:1;20473:15;20507:4;20504:1;20497:15;20523:127;20584:10;20579:3;20575:20;20572:1;20565:31;20615:4;20612:1;20605:15;20639:4;20636:1;20629:15;20655:127;20716:10;20711:3;20707:20;20704:1;20697:31;20747:4;20744:1;20737:15;20771:4;20768:1;20761:15;20787:127;20848:10;20843:3;20839:20;20836:1;20829:31;20879:4;20876:1;20869:15;20903:4;20900:1;20893:15;20919:127;20980:10;20975:3;20971:20;20968:1;20961:31;21011:4;21008:1;21001:15;21035:4;21032:1;21025:15;21051:131;-1:-1:-1;;;;;;21125:32:1;;21115:43;;21105:71;;21172:1;21169;21162:12
Swarm Source
ipfs://2a1a2de640d1a1e19ebab233896f2267381173ad458880a7217d1e5dc07c37cb
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.