Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
9,999 INFAMOUSSKULLZ
Holders
3,329
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 INFAMOUSSKULLZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
INFAMOUSSKULLZ
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-01 */ // Sources flattened with hardhat v2.5.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] 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); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(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 {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File contracts/GangStarBear.sol pragma solidity ^0.8.2; contract INFAMOUSSKULLZ is ERC721, ERC721Enumerable, ERC721Burnable, Ownable { using Counters for Counters.Counter; string public baseURI; Counters.Counter private _tokenIdCounter; // Where funds should be sent to address payable public fundsTo; // Maximum supply of the NFT uint256 public maxSupply; // Maximum mints per transaction uint256 public maxPerTx; // Is sale on? bool public sale; // Sale price uint256 public pricePer; uint256 public maxPreMint; uint256 public maxWallet = 9; bool public presale = false; mapping(address => uint256) public minted; // To check how many tokens an address has minted constructor(address payable fundsTo_, uint256 maxSupply_, uint256 maxPerTx_, uint256 pricePer_) ERC721("INFAMOUSSKULLZ", "INFAMOUSSKULLZ") { fundsTo = fundsTo_; maxSupply = maxSupply_; maxPerTx = maxPerTx_; sale = false; pricePer = pricePer_; } function updateFundsTo(address payable newFundsTo) public onlyOwner { fundsTo = newFundsTo; } function enableSale() public onlyOwner { sale = true; } function claimBalance() public onlyOwner { (bool success, ) = fundsTo.call{value: address(this).balance}(""); require(success, "transfer failed"); } function safeMint(address to, uint256 quantity) payable public { // Sale must be enabled require(sale, "Sale disabled"); // Cannot mint 0 require(quantity != 0, "Requested quantity cannot be zero"); // Cannot mint more than maximum require(quantity <= maxPerTx, "Requested quantity more than maximum"); // Transaction must have at least quantity * price (any more is considered a tip) require(quantity * pricePer <= msg.value, "Not enough ether sent"); // Mint operation cannot lead to more than max supply require(!Address.isContract(msg.sender), "Contracts are not allowed to mint"); require(minted[msg.sender] + quantity <= maxWallet, "Purchase would exceed max tokens per wallet"); require(super.totalSupply() + quantity <= maxSupply, "Total supply will exceed limit"); for (uint256 i = 0; i < quantity; i++) { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } minted[msg.sender] += quantity; } function preMint(address to, uint256 quantity) external payable { // Sale must NOT be enabled require(!sale, "Sale already in progress"); require(presale,"Presale must be active"); require(quantity != 0, "Requested quantity cannot be zero"); require(quantity * pricePer <= msg.value, "Not enough ether sent"); require(super.totalSupply() + quantity <= maxPreMint, "Purchase would exceed max tokens for presale"); require(minted[msg.sender] + quantity <= maxWallet, "Purchase would exceed max tokens per wallet"); require(!Address.isContract(msg.sender), "Contracts are not allowed to mint"); for (uint256 i = 0; i < quantity; i++) { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } minted[msg.sender] += quantity; } function setBaseURI(string memory __baseURI) external onlyOwner { baseURI = __baseURI; } function setMaxPreMint(uint __maxPreMint) external onlyOwner { maxPreMint = __maxPreMint; } function _baseURI() internal view override returns (string memory) { return baseURI; } function flipSaleState() public onlyOwner { sale = !sale; } function flipPresaleState() public onlyOwner { presale = !presale; } function setMaxWallet(uint _newMaxWallet) external onlyOwner { maxWallet = _newMaxWallet; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"fundsTo_","type":"address"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"maxPerTx_","type":"uint256"},{"internalType":"uint256","name":"pricePer_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundsTo","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"__maxPreMint","type":"uint256"}],"name":"setMaxPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newFundsTo","type":"address"}],"name":"updateFundsTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260096013556014805460ff191690553480156200002057600080fd5b5060405162002aea38038062002aea8339810160408190526200004391620001f8565b604080518082018252600e8082526d24a72320a6a7aaa9a9a5aaa6262d60911b6020808401828152855180870190965292855284015281519192916200008c9160009162000152565b508051620000a290600190602084019062000152565b505050620000bf620000b9620000fc60201b60201c565b62000100565b600d80546001600160a01b0319166001600160a01b039590951694909417909355600e91909155600f556010805460ff1916905560115562000280565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001609062000243565b90600052602060002090601f016020900481019282620001845760008555620001cf565b82601f106200019f57805160ff1916838001178555620001cf565b82800160010185558215620001cf579182015b82811115620001cf578251825591602001919060010190620001b2565b50620001dd929150620001e1565b5090565b5b80821115620001dd5760008155600101620001e2565b600080600080608085870312156200020e578384fd5b84516001600160a01b038116811462000225578485fd5b60208601516040870151606090970151919890975090945092505050565b6002810460018216806200025857607f821691505b602082108114156200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b61285a80620002906000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063c87b56dd116100ab578063f2fde38b1161006f578063f2fde38b14610688578063f81227d4146106a8578063f8b45b05146106bd578063f968adbe146106d3578063fdea8e0b146106e95761023b565b8063c87b56dd146105c9578063c9417bb3146105e9578063d5abeb0114610609578063e985e9c51461061f578063ecc1da27146106685761023b565b8063a1448194116100f2578063a14481941461054b578063a22cb4651461055e578063a7ee066d1461057e578063b88d4fde14610594578063c683d8e4146105b45761023b565b80636c0360eb146104ce57806370a08231146104e3578063715018a6146105035780638da5cb5b1461051857806395d89b41146105365761023b565b806330136e38116101bc5780634f6ccce7116101805780634f6ccce71461043457806355f804b3146104545780635d0044ca146104745780636352211e146104945780636ad1fe02146104b45761023b565b806330136e38146103aa57806330509bca146103ca57806334918dfd146103df57806342842e0e146103f457806342966c68146104145761023b565b806318160ddd1161020357806318160ddd146103155780631e7269c51461032a57806323b872dd14610357578063290c292d146103775780632f745c591461038a5761023b565b806301ffc9a71461024057806306fdde0314610275578063070a8a8514610297578063081812fc146102bb578063095ea7b3146102f3575b600080fd5b34801561024c57600080fd5b5061026061025b3660046123d9565b610703565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610716565b60405161026c9190612507565b3480156102a357600080fd5b506102ad60115481565b60405190815260200161026c565b3480156102c757600080fd5b506102db6102d6366004612457565b6107a8565b6040516001600160a01b03909116815260200161026c565b3480156102ff57600080fd5b5061031361030e3660046123ae565b610842565b005b34801561032157600080fd5b506008546102ad565b34801561033657600080fd5b506102ad61034536600461226c565b60156020526000908152604090205481565b34801561036357600080fd5b506103136103723660046122c0565b610958565b6103136103853660046123ae565b61098a565b34801561039657600080fd5b506102ad6103a53660046123ae565b610bd5565b3480156103b657600080fd5b50600d546102db906001600160a01b031681565b3480156103d657600080fd5b50610313610c6b565b3480156103eb57600080fd5b50610313610d2d565b34801561040057600080fd5b5061031361040f3660046122c0565b610d6b565b34801561042057600080fd5b5061031361042f366004612457565b610d86565b34801561044057600080fd5b506102ad61044f366004612457565b610dfd565b34801561046057600080fd5b5061031361046f366004612411565b610e9e565b34801561048057600080fd5b5061031361048f366004612457565b610edf565b3480156104a057600080fd5b506102db6104af366004612457565b610f0e565b3480156104c057600080fd5b506010546102609060ff1681565b3480156104da57600080fd5b5061028a610f85565b3480156104ef57600080fd5b506102ad6104fe36600461226c565b611013565b34801561050f57600080fd5b5061031361109a565b34801561052457600080fd5b50600a546001600160a01b03166102db565b34801561054257600080fd5b5061028a6110d0565b6103136105593660046123ae565b6110df565b34801561056a57600080fd5b5061031361057936600461237d565b6112e9565b34801561058a57600080fd5b506102ad60125481565b3480156105a057600080fd5b506103136105af366004612300565b6113bb565b3480156105c057600080fd5b506103136113f3565b3480156105d557600080fd5b5061028a6105e4366004612457565b61142c565b3480156105f557600080fd5b50610313610604366004612457565b611507565b34801561061557600080fd5b506102ad600e5481565b34801561062b57600080fd5b5061026061063a366004612288565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067457600080fd5b5061031361068336600461226c565b611536565b34801561069457600080fd5b506103136106a336600461226c565b611582565b3480156106b457600080fd5b5061031361161a565b3480156106c957600080fd5b506102ad60135481565b3480156106df57600080fd5b506102ad600f5481565b3480156106f557600080fd5b506014546102609060ff1681565b600061070e82611658565b90505b919050565b6060600080546107259061274d565b80601f01602080910402602001604051908101604052809291908181526020018280546107519061274d565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084d82610f0e565b9050806001600160a01b0316836001600160a01b031614156108bb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081d565b336001600160a01b03821614806108d757506108d7813361063a565b6109495760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081d565b610953838361167d565b505050565b610963335b826116eb565b61097f5760405162461bcd60e51b815260040161081d906125ec565b6109538383836117e2565b60105460ff16156109dd5760405162461bcd60e51b815260206004820152601860248201527f53616c6520616c726561647920696e2070726f67726573730000000000000000604482015260640161081d565b60145460ff16610a285760405162461bcd60e51b815260206004820152601660248201527550726573616c65206d7573742062652061637469766560501b604482015260640161081d565b80610a455760405162461bcd60e51b815260040161081d9061263d565b3460115482610a5491906126eb565b1115610a9a5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161081d565b60125481610aa760085490565b610ab191906126bf565b1115610b145760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526b20666f722070726573616c6560a01b606482015260840161081d565b60135433600090815260156020526040902054610b329083906126bf565b1115610b505760405162461bcd60e51b815260040161081d9061251a565b333b15610b6f5760405162461bcd60e51b815260040161081d9061267e565b60005b81811015610bac57610b8c83610b87600c5490565b61198d565b610b9a600c80546001019055565b80610ba481612788565b915050610b72565b503360009081526015602052604081208054839290610bcc9084906126bf565b90915550505050565b6000610be083611013565b8210610c425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c955760405162461bcd60e51b815260040161081d906125b7565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ce2576040519150601f19603f3d011682016040523d82523d6000602084013e610ce7565b606091505b5050905080610d2a5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640161081d565b50565b600a546001600160a01b03163314610d575760405162461bcd60e51b815260040161081d906125b7565b6010805460ff19811660ff90911615179055565b610953838383604051806020016040528060008152506113bb565b610d8f3361095d565b610df45760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161081d565b610d2a816119a7565b6000610e0860085490565b8210610e6b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081d565b60088281548110610e8c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ec85760405162461bcd60e51b815260040161081d906125b7565b8051610edb90600b90602084019061215d565b5050565b600a546001600160a01b03163314610f095760405162461bcd60e51b815260040161081d906125b7565b601355565b6000818152600260205260408120546001600160a01b03168061070e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081d565b600b8054610f929061274d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe9061274d565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b505050505081565b60006001600160a01b03821661107e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110c45760405162461bcd60e51b815260040161081d906125b7565b6110ce6000611a4e565b565b6060600180546107259061274d565b60105460ff166111215760405162461bcd60e51b815260206004820152600d60248201526c14d85b1948191a5cd8589b1959609a1b604482015260640161081d565b8061113e5760405162461bcd60e51b815260040161081d9061263d565b600f5481111561119c5760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d6178604482015263696d756d60e01b606482015260840161081d565b34601154826111ab91906126eb565b11156111f15760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161081d565b333b156112105760405162461bcd60e51b815260040161081d9061267e565b6013543360009081526015602052604090205461122e9083906126bf565b111561124c5760405162461bcd60e51b815260040161081d9061251a565b600e548161125960085490565b61126391906126bf565b11156112b15760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d69740000604482015260640161081d565b60005b81811015610bac576112c983610b87600c5490565b6112d7600c80546001019055565b806112e181612788565b9150506112b4565b6001600160a01b0382163314156113425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081d565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113af911515815260200190565b60405180910390a35050565b6113c533836116eb565b6113e15760405162461bcd60e51b815260040161081d906125ec565b6113ed84848484611aa0565b50505050565b600a546001600160a01b0316331461141d5760405162461bcd60e51b815260040161081d906125b7565b6010805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081d565b60006114b5611ad3565b905060008151116114d55760405180602001604052806000815250611500565b806114df84611ae2565b6040516020016114f092919061249b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115315760405162461bcd60e51b815260040161081d906125b7565b601255565b600a546001600160a01b031633146115605760405162461bcd60e51b815260040161081d906125b7565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146115ac5760405162461bcd60e51b815260040161081d906125b7565b6001600160a01b0381166116115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610d2a81611a4e565b600a546001600160a01b031633146116445760405162461bcd60e51b815260040161081d906125b7565b6014805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b148061070e575061070e82611bfd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116b282610f0e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081d565b600061176f83610f0e565b9050806001600160a01b0316846001600160a01b031614806117aa5750836001600160a01b031661179f846107a8565b6001600160a01b0316145b806117da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117f582610f0e565b6001600160a01b03161461185d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081d565b6001600160a01b0382166118bf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b6118ca838383611c4d565b6118d560008261167d565b6001600160a01b03831660009081526003602052604081208054600192906118fe90849061270a565b90915550506001600160a01b038216600090815260036020526040812080546001929061192c9084906126bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610edb828260405180602001604052806000815250611c58565b60006119b282610f0e565b90506119c081600084611c4d565b6119cb60008361167d565b6001600160a01b03811660009081526003602052604081208054600192906119f490849061270a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611aab8484846117e2565b611ab784848484611c8b565b6113ed5760405162461bcd60e51b815260040161081d90612565565b6060600b80546107259061274d565b606081611b0757506040805180820190915260018152600360fc1b6020820152610711565b8160005b8115611b315780611b1b81612788565b9150611b2a9050600a836126d7565b9150611b0b565b60008167ffffffffffffffff811115611b5a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b84576020820181803683370190505b5090505b84156117da57611b9960018361270a565b9150611ba6600a866127a3565b611bb19060306126bf565b60f81b818381518110611bd457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bf6600a866126d7565b9450611b88565b60006001600160e01b031982166380ac58cd60e01b1480611c2e57506001600160e01b03198216635b5e139f60e01b145b8061070e57506301ffc9a760e01b6001600160e01b031983161461070e565b610953838383611d98565b611c628383611e55565b611c6f6000848484611c8b565b6109535760405162461bcd60e51b815260040161081d90612565565b60006001600160a01b0384163b15611d8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ccf9033908990889088906004016124ca565b602060405180830381600087803b158015611ce957600080fd5b505af1925050508015611d19575060408051601f3d908101601f19168201909252611d16918101906123f5565b60015b611d73573d808015611d47576040519150601f19603f3d011682016040523d82523d6000602084013e611d4c565b606091505b508051611d6b5760405162461bcd60e51b815260040161081d90612565565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117da565b506001949350505050565b6001600160a01b038316611df357611dee81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e16565b816001600160a01b0316836001600160a01b031614611e1657611e168382611fa3565b6001600160a01b038216611e3257611e2d81612040565b610953565b826001600160a01b0316826001600160a01b031614610953576109538282612119565b6001600160a01b038216611eab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081d565b6000818152600260205260409020546001600160a01b031615611f105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081d565b611f1c60008383611c4d565b6001600160a01b0382166000908152600360205260408120805460019290611f459084906126bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611fb084611013565b611fba919061270a565b60008381526007602052604090205490915080821461200d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120529060019061270a565b6000838152600960205260408120546008805493945090928490811061208857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120b757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120fd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061212483611013565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546121699061274d565b90600052602060002090601f01602090048101928261218b57600085556121d1565b82601f106121a457805160ff19168380011785556121d1565b828001600101855582156121d1579182015b828111156121d15782518255916020019190600101906121b6565b506121dd9291506121e1565b5090565b5b808211156121dd57600081556001016121e2565b600067ffffffffffffffff80841115612211576122116127e3565b604051601f8501601f19908116603f01168101908282118183101715612239576122396127e3565b8160405280935085815286868601111561225257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561227d578081fd5b8135611500816127f9565b6000806040838503121561229a578081fd5b82356122a5816127f9565b915060208301356122b5816127f9565b809150509250929050565b6000806000606084860312156122d4578081fd5b83356122df816127f9565b925060208401356122ef816127f9565b929592945050506040919091013590565b60008060008060808587031215612315578081fd5b8435612320816127f9565b93506020850135612330816127f9565b925060408501359150606085013567ffffffffffffffff811115612352578182fd5b8501601f81018713612362578182fd5b612371878235602084016121f6565b91505092959194509250565b6000806040838503121561238f578182fd5b823561239a816127f9565b9150602083013580151581146122b5578182fd5b600080604083850312156123c0578182fd5b82356123cb816127f9565b946020939093013593505050565b6000602082840312156123ea578081fd5b81356115008161280e565b600060208284031215612406578081fd5b81516115008161280e565b600060208284031215612422578081fd5b813567ffffffffffffffff811115612438578182fd5b8201601f81018413612448578182fd5b6117da848235602084016121f6565b600060208284031215612468578081fd5b5035919050565b60008151808452612487816020860160208601612721565b601f01601f19169290920160200192915050565b600083516124ad818460208801612721565b8351908301906124c1818360208801612721565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124fd9083018461246f565b9695505050505050565b600060208252611500602083018461246f565b6020808252602b908201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726040820152606f60f81b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b600082198211156126d2576126d26127b7565b500190565b6000826126e6576126e66127cd565b500490565b6000816000190483118215151615612705576127056127b7565b500290565b60008282101561271c5761271c6127b7565b500390565b60005b8381101561273c578181015183820152602001612724565b838111156113ed5750506000910152565b60028104600182168061276157607f821691505b6020821081141561278257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561279c5761279c6127b7565b5060010190565b6000826127b2576127b26127cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d2a57600080fd5b6001600160e01b031981168114610d2a57600080fdfea26469706673582212207d25a04d4addf4122b863b65941b82137380844c60299a174de9860349aba9de64736f6c63430008020033000000000000000000000000d05dfc4eafde42e177ef6b002214430de73e2bac00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000013fbe85edc90000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063c87b56dd116100ab578063f2fde38b1161006f578063f2fde38b14610688578063f81227d4146106a8578063f8b45b05146106bd578063f968adbe146106d3578063fdea8e0b146106e95761023b565b8063c87b56dd146105c9578063c9417bb3146105e9578063d5abeb0114610609578063e985e9c51461061f578063ecc1da27146106685761023b565b8063a1448194116100f2578063a14481941461054b578063a22cb4651461055e578063a7ee066d1461057e578063b88d4fde14610594578063c683d8e4146105b45761023b565b80636c0360eb146104ce57806370a08231146104e3578063715018a6146105035780638da5cb5b1461051857806395d89b41146105365761023b565b806330136e38116101bc5780634f6ccce7116101805780634f6ccce71461043457806355f804b3146104545780635d0044ca146104745780636352211e146104945780636ad1fe02146104b45761023b565b806330136e38146103aa57806330509bca146103ca57806334918dfd146103df57806342842e0e146103f457806342966c68146104145761023b565b806318160ddd1161020357806318160ddd146103155780631e7269c51461032a57806323b872dd14610357578063290c292d146103775780632f745c591461038a5761023b565b806301ffc9a71461024057806306fdde0314610275578063070a8a8514610297578063081812fc146102bb578063095ea7b3146102f3575b600080fd5b34801561024c57600080fd5b5061026061025b3660046123d9565b610703565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610716565b60405161026c9190612507565b3480156102a357600080fd5b506102ad60115481565b60405190815260200161026c565b3480156102c757600080fd5b506102db6102d6366004612457565b6107a8565b6040516001600160a01b03909116815260200161026c565b3480156102ff57600080fd5b5061031361030e3660046123ae565b610842565b005b34801561032157600080fd5b506008546102ad565b34801561033657600080fd5b506102ad61034536600461226c565b60156020526000908152604090205481565b34801561036357600080fd5b506103136103723660046122c0565b610958565b6103136103853660046123ae565b61098a565b34801561039657600080fd5b506102ad6103a53660046123ae565b610bd5565b3480156103b657600080fd5b50600d546102db906001600160a01b031681565b3480156103d657600080fd5b50610313610c6b565b3480156103eb57600080fd5b50610313610d2d565b34801561040057600080fd5b5061031361040f3660046122c0565b610d6b565b34801561042057600080fd5b5061031361042f366004612457565b610d86565b34801561044057600080fd5b506102ad61044f366004612457565b610dfd565b34801561046057600080fd5b5061031361046f366004612411565b610e9e565b34801561048057600080fd5b5061031361048f366004612457565b610edf565b3480156104a057600080fd5b506102db6104af366004612457565b610f0e565b3480156104c057600080fd5b506010546102609060ff1681565b3480156104da57600080fd5b5061028a610f85565b3480156104ef57600080fd5b506102ad6104fe36600461226c565b611013565b34801561050f57600080fd5b5061031361109a565b34801561052457600080fd5b50600a546001600160a01b03166102db565b34801561054257600080fd5b5061028a6110d0565b6103136105593660046123ae565b6110df565b34801561056a57600080fd5b5061031361057936600461237d565b6112e9565b34801561058a57600080fd5b506102ad60125481565b3480156105a057600080fd5b506103136105af366004612300565b6113bb565b3480156105c057600080fd5b506103136113f3565b3480156105d557600080fd5b5061028a6105e4366004612457565b61142c565b3480156105f557600080fd5b50610313610604366004612457565b611507565b34801561061557600080fd5b506102ad600e5481565b34801561062b57600080fd5b5061026061063a366004612288565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067457600080fd5b5061031361068336600461226c565b611536565b34801561069457600080fd5b506103136106a336600461226c565b611582565b3480156106b457600080fd5b5061031361161a565b3480156106c957600080fd5b506102ad60135481565b3480156106df57600080fd5b506102ad600f5481565b3480156106f557600080fd5b506014546102609060ff1681565b600061070e82611658565b90505b919050565b6060600080546107259061274d565b80601f01602080910402602001604051908101604052809291908181526020018280546107519061274d565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084d82610f0e565b9050806001600160a01b0316836001600160a01b031614156108bb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081d565b336001600160a01b03821614806108d757506108d7813361063a565b6109495760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081d565b610953838361167d565b505050565b610963335b826116eb565b61097f5760405162461bcd60e51b815260040161081d906125ec565b6109538383836117e2565b60105460ff16156109dd5760405162461bcd60e51b815260206004820152601860248201527f53616c6520616c726561647920696e2070726f67726573730000000000000000604482015260640161081d565b60145460ff16610a285760405162461bcd60e51b815260206004820152601660248201527550726573616c65206d7573742062652061637469766560501b604482015260640161081d565b80610a455760405162461bcd60e51b815260040161081d9061263d565b3460115482610a5491906126eb565b1115610a9a5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161081d565b60125481610aa760085490565b610ab191906126bf565b1115610b145760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526b20666f722070726573616c6560a01b606482015260840161081d565b60135433600090815260156020526040902054610b329083906126bf565b1115610b505760405162461bcd60e51b815260040161081d9061251a565b333b15610b6f5760405162461bcd60e51b815260040161081d9061267e565b60005b81811015610bac57610b8c83610b87600c5490565b61198d565b610b9a600c80546001019055565b80610ba481612788565b915050610b72565b503360009081526015602052604081208054839290610bcc9084906126bf565b90915550505050565b6000610be083611013565b8210610c425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c955760405162461bcd60e51b815260040161081d906125b7565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ce2576040519150601f19603f3d011682016040523d82523d6000602084013e610ce7565b606091505b5050905080610d2a5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640161081d565b50565b600a546001600160a01b03163314610d575760405162461bcd60e51b815260040161081d906125b7565b6010805460ff19811660ff90911615179055565b610953838383604051806020016040528060008152506113bb565b610d8f3361095d565b610df45760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161081d565b610d2a816119a7565b6000610e0860085490565b8210610e6b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081d565b60088281548110610e8c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ec85760405162461bcd60e51b815260040161081d906125b7565b8051610edb90600b90602084019061215d565b5050565b600a546001600160a01b03163314610f095760405162461bcd60e51b815260040161081d906125b7565b601355565b6000818152600260205260408120546001600160a01b03168061070e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081d565b600b8054610f929061274d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe9061274d565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b505050505081565b60006001600160a01b03821661107e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110c45760405162461bcd60e51b815260040161081d906125b7565b6110ce6000611a4e565b565b6060600180546107259061274d565b60105460ff166111215760405162461bcd60e51b815260206004820152600d60248201526c14d85b1948191a5cd8589b1959609a1b604482015260640161081d565b8061113e5760405162461bcd60e51b815260040161081d9061263d565b600f5481111561119c5760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d6178604482015263696d756d60e01b606482015260840161081d565b34601154826111ab91906126eb565b11156111f15760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161081d565b333b156112105760405162461bcd60e51b815260040161081d9061267e565b6013543360009081526015602052604090205461122e9083906126bf565b111561124c5760405162461bcd60e51b815260040161081d9061251a565b600e548161125960085490565b61126391906126bf565b11156112b15760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d69740000604482015260640161081d565b60005b81811015610bac576112c983610b87600c5490565b6112d7600c80546001019055565b806112e181612788565b9150506112b4565b6001600160a01b0382163314156113425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081d565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113af911515815260200190565b60405180910390a35050565b6113c533836116eb565b6113e15760405162461bcd60e51b815260040161081d906125ec565b6113ed84848484611aa0565b50505050565b600a546001600160a01b0316331461141d5760405162461bcd60e51b815260040161081d906125b7565b6010805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081d565b60006114b5611ad3565b905060008151116114d55760405180602001604052806000815250611500565b806114df84611ae2565b6040516020016114f092919061249b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115315760405162461bcd60e51b815260040161081d906125b7565b601255565b600a546001600160a01b031633146115605760405162461bcd60e51b815260040161081d906125b7565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146115ac5760405162461bcd60e51b815260040161081d906125b7565b6001600160a01b0381166116115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610d2a81611a4e565b600a546001600160a01b031633146116445760405162461bcd60e51b815260040161081d906125b7565b6014805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b148061070e575061070e82611bfd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116b282610f0e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081d565b600061176f83610f0e565b9050806001600160a01b0316846001600160a01b031614806117aa5750836001600160a01b031661179f846107a8565b6001600160a01b0316145b806117da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117f582610f0e565b6001600160a01b03161461185d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081d565b6001600160a01b0382166118bf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b6118ca838383611c4d565b6118d560008261167d565b6001600160a01b03831660009081526003602052604081208054600192906118fe90849061270a565b90915550506001600160a01b038216600090815260036020526040812080546001929061192c9084906126bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610edb828260405180602001604052806000815250611c58565b60006119b282610f0e565b90506119c081600084611c4d565b6119cb60008361167d565b6001600160a01b03811660009081526003602052604081208054600192906119f490849061270a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611aab8484846117e2565b611ab784848484611c8b565b6113ed5760405162461bcd60e51b815260040161081d90612565565b6060600b80546107259061274d565b606081611b0757506040805180820190915260018152600360fc1b6020820152610711565b8160005b8115611b315780611b1b81612788565b9150611b2a9050600a836126d7565b9150611b0b565b60008167ffffffffffffffff811115611b5a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b84576020820181803683370190505b5090505b84156117da57611b9960018361270a565b9150611ba6600a866127a3565b611bb19060306126bf565b60f81b818381518110611bd457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bf6600a866126d7565b9450611b88565b60006001600160e01b031982166380ac58cd60e01b1480611c2e57506001600160e01b03198216635b5e139f60e01b145b8061070e57506301ffc9a760e01b6001600160e01b031983161461070e565b610953838383611d98565b611c628383611e55565b611c6f6000848484611c8b565b6109535760405162461bcd60e51b815260040161081d90612565565b60006001600160a01b0384163b15611d8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ccf9033908990889088906004016124ca565b602060405180830381600087803b158015611ce957600080fd5b505af1925050508015611d19575060408051601f3d908101601f19168201909252611d16918101906123f5565b60015b611d73573d808015611d47576040519150601f19603f3d011682016040523d82523d6000602084013e611d4c565b606091505b508051611d6b5760405162461bcd60e51b815260040161081d90612565565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117da565b506001949350505050565b6001600160a01b038316611df357611dee81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e16565b816001600160a01b0316836001600160a01b031614611e1657611e168382611fa3565b6001600160a01b038216611e3257611e2d81612040565b610953565b826001600160a01b0316826001600160a01b031614610953576109538282612119565b6001600160a01b038216611eab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081d565b6000818152600260205260409020546001600160a01b031615611f105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081d565b611f1c60008383611c4d565b6001600160a01b0382166000908152600360205260408120805460019290611f459084906126bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611fb084611013565b611fba919061270a565b60008381526007602052604090205490915080821461200d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120529060019061270a565b6000838152600960205260408120546008805493945090928490811061208857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120b757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120fd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061212483611013565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546121699061274d565b90600052602060002090601f01602090048101928261218b57600085556121d1565b82601f106121a457805160ff19168380011785556121d1565b828001600101855582156121d1579182015b828111156121d15782518255916020019190600101906121b6565b506121dd9291506121e1565b5090565b5b808211156121dd57600081556001016121e2565b600067ffffffffffffffff80841115612211576122116127e3565b604051601f8501601f19908116603f01168101908282118183101715612239576122396127e3565b8160405280935085815286868601111561225257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561227d578081fd5b8135611500816127f9565b6000806040838503121561229a578081fd5b82356122a5816127f9565b915060208301356122b5816127f9565b809150509250929050565b6000806000606084860312156122d4578081fd5b83356122df816127f9565b925060208401356122ef816127f9565b929592945050506040919091013590565b60008060008060808587031215612315578081fd5b8435612320816127f9565b93506020850135612330816127f9565b925060408501359150606085013567ffffffffffffffff811115612352578182fd5b8501601f81018713612362578182fd5b612371878235602084016121f6565b91505092959194509250565b6000806040838503121561238f578182fd5b823561239a816127f9565b9150602083013580151581146122b5578182fd5b600080604083850312156123c0578182fd5b82356123cb816127f9565b946020939093013593505050565b6000602082840312156123ea578081fd5b81356115008161280e565b600060208284031215612406578081fd5b81516115008161280e565b600060208284031215612422578081fd5b813567ffffffffffffffff811115612438578182fd5b8201601f81018413612448578182fd5b6117da848235602084016121f6565b600060208284031215612468578081fd5b5035919050565b60008151808452612487816020860160208601612721565b601f01601f19169290920160200192915050565b600083516124ad818460208801612721565b8351908301906124c1818360208801612721565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124fd9083018461246f565b9695505050505050565b600060208252611500602083018461246f565b6020808252602b908201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726040820152606f60f81b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b600082198211156126d2576126d26127b7565b500190565b6000826126e6576126e66127cd565b500490565b6000816000190483118215151615612705576127056127b7565b500290565b60008282101561271c5761271c6127b7565b500390565b60005b8381101561273c578181015183820152602001612724565b838111156113ed5750506000910152565b60028104600182168061276157607f821691505b6020821081141561278257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561279c5761279c6127b7565b5060010190565b6000826127b2576127b26127cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d2a57600080fd5b6001600160e01b031981168114610d2a57600080fdfea26469706673582212207d25a04d4addf4122b863b65941b82137380844c60299a174de9860349aba9de64736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d05dfc4eafde42e177ef6b002214430de73e2bac00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000013fbe85edc90000
-----Decoded View---------------
Arg [0] : fundsTo_ (address): 0xd05dfC4EAFdE42e177Ef6b002214430dE73e2bAc
Arg [1] : maxSupply_ (uint256): 10000
Arg [2] : maxPerTx_ (uint256): 9
Arg [3] : pricePer_ (uint256): 90000000000000000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000d05dfc4eafde42e177ef6b002214430de73e2bac
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000013fbe85edc90000
Deployed Bytecode Sourcemap
45286:4338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49450:171;;;;;;;;;;-1:-1:-1;49450:171:0;;;;;:::i;:::-;;:::i;:::-;;;6897:14:1;;6890:22;6872:41;;6860:2;6845:18;49450:171:0;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45767:23::-;;;;;;;;;;;;;;;;;;;19051:25:1;;;19039:2;19024:18;45767:23:0;19006:76:1;23088:221:0;;;;;;;;;;-1:-1:-1;23088:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5971:32:1;;;5953:51;;5941:2;5926:18;23088:221:0;5908:102:1;22611:411:0;;;;;;;;;;-1:-1:-1;22611:411:0;;;;;:::i;:::-;;:::i;:::-;;35284:113;;;;;;;;;;-1:-1:-1;35372:10:0;:17;35284:113;;45898:41;;;;;;;;;;-1:-1:-1;45898:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;23978:339;;;;;;;;;;-1:-1:-1;23978:339:0;;;;;:::i;:::-;;:::i;47766:870::-;;;;;;:::i;:::-;;:::i;34952:256::-;;;;;;;;;;-1:-1:-1;34952:256:0;;;;;:::i;:::-;;:::i;45527:30::-;;;;;;;;;;-1:-1:-1;45527:30:0;;;;-1:-1:-1;;;;;45527:30:0;;;46490:171;;;;;;;;;;;;;:::i;48979:73::-;;;;;;;;;;;;;:::i;24388:185::-;;;;;;;;;;-1:-1:-1;24388:185:0;;;;;:::i;:::-;;:::i;41255:245::-;;;;;;;;;;-1:-1:-1;41255:245:0;;;;;:::i;:::-;;:::i;35474:233::-;;;;;;;;;;-1:-1:-1;35474:233:0;;;;;:::i;:::-;;:::i;48642:102::-;;;;;;;;;;-1:-1:-1;48642:102:0;;;;;:::i;:::-;;:::i;49150:105::-;;;;;;;;;;-1:-1:-1;49150:105:0;;;;;:::i;:::-;;:::i;21223:239::-;;;;;;;;;;-1:-1:-1;21223:239:0;;;;;:::i;:::-;;:::i;45723:16::-;;;;;;;;;;-1:-1:-1;45723:16:0;;;;;;;;45412:21;;;;;;;;;;;;;:::i;20953:208::-;;;;;;;;;;-1:-1:-1;20953:208:0;;;;;:::i;:::-;;:::i;43162:94::-;;;;;;;;;;;;;:::i;42511:87::-;;;;;;;;;;-1:-1:-1;42584:6:0;;-1:-1:-1;;;;;42584:6:0;42511:87;;21698:104;;;;;;;;;;;;;:::i;46669:1089::-;;;;;;:::i;:::-;;:::i;23381:295::-;;;;;;;;;;-1:-1:-1;23381:295:0;;;;;:::i;:::-;;:::i;45797:25::-;;;;;;;;;;;;;;;;24644:328;;;;;;;;;;-1:-1:-1;24644:328:0;;;;;:::i;:::-;;:::i;46413:69::-;;;;;;;;;;;;;:::i;21873:334::-;;;;;;;;;;-1:-1:-1;21873:334:0;;;;;:::i;:::-;;:::i;48756:105::-;;;;;;;;;;-1:-1:-1;48756:105:0;;;;;:::i;:::-;;:::i;45600:24::-;;;;;;;;;;;;;;;;23747:164;;;;;;;;;;-1:-1:-1;23747:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23747:164;46298:107;;;;;;;;;;-1:-1:-1;46298:107:0;;;;;:::i;:::-;;:::i;43411:192::-;;;;;;;;;;-1:-1:-1;43411:192:0;;;;;:::i;:::-;;:::i;49060:82::-;;;;;;;;;;;;;:::i;45829:28::-;;;;;;;;;;;;;;;;45671:23;;;;;;;;;;;;;;;;45864:27;;;;;;;;;;-1:-1:-1;45864:27:0;;;;;;;;49450:171;49553:4;49577:36;49601:11;49577:23;:36::i;:::-;49570:43;;49450:171;;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;23088:221::-;23164:7;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;23184:73;;;;-1:-1:-1;;;23184:73:0;;12902:2:1;23184:73:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:34;12960:18;;;12953:62;-1:-1:-1;;;13031:18:1;;;13024:42;13083:19;;23184:73:0;;;;;;;;;-1:-1:-1;23277:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23277:24:0;;23088:221::o;22611:411::-;22692:13;22708:23;22723:7;22708:14;:23::i;:::-;22692:39;;22756:5;-1:-1:-1;;;;;22750:11:0;:2;-1:-1:-1;;;;;22750:11:0;;;22742:57;;;;-1:-1:-1;;;22742:57:0;;15195:2:1;22742:57:0;;;15177:21:1;15234:2;15214:18;;;15207:30;15273:34;15253:18;;;15246:62;-1:-1:-1;;;15324:18:1;;;15317:31;15365:19;;22742:57:0;15167:223:1;22742:57:0;16066:10;-1:-1:-1;;;;;22834:21:0;;;;:62;;-1:-1:-1;22859:37:0;22876:5;16066:10;22883:12;15986:98;22859:37;22812:168;;;;-1:-1:-1;;;22812:168:0;;10882:2:1;22812:168:0;;;10864:21:1;10921:2;10901:18;;;10894:30;10960:34;10940:18;;;10933:62;11031:26;11011:18;;;11004:54;11075:19;;22812:168:0;10854:246:1;22812:168:0;22993:21;23002:2;23006:7;22993:8;:21::i;:::-;22611:411;;;:::o;23978:339::-;24173:41;16066:10;24192:12;24206:7;24173:18;:41::i;:::-;24165:103;;;;-1:-1:-1;;;24165:103:0;;;;;;;:::i;:::-;24281:28;24291:4;24297:2;24301:7;24281:9;:28::i;47766:870::-;47887:4;;;;47886:5;47878:42;;;;-1:-1:-1;;;47878:42:0;;9357:2:1;47878:42:0;;;9339:21:1;9396:2;9376:18;;;9369:30;9435:26;9415:18;;;9408:54;9479:18;;47878:42:0;9329:174:1;47878:42:0;47939:7;;;;47931:41;;;;-1:-1:-1;;;47931:41:0;;13676:2:1;47931:41:0;;;13658:21:1;13715:2;13695:18;;;13688:30;-1:-1:-1;;;13734:18:1;;;13727:52;13796:18;;47931:41:0;13648:172:1;47931:41:0;47991:13;47983:59;;;;-1:-1:-1;;;47983:59:0;;;;;;;:::i;:::-;48084:9;48072:8;;48061;:19;;;;:::i;:::-;:32;;48053:66;;;;-1:-1:-1;;;48053:66:0;;16787:2:1;48053:66:0;;;16769:21:1;16826:2;16806:18;;;16799:30;-1:-1:-1;;;16845:18:1;;;16838:51;16906:18;;48053:66:0;16759:171:1;48053:66:0;48172:10;;48160:8;48138:19;35372:10;:17;35284:113;;48138:19;:30;;;;:::i;:::-;:44;;48130:101;;;;-1:-1:-1;;;48130:101:0;;12128:2:1;48130:101:0;;;12110:21:1;12167:2;12147:18;;;12140:30;12206:34;12186:18;;;12179:62;-1:-1:-1;;;12257:18:1;;;12250:42;12309:19;;48130:101:0;12100:234:1;48130:101:0;48284:9;;48258:10;48251:18;;;;:6;:18;;;;;;:29;;48272:8;;48251:29;:::i;:::-;:42;;48243:98;;;;-1:-1:-1;;;48243:98:0;;;;;;;:::i;:::-;48380:10;8563:20;8611:8;48352:77;;;;-1:-1:-1;;;48352:77:0;;;;;;;:::i;:::-;48445:9;48440:148;48464:8;48460:1;:12;48440:148;;;48494:40;48504:2;48508:25;:15;44708:14;;44616:114;48508:25;48494:9;:40::i;:::-;48549:27;:15;44827:19;;44845:1;44827:19;;;44738:127;48549:27;48474:3;;;;:::i;:::-;;;;48440:148;;;-1:-1:-1;48605:10:0;48598:18;;;;:6;:18;;;;;:30;;48620:8;;48598:18;:30;;48620:8;;48598:30;:::i;:::-;;;;-1:-1:-1;;;;47766:870:0:o;34952:256::-;35049:7;35085:23;35102:5;35085:16;:23::i;:::-;35077:5;:31;35069:87;;;;-1:-1:-1;;;35069:87:0;;7762:2:1;35069:87:0;;;7744:21:1;7801:2;7781:18;;;7774:30;7840:34;7820:18;;;7813:62;-1:-1:-1;;;7891:18:1;;;7884:41;7942:19;;35069:87:0;7734:233:1;35069:87:0;-1:-1:-1;;;;;;35174:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34952:256::o;46490:171::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46561:7:::1;::::0;:46:::1;::::0;46543:12:::1;::::0;-1:-1:-1;;;;;46561:7:0::1;::::0;46581:21:::1;::::0;46543:12;46561:46;46543:12;46561:46;46581:21;46561:7;:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46542:65;;;46626:7;46618:35;;;::::0;-1:-1:-1;;;46618:35:0;;17539:2:1;46618:35:0::1;::::0;::::1;17521:21:1::0;17578:2;17558:18;;;17551:30;-1:-1:-1;;;17597:18:1;;;17590:45;17652:18;;46618:35:0::1;17511:165:1::0;46618:35:0::1;42802:1;46490:171::o:0;48979:73::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49040:4:::1;::::0;;-1:-1:-1;;49032:12:0;::::1;49040:4;::::0;;::::1;49039:5;49032:12;::::0;;48979:73::o;24388:185::-;24526:39;24543:4;24549:2;24553:7;24526:39;;;;;;;;;;;;:16;:39::i;41255:245::-;41373:41;16066:10;41392:12;15986:98;41373:41;41365:102;;;;-1:-1:-1;;;41365:102:0;;18288:2:1;41365:102:0;;;18270:21:1;18327:2;18307:18;;;18300:30;18366:34;18346:18;;;18339:62;-1:-1:-1;;;18417:18:1;;;18410:46;18473:19;;41365:102:0;18260:238:1;41365:102:0;41478:14;41484:7;41478:5;:14::i;35474:233::-;35549:7;35585:30;35372:10;:17;35284:113;;35585:30;35577:5;:38;35569:95;;;;-1:-1:-1;;;35569:95:0;;16374:2:1;35569:95:0;;;16356:21:1;16413:2;16393:18;;;16386:30;16452:34;16432:18;;;16425:62;-1:-1:-1;;;16503:18:1;;;16496:42;16555:19;;35569:95:0;16346:234:1;35569:95:0;35682:10;35693:5;35682:17;;;;;;-1:-1:-1;;;35682:17:0;;;;;;;;;;;;;;;;;35675:24;;35474:233;;;:::o;48642:102::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;48717:19;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48642:102:::0;:::o;49150:105::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49222:9:::1;:25:::0;49150:105::o;21223:239::-;21295:7;21331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21331:16:0;21366:19;21358:73;;;;-1:-1:-1;;;21358:73:0;;11718:2:1;21358:73:0;;;11700:21:1;11757:2;11737:18;;;11730:30;11796:34;11776:18;;;11769:62;-1:-1:-1;;;11847:18:1;;;11840:39;11896:19;;21358:73:0;11690:231:1;45412:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20953:208::-;21025:7;-1:-1:-1;;;;;21053:19:0;;21045:74;;;;-1:-1:-1;;;21045:74:0;;11307:2:1;21045:74:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;-1:-1:-1;;;11436:18:1;;;11429:40;11486:19;;21045:74:0;11279:232:1;21045:74:0;-1:-1:-1;;;;;;21137:16:0;;;;;:9;:16;;;;;;;20953:208::o;43162:94::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;43227:21:::1;43245:1;43227:9;:21::i;:::-;43162:94::o:0;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;46669:1089::-;46784:4;;;;46776:30;;;;-1:-1:-1;;;46776:30:0;;14853:2:1;46776:30:0;;;14835:21:1;14892:2;14872:18;;;14865:30;-1:-1:-1;;;14911:18:1;;;14904:43;14964:18;;46776:30:0;14825:163:1;46776:30:0;46851:13;46843:59;;;;-1:-1:-1;;;46843:59:0;;;;;;;:::i;:::-;46975:8;;46963;:20;;46955:69;;;;-1:-1:-1;;;46955:69:0;;17883:2:1;46955:69:0;;;17865:21:1;17922:2;17902:18;;;17895:30;17961:34;17941:18;;;17934:62;-1:-1:-1;;;18012:18:1;;;18005:34;18056:19;;46955:69:0;17855:226:1;46955:69:0;47157:9;47145:8;;47134;:19;;;;:::i;:::-;:32;;47126:66;;;;-1:-1:-1;;;47126:66:0;;16787:2:1;47126:66:0;;;16769:21:1;16826:2;16806:18;;;16799:30;-1:-1:-1;;;16845:18:1;;;16838:51;16906:18;;47126:66:0;16759:171:1;47126:66:0;47294:10;8563:20;8611:8;47266:77;;;;-1:-1:-1;;;47266:77:0;;;;;;;:::i;:::-;47395:9;;47369:10;47362:18;;;;:6;:18;;;;;;:29;;47383:8;;47362:29;:::i;:::-;:42;;47354:98;;;;-1:-1:-1;;;47354:98:0;;;;;;;:::i;:::-;47505:9;;47493:8;47471:19;35372:10;:17;35284:113;;47471:19;:30;;;;:::i;:::-;:43;;47463:86;;;;-1:-1:-1;;;47463:86:0;;15597:2:1;47463:86:0;;;15579:21:1;15636:2;15616:18;;;15609:30;15675:32;15655:18;;;15648:60;15725:18;;47463:86:0;15569:180:1;47463:86:0;47567:9;47562:148;47586:8;47582:1;:12;47562:148;;;47616:40;47626:2;47630:25;:15;44708:14;;44616:114;47616:40;47671:27;:15;44827:19;;44845:1;44827:19;;;44738:127;47671:27;47596:3;;;;:::i;:::-;;;;47562:148;;23381:295;-1:-1:-1;;;;;23484:24:0;;16066:10;23484:24;;23476:62;;;;-1:-1:-1;;;23476:62:0;;10115:2:1;23476:62:0;;;10097:21:1;10154:2;10134:18;;;10127:30;10193:27;10173:18;;;10166:55;10238:18;;23476:62:0;10087:175:1;23476:62:0;16066:10;23551:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23551:42:0;;;;;;;;;;:53;;-1:-1:-1;;23551:53:0;;;;;;;:42;-1:-1:-1;;;;;23620:48:0;;23659:8;23620:48;;;;6897:14:1;6890:22;6872:41;;6860:2;6845:18;;6827:92;23620:48:0;;;;;;;;23381:295;;:::o;24644:328::-;24819:41;16066:10;24852:7;24819:18;:41::i;:::-;24811:103;;;;-1:-1:-1;;;24811:103:0;;;;;;;:::i;:::-;24925:39;24939:4;24945:2;24949:7;24958:5;24925:13;:39::i;:::-;24644:328;;;;:::o;46413:69::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46463:4:::1;:11:::0;;-1:-1:-1;;46463:11:0::1;46470:4;46463:11;::::0;;46413:69::o;21873:334::-;26547:4;26571:16;;;:7;:16;;;;;;21946:13;;-1:-1:-1;;;;;26571:16:0;21972:76;;;;-1:-1:-1;;;21972:76:0;;14437:2:1;21972:76:0;;;14419:21:1;14476:2;14456:18;;;14449:30;14515:34;14495:18;;;14488:62;-1:-1:-1;;;14566:18:1;;;14559:45;14621:19;;21972:76:0;14409:237:1;21972:76:0;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:86;;;;;;;;;;;;;;;;;22165:7;22174:18;:7;:16;:18::i;:::-;22148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:86;22106:93;21873:334;-1:-1:-1;;;21873:334:0:o;48756:105::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;48828:10:::1;:25:::0;48756:105::o;46298:107::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46377:7:::1;:20:::0;;-1:-1:-1;;;;;;46377:20:0::1;-1:-1:-1::0;;;;;46377:20:0;;;::::1;::::0;;;::::1;::::0;;46298:107::o;43411:192::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43500:22:0;::::1;43492:73;;;::::0;-1:-1:-1;;;43492:73:0;;8593:2:1;43492:73:0::1;::::0;::::1;8575:21:1::0;8632:2;8612:18;;;8605:30;8671:34;8651:18;;;8644:62;-1:-1:-1;;;8722:18:1;;;8715:36;8768:19;;43492:73:0::1;8565:228:1::0;43492:73:0::1;43576:19;43586:8;43576:9;:19::i;49060:82::-:0;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49127:7:::1;::::0;;-1:-1:-1;;49116:18:0;::::1;49127:7;::::0;;::::1;49126:8;49116:18;::::0;;49060:82::o;34644:224::-;34746:4;-1:-1:-1;;;;;;34770:50:0;;-1:-1:-1;;;34770:50:0;;:90;;;34824:36;34848:11;34824:23;:36::i;30464:174::-;30539:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30539:29:0;-1:-1:-1;;;;;30539:29:0;;;;;;;;:24;;30593:23;30539:24;30593:14;:23::i;:::-;-1:-1:-1;;;;;30584:46:0;;;;;;;;;;;30464:174;;:::o;26776:348::-;26869:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;26886:73;;;;-1:-1:-1;;;26886:73:0;;10469:2:1;26886:73:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:34;10527:18;;;10520:62;-1:-1:-1;;;10598:18:1;;;10591:42;10650:19;;26886:73:0;10441:234:1;26886:73:0;26970:13;26986:23;27001:7;26986:14;:23::i;:::-;26970:39;;27039:5;-1:-1:-1;;;;;27028:16:0;:7;-1:-1:-1;;;;;27028:16:0;;:51;;;;27072:7;-1:-1:-1;;;;;27048:31:0;:20;27060:7;27048:11;:20::i;:::-;-1:-1:-1;;;;;27048:31:0;;27028:51;:87;;;-1:-1:-1;;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27083:32;27020:96;26776:348;-1:-1:-1;;;;26776:348:0:o;29768:578::-;29927:4;-1:-1:-1;;;;;29900:31:0;:23;29915:7;29900:14;:23::i;:::-;-1:-1:-1;;;;;29900:31:0;;29892:85;;;;-1:-1:-1;;;29892:85:0;;14027:2:1;29892:85:0;;;14009:21:1;14066:2;14046:18;;;14039:30;14105:34;14085:18;;;14078:62;-1:-1:-1;;;14156:18:1;;;14149:39;14205:19;;29892:85:0;13999:231:1;29892:85:0;-1:-1:-1;;;;;29996:16:0;;29988:65;;;;-1:-1:-1;;;29988:65:0;;9710:2:1;29988:65:0;;;9692:21:1;9749:2;9729:18;;;9722:30;9788:34;9768:18;;;9761:62;-1:-1:-1;;;9839:18:1;;;9832:34;9883:19;;29988:65:0;9682:226:1;29988:65:0;30066:39;30087:4;30093:2;30097:7;30066:20;:39::i;:::-;30170:29;30187:1;30191:7;30170:8;:29::i;:::-;-1:-1:-1;;;;;30212:15:0;;;;;;:9;:15;;;;;:20;;30231:1;;30212:15;:20;;30231:1;;30212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30243:13:0;;;;;;:9;:13;;;;;:18;;30260:1;;30243:13;:18;;30260:1;;30243:18;:::i;:::-;;;;-1:-1:-1;;30272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30272:21:0;-1:-1:-1;;;;;30272:21:0;;;;;;;;;30311:27;;30272:16;;30311:27;;;;;;;29768:578;;;:::o;27466:110::-;27542:26;27552:2;27556:7;27542:26;;;;;;;;;;;;:9;:26::i;29071:360::-;29131:13;29147:23;29162:7;29147:14;:23::i;:::-;29131:39;;29183:48;29204:5;29219:1;29223:7;29183:20;:48::i;:::-;29272:29;29289:1;29293:7;29272:8;:29::i;:::-;-1:-1:-1;;;;;29314:16:0;;;;;;:9;:16;;;;;:21;;29334:1;;29314:16;:21;;29334:1;;29314:21;:::i;:::-;;;;-1:-1:-1;;29353:16:0;;;;:7;:16;;;;;;29346:23;;-1:-1:-1;;;;;;29346:23:0;;;29387:36;29361:7;;29353:16;-1:-1:-1;;;;;29387:36:0;;;;;29353:16;;29387:36;29071:360;;:::o;43611:173::-;43686:6;;;-1:-1:-1;;;;;43703:17:0;;;-1:-1:-1;;;;;;43703:17:0;;;;;;;43736:40;;43686:6;;;43703:17;43686:6;;43736:40;;43667:16;;43736:40;43611:173;;:::o;25854:315::-;26011:28;26021:4;26027:2;26031:7;26011:9;:28::i;:::-;26058:48;26081:4;26087:2;26091:7;26100:5;26058:22;:48::i;:::-;26050:111;;;;-1:-1:-1;;;26050:111:0;;;;;;;:::i;48873:100::-;48925:13;48958:7;48951:14;;;;;:::i;16519:723::-;16575:13;16796:10;16792:53;;-1:-1:-1;16823:10:0;;;;;;;;;;;;-1:-1:-1;;;16823:10:0;;;;;;16792:53;16870:5;16855:12;16911:78;16918:9;;16911:78;;16944:8;;;;:::i;:::-;;-1:-1:-1;16967:10:0;;-1:-1:-1;16975:2:0;16967:10;;:::i;:::-;;;16911:78;;;16999:19;17031:6;17021:17;;;;;;-1:-1:-1;;;17021:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17021:17:0;;16999:39;;17049:154;17056:10;;17049:154;;17083:11;17093:1;17083:11;;:::i;:::-;;-1:-1:-1;17152:10:0;17160:2;17152:5;:10;:::i;:::-;17139:24;;:2;:24;:::i;:::-;17126:39;;17109:6;17116;17109:14;;;;;;-1:-1:-1;;;17109:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17109:56:0;;;;;;;;-1:-1:-1;17180:11:0;17189:2;17180:11;;:::i;:::-;;;17049:154;;20584:305;20686:4;-1:-1:-1;;;;;;20723:40:0;;-1:-1:-1;;;20723:40:0;;:105;;-1:-1:-1;;;;;;;20780:48:0;;-1:-1:-1;;;20780:48:0;20723:105;:158;;;-1:-1:-1;;;;;;;;;;19191:40:0;;;20845:36;19082:157;49261:181;49389:45;49416:4;49422:2;49426:7;49389:26;:45::i;27803:321::-;27933:18;27939:2;27943:7;27933:5;:18::i;:::-;27984:54;28015:1;28019:2;28023:7;28032:5;27984:22;:54::i;:::-;27962:154;;;;-1:-1:-1;;;27962:154:0;;;;;;;:::i;31203:803::-;31358:4;-1:-1:-1;;;;;31379:13:0;;8563:20;8611:8;31375:624;;31415:72;;-1:-1:-1;;;31415:72:0;;-1:-1:-1;;;;;31415:36:0;;;;;:72;;16066:10;;31466:4;;31472:7;;31481:5;;31415:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31415:72:0;;;;;;;;-1:-1:-1;;31415:72:0;;;;;;;;;;;;:::i;:::-;;;31411:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31661:13:0;;31657:272;;31704:60;;-1:-1:-1;;;31704:60:0;;;;;;;:::i;31657:272::-;31879:6;31873:13;31864:6;31860:2;31856:15;31849:38;31411:533;-1:-1:-1;;;;;;31538:55:0;-1:-1:-1;;;31538:55:0;;-1:-1:-1;31531:62:0;;31375:624;-1:-1:-1;31983:4:0;31203:803;;;;;;:::o;36320:589::-;-1:-1:-1;;;;;36526:18:0;;36522:187;;36561:40;36593:7;37736:10;:17;;37709:24;;;;:15;:24;;;;;:44;;;37764:24;;;;;;;;;;;;37632:164;36561:40;36522:187;;;36631:2;-1:-1:-1;;;;;36623:10:0;:4;-1:-1:-1;;;;;36623:10:0;;36619:90;;36650:47;36683:4;36689:7;36650:32;:47::i;:::-;-1:-1:-1;;;;;36723:16:0;;36719:183;;36756:45;36793:7;36756:36;:45::i;:::-;36719:183;;;36829:4;-1:-1:-1;;;;;36823:10:0;:2;-1:-1:-1;;;;;36823:10:0;;36819:83;;36850:40;36878:2;36882:7;36850:27;:40::i;28460:382::-;-1:-1:-1;;;;;28540:16:0;;28532:61;;;;-1:-1:-1;;;28532:61:0;;12541:2:1;28532:61:0;;;12523:21:1;;;12560:18;;;12553:30;12619:34;12599:18;;;12592:62;12671:18;;28532:61:0;12513:182:1;28532:61:0;26547:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;:30;28604:58;;;;-1:-1:-1;;;28604:58:0;;9000:2:1;28604:58:0;;;8982:21:1;9039:2;9019:18;;;9012:30;9078;9058:18;;;9051:58;9126:18;;28604:58:0;8972:178:1;28604:58:0;28675:45;28704:1;28708:2;28712:7;28675:20;:45::i;:::-;-1:-1:-1;;;;;28733:13:0;;;;;;:9;:13;;;;;:18;;28750:1;;28733:13;:18;;28750:1;;28733:18;:::i;:::-;;;;-1:-1:-1;;28762:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28762:21:0;-1:-1:-1;;;;;28762:21:0;;;;;;;;28801:33;;28762:16;;;28801:33;;28762:16;;28801:33;28460:382;;:::o;38423:988::-;38689:22;38739:1;38714:22;38731:4;38714:16;:22::i;:::-;:26;;;;:::i;:::-;38751:18;38772:26;;;:17;:26;;;;;;38689:51;;-1:-1:-1;38905:28:0;;;38901:328;;-1:-1:-1;;;;;38972:18:0;;38950:19;38972:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39023:30;;;;;;:44;;;39140:30;;:17;:30;;;;;:43;;;38901:328;-1:-1:-1;39325:26:0;;;;:17;:26;;;;;;;;39318:33;;;-1:-1:-1;;;;;39369:18:0;;;;;:12;:18;;;;;:34;;;;;;;39362:41;38423:988::o;39706:1079::-;39984:10;:17;39959:22;;39984:21;;40004:1;;39984:21;:::i;:::-;40016:18;40037:24;;;:15;:24;;;;;;40410:10;:26;;39959:46;;-1:-1:-1;40037:24:0;;39959:46;;40410:26;;;;-1:-1:-1;;;40410:26:0;;;;;;;;;;;;;;;;;40388:48;;40474:11;40449:10;40460;40449:22;;;;;;-1:-1:-1;;;40449:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40554:28;;;:15;:28;;;;;;;:41;;;40726:24;;;;;40719:31;40761:10;:16;;;;;-1:-1:-1;;;40761:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39706:1079;;;;:::o;37210:221::-;37295:14;37312:20;37329:2;37312:16;:20::i;:::-;-1:-1:-1;;;;;37343:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37388:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37210:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;;;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;;;;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;;;;;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:436::-;;;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3244:15;;3237:23;3225:36;;3215:2;;3280:6;3272;3265:22;3326:325;;;3455:2;3443:9;3434:7;3430:23;3426:32;3423:2;;;3476:6;3468;3461:22;3423:2;3520:9;3507:23;3539:31;3564:5;3539:31;:::i;:::-;3589:5;3641:2;3626:18;;;;3613:32;;-1:-1:-1;;;3413:238:1:o;3656:255::-;;3767:2;3755:9;3746:7;3742:23;3738:32;3735:2;;;3788:6;3780;3773:22;3735:2;3832:9;3819:23;3851:30;3875:5;3851:30;:::i;3916:259::-;;4038:2;4026:9;4017:7;4013:23;4009:32;4006:2;;;4059:6;4051;4044:22;4006:2;4096:9;4090:16;4115:30;4139:5;4115:30;:::i;4180:480::-;;4302:2;4290:9;4281:7;4277:23;4273:32;4270:2;;;4323:6;4315;4308:22;4270:2;4368:9;4355:23;4401:18;4393:6;4390:30;4387:2;;;4438:6;4430;4423:22;4387:2;4466:22;;4519:4;4511:13;;4507:27;-1:-1:-1;4497:2:1;;4553:6;4545;4538:22;4497:2;4581:73;4646:7;4641:2;4628:16;4623:2;4619;4615:11;4581:73;:::i;4665:190::-;;4777:2;4765:9;4756:7;4752:23;4748:32;4745:2;;;4798:6;4790;4783:22;4745:2;-1:-1:-1;4826:23:1;;4735:120;-1:-1:-1;4735:120:1:o;4860:257::-;;4939:5;4933:12;4966:6;4961:3;4954:19;4982:63;5038:6;5031:4;5026:3;5022:14;5015:4;5008:5;5004:16;4982:63;:::i;:::-;5099:2;5078:15;-1:-1:-1;;5074:29:1;5065:39;;;;5106:4;5061:50;;4909:208;-1:-1:-1;;4909:208:1:o;5122:470::-;;5339:6;5333:13;5355:53;5401:6;5396:3;5389:4;5381:6;5377:17;5355:53;:::i;:::-;5471:13;;5430:16;;;;5493:57;5471:13;5430:16;5527:4;5515:17;;5493:57;:::i;:::-;5566:20;;5309:283;-1:-1:-1;;;;5309:283:1:o;6239:488::-;-1:-1:-1;;;;;6508:15:1;;;6490:34;;6560:15;;6555:2;6540:18;;6533:43;6607:2;6592:18;;6585:34;;;6655:3;6650:2;6635:18;;6628:31;;;6239:488;;6676:45;;6701:19;;6693:6;6676:45;:::i;:::-;6668:53;6442:285;-1:-1:-1;;;;;;6442:285:1:o;6924:219::-;;7073:2;7062:9;7055:21;7093:44;7133:2;7122:9;7118:18;7110:6;7093:44;:::i;7148:407::-;7350:2;7332:21;;;7389:2;7369:18;;;7362:30;7428:34;7423:2;7408:18;;7401:62;-1:-1:-1;;;7494:2:1;7479:18;;7472:41;7545:3;7530:19;;7322:233::o;7972:414::-;8174:2;8156:21;;;8213:2;8193:18;;;8186:30;8252:34;8247:2;8232:18;;8225:62;-1:-1:-1;;;8318:2:1;8303:18;;8296:48;8376:3;8361:19;;8146:240::o;13113:356::-;13315:2;13297:21;;;13334:18;;;13327:30;13393:34;13388:2;13373:18;;13366:62;13460:2;13445:18;;13287:182::o;15754:413::-;15956:2;15938:21;;;15995:2;15975:18;;;15968:30;16034:34;16029:2;16014:18;;16007:62;-1:-1:-1;;;16100:2:1;16085:18;;16078:47;16157:3;16142:19;;15928:239::o;16935:397::-;17137:2;17119:21;;;17176:2;17156:18;;;17149:30;17215:34;17210:2;17195:18;;17188:62;-1:-1:-1;;;17281:2:1;17266:18;;17259:31;17322:3;17307:19;;17109:223::o;18503:397::-;18705:2;18687:21;;;18744:2;18724:18;;;18717:30;18783:34;18778:2;18763:18;;18756:62;-1:-1:-1;;;18849:2:1;18834:18;;18827:31;18890:3;18875:19;;18677:223::o;19087:128::-;;19158:1;19154:6;19151:1;19148:13;19145:2;;;19164:18;;:::i;:::-;-1:-1:-1;19200:9:1;;19135:80::o;19220:120::-;;19286:1;19276:2;;19291:18;;:::i;:::-;-1:-1:-1;19325:9:1;;19266:74::o;19345:168::-;;19451:1;19447;19443:6;19439:14;19436:1;19433:21;19428:1;19421:9;19414:17;19410:45;19407:2;;;19458:18;;:::i;:::-;-1:-1:-1;19498:9:1;;19397:116::o;19518:125::-;;19586:1;19583;19580:8;19577:2;;;19591:18;;:::i;:::-;-1:-1:-1;19628:9:1;;19567:76::o;19648:258::-;19720:1;19730:113;19744:6;19741:1;19738:13;19730:113;;;19820:11;;;19814:18;19801:11;;;19794:39;19766:2;19759:10;19730:113;;;19861:6;19858:1;19855:13;19852:2;;;-1:-1:-1;;19896:1:1;19878:16;;19871:27;19701:205::o;19911:380::-;19996:1;19986:12;;20043:1;20033:12;;;20054:2;;20108:4;20100:6;20096:17;20086:27;;20054:2;20161;20153:6;20150:14;20130:18;20127:38;20124:2;;;20207:10;20202:3;20198:20;20195:1;20188:31;20242:4;20239:1;20232:15;20270:4;20267:1;20260:15;20124:2;;19966:325;;;:::o;20296:135::-;;-1:-1:-1;;20356:17:1;;20353:2;;;20376:18;;:::i;:::-;-1:-1:-1;20423:1:1;20412:13;;20343:88::o;20436:112::-;;20494:1;20484:2;;20499:18;;:::i;:::-;-1:-1:-1;20533:9:1;;20474:74::o;20553:127::-;20614:10;20609:3;20605:20;20602:1;20595:31;20645:4;20642:1;20635:15;20669:4;20666:1;20659:15;20685:127;20746:10;20741:3;20737:20;20734:1;20727:31;20777:4;20774:1;20767:15;20801:4;20798:1;20791:15;20817:127;20878:10;20873:3;20869:20;20866:1;20859:31;20909:4;20906:1;20899:15;20933:4;20930:1;20923:15;20949:131;-1:-1:-1;;;;;21024:31:1;;21014:42;;21004:2;;21070:1;21067;21060:12;21085:131;-1:-1:-1;;;;;;21159:32:1;;21149:43;;21139:2;;21206:1;21203;21196:12
Swarm Source
ipfs://7d25a04d4addf4122b863b65941b82137380844c60299a174de9860349aba9de
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.