Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
10,000 DUSK
Holders
2,872
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DUSKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DuskBreakers
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-05 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) 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); } // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) /** * @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; } // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) /** * @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); } // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /** * @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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract DuskBreakers is ERC721Enumerable, Ownable, ReentrancyGuard { using Strings for string; using SafeMath for uint256; using Counters for Counters.Counter; /* * Enforce the existence of only 10 Breakers. */ uint256 public constant BREAKER_SUPPLY = 10000; uint256 public constant breakerPrice = 0.06 ether; string public baseTokenURI; bool private PAUSE = true; bool private fcfsMint = false; // Ensure Fairness string public BREAKER_PROVENANCE = ""; uint256 public startingIndexBlock; uint256 public startingIndex; // tokenID storage Counters.Counter private _tokenIdCounter; // Presale, Play2Mint PresaleConfig public presaleConfig; Play2MintConfig public play2MintConfig; // Presales and Play2Mints mappings mapping(address => uint256) private _presaleList; mapping(address => uint256) private _play2MintList; // Presale and Play2Mint Structs struct PresaleConfig { uint256 mintMax; } struct Play2MintConfig { uint256 mintMax; } // Breaker Contract Events event ChangePresaleConfig( uint256 _mintMax ); event ChangePlay2MintConfig( uint256 _mintMax ); // Events event PauseEvent(bool pause); //event welcomeToTheDusk(uint256 indexed id); // Safety Modifiers function isUnpausedAndSupplied() public view returns (bool){ return (hasSupply(1)) && (!PAUSE); } modifier saleIsOpen { require(hasSupply(1), "Breakers Sold Out!"); require(!PAUSE, "Sales not open"); _; } function setPause(bool _pause) public onlyOwner{ PAUSE = _pause; emit PauseEvent(PAUSE); } // Open Floodgates for FCFS event FCFSEvent(bool pause); function setFCFS(bool _fcfsMint) public onlyOwner{ fcfsMint = _fcfsMint; emit FCFSEvent(fcfsMint); } // Token URI overrides function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } // token counters function nextToken() public view returns (uint256) { return _tokenIdCounter.current(); } constructor(string memory name, string memory symbol) ERC721(name, symbol){ // First we allow presales to mint during Play2Mint // Then, we allow Play2Mint 1 day // Finally we open for anyone to mint //preseale starts on contract creation uint256 _mintMax = 2; presaleConfig = PresaleConfig(_mintMax); emit ChangePresaleConfig(_mintMax); // Play2Mint allow minting config uint256 _p2MmintMax = 3; play2MintConfig = Play2MintConfig(_p2MmintMax); emit ChangePlay2MintConfig(_p2MmintMax); setBaseURI("https://duskbreakers.gg/api/breakers/"); } /* * Fairness Section.... * Pre mint, we set the provenance hash to the hash of hashes of the sha256 * in order of original image generation * We then have an offest based on the last block sold, modulo the total supply * Thus you know we genereated them in the order we said and anyone including us had no way * to know what the starting index will be */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { BREAKER_PROVENANCE = provenanceHash; } // It has gone wrong and the presale didn't fully mint so this allows us to reveal function emergencySetStartingIndexBlock() public onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function setStartingIndex() public { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint(blockhash(startingIndexBlock)) % BREAKER_SUPPLY; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if (block.number.sub(startingIndexBlock) > 255) { startingIndex = uint(blockhash(block.number - 1)) % BREAKER_SUPPLY; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } // function addTreasury(address _address) external onlyOwner { require( _address != address(0), "Breaker Treasury: Can't add a zero address" ); if (_presaleList[_address] == 0) { _presaleList[_address] = 420; // It seems appropriate } } // Presale and Play2Mint whitelists function addToPresaleList(address[] calldata _addresses) external onlyOwner { for (uint256 ind = 0; ind < _addresses.length; ind++) { require( _addresses[ind] != address(0), "Breaker Presale: Can't add a zero address" ); if (_presaleList[_addresses[ind]] == 0) { _presaleList[_addresses[ind]] = presaleConfig.mintMax; } } } function addToPlay2Mint(address[] calldata _addresses) external onlyOwner { for (uint256 ind = 0; ind < _addresses.length; ind++) { require( _addresses[ind] != address(0), "DuskBreaker P2M: Can't add a zero address" ); if (_play2MintList[_addresses[ind]] == 0) { _play2MintList[_addresses[ind]] = play2MintConfig.mintMax; } } } function mintBreaker(uint256 numberOfTokens) public payable saleIsOpen nonReentrant() { require(hasSupply(numberOfTokens), "Purchase exceeds max total Breakers"); require(canMint(numberOfTokens), "Mint Access Not Granted"); require(breakerPrice.mul(numberOfTokens) <= msg.value, "ETH sent in transaction too low"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = nextToken(); if (mintIndex < BREAKER_SUPPLY) { _safeMint(msg.sender, mintIndex); //emit welcomeToTheDusk(mintIndex); _tokenIdCounter.increment(); // remove presales sales first then play2mint sales next if (_presaleList[msg.sender] > 0) { _presaleList[msg.sender] = _presaleList[msg.sender].sub(1); } else if (_play2MintList[msg.sender] > 0) { _play2MintList[msg.sender] = _play2MintList[msg.sender].sub(1); } } } // Did we mint the last block? If so, ready the starting index based on this block number if (startingIndexBlock == 0 && (nextToken() == BREAKER_SUPPLY)) { startingIndexBlock = block.number; } } // Safeguards function hasSupply(uint256 numberOfTokens) public view returns (bool) { uint256 creatureSupply = nextToken(); return creatureSupply.add(numberOfTokens) <= BREAKER_SUPPLY; } function canMint(uint256 numberOfTokens) public view returns (bool) { // skip guard so web3 has easy time if(! isUnpausedAndSupplied()) { return false; } // Presales can mint their max if(_presaleList[msg.sender] > 0 && numberOfTokens <= _presaleList[msg.sender] ) { return true; } // same for play2mint people, but if you are both whitelist and p2m, you can mint the sum if(_play2MintList[msg.sender] > 0 && numberOfTokens <= _play2MintList[msg.sender] ) { return true; } // after Play2Mint, anyone can mint if(fcfsMint) { return true; } return false; } // Web3 Economics function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(msg.sender, address(this).balance); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintMax","type":"uint256"}],"name":"ChangePlay2MintConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintMax","type":"uint256"}],"name":"ChangePresaleConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"pause","type":"bool"}],"name":"FCFSEvent","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":false,"internalType":"bool","name":"pause","type":"bool"}],"name":"PauseEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BREAKER_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BREAKER_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPlay2Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakerPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"hasSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isUnpausedAndSupplied","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBreaker","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"play2MintConfig","outputs":[{"internalType":"uint256","name":"mintMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"uint256","name":"mintMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_fcfsMint","type":"bool"}],"name":"setFCFS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600d805461ffff1916600117905560a06040819052600060808190526200002991600e9162000245565b503480156200003757600080fd5b5060405162002fd638038062002fd68339810160408190526200005a91620003b8565b8151829082906200007390600090602085019062000245565b5080516200008990600190602084019062000245565b505050620000a6620000a06200017760201b60201c565b6200017b565b6001600b5560408051602081018252600290819052601281905590517f100f98a1c42bb2a3318fa0ae93064cad608b3318f34d3fbfa577cee5abdf7ea590620000f29083815260200190565b60405180910390a160408051602081018252600390819052601381905590517fb32ec197bc17f8c56e3885021312f534c8a78d6e4305991211becd548c2d3d3390620001419083815260200190565b60405180910390a16200016d60405180606001604052806025815260200162002fb160259139620001cd565b505050506200045f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200022c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200024190600c90602084019062000245565b5050565b828054620002539062000422565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031357600080fd5b81516001600160401b0380821115620003305762000330620002eb565b604051601f8301601f19908116603f011681019082821181831017156200035b576200035b620002eb565b816040528381526020925086838588010111156200037857600080fd5b600091505b838210156200039c57858201830151818301840152908201906200037d565b83821115620003ae5760008385830101525b9695505050505050565b60008060408385031215620003cc57600080fd5b82516001600160401b0380821115620003e457600080fd5b620003f28683870162000301565b935060208501519150808211156200040957600080fd5b50620004188582860162000301565b9150509250929050565b600181811c908216806200043757607f821691505b602082108114156200045957634e487b7160e01b600052602260045260246000fd5b50919050565b612b42806200046f6000396000f3fe6080604052600436106101f15760003560e01c80637d17fcbe116101095780637d17fcbe1461048e578063853828b6146104a35780638a450c0b146104b85780638da5cb5b146104cf5780639499ac54146104e457806395d89b41146104f9578063a22cb4651461050e578063b141714b1461052e578063b88d4fde14610549578063bedb86fb14610569578063c7ba060114610589578063c87b56dd146105a9578063c8cb3834146105c9578063cb774d47146105e9578063cfebfa0a146105ff578063d547cfb71461061f578063e36d649814610634578063e985e9c51461064a578063e98665501461066a578063f2fde38b1461067f578063fd88fa691461069f57600080fd5b806301ffc9a7146101f657806306fdde031461022b578063081812fc1461024d578063095ea7b31461028557806310969523146102a757806318160ddd146102c757806319fe2405146102e657806323b872dd146102fb578063269dd9c81461031b5780632f745c59146103315780633dfc167f1461035157806342842e0e146103715780634f6ccce7146103915780634f6ee683146103b1578063521af1e9146103c457806355f804b3146103d95780635dd871a3146103f95780636352211e1461041957806370a0823114610439578063715018a6146104595780637204a3c91461046e575b600080fd5b34801561020257600080fd5b506102166102113660046124c8565b6106b6565b60405190151581526020015b60405180910390f35b34801561023757600080fd5b506102406106e1565b604051610222919061253d565b34801561025957600080fd5b5061026d610268366004612550565b610773565b6040516001600160a01b039091168152602001610222565b34801561029157600080fd5b506102a56102a0366004612585565b610800565b005b3480156102b357600080fd5b506102a56102c236600461263a565b610911565b3480156102d357600080fd5b506008545b604051908152602001610222565b3480156102f257600080fd5b50610240610957565b34801561030757600080fd5b506102a5610316366004612682565b6109e5565b34801561032757600080fd5b506102d861271081565b34801561033d57600080fd5b506102d861034c366004612585565b610a16565b34801561035d57600080fd5b506102a561036c3660046126ce565b610aac565b34801561037d57600080fd5b506102a561038c366004612682565b610b33565b34801561039d57600080fd5b506102d86103ac366004612550565b610b4e565b6102a56103bf366004612550565b610be1565b3480156103d057600080fd5b50610216610ed5565b3480156103e557600080fd5b506102a56103f436600461263a565b610ef5565b34801561040557600080fd5b50610216610414366004612550565b610f37565b34801561042557600080fd5b5061026d610434366004612550565b610fe1565b34801561044557600080fd5b506102d86104543660046126e9565b611058565b34801561046557600080fd5b506102a56110df565b34801561047a57600080fd5b506102a5610489366004612704565b61111a565b34801561049a57600080fd5b506102a561128a565b3480156104af57600080fd5b506102a56112df565b3480156104c457600080fd5b506013546102d89081565b3480156104db57600080fd5b5061026d611326565b3480156104f057600080fd5b506102d8611335565b34801561050557600080fd5b50610240611340565b34801561051a57600080fd5b506102a5610529366004612778565b61134f565b34801561053a57600080fd5b506102d866d529ae9e86000081565b34801561055557600080fd5b506102a56105643660046127ab565b61135a565b34801561057557600080fd5b506102a56105843660046126ce565b611392565b34801561059557600080fd5b506102166105a4366004612550565b611408565b3480156105b557600080fd5b506102406105c4366004612550565b61142b565b3480156105d557600080fd5b506102a56105e43660046126e9565b6114f6565b3480156105f557600080fd5b506102d860105481565b34801561060b57600080fd5b506102a561061a366004612704565b6115c9565b34801561062b57600080fd5b50610240611739565b34801561064057600080fd5b506102d8600f5481565b34801561065657600080fd5b50610216610665366004612826565b611746565b34801561067657600080fd5b506102a5611774565b34801561068b57600080fd5b506102a561069a3660046126e9565b611845565b3480156106ab57600080fd5b506012546102d89081565b60006001600160e01b0319821663780e9d6360e01b14806106db57506106db826118e2565b92915050565b6060600080546106f090612850565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90612850565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600061077e82611932565b6107e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080b82610fe1565b9050806001600160a01b0316836001600160a01b031614156108795760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107db565b336001600160a01b038216148061089557506108958133611746565b6109025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107db565b61090c838361194f565b505050565b3361091a611326565b6001600160a01b0316146109405760405162461bcd60e51b81526004016107db9061288b565b805161095390600e906020840190612419565b5050565b600e805461096490612850565b80601f016020809104026020016040519081016040528092919081815260200182805461099090612850565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b505050505081565b6109ef33826119bd565b610a0b5760405162461bcd60e51b81526004016107db906128c0565b61090c838383611a87565b6000610a2183611058565b8210610a835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107db565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610ab5611326565b6001600160a01b031614610adb5760405162461bcd60e51b81526004016107db9061288b565b600d805461ff0019166101008315158102919091179182905560405160ff9190920416151581527ff96d9fc711001fcac4f7f586221bde605f5370fc4feb45066bb7e3e662d88870906020015b60405180910390a150565b61090c8383836040518060200160405280600081525061135a565b6000610b5960085490565b8210610bbc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107db565b60088281548110610bcf57610bcf612911565b90600052602060002001549050919050565b610beb6001611408565b610c2c5760405162461bcd60e51b8152602060048201526012602482015271427265616b65727320536f6c64204f75742160701b60448201526064016107db565b600d5460ff1615610c705760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b60448201526064016107db565b6002600b541415610cc35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107db565b6002600b55610cd181611408565b610d295760405162461bcd60e51b815260206004820152602360248201527f50757263686173652065786365656473206d617820746f74616c20427265616b60448201526265727360e81b60648201526084016107db565b610d3281610f37565b610d785760405162461bcd60e51b8152602060048201526017602482015276135a5b9d081058d8d95cdcc8139bdd0811dc985b9d1959604a1b60448201526064016107db565b34610d8a66d529ae9e86000083611c32565b1115610dd85760405162461bcd60e51b815260206004820152601f60248201527f4554482073656e7420696e207472616e73616374696f6e20746f6f206c6f770060448201526064016107db565b60005b81811015610eaa576000610ded611335565b9050612710811015610e9757610e033382611c3e565b610e11601180546001019055565b3360009081526014602052604090205415610e565733600090815260146020526040902054610e41906001611c58565b33600090815260146020526040902055610e97565b3360009081526015602052604090205415610e975733600090815260156020526040902054610e86906001611c58565b336000908152601560205260409020555b5080610ea28161293d565b915050610ddb565b50600f54158015610ec35750612710610ec1611335565b145b15610ecd5743600f555b506001600b55565b6000610ee16001611408565b8015610ef05750600d5460ff16155b905090565b33610efe611326565b6001600160a01b031614610f245760405162461bcd60e51b81526004016107db9061288b565b805161095390600c906020840190612419565b6000610f41610ed5565b610f4d57506000919050565b3360009081526014602052604090205415801590610f7a5750336000908152601460205260409020548211155b15610f8757506001919050565b3360009081526015602052604090205415801590610fb45750336000908152601560205260409020548211155b15610fc157506001919050565b600d54610100900460ff1615610fd957506001919050565b506000919050565b6000818152600260205260408120546001600160a01b0316806106db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107db565b60006001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107db565b506001600160a01b031660009081526003602052604090205490565b336110e8611326565b6001600160a01b03161461110e5760405162461bcd60e51b81526004016107db9061288b565b6111186000611c64565b565b33611123611326565b6001600160a01b0316146111495760405162461bcd60e51b81526004016107db9061288b565b60005b8181101561090c57600083838381811061116857611168612911565b905060200201602081019061117d91906126e9565b6001600160a01b031614156111e65760405162461bcd60e51b815260206004820152602960248201527f427265616b65722050726573616c653a2043616e2774206164642061207a65726044820152686f206164647265737360b81b60648201526084016107db565b601460008484848181106111fc576111fc612911565b905060200201602081019061121191906126e9565b6001600160a01b03168152602081019190915260400160002054611278576012546014600085858581811061124857611248612911565b905060200201602081019061125d91906126e9565b6001600160a01b031681526020810191909152604001600020555b806112828161293d565b91505061114c565b33611293611326565b6001600160a01b0316146112b95760405162461bcd60e51b81526004016107db9061288b565b601054156112d95760405162461bcd60e51b81526004016107db90612958565b43600f55565b336112e8611326565b6001600160a01b03161461130e5760405162461bcd60e51b81526004016107db9061288b565b478061131957600080fd5b6113233347611cb6565b50565b600a546001600160a01b031690565b6000610ef060115490565b6060600180546106f090612850565b610953338383611d4c565b61136433836119bd565b6113805760405162461bcd60e51b81526004016107db906128c0565b61138c84848484611e17565b50505050565b3361139b611326565b6001600160a01b0316146113c15760405162461bcd60e51b81526004016107db9061288b565b600d805460ff191682151590811790915560405160ff909116151581527f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d390602001610b28565b600080611413611335565b90506127106114228285611e4a565b11159392505050565b606061143682611932565b61149a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b60006114a4611e56565b905060008151116114c457604051806020016040528060008152506114ef565b806114ce84611e65565b6040516020016114df92919061298f565b6040516020818303038152906040525b9392505050565b336114ff611326565b6001600160a01b0316146115255760405162461bcd60e51b81526004016107db9061288b565b6001600160a01b03811661158e5760405162461bcd60e51b815260206004820152602a60248201527f427265616b65722054726561737572793a2043616e2774206164642061207a65604482015269726f206164647265737360b01b60648201526084016107db565b6001600160a01b038116600090815260146020526040902054611323576001600160a01b031660009081526014602052604090206101a49055565b336115d2611326565b6001600160a01b0316146115f85760405162461bcd60e51b81526004016107db9061288b565b60005b8181101561090c57600083838381811061161757611617612911565b905060200201602081019061162c91906126e9565b6001600160a01b031614156116955760405162461bcd60e51b815260206004820152602960248201527f4475736b427265616b65722050324d3a2043616e2774206164642061207a65726044820152686f206164647265737360b81b60648201526084016107db565b601560008484848181106116ab576116ab612911565b90506020020160208101906116c091906126e9565b6001600160a01b0316815260208101919091526040016000205461172757601354601560008585858181106116f7576116f7612911565b905060200201602081019061170c91906126e9565b6001600160a01b031681526020810191909152604001600020555b806117318161293d565b9150506115fb565b600c805461096490612850565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601054156117945760405162461bcd60e51b81526004016107db90612958565b600f546117e35760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d7573742062652073657460448201526064016107db565b600f546117f49061271090406129d4565b601055600f5460ff90611808904390611c58565b111561182b5761271061181c6001436129e8565b6118279190406129d4565b6010555b60105461111857601054611840906001611e4a565b601055565b3361184e611326565b6001600160a01b0316146118745760405162461bcd60e51b81526004016107db9061288b565b6001600160a01b0381166118d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b61132381611c64565b60006001600160e01b031982166380ac58cd60e01b148061191357506001600160e01b03198216635b5e139f60e01b145b806106db57506301ffc9a760e01b6001600160e01b03198316146106db565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198482610fe1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119c882611932565b611a295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107db565b6000611a3483610fe1565b9050806001600160a01b0316846001600160a01b03161480611a6f5750836001600160a01b0316611a6484610773565b6001600160a01b0316145b80611a7f5750611a7f8185611746565b949350505050565b826001600160a01b0316611a9a82610fe1565b6001600160a01b031614611b025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107db565b6001600160a01b038216611b645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107db565b611b6f838383611f62565b611b7a60008261194f565b6001600160a01b0383166000908152600360205260408120805460019290611ba39084906129e8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bd19084906129ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006114ef8284612a17565b61095382826040518060200160405280600081525061201a565b60006114ef82846129e8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d03576040519150601f19603f3d011682016040523d82523d6000602084013e611d08565b606091505b505090508061090c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107db565b816001600160a01b0316836001600160a01b03161415611daa5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107db565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e22848484611a87565b611e2e8484848461204d565b61138c5760405162461bcd60e51b81526004016107db90612a36565b60006114ef82846129ff565b6060600c80546106f090612850565b606081611e895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb35780611e9d8161293d565b9150611eac9050600a83612a88565b9150611e8d565b6000816001600160401b03811115611ecd57611ecd6125af565b6040519080825280601f01601f191660200182016040528015611ef7576020820181803683370190505b5090505b8415611a7f57611f0c6001836129e8565b9150611f19600a866129d4565b611f249060306129ff565b60f81b818381518110611f3957611f39612911565b60200101906001600160f81b031916908160001a905350611f5b600a86612a88565b9450611efb565b6001600160a01b038316611fbd57611fb881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fe0565b816001600160a01b0316836001600160a01b031614611fe057611fe0838261214b565b6001600160a01b038216611ff75761090c816121e8565b826001600160a01b0316826001600160a01b03161461090c5761090c8282612297565b61202483836122db565b612031600084848461204d565b61090c5760405162461bcd60e51b81526004016107db90612a36565b60006001600160a01b0384163b1561214057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612091903390899088908890600401612a9c565b6020604051808303816000875af19250505080156120cc575060408051601f3d908101601f191682019092526120c991810190612ad9565b60015b612126573d8080156120fa576040519150601f19603f3d011682016040523d82523d6000602084013e6120ff565b606091505b50805161211e5760405162461bcd60e51b81526004016107db90612a36565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7f565b506001949350505050565b6000600161215884611058565b61216291906129e8565b6000838152600760205260409020549091508082146121b5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121fa906001906129e8565b6000838152600960205260408120546008805493945090928490811061222257612222612911565b90600052602060002001549050806008838154811061224357612243612911565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061227b5761227b612af6565b6001900381819060005260206000200160009055905550505050565b60006122a283611058565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107db565b61233a81611932565b156123865760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016107db565b61239260008383611f62565b6001600160a01b03821660009081526003602052604081208054600192906123bb9084906129ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461242590612850565b90600052602060002090601f016020900481019282612447576000855561248d565b82601f1061246057805160ff191683800117855561248d565b8280016001018555821561248d579182015b8281111561248d578251825591602001919060010190612472565b5061249992915061249d565b5090565b5b80821115612499576000815560010161249e565b6001600160e01b03198116811461132357600080fd5b6000602082840312156124da57600080fd5b81356114ef816124b2565b60005b838110156125005781810151838201526020016124e8565b8381111561138c5750506000910152565b600081518084526125298160208601602086016124e5565b601f01601f19169290920160200192915050565b6020815260006114ef6020830184612511565b60006020828403121561256257600080fd5b5035919050565b80356001600160a01b038116811461258057600080fd5b919050565b6000806040838503121561259857600080fd5b6125a183612569565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156125df576125df6125af565b604051601f8501601f19908116603f01168101908282118183101715612607576126076125af565b8160405280935085815286868601111561262057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561264c57600080fd5b81356001600160401b0381111561266257600080fd5b8201601f8101841361267357600080fd5b611a7f848235602084016125c5565b60008060006060848603121561269757600080fd5b6126a084612569565b92506126ae60208501612569565b9150604084013590509250925092565b8035801515811461258057600080fd5b6000602082840312156126e057600080fd5b6114ef826126be565b6000602082840312156126fb57600080fd5b6114ef82612569565b6000806020838503121561271757600080fd5b82356001600160401b038082111561272e57600080fd5b818501915085601f83011261274257600080fd5b81358181111561275157600080fd5b8660208260051b850101111561276657600080fd5b60209290920196919550909350505050565b6000806040838503121561278b57600080fd5b61279483612569565b91506127a2602084016126be565b90509250929050565b600080600080608085870312156127c157600080fd5b6127ca85612569565b93506127d860208601612569565b92506040850135915060608501356001600160401b038111156127fa57600080fd5b8501601f8101871361280b57600080fd5b61281a878235602084016125c5565b91505092959194509250565b6000806040838503121561283957600080fd5b61284283612569565b91506127a260208401612569565b600181811c9082168061286457607f821691505b6020821081141561288557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561295157612951612927565b5060010190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b600083516129a18184602088016124e5565b8351908301906129b58183602088016124e5565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826129e3576129e36129be565b500690565b6000828210156129fa576129fa612927565b500390565b60008219821115612a1257612a12612927565b500190565b6000816000190483118215151615612a3157612a31612927565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a9757612a976129be565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612acf90830184612511565b9695505050505050565b600060208284031215612aeb57600080fd5b81516114ef816124b2565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220267ca9218c864e123b04791ed52cec15c9d71280c227a6f03754d2bf13aeca4964736f6c634300080a003368747470733a2f2f6475736b627265616b6572732e67672f6170692f627265616b6572732f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4475736b427265616b657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044455534b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f15760003560e01c80637d17fcbe116101095780637d17fcbe1461048e578063853828b6146104a35780638a450c0b146104b85780638da5cb5b146104cf5780639499ac54146104e457806395d89b41146104f9578063a22cb4651461050e578063b141714b1461052e578063b88d4fde14610549578063bedb86fb14610569578063c7ba060114610589578063c87b56dd146105a9578063c8cb3834146105c9578063cb774d47146105e9578063cfebfa0a146105ff578063d547cfb71461061f578063e36d649814610634578063e985e9c51461064a578063e98665501461066a578063f2fde38b1461067f578063fd88fa691461069f57600080fd5b806301ffc9a7146101f657806306fdde031461022b578063081812fc1461024d578063095ea7b31461028557806310969523146102a757806318160ddd146102c757806319fe2405146102e657806323b872dd146102fb578063269dd9c81461031b5780632f745c59146103315780633dfc167f1461035157806342842e0e146103715780634f6ccce7146103915780634f6ee683146103b1578063521af1e9146103c457806355f804b3146103d95780635dd871a3146103f95780636352211e1461041957806370a0823114610439578063715018a6146104595780637204a3c91461046e575b600080fd5b34801561020257600080fd5b506102166102113660046124c8565b6106b6565b60405190151581526020015b60405180910390f35b34801561023757600080fd5b506102406106e1565b604051610222919061253d565b34801561025957600080fd5b5061026d610268366004612550565b610773565b6040516001600160a01b039091168152602001610222565b34801561029157600080fd5b506102a56102a0366004612585565b610800565b005b3480156102b357600080fd5b506102a56102c236600461263a565b610911565b3480156102d357600080fd5b506008545b604051908152602001610222565b3480156102f257600080fd5b50610240610957565b34801561030757600080fd5b506102a5610316366004612682565b6109e5565b34801561032757600080fd5b506102d861271081565b34801561033d57600080fd5b506102d861034c366004612585565b610a16565b34801561035d57600080fd5b506102a561036c3660046126ce565b610aac565b34801561037d57600080fd5b506102a561038c366004612682565b610b33565b34801561039d57600080fd5b506102d86103ac366004612550565b610b4e565b6102a56103bf366004612550565b610be1565b3480156103d057600080fd5b50610216610ed5565b3480156103e557600080fd5b506102a56103f436600461263a565b610ef5565b34801561040557600080fd5b50610216610414366004612550565b610f37565b34801561042557600080fd5b5061026d610434366004612550565b610fe1565b34801561044557600080fd5b506102d86104543660046126e9565b611058565b34801561046557600080fd5b506102a56110df565b34801561047a57600080fd5b506102a5610489366004612704565b61111a565b34801561049a57600080fd5b506102a561128a565b3480156104af57600080fd5b506102a56112df565b3480156104c457600080fd5b506013546102d89081565b3480156104db57600080fd5b5061026d611326565b3480156104f057600080fd5b506102d8611335565b34801561050557600080fd5b50610240611340565b34801561051a57600080fd5b506102a5610529366004612778565b61134f565b34801561053a57600080fd5b506102d866d529ae9e86000081565b34801561055557600080fd5b506102a56105643660046127ab565b61135a565b34801561057557600080fd5b506102a56105843660046126ce565b611392565b34801561059557600080fd5b506102166105a4366004612550565b611408565b3480156105b557600080fd5b506102406105c4366004612550565b61142b565b3480156105d557600080fd5b506102a56105e43660046126e9565b6114f6565b3480156105f557600080fd5b506102d860105481565b34801561060b57600080fd5b506102a561061a366004612704565b6115c9565b34801561062b57600080fd5b50610240611739565b34801561064057600080fd5b506102d8600f5481565b34801561065657600080fd5b50610216610665366004612826565b611746565b34801561067657600080fd5b506102a5611774565b34801561068b57600080fd5b506102a561069a3660046126e9565b611845565b3480156106ab57600080fd5b506012546102d89081565b60006001600160e01b0319821663780e9d6360e01b14806106db57506106db826118e2565b92915050565b6060600080546106f090612850565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90612850565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600061077e82611932565b6107e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080b82610fe1565b9050806001600160a01b0316836001600160a01b031614156108795760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107db565b336001600160a01b038216148061089557506108958133611746565b6109025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107db565b61090c838361194f565b505050565b3361091a611326565b6001600160a01b0316146109405760405162461bcd60e51b81526004016107db9061288b565b805161095390600e906020840190612419565b5050565b600e805461096490612850565b80601f016020809104026020016040519081016040528092919081815260200182805461099090612850565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b505050505081565b6109ef33826119bd565b610a0b5760405162461bcd60e51b81526004016107db906128c0565b61090c838383611a87565b6000610a2183611058565b8210610a835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107db565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610ab5611326565b6001600160a01b031614610adb5760405162461bcd60e51b81526004016107db9061288b565b600d805461ff0019166101008315158102919091179182905560405160ff9190920416151581527ff96d9fc711001fcac4f7f586221bde605f5370fc4feb45066bb7e3e662d88870906020015b60405180910390a150565b61090c8383836040518060200160405280600081525061135a565b6000610b5960085490565b8210610bbc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107db565b60088281548110610bcf57610bcf612911565b90600052602060002001549050919050565b610beb6001611408565b610c2c5760405162461bcd60e51b8152602060048201526012602482015271427265616b65727320536f6c64204f75742160701b60448201526064016107db565b600d5460ff1615610c705760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b60448201526064016107db565b6002600b541415610cc35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107db565b6002600b55610cd181611408565b610d295760405162461bcd60e51b815260206004820152602360248201527f50757263686173652065786365656473206d617820746f74616c20427265616b60448201526265727360e81b60648201526084016107db565b610d3281610f37565b610d785760405162461bcd60e51b8152602060048201526017602482015276135a5b9d081058d8d95cdcc8139bdd0811dc985b9d1959604a1b60448201526064016107db565b34610d8a66d529ae9e86000083611c32565b1115610dd85760405162461bcd60e51b815260206004820152601f60248201527f4554482073656e7420696e207472616e73616374696f6e20746f6f206c6f770060448201526064016107db565b60005b81811015610eaa576000610ded611335565b9050612710811015610e9757610e033382611c3e565b610e11601180546001019055565b3360009081526014602052604090205415610e565733600090815260146020526040902054610e41906001611c58565b33600090815260146020526040902055610e97565b3360009081526015602052604090205415610e975733600090815260156020526040902054610e86906001611c58565b336000908152601560205260409020555b5080610ea28161293d565b915050610ddb565b50600f54158015610ec35750612710610ec1611335565b145b15610ecd5743600f555b506001600b55565b6000610ee16001611408565b8015610ef05750600d5460ff16155b905090565b33610efe611326565b6001600160a01b031614610f245760405162461bcd60e51b81526004016107db9061288b565b805161095390600c906020840190612419565b6000610f41610ed5565b610f4d57506000919050565b3360009081526014602052604090205415801590610f7a5750336000908152601460205260409020548211155b15610f8757506001919050565b3360009081526015602052604090205415801590610fb45750336000908152601560205260409020548211155b15610fc157506001919050565b600d54610100900460ff1615610fd957506001919050565b506000919050565b6000818152600260205260408120546001600160a01b0316806106db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107db565b60006001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107db565b506001600160a01b031660009081526003602052604090205490565b336110e8611326565b6001600160a01b03161461110e5760405162461bcd60e51b81526004016107db9061288b565b6111186000611c64565b565b33611123611326565b6001600160a01b0316146111495760405162461bcd60e51b81526004016107db9061288b565b60005b8181101561090c57600083838381811061116857611168612911565b905060200201602081019061117d91906126e9565b6001600160a01b031614156111e65760405162461bcd60e51b815260206004820152602960248201527f427265616b65722050726573616c653a2043616e2774206164642061207a65726044820152686f206164647265737360b81b60648201526084016107db565b601460008484848181106111fc576111fc612911565b905060200201602081019061121191906126e9565b6001600160a01b03168152602081019190915260400160002054611278576012546014600085858581811061124857611248612911565b905060200201602081019061125d91906126e9565b6001600160a01b031681526020810191909152604001600020555b806112828161293d565b91505061114c565b33611293611326565b6001600160a01b0316146112b95760405162461bcd60e51b81526004016107db9061288b565b601054156112d95760405162461bcd60e51b81526004016107db90612958565b43600f55565b336112e8611326565b6001600160a01b03161461130e5760405162461bcd60e51b81526004016107db9061288b565b478061131957600080fd5b6113233347611cb6565b50565b600a546001600160a01b031690565b6000610ef060115490565b6060600180546106f090612850565b610953338383611d4c565b61136433836119bd565b6113805760405162461bcd60e51b81526004016107db906128c0565b61138c84848484611e17565b50505050565b3361139b611326565b6001600160a01b0316146113c15760405162461bcd60e51b81526004016107db9061288b565b600d805460ff191682151590811790915560405160ff909116151581527f10e1c3fcaff06b68391033547e8f9bb8067d7c4a2e32659b0629153814d242d390602001610b28565b600080611413611335565b90506127106114228285611e4a565b11159392505050565b606061143682611932565b61149a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b60006114a4611e56565b905060008151116114c457604051806020016040528060008152506114ef565b806114ce84611e65565b6040516020016114df92919061298f565b6040516020818303038152906040525b9392505050565b336114ff611326565b6001600160a01b0316146115255760405162461bcd60e51b81526004016107db9061288b565b6001600160a01b03811661158e5760405162461bcd60e51b815260206004820152602a60248201527f427265616b65722054726561737572793a2043616e2774206164642061207a65604482015269726f206164647265737360b01b60648201526084016107db565b6001600160a01b038116600090815260146020526040902054611323576001600160a01b031660009081526014602052604090206101a49055565b336115d2611326565b6001600160a01b0316146115f85760405162461bcd60e51b81526004016107db9061288b565b60005b8181101561090c57600083838381811061161757611617612911565b905060200201602081019061162c91906126e9565b6001600160a01b031614156116955760405162461bcd60e51b815260206004820152602960248201527f4475736b427265616b65722050324d3a2043616e2774206164642061207a65726044820152686f206164647265737360b81b60648201526084016107db565b601560008484848181106116ab576116ab612911565b90506020020160208101906116c091906126e9565b6001600160a01b0316815260208101919091526040016000205461172757601354601560008585858181106116f7576116f7612911565b905060200201602081019061170c91906126e9565b6001600160a01b031681526020810191909152604001600020555b806117318161293d565b9150506115fb565b600c805461096490612850565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601054156117945760405162461bcd60e51b81526004016107db90612958565b600f546117e35760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d7573742062652073657460448201526064016107db565b600f546117f49061271090406129d4565b601055600f5460ff90611808904390611c58565b111561182b5761271061181c6001436129e8565b6118279190406129d4565b6010555b60105461111857601054611840906001611e4a565b601055565b3361184e611326565b6001600160a01b0316146118745760405162461bcd60e51b81526004016107db9061288b565b6001600160a01b0381166118d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b61132381611c64565b60006001600160e01b031982166380ac58cd60e01b148061191357506001600160e01b03198216635b5e139f60e01b145b806106db57506301ffc9a760e01b6001600160e01b03198316146106db565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198482610fe1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119c882611932565b611a295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107db565b6000611a3483610fe1565b9050806001600160a01b0316846001600160a01b03161480611a6f5750836001600160a01b0316611a6484610773565b6001600160a01b0316145b80611a7f5750611a7f8185611746565b949350505050565b826001600160a01b0316611a9a82610fe1565b6001600160a01b031614611b025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107db565b6001600160a01b038216611b645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107db565b611b6f838383611f62565b611b7a60008261194f565b6001600160a01b0383166000908152600360205260408120805460019290611ba39084906129e8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bd19084906129ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006114ef8284612a17565b61095382826040518060200160405280600081525061201a565b60006114ef82846129e8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d03576040519150601f19603f3d011682016040523d82523d6000602084013e611d08565b606091505b505090508061090c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107db565b816001600160a01b0316836001600160a01b03161415611daa5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107db565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e22848484611a87565b611e2e8484848461204d565b61138c5760405162461bcd60e51b81526004016107db90612a36565b60006114ef82846129ff565b6060600c80546106f090612850565b606081611e895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb35780611e9d8161293d565b9150611eac9050600a83612a88565b9150611e8d565b6000816001600160401b03811115611ecd57611ecd6125af565b6040519080825280601f01601f191660200182016040528015611ef7576020820181803683370190505b5090505b8415611a7f57611f0c6001836129e8565b9150611f19600a866129d4565b611f249060306129ff565b60f81b818381518110611f3957611f39612911565b60200101906001600160f81b031916908160001a905350611f5b600a86612a88565b9450611efb565b6001600160a01b038316611fbd57611fb881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fe0565b816001600160a01b0316836001600160a01b031614611fe057611fe0838261214b565b6001600160a01b038216611ff75761090c816121e8565b826001600160a01b0316826001600160a01b03161461090c5761090c8282612297565b61202483836122db565b612031600084848461204d565b61090c5760405162461bcd60e51b81526004016107db90612a36565b60006001600160a01b0384163b1561214057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612091903390899088908890600401612a9c565b6020604051808303816000875af19250505080156120cc575060408051601f3d908101601f191682019092526120c991810190612ad9565b60015b612126573d8080156120fa576040519150601f19603f3d011682016040523d82523d6000602084013e6120ff565b606091505b50805161211e5760405162461bcd60e51b81526004016107db90612a36565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7f565b506001949350505050565b6000600161215884611058565b61216291906129e8565b6000838152600760205260409020549091508082146121b5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121fa906001906129e8565b6000838152600960205260408120546008805493945090928490811061222257612222612911565b90600052602060002001549050806008838154811061224357612243612911565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061227b5761227b612af6565b6001900381819060005260206000200160009055905550505050565b60006122a283611058565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107db565b61233a81611932565b156123865760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016107db565b61239260008383611f62565b6001600160a01b03821660009081526003602052604081208054600192906123bb9084906129ff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461242590612850565b90600052602060002090601f016020900481019282612447576000855561248d565b82601f1061246057805160ff191683800117855561248d565b8280016001018555821561248d579182015b8281111561248d578251825591602001919060010190612472565b5061249992915061249d565b5090565b5b80821115612499576000815560010161249e565b6001600160e01b03198116811461132357600080fd5b6000602082840312156124da57600080fd5b81356114ef816124b2565b60005b838110156125005781810151838201526020016124e8565b8381111561138c5750506000910152565b600081518084526125298160208601602086016124e5565b601f01601f19169290920160200192915050565b6020815260006114ef6020830184612511565b60006020828403121561256257600080fd5b5035919050565b80356001600160a01b038116811461258057600080fd5b919050565b6000806040838503121561259857600080fd5b6125a183612569565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156125df576125df6125af565b604051601f8501601f19908116603f01168101908282118183101715612607576126076125af565b8160405280935085815286868601111561262057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561264c57600080fd5b81356001600160401b0381111561266257600080fd5b8201601f8101841361267357600080fd5b611a7f848235602084016125c5565b60008060006060848603121561269757600080fd5b6126a084612569565b92506126ae60208501612569565b9150604084013590509250925092565b8035801515811461258057600080fd5b6000602082840312156126e057600080fd5b6114ef826126be565b6000602082840312156126fb57600080fd5b6114ef82612569565b6000806020838503121561271757600080fd5b82356001600160401b038082111561272e57600080fd5b818501915085601f83011261274257600080fd5b81358181111561275157600080fd5b8660208260051b850101111561276657600080fd5b60209290920196919550909350505050565b6000806040838503121561278b57600080fd5b61279483612569565b91506127a2602084016126be565b90509250929050565b600080600080608085870312156127c157600080fd5b6127ca85612569565b93506127d860208601612569565b92506040850135915060608501356001600160401b038111156127fa57600080fd5b8501601f8101871361280b57600080fd5b61281a878235602084016125c5565b91505092959194509250565b6000806040838503121561283957600080fd5b61284283612569565b91506127a260208401612569565b600181811c9082168061286457607f821691505b6020821081141561288557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561295157612951612927565b5060010190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b600083516129a18184602088016124e5565b8351908301906129b58183602088016124e5565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826129e3576129e36129be565b500690565b6000828210156129fa576129fa612927565b500390565b60008219821115612a1257612a12612927565b500190565b6000816000190483118215151615612a3157612a31612927565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a9757612a976129be565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612acf90830184612511565b9695505050505050565b600060208284031215612aeb57600080fd5b81516114ef816124b2565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220267ca9218c864e123b04791ed52cec15c9d71280c227a6f03754d2bf13aeca4964736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4475736b427265616b657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044455534b00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): DuskBreakers
Arg [1] : symbol (string): DUSK
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4475736b427265616b6572730000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4455534b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
54415:8723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34807:224;;;;;;;;;;-1:-1:-1;34807:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34807:224:0;;;;;;;;21526:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23085:221::-;;;;;;;;;;-1:-1:-1;23085:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23085:221:0;1528:203:1;22608:411:0;;;;;;;;;;-1:-1:-1;22608:411:0;;;;;:::i;:::-;;:::i;:::-;;57950:128;;;;;;;;;;-1:-1:-1;57950:128:0;;;;;:::i;:::-;;:::i;35447:113::-;;;;;;;;;;-1:-1:-1;35535:10:0;:17;35447:113;;;3544:25:1;;;3532:2;3517:18;35447:113:0;3398:177:1;54904:37:0;;;;;;;;;;;;;:::i;23835:339::-;;;;;;;;;;-1:-1:-1;23835:339:0;;;;;:::i;:::-;;:::i;54664:46::-;;;;;;;;;;;;54705:5;54664:46;;35115:256;;;;;;;;;;-1:-1:-1;35115:256:0;;;;;:::i;:::-;;:::i;56311:123::-;;;;;;;;;;-1:-1:-1;56311:123:0;;;;;:::i;:::-;;:::i;24245:185::-;;;;;;;;;;-1:-1:-1;24245:185:0;;;;;:::i;:::-;;:::i;35637:233::-;;;;;;;;;;-1:-1:-1;35637:233:0;;;;;:::i;:::-;;:::i;60403:1296::-;;;;;;:::i;:::-;;:::i;55850:111::-;;;;;;;;;;;;;:::i;56595:101::-;;;;;;;;;;-1:-1:-1;56595:101:0;;;;;:::i;:::-;;:::i;61939:787::-;;;;;;;;;;-1:-1:-1;61939:787:0;;;;;:::i;:::-;;:::i;21220:239::-;;;;;;;;;;-1:-1:-1;21220:239:0;;;;;:::i;:::-;;:::i;20950:208::-;;;;;;;;;;-1:-1:-1;20950:208:0;;;;;:::i;:::-;;:::i;42592:103::-;;;;;;;;;;;;;:::i;59445:468::-;;;;;;;;;;-1:-1:-1;59445:468:0;;;;;:::i;:::-;;:::i;58174:182::-;;;;;;;;;;;;;:::i;62761:185::-;;;;;;;;;;;;;:::i;55166:38::-;;;;;;;;;;-1:-1:-1;55166:38:0;;;;;;41941:87;;;;;;;;;;;;;:::i;56727:102::-;;;;;;;;;;;;;:::i;21695:104::-;;;;;;;;;;;;;:::i;23378:155::-;;;;;;;;;;-1:-1:-1;23378:155:0;;;;;:::i;:::-;;:::i;54717:49::-;;;;;;;;;;;;54756:10;54717:49;;24501:328;;;;;;;;;;-1:-1:-1;24501:328:0;;;;;:::i;:::-;;:::i;56119:113::-;;;;;;;;;;-1:-1:-1;56119:113:0;;;;;:::i;:::-;;:::i;61732:195::-;;;;;;;;;;-1:-1:-1;61732:195:0;;;;;:::i;:::-;;:::i;21870:334::-;;;;;;;;;;-1:-1:-1;21870:334:0;;;;;:::i;:::-;;:::i;59059:333::-;;;;;;;;;;-1:-1:-1;59059:333:0;;;;;:::i;:::-;;:::i;54988:28::-;;;;;;;;;;;;;;;;59925:470;;;;;;;;;;-1:-1:-1;59925:470:0;;;;;:::i;:::-;;:::i;54773:26::-;;;;;;;;;;;;;:::i;54948:33::-;;;;;;;;;;;;;;;;23604:164;;;;;;;;;;-1:-1:-1;23604:164:0;;;;;:::i;:::-;;:::i;58364:680::-;;;;;;;;;;;;;:::i;42850:201::-;;;;;;;;;;-1:-1:-1;42850:201:0;;;;;:::i;:::-;;:::i;55125:34::-;;;;;;;;;;-1:-1:-1;55125:34:0;;;;;;34807:224;34909:4;-1:-1:-1;;;;;;34933:50:0;;-1:-1:-1;;;34933:50:0;;:90;;;34987:36;35011:11;34987:23;:36::i;:::-;34926:97;34807:224;-1:-1:-1;;34807:224:0:o;21526:100::-;21580:13;21613:5;21606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21526:100;:::o;23085:221::-;23161:7;23189:16;23197:7;23189;:16::i;:::-;23181:73;;;;-1:-1:-1;;;23181:73:0;;6857:2:1;23181:73:0;;;6839:21:1;6896:2;6876:18;;;6869:30;6935:34;6915:18;;;6908:62;-1:-1:-1;;;6986:18:1;;;6979:42;7038:19;;23181:73:0;;;;;;;;;-1:-1:-1;23274:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23274:24:0;;23085:221::o;22608:411::-;22689:13;22705:23;22720:7;22705:14;:23::i;:::-;22689:39;;22753:5;-1:-1:-1;;;;;22747:11:0;:2;-1:-1:-1;;;;;22747:11:0;;;22739:57;;;;-1:-1:-1;;;22739:57:0;;7270:2:1;22739:57:0;;;7252:21:1;7309:2;7289:18;;;7282:30;7348:34;7328:18;;;7321:62;-1:-1:-1;;;7399:18:1;;;7392:31;7440:19;;22739:57:0;7068:397:1;22739:57:0;8383:10;-1:-1:-1;;;;;22831:21:0;;;;:62;;-1:-1:-1;22856:37:0;22873:5;8383:10;23604:164;:::i;22856:37::-;22809:168;;;;-1:-1:-1;;;22809:168:0;;7672:2:1;22809:168:0;;;7654:21:1;7711:2;7691:18;;;7684:30;7750:34;7730:18;;;7723:62;-1:-1:-1;;;7801:18:1;;;7794:54;7865:19;;22809:168:0;7470:420:1;22809:168:0;22990:21;22999:2;23003:7;22990:8;:21::i;:::-;22678:341;22608:411;;:::o;57950:128::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;58035:35;;::::1;::::0;:18:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57950:128:::0;:::o;54904:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23835:339::-;24030:41;8383:10;24063:7;24030:18;:41::i;:::-;24022:103;;;;-1:-1:-1;;;24022:103:0;;;;;;;:::i;:::-;24138:28;24148:4;24154:2;24158:7;24138:9;:28::i;35115:256::-;35212:7;35248:23;35265:5;35248:16;:23::i;:::-;35240:5;:31;35232:87;;;;-1:-1:-1;;;35232:87:0;;8876:2:1;35232:87:0;;;8858:21:1;8915:2;8895:18;;;8888:30;8954:34;8934:18;;;8927:62;-1:-1:-1;;;9005:18:1;;;8998:41;9056:19;;35232:87:0;8674:407:1;35232:87:0;-1:-1:-1;;;;;;35337:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35115:256::o;56311:123::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;56371:8:::1;:20:::0;;-1:-1:-1;;56371:20:0::1;;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;56407:19:::1;::::0;56371:20:::1;56417:8:::0;;;::::1;;565:14:1::0;558:22;540:41;;56407:19:0::1;::::0;528:2:1;513:18;56407:19:0::1;;;;;;;;56311:123:::0;:::o;24245:185::-;24383:39;24400:4;24406:2;24410:7;24383:39;;;;;;;;;;;;:16;:39::i;35637:233::-;35712:7;35748:30;35535:10;:17;;35447:113;35748:30;35740:5;:38;35732:95;;;;-1:-1:-1;;;35732:95:0;;9288:2:1;35732:95:0;;;9270:21:1;9327:2;9307:18;;;9300:30;9366:34;9346:18;;;9339:62;-1:-1:-1;;;9417:18:1;;;9410:42;9469:19;;35732:95:0;9086:408:1;35732:95:0;35845:10;35856:5;35845:17;;;;;;;;:::i;:::-;;;;;;;;;35838:24;;35637:233;;;:::o;60403:1296::-;56012:12;56022:1;56012:9;:12::i;:::-;56004:43;;;;-1:-1:-1;;;56004:43:0;;9833:2:1;56004:43:0;;;9815:21:1;9872:2;9852:18;;;9845:30;-1:-1:-1;;;9891:18:1;;;9884:48;9949:18;;56004:43:0;9631:342:1;56004:43:0;56067:5;;;;56066:6;56058:33;;;;-1:-1:-1;;;56058:33:0;;10180:2:1;56058:33:0;;;10162:21:1;10219:2;10199:18;;;10192:30;-1:-1:-1;;;10238:18:1;;;10231:44;10292:18;;56058:33:0;9978:338:1;56058:33:0;53466:1:::1;54064:7;;:19;;54056:63;;;::::0;-1:-1:-1;;;54056:63:0;;10523:2:1;54056:63:0::1;::::0;::::1;10505:21:1::0;10562:2;10542:18;;;10535:30;10601:33;10581:18;;;10574:61;10652:18;;54056:63:0::1;10321:355:1::0;54056:63:0::1;53466:1;54197:7;:18:::0;60511:25:::2;60521:14:::0;60511:9:::2;:25::i;:::-;60503:73;;;::::0;-1:-1:-1;;;60503:73:0;;10883:2:1;60503:73:0::2;::::0;::::2;10865:21:1::0;10922:2;10902:18;;;10895:30;10961:34;10941:18;;;10934:62;-1:-1:-1;;;11012:18:1;;;11005:33;11055:19;;60503:73:0::2;10681:399:1::0;60503:73:0::2;60595:23;60603:14;60595:7;:23::i;:::-;60587:59;;;::::0;-1:-1:-1;;;60587:59:0;;11287:2:1;60587:59:0::2;::::0;::::2;11269:21:1::0;11326:2;11306:18;;;11299:30;-1:-1:-1;;;11345:18:1;;;11338:53;11408:18;;60587:59:0::2;11085:347:1::0;60587:59:0::2;60701:9;60665:32;54756:10;60682:14:::0;60665:16:::2;:32::i;:::-;:45;;60657:89;;;::::0;-1:-1:-1;;;60657:89:0;;11639:2:1;60657:89:0::2;::::0;::::2;11621:21:1::0;11678:2;11658:18;;;11651:30;11717:33;11697:18;;;11690:61;11768:18;;60657:89:0::2;11437:355:1::0;60657:89:0::2;60771:6;60767:682;60787:14;60783:1;:18;60767:682;;;60823:14;60840:11;:9;:11::i;:::-;60823:28;;54705:5;60870:9;:26;60866:572;;;60917:32;60927:10;60939:9;60917;:32::i;:::-;61021:27;:15;44414:19:::0;;44432:1;44414:19;;;44325:127;61021:27:::2;61158:10;61172:1;61145:24:::0;;;:12:::2;:24;::::0;;;;;:28;61141:282:::2;;61238:10;61225:24;::::0;;;:12:::2;:24;::::0;;;;;:31:::2;::::0;61254:1:::2;61225:28;:31::i;:::-;61211:10;61198:24;::::0;;;:12:::2;:24;::::0;;;;:58;61141:282:::2;;;61301:10;61315:1;61286:26:::0;;;:14:::2;:26;::::0;;;;;:30;61282:141:::2;;61385:10;61370:26;::::0;;;:14:::2;:26;::::0;;;;;:33:::2;::::0;61401:1:::2;61370:30;:33::i;:::-;61356:10;61341:26;::::0;;;:14:::2;:26;::::0;;;;:62;61282:141:::2;-1:-1:-1::0;60803:3:0;::::2;::::0;::::2;:::i;:::-;;;;60767:682;;;-1:-1:-1::0;61572:18:0::2;::::0;:23;:58;::::2;;;;54705:5;61600:11;:9;:11::i;:::-;:29;61572:58;61568:124;;;61668:12;61647:18;:33:::0;61568:124:::2;-1:-1:-1::0;53422:1:0::1;54376:7;:22:::0;60403:1296::o;55850:111::-;55904:4;55928:12;55938:1;55928:9;:12::i;:::-;55927:26;;;;-1:-1:-1;55947:5:0;;;;55946:6;55927:26;55920:33;;55850:111;:::o;56595:101::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;56666:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;61939:787::-:0;62001:4;62072:23;:21;:23::i;:::-;62067:69;;-1:-1:-1;62119:5:0;;61939:787;-1:-1:-1;61939:787:0:o;62067:69::-;62202:10;62216:1;62189:24;;;:12;:24;;;;;;:28;;;;:87;;-1:-1:-1;62265:10:0;62252:24;;;;:12;:24;;;;;;62234:42;;;62189:87;62186:141;;;-1:-1:-1;62311:4:0;;61939:787;-1:-1:-1;61939:787:0:o;62186:141::-;62454:10;62468:1;62439:26;;;:14;:26;;;;;;:30;;;;:91;;-1:-1:-1;62519:10:0;62504:26;;;;:14;:26;;;;;;62486:44;;;62439:91;62436:144;;;-1:-1:-1;62564:4:0;;61939:787;-1:-1:-1;61939:787:0:o;62436:144::-;62638:8;;;;;;;62635:51;;;-1:-1:-1;62670:4:0;;61939:787;-1:-1:-1;61939:787:0:o;62635:51::-;-1:-1:-1;62713:5:0;;61939:787;-1:-1:-1;61939:787:0:o;21220:239::-;21292:7;21328:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21328:16:0;21363:19;21355:73;;;;-1:-1:-1;;;21355:73:0;;12271:2:1;21355:73:0;;;12253:21:1;12310:2;12290:18;;;12283:30;12349:34;12329:18;;;12322:62;-1:-1:-1;;;12400:18:1;;;12393:39;12449:19;;21355:73:0;12069:405:1;20950:208:0;21022:7;-1:-1:-1;;;;;21050:19:0;;21042:74;;;;-1:-1:-1;;;21042:74:0;;12681:2:1;21042:74:0;;;12663:21:1;12720:2;12700:18;;;12693:30;12759:34;12739:18;;;12732:62;-1:-1:-1;;;12810:18:1;;;12803:40;12860:19;;21042:74:0;12479:406:1;21042:74:0;-1:-1:-1;;;;;;21134:16:0;;;;;:9;:16;;;;;;;20950:208::o;42592:103::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;42657:30:::1;42684:1;42657:18;:30::i;:::-;42592:103::o:0;59445:468::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;59556:11:::1;59551:355;59573:23:::0;;::::1;59551:355;;;59673:1;59646:10:::0;;59657:3;59646:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59646:29:0::1;;;59620:132;;;::::0;-1:-1:-1;;;59620:132:0;;13092:2:1;59620:132:0::1;::::0;::::1;13074:21:1::0;13131:2;13111:18;;;13104:30;13170:34;13150:18;;;13143:62;-1:-1:-1;;;13221:18:1;;;13214:39;13270:19;;59620:132:0::1;12890:405:1::0;59620:132:0::1;59771:12;:29;59784:10;;59795:3;59784:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59771:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;59771:29:0;;59767:128:::1;;59858:13;:21:::0;59826:12:::1;59858:21;59839:10:::0;;59850:3;59839:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59826:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;59826:29:0;:53;59767:128:::1;59598:5:::0;::::1;::::0;::::1;:::i;:::-;;;;59551:355;;58174:182:::0;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;58252:13:::1;::::0;:18;58244:60:::1;;;;-1:-1:-1::0;;;58244:60:0::1;;;;;;;:::i;:::-;58336:12;58315:18;:33:::0;58174:182::o;62761:185::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;62830:21:::1;62870:11:::0;62862:20:::1;;;::::0;::::1;;62893:45;62904:10;62916:21;62893:10;:45::i;:::-;62801:145;62761:185::o:0;41941:87::-;42014:6;;-1:-1:-1;;;;;42014:6:0;;41941:87::o;56727:102::-;56769:7;56796:25;:15;44295:14;;44203:114;21695:104;21751:13;21784:7;21777:14;;;;;:::i;23378:155::-;23473:52;8383:10;23506:8;23516;23473:18;:52::i;24501:328::-;24676:41;8383:10;24709:7;24676:18;:41::i;:::-;24668:103;;;;-1:-1:-1;;;24668:103:0;;;;;;;:::i;:::-;24782:39;24796:4;24802:2;24806:7;24815:5;24782:13;:39::i;:::-;24501:328;;;;:::o;56119:113::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;56177:5:::1;:14:::0;;-1:-1:-1;;56177:14:0::1;::::0;::::1;;::::0;;::::1;::::0;;;56207:17:::1;::::0;56177:14:::1;56218:5:::0;;;565:14:1;558:22;540:41;;56207:17:0::1;::::0;528:2:1;513:18;56207:17:0::1;400:187:1::0;61732:195:0;61796:4;61813:22;61838:11;:9;:11::i;:::-;61813:36;-1:-1:-1;54705:5:0;61867:34;61813:36;61886:14;61867:18;:34::i;:::-;:52;;;61732:195;-1:-1:-1;;;61732:195:0:o;21870:334::-;21943:13;21977:16;21985:7;21977;:16::i;:::-;21969:76;;;;-1:-1:-1;;;21969:76:0;;13860:2:1;21969:76:0;;;13842:21:1;13899:2;13879:18;;;13872:30;13938:34;13918:18;;;13911:62;-1:-1:-1;;;13989:18:1;;;13982:45;14044:19;;21969:76:0;13658:411:1;21969:76:0;22058:21;22082:10;:8;:10::i;:::-;22058:34;;22134:1;22116:7;22110:21;:25;:86;;;;;;;;;;;;;;;;;22162:7;22171:18;:7;:16;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22110:86;22103:93;21870:334;-1:-1:-1;;;21870:334:0:o;59059:333::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59170:22:0;::::1;59148:114;;;::::0;-1:-1:-1;;;59148:114:0;;14751:2:1;59148:114:0::1;::::0;::::1;14733:21:1::0;14790:2;14770:18;;;14763:30;14829:34;14809:18;;;14802:62;-1:-1:-1;;;14880:18:1;;;14873:40;14930:19;;59148:114:0::1;14549:406:1::0;59148:114:0::1;-1:-1:-1::0;;;;;59277:22:0;::::1;;::::0;;;:12:::1;:22;::::0;;;;;59273:112:::1;;-1:-1:-1::0;;;;;59321:22:0::1;;::::0;;;:12:::1;:22;::::0;;;;59346:3:::1;59321:28:::0;;59059:333::o;59925:470::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;60032:11:::1;60027:361;60049:23:::0;;::::1;60027:361;;;60149:1;60122:10:::0;;60133:3;60122:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;60122:29:0::1;;;60096:132;;;::::0;-1:-1:-1;;;60096:132:0;;15162:2:1;60096:132:0::1;::::0;::::1;15144:21:1::0;15201:2;15181:18;;;15174:30;15240:34;15220:18;;;15213:62;-1:-1:-1;;;15291:18:1;;;15284:39;15340:19;;60096:132:0::1;14960:405:1::0;60096:132:0::1;60247:14;:31;60262:10;;60273:3;60262:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;60247:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;60247:31:0;;60243:134:::1;;60338:15;:23:::0;60304:14:::1;60338:23;60319:10:::0;;60330:3;60319:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;60304:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;60304:31:0;:57;60243:134:::1;60074:5:::0;::::1;::::0;::::1;:::i;:::-;;;;60027:361;;54773:26:::0;;;;;;;:::i;23604:164::-;-1:-1:-1;;;;;23725:25:0;;;23701:4;23725:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23604:164::o;58364:680::-;58418:13;;:18;58410:60;;;;-1:-1:-1;;;58410:60:0;;;;;;;:::i;:::-;58489:18;;58481:68;;;;-1:-1:-1;;;58481:68:0;;15572:2:1;58481:68:0;;;15554:21:1;;;15591:18;;;15584:30;15650:34;15630:18;;;15623:62;15702:18;;58481:68:0;15370:356:1;58481:68:0;58593:18;;58578:52;;54705:5;;58583:29;58578:52;:::i;:::-;58562:13;:68;58783:18;;58805:3;;58766:36;;:12;;:16;:36::i;:::-;:42;58762:141;;;54705:5;58856:16;58871:1;58856:12;:16;:::i;:::-;58841:50;;;58846:27;58841:50;:::i;:::-;58825:13;:66;58762:141;58954:13;;58950:87;;59005:13;;:20;;59023:1;59005:17;:20::i;:::-;58989:13;:36;58364:680::o;42850:201::-;8383:10;42161:7;:5;:7::i;:::-;-1:-1:-1;;;;;42161:23:0;;42153:68;;;;-1:-1:-1;;;42153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42939:22:0;::::1;42931:73;;;::::0;-1:-1:-1;;;42931:73:0;;16312:2:1;42931:73:0::1;::::0;::::1;16294:21:1::0;16351:2;16331:18;;;16324:30;16390:34;16370:18;;;16363:62;-1:-1:-1;;;16441:18:1;;;16434:36;16487:19;;42931:73:0::1;16110:402:1::0;42931:73:0::1;43015:28;43034:8;43015:18;:28::i;20581:305::-:0;20683:4;-1:-1:-1;;;;;;20720:40:0;;-1:-1:-1;;;20720:40:0;;:105;;-1:-1:-1;;;;;;;20777:48:0;;-1:-1:-1;;;20777:48:0;20720:105;:158;;;-1:-1:-1;;;;;;;;;;19297:40:0;;;20842:36;19188:157;26339:127;26404:4;26428:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26428:16:0;:30;;;26339:127::o;30321:174::-;30396:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30396:29:0;-1:-1:-1;;;;;30396:29:0;;;;;;;;:24;;30450:23;30396:24;30450:14;:23::i;:::-;-1:-1:-1;;;;;30441:46:0;;;;;;;;;;;30321:174;;:::o;26633:348::-;26726:4;26751:16;26759:7;26751;:16::i;:::-;26743:73;;;;-1:-1:-1;;;26743:73:0;;16719:2:1;26743:73:0;;;16701:21:1;16758:2;16738:18;;;16731:30;16797:34;16777:18;;;16770:62;-1:-1:-1;;;16848:18:1;;;16841:42;16900:19;;26743:73:0;16517:408:1;26743:73:0;26827:13;26843:23;26858:7;26843:14;:23::i;:::-;26827:39;;26896:5;-1:-1:-1;;;;;26885:16:0;:7;-1:-1:-1;;;;;26885:16:0;;:51;;;;26929:7;-1:-1:-1;;;;;26905:31:0;:20;26917:7;26905:11;:20::i;:::-;-1:-1:-1;;;;;26905:31:0;;26885:51;:87;;;;26940:32;26957:5;26964:7;26940:16;:32::i;:::-;26877:96;26633:348;-1:-1:-1;;;;26633:348:0:o;29625:578::-;29784:4;-1:-1:-1;;;;;29757:31:0;:23;29772:7;29757:14;:23::i;:::-;-1:-1:-1;;;;;29757:31:0;;29749:85;;;;-1:-1:-1;;;29749:85:0;;17132:2:1;29749:85:0;;;17114:21:1;17171:2;17151:18;;;17144:30;17210:34;17190:18;;;17183:62;-1:-1:-1;;;17261:18:1;;;17254:39;17310:19;;29749:85:0;16930:405:1;29749:85:0;-1:-1:-1;;;;;29853:16:0;;29845:65;;;;-1:-1:-1;;;29845:65:0;;17542:2:1;29845:65:0;;;17524:21:1;17581:2;17561:18;;;17554:30;17620:34;17600:18;;;17593:62;-1:-1:-1;;;17671:18:1;;;17664:34;17715:19;;29845:65:0;17340:400:1;29845:65:0;29923:39;29944:4;29950:2;29954:7;29923:20;:39::i;:::-;30027:29;30044:1;30048:7;30027:8;:29::i;:::-;-1:-1:-1;;;;;30069:15:0;;;;;;:9;:15;;;;;:20;;30088:1;;30069:15;:20;;30088:1;;30069:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30100:13:0;;;;;;:9;:13;;;;;:18;;30117:1;;30100:13;:18;;30117:1;;30100:18;:::i;:::-;;;;-1:-1:-1;;30129:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30129:21:0;-1:-1:-1;;;;;30129:21:0;;;;;;;;;30168:27;;30129:16;;30168:27;;;;;;;29625:578;;;:::o;48315:98::-;48373:7;48400:5;48404:1;48400;:5;:::i;27323:110::-;27399:26;27409:2;27413:7;27399:26;;;;;;;;;;;;:9;:26::i;47958:98::-;48016:7;48043:5;48047:1;48043;:5;:::i;43211:191::-;43304:6;;;-1:-1:-1;;;;;43321:17:0;;;-1:-1:-1;;;;;;43321:17:0;;;;;;;43354:40;;43304:6;;;43321:17;43304:6;;43354:40;;43285:16;;43354:40;43274:128;43211:191;:::o;62954:181::-;63029:12;63047:8;-1:-1:-1;;;;;63047:13:0;63068:7;63047:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63028:52;;;63099:7;63091:36;;;;-1:-1:-1;;;63091:36:0;;18463:2:1;63091:36:0;;;18445:21:1;18502:2;18482:18;;;18475:30;-1:-1:-1;;;18521:18:1;;;18514:46;18577:18;;63091:36:0;18261:340:1;30637:315:0;30792:8;-1:-1:-1;;;;;30783:17:0;:5;-1:-1:-1;;;;;30783:17:0;;;30775:55;;;;-1:-1:-1;;;30775:55:0;;18808:2:1;30775:55:0;;;18790:21:1;18847:2;18827:18;;;18820:30;-1:-1:-1;;;18866:18:1;;;18859:55;18931:18;;30775:55:0;18606:349:1;30775:55:0;-1:-1:-1;;;;;30841:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30841:46:0;;;;;;;;;;30903:41;;540::1;;;30903::0;;513:18:1;30903:41:0;;;;;;;30637:315;;;:::o;25711:::-;25868:28;25878:4;25884:2;25888:7;25868:9;:28::i;:::-;25915:48;25938:4;25944:2;25948:7;25957:5;25915:22;:48::i;:::-;25907:111;;;;-1:-1:-1;;;25907:111:0;;;;;;;:::i;47577:98::-;47635:7;47662:5;47666:1;47662;:5;:::i;56474:113::-;56534:13;56567:12;56560:19;;;;;:::i;5944:723::-;6000:13;6221:10;6217:53;;-1:-1:-1;;6248:10:0;;;;;;;;;;;;-1:-1:-1;;;6248:10:0;;;;;5944:723::o;6217:53::-;6295:5;6280:12;6336:78;6343:9;;6336:78;;6369:8;;;;:::i;:::-;;-1:-1:-1;6392:10:0;;-1:-1:-1;6400:2:0;6392:10;;:::i;:::-;;;6336:78;;;6424:19;6456:6;-1:-1:-1;;;;;6446:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6446:17:0;;6424:39;;6474:154;6481:10;;6474:154;;6508:11;6518:1;6508:11;;:::i;:::-;;-1:-1:-1;6577:10:0;6585:2;6577:5;:10;:::i;:::-;6564:24;;:2;:24;:::i;:::-;6551:39;;6534:6;6541;6534:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6534:56:0;;;;;;;;-1:-1:-1;6605:11:0;6614:2;6605:11;;:::i;:::-;;;6474:154;;36483:589;-1:-1:-1;;;;;36689:18:0;;36685:187;;36724:40;36756:7;37899:10;:17;;37872:24;;;;:15;:24;;;;;:44;;;37927:24;;;;;;;;;;;;37795:164;36724:40;36685:187;;;36794:2;-1:-1:-1;;;;;36786:10:0;:4;-1:-1:-1;;;;;36786:10:0;;36782:90;;36813:47;36846:4;36852:7;36813:32;:47::i;:::-;-1:-1:-1;;;;;36886:16:0;;36882:183;;36919:45;36956:7;36919:36;:45::i;36882:183::-;36992:4;-1:-1:-1;;;;;36986:10:0;:2;-1:-1:-1;;;;;36986:10:0;;36982:83;;37013:40;37041:2;37045:7;37013:27;:40::i;27660:321::-;27790:18;27796:2;27800:7;27790:5;:18::i;:::-;27841:54;27872:1;27876:2;27880:7;27889:5;27841:22;:54::i;:::-;27819:154;;;;-1:-1:-1;;;27819:154:0;;;;;;;:::i;31517:799::-;31672:4;-1:-1:-1;;;;;31693:13:0;;11399:20;11447:8;31689:620;;31729:72;;-1:-1:-1;;;31729:72:0;;-1:-1:-1;;;;;31729:36:0;;;;;:72;;8383:10;;31780:4;;31786:7;;31795:5;;31729:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31729:72:0;;;;;;;;-1:-1:-1;;31729:72:0;;;;;;;;;;;;:::i;:::-;;;31725:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31971:13:0;;31967:272;;32014:60;;-1:-1:-1;;;32014:60:0;;;;;;;:::i;31967:272::-;32189:6;32183:13;32174:6;32170:2;32166:15;32159:38;31725:529;-1:-1:-1;;;;;;31852:51:0;-1:-1:-1;;;31852:51:0;;-1:-1:-1;31845:58:0;;31689:620;-1:-1:-1;32293:4:0;31517:799;;;;;;:::o;38586:988::-;38852:22;38902:1;38877:22;38894:4;38877:16;:22::i;:::-;:26;;;;:::i;:::-;38914:18;38935:26;;;:17;:26;;;;;;38852:51;;-1:-1:-1;39068:28:0;;;39064:328;;-1:-1:-1;;;;;39135:18:0;;39113:19;39135:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39186:30;;;;;;:44;;;39303:30;;:17;:30;;;;;:43;;;39064:328;-1:-1:-1;39488:26:0;;;;:17;:26;;;;;;;;39481:33;;;-1:-1:-1;;;;;39532:18:0;;;;;:12;:18;;;;;:34;;;;;;;39525:41;38586:988::o;39869:1079::-;40147:10;:17;40122:22;;40147:21;;40167:1;;40147:21;:::i;:::-;40179:18;40200:24;;;:15;:24;;;;;;40573:10;:26;;40122:46;;-1:-1:-1;40200:24:0;;40122:46;;40573:26;;;;;;:::i;:::-;;;;;;;;;40551:48;;40637:11;40612:10;40623;40612:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40717:28;;;:15;:28;;;;;;;:41;;;40889:24;;;;;40882:31;40924:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39940:1008;;;39869:1079;:::o;37373:221::-;37458:14;37475:20;37492:2;37475:16;:20::i;:::-;-1:-1:-1;;;;;37506:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37551:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37373:221:0:o;28317:382::-;-1:-1:-1;;;;;28397:16:0;;28389:61;;;;-1:-1:-1;;;28389:61:0;;20586:2:1;28389:61:0;;;20568:21:1;;;20605:18;;;20598:30;20664:34;20644:18;;;20637:62;20716:18;;28389:61:0;20384:356:1;28389:61:0;28470:16;28478:7;28470;:16::i;:::-;28469:17;28461:58;;;;-1:-1:-1;;;28461:58:0;;20947:2:1;28461:58:0;;;20929:21:1;20986:2;20966:18;;;20959:30;-1:-1:-1;;;21005:18:1;;;20998:58;21073:18;;28461:58:0;20745:352:1;28461:58:0;28532:45;28561:1;28565:2;28569:7;28532:20;:45::i;:::-;-1:-1:-1;;;;;28590:13:0;;;;;;:9;:13;;;;;:18;;28607:1;;28590:13;:18;;28607:1;;28590:18;:::i;:::-;;;;-1:-1:-1;;28619:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28619:21:0;-1:-1:-1;;;;;28619:21:0;;;;;;;;28658:33;;28619:16;;;28658:33;;28619:16;;28658:33;28317:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;-1:-1:-1;;;;;2441:2:1;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;-1:-1:-1;;;;;3145:6:1;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:160::-;3978:20;;4034:13;;4027:21;4017:32;;4007:60;;4063:1;4060;4053:12;4078:180;4134:6;4187:2;4175:9;4166:7;4162:23;4158:32;4155:52;;;4203:1;4200;4193:12;4155:52;4226:26;4242:9;4226:26;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:615::-;4540:6;4548;4601:2;4589:9;4580:7;4576:23;4572:32;4569:52;;;4617:1;4614;4607:12;4569:52;4657:9;4644:23;-1:-1:-1;;;;;4727:2:1;4719:6;4716:14;4713:34;;;4743:1;4740;4733:12;4713:34;4781:6;4770:9;4766:22;4756:32;;4826:7;4819:4;4815:2;4811:13;4807:27;4797:55;;4848:1;4845;4838:12;4797:55;4888:2;4875:16;4914:2;4906:6;4903:14;4900:34;;;4930:1;4927;4920:12;4900:34;4983:7;4978:2;4968:6;4965:1;4961:14;4957:2;4953:23;4949:32;4946:45;4943:65;;;5004:1;5001;4994:12;4943:65;5035:2;5027:11;;;;;5057:6;;-1:-1:-1;4454:615:1;;-1:-1:-1;;;;4454:615:1:o;5074:254::-;5139:6;5147;5200:2;5188:9;5179:7;5175:23;5171:32;5168:52;;;5216:1;5213;5206:12;5168:52;5239:29;5258:9;5239:29;:::i;:::-;5229:39;;5287:35;5318:2;5307:9;5303:18;5287:35;:::i;:::-;5277:45;;5074:254;;;;;:::o;5333:667::-;5428:6;5436;5444;5452;5505:3;5493:9;5484:7;5480:23;5476:33;5473:53;;;5522:1;5519;5512:12;5473:53;5545:29;5564:9;5545:29;:::i;:::-;5535:39;;5593:38;5627:2;5616:9;5612:18;5593:38;:::i;:::-;5583:48;;5678:2;5667:9;5663:18;5650:32;5640:42;;5733:2;5722:9;5718:18;5705:32;-1:-1:-1;;;;;5752:6:1;5749:30;5746:50;;;5792:1;5789;5782:12;5746:50;5815:22;;5868:4;5860:13;;5856:27;-1:-1:-1;5846:55:1;;5897:1;5894;5887:12;5846:55;5920:74;5986:7;5981:2;5968:16;5963:2;5959;5955:11;5920:74;:::i;:::-;5910:84;;;5333:667;;;;;;;:::o;6005:260::-;6073:6;6081;6134:2;6122:9;6113:7;6109:23;6105:32;6102:52;;;6150:1;6147;6140:12;6102:52;6173:29;6192:9;6173:29;:::i;:::-;6163:39;;6221:38;6255:2;6244:9;6240:18;6221:38;:::i;6270:380::-;6349:1;6345:12;;;;6392;;;6413:61;;6467:4;6459:6;6455:17;6445:27;;6413:61;6520:2;6512:6;6509:14;6489:18;6486:38;6483:161;;;6566:10;6561:3;6557:20;6554:1;6547:31;6601:4;6598:1;6591:15;6629:4;6626:1;6619:15;6483:161;;6270:380;;;:::o;7895:356::-;8097:2;8079:21;;;8116:18;;;8109:30;8175:34;8170:2;8155:18;;8148:62;8242:2;8227:18;;7895:356::o;8256:413::-;8458:2;8440:21;;;8497:2;8477:18;;;8470:30;8536:34;8531:2;8516:18;;8509:62;-1:-1:-1;;;8602:2:1;8587:18;;8580:47;8659:3;8644:19;;8256:413::o;9499:127::-;9560:10;9555:3;9551:20;9548:1;9541:31;9591:4;9588:1;9581:15;9615:4;9612:1;9605:15;11797:127;11858:10;11853:3;11849:20;11846:1;11839:31;11889:4;11886:1;11879:15;11913:4;11910:1;11903:15;11929:135;11968:3;-1:-1:-1;;11989:17:1;;11986:43;;;12009:18;;:::i;:::-;-1:-1:-1;12056:1:1;12045:13;;11929:135::o;13300:353::-;13502:2;13484:21;;;13541:2;13521:18;;;13514:30;13580:31;13575:2;13560:18;;13553:59;13644:2;13629:18;;13300:353::o;14074:470::-;14253:3;14291:6;14285:13;14307:53;14353:6;14348:3;14341:4;14333:6;14329:17;14307:53;:::i;:::-;14423:13;;14382:16;;;;14445:57;14423:13;14382:16;14479:4;14467:17;;14445:57;:::i;:::-;14518:20;;14074:470;-1:-1:-1;;;;14074:470:1:o;15731:127::-;15792:10;15787:3;15783:20;15780:1;15773:31;15823:4;15820:1;15813:15;15847:4;15844:1;15837:15;15863:112;15895:1;15921;15911:35;;15926:18;;:::i;:::-;-1:-1:-1;15960:9:1;;15863:112::o;15980:125::-;16020:4;16048:1;16045;16042:8;16039:34;;;16053:18;;:::i;:::-;-1:-1:-1;16090:9:1;;15980:125::o;17745:128::-;17785:3;17816:1;17812:6;17809:1;17806:13;17803:39;;;17822:18;;:::i;:::-;-1:-1:-1;17858:9:1;;17745:128::o;17878:168::-;17918:7;17984:1;17980;17976:6;17972:14;17969:1;17966:21;17961:1;17954:9;17947:17;17943:45;17940:71;;;17991:18;;:::i;:::-;-1:-1:-1;18031:9:1;;17878:168::o;18960:414::-;19162:2;19144:21;;;19201:2;19181:18;;;19174:30;19240:34;19235:2;19220:18;;19213:62;-1:-1:-1;;;19306:2:1;19291:18;;19284:48;19364:3;19349:19;;18960:414::o;19379:120::-;19419:1;19445;19435:35;;19450:18;;:::i;:::-;-1:-1:-1;19484:9:1;;19379:120::o;19504:489::-;-1:-1:-1;;;;;19773:15:1;;;19755:34;;19825:15;;19820:2;19805:18;;19798:43;19872:2;19857:18;;19850:34;;;19920:3;19915:2;19900:18;;19893:31;;;19698:4;;19941:46;;19967:19;;19959:6;19941:46;:::i;:::-;19933:54;19504:489;-1:-1:-1;;;;;;19504:489:1:o;19998:249::-;20067:6;20120:2;20108:9;20099:7;20095:23;20091:32;20088:52;;;20136:1;20133;20126:12;20088:52;20168:9;20162:16;20187:30;20211:5;20187:30;:::i;20252:127::-;20313:10;20308:3;20304:20;20301:1;20294:31;20344:4;20341:1;20334:15;20368:4;20365:1;20358:15
Swarm Source
ipfs://267ca9218c864e123b04791ed52cec15c9d71280c227a6f03754d2bf13aeca49
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.