Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 CDBHS
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
16 CDBHSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CDBHS
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CDBHS is ERC721, Ownable, ReentrancyGuard { uint256 public constant STARTING_ID = 160; uint256 public constant ENDING_ID = 5360; uint256 public constant MAX_PURCHASES = 30; uint256 public constant TOKEN_PRICE = 0.0169 ether; bool public preSale = false; bool public publicSale = false; address public cdbs3; string private baseURI = ""; constructor(address _cdbs3) ERC721("CryptoDickbutts Holiday Special", "CDBHS") { cdbs3 = _cdbs3; } function mint(uint256[] memory ids) external payable nonReentrant { require(publicSale, "public sale is not live"); _checkMintRequirements(ids); _minter(msg.sender, ids); } function presaleMint(uint256[] memory ids) external payable nonReentrant { require(preSale, "pre sale is not live"); _checkMintRequirements(ids); for (uint256 i = 0; i < ids.length; i++) { require( IERC721(cdbs3).ownerOf(ids[i]) == msg.sender, "you don't own requested token" ); } _minter(msg.sender, ids); } function _checkMintRequirements(uint256[] memory ids) internal { uint256 quantity = ids.length; require( quantity > 0 && quantity <= MAX_PURCHASES, "invalid quantity: zero or greater than mint allowance" ); require( msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent" ); for (uint256 i; i < ids.length; i++) { uint256 tokenId = ids[i]; require( tokenId != 5000 && tokenId >= STARTING_ID && tokenId <= ENDING_ID, "invalid token id" ); } } function togglePublicSale() public onlyOwner { publicSale = !publicSale; } function togglePreSale() public onlyOwner { preSale = !preSale; } function _minter(address addr, uint256[] memory ids) internal { for (uint256 i = 0; i < ids.length; i++) { _safeMint(addr, ids[i]); } } function withdraw() external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 make 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_cdbs3","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ENDING_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"cdbs3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff02191690831515021790555060405180602001604052806000815250600990805190602001906200006192919062000273565b503480156200006f57600080fd5b50604051620042b5380380620042b583398181016040528101906200009591906200033a565b6040518060400160405280601f81526020017f43727970746f4469636b627574747320486f6c69646179205370656369616c008152506040518060400160405280600581526020017f434442485300000000000000000000000000000000000000000000000000000081525081600090805190602001906200011992919062000273565b5080600190805190602001906200013292919062000273565b5050506200015562000149620001a560201b60201c565b620001ad60201b60201c565b600160078190555080600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000424565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028190620003a0565b90600052602060002090601f016020900481019282620002a55760008555620002f1565b82601f10620002c057805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f0578251825591602001919060010190620002d3565b5b50905062000300919062000304565b5090565b5b808211156200031f57600081600090555060010162000305565b5090565b60008151905062000334816200040a565b92915050565b60006020828403121562000353576200035262000405565b5b6000620003638482850162000323565b91505092915050565b6000620003798262000380565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003b957607f821691505b60208210811415620003d057620003cf620003d6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b62000415816200036c565b81146200042157600080fd5b50565b613e8180620004346000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063c87b56dd11610095578063e71b870e11610064578063e71b870e146105e9578063e985e9c514610614578063f2fde38b14610651578063f8e93ef91461067a576101c2565b8063c87b56dd14610553578063ca3cb52214610590578063d2d8cb67146105a7578063e222c7f9146105d2576101c2565b806395d89b41116100d157806395d89b41146104ab578063a08818d3146104d6578063a22cb46514610501578063b88d4fde1461052a576101c2565b806370a082311461042c578063715018a6146104695780638da5cb5b14610480576101c2565b806342842e0e1161016457806359d42a861161013e57806359d42a861461036e5780635a7adf7f146103995780636352211e146103c45780636466739714610401576101c2565b806342842e0e1461030057806343f3c8861461032957806355f804b314610345576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806323b872dd1461029557806333bc1c5c146102be5780633ccfd60b146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906129d3565b610696565b6040516101fb9190612fa1565b60405180910390f35b34801561021057600080fd5b50610219610778565b6040516102269190612fbc565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612a76565b61080a565b6040516102639190612f3a565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061294a565b61088f565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612834565b6109a7565b005b3480156102ca57600080fd5b506102d3610a07565b6040516102e09190612fa1565b60405180910390f35b3480156102f557600080fd5b506102fe610a1a565b005b34801561030c57600080fd5b5061032760048036038101906103229190612834565b610aaf565b005b610343600480360381019061033e919061298a565b610acf565b005b34801561035157600080fd5b5061036c60048036038101906103679190612a2d565b610cdc565b005b34801561037a57600080fd5b50610383610d72565b60405161039091906132fe565b60405180910390f35b3480156103a557600080fd5b506103ae610d77565b6040516103bb9190612fa1565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612a76565b610d8a565b6040516103f89190612f3a565b60405180910390f35b34801561040d57600080fd5b50610416610e3c565b60405161042391906132fe565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e919061279a565b610e41565b60405161046091906132fe565b60405180910390f35b34801561047557600080fd5b5061047e610ef9565b005b34801561048c57600080fd5b50610495610f81565b6040516104a29190612f3a565b60405180910390f35b3480156104b757600080fd5b506104c0610fab565b6040516104cd9190612fbc565b60405180910390f35b3480156104e257600080fd5b506104eb61103d565b6040516104f89190612f3a565b60405180910390f35b34801561050d57600080fd5b506105286004803603810190610523919061290a565b611063565b005b34801561053657600080fd5b50610551600480360381019061054c9190612887565b6111e4565b005b34801561055f57600080fd5b5061057a60048036038101906105759190612a76565b611246565b6040516105879190612fbc565b60405180910390f35b34801561059c57600080fd5b506105a56112ed565b005b3480156105b357600080fd5b506105bc611395565b6040516105c991906132fe565b60405180910390f35b3480156105de57600080fd5b506105e76113a0565b005b3480156105f557600080fd5b506105fe611448565b60405161060b91906132fe565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906127f4565b61144e565b6040516106489190612fa1565b60405180910390f35b34801561065d57600080fd5b506106786004803603810190610673919061279a565b6114e2565b005b610694600480360381019061068f919061298a565b6115da565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610771575061077082611695565b5b9050919050565b606060008054610787906135e5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906135e5565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000610815826116ff565b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906131be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089a82610d8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109029061323e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092a61176b565b73ffffffffffffffffffffffffffffffffffffffff16148061095957506109588161095361176b565b61144e565b5b610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f9061313e565b60405180910390fd5b6109a28383611773565b505050565b6109b86109b261176b565b8261182c565b6109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061325e565b60405180910390fd5b610a0283838361190a565b505050565b600860019054906101000a900460ff1681565b610a2261176b565b73ffffffffffffffffffffffffffffffffffffffff16610a40610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d906131de565b60405180910390fd5b6000479050610aac610aa6610f81565b82611b66565b50565b610aca838383604051806020016040528060008152506111e4565b505050565b60026007541415610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061329e565b60405180910390fd5b6002600781905550600860009054906101000a900460ff16610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906130de565b60405180910390fd5b610b7581611c5a565b60005b8151811015610cc6573373ffffffffffffffffffffffffffffffffffffffff16600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110610be957610be861374f565b5b60200260200101516040518263ffffffff1660e01b8152600401610c0d91906132fe565b60206040518083038186803b158015610c2557600080fd5b505afa158015610c39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5d91906127c7565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa9061327e565b60405180910390fd5b8080610cbe90613648565b915050610b78565b50610cd13382611da8565b600160078190555050565b610ce461176b565b73ffffffffffffffffffffffffffffffffffffffff16610d02610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f906131de565b60405180910390fd5b8060099080519060200190610d6e9291906124fb565b5050565b60a081565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a9061317e565b60405180910390fd5b80915050919050565b601e81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061315e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f0161176b565b73ffffffffffffffffffffffffffffffffffffffff16610f1f610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906131de565b60405180910390fd5b610f7f6000611df0565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fba906135e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe6906135e5565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61106b61176b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d09061307e565b60405180910390fd5b80600560006110e661176b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119361176b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d89190612fa1565b60405180910390a35050565b6111f56111ef61176b565b8361182c565b611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061325e565b60405180910390fd5b61124084848484611eb6565b50505050565b6060611251826116ff565b611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112879061321e565b60405180910390fd5b600061129a611f12565b905060008151116112ba57604051806020016040528060008152506112e5565b806112c484611fa4565b6040516020016112d5929190612f01565b6040516020818303038152906040525b915050919050565b6112f561176b565b73ffffffffffffffffffffffffffffffffffffffff16611313610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611360906131de565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b663c0a75e0b4400081565b6113a861176b565b73ffffffffffffffffffffffffffffffffffffffff166113c6610f81565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611413906131de565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b6114f081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114ea61176b565b73ffffffffffffffffffffffffffffffffffffffff16611508610f81565b73ffffffffffffffffffffffffffffffffffffffff161461155e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611555906131de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c59061301e565b60405180910390fd5b6115d781611df0565b50565b60026007541415611620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116179061329e565b60405180910390fd5b6002600781905550600860019054906101000a900460ff16611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612fde565b60405180910390fd5b61168081611c5a565b61168a3382611da8565b600160078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117e683610d8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611837826116ff565b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061311e565b60405180910390fd5b600061188183610d8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118f057508373ffffffffffffffffffffffffffffffffffffffff166118d88461080a565b73ffffffffffffffffffffffffffffffffffffffff16145b806119015750611900818561144e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192a82610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906131fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e79061305e565b60405180910390fd5b6119fb838383612105565b611a06600082611773565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5691906134fb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad919061341a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba0906130fe565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bcf90612f25565b60006040518083038185875af1925050503d8060008114611c0c576040519150601f19603f3d011682016040523d82523d6000602084013e611c11565b606091505b5050905080611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c906130be565b60405180910390fd5b505050565b600081519050600081118015611c715750601e8111155b611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906132de565b60405180910390fd5b80663c0a75e0b44000611cc391906134a1565b3414611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb906132be565b60405180910390fd5b60005b8251811015611da3576000838281518110611d2557611d2461374f565b5b602002602001015190506113888114158015611d42575060a08110155b8015611d5057506114f08111155b611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d869061309e565b60405180910390fd5b508080611d9b90613648565b915050611d07565b505050565b60005b8151811015611deb57611dd883838381518110611dcb57611dca61374f565b5b602002602001015161210a565b8080611de390613648565b915050611dab565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec184848461190a565b611ecd84848484612128565b611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390612ffe565b60405180910390fd5b50505050565b606060098054611f21906135e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4d906135e5565b8015611f9a5780601f10611f6f57610100808354040283529160200191611f9a565b820191906000526020600020905b815481529060010190602001808311611f7d57829003601f168201915b5050505050905090565b60606000821415611fec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612100565b600082905060005b6000821461201e57808061200790613648565b915050600a826120179190613470565b9150611ff4565b60008167ffffffffffffffff81111561203a5761203961377e565b5b6040519080825280601f01601f19166020018201604052801561206c5781602001600182028036833780820191505090505b5090505b600085146120f95760018261208591906134fb565b9150600a856120949190613691565b60306120a0919061341a565b60f81b8183815181106120b6576120b561374f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f29190613470565b9450612070565b8093505050505b919050565b505050565b6121248282604051806020016040528060008152506122bf565b5050565b60006121498473ffffffffffffffffffffffffffffffffffffffff1661231a565b156122b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217261176b565b8786866040518563ffffffff1660e01b81526004016121949493929190612f55565b602060405180830381600087803b1580156121ae57600080fd5b505af19250505080156121df57506040513d601f19601f820116820180604052508101906121dc9190612a00565b60015b612262573d806000811461220f576040519150601f19603f3d011682016040523d82523d6000602084013e612214565b606091505b5060008151141561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190612ffe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b7565b600190505b949350505050565b6122c9838361232d565b6122d66000848484612128565b612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c90612ffe565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123949061319e565b60405180910390fd5b6123a6816116ff565b156123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd9061303e565b60405180910390fd5b6123f260008383612105565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612442919061341a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612507906135e5565b90600052602060002090601f0160209004810192826125295760008555612570565b82601f1061254257805160ff1916838001178555612570565b82800160010185558215612570579182015b8281111561256f578251825591602001919060010190612554565b5b50905061257d9190612581565b5090565b5b8082111561259a576000816000905550600101612582565b5090565b60006125b16125ac8461333e565b613319565b905080838252602082019050828560208602820111156125d4576125d36137b2565b5b60005b8581101561260457816125ea8882612785565b8452602084019350602083019250506001810190506125d7565b5050509392505050565b600061262161261c8461336a565b613319565b90508281526020810184848401111561263d5761263c6137b7565b5b6126488482856135a3565b509392505050565b600061266361265e8461339b565b613319565b90508281526020810184848401111561267f5761267e6137b7565b5b61268a8482856135a3565b509392505050565b6000813590506126a181613def565b92915050565b6000815190506126b681613def565b92915050565b600082601f8301126126d1576126d06137ad565b5b81356126e184826020860161259e565b91505092915050565b6000813590506126f981613e06565b92915050565b60008135905061270e81613e1d565b92915050565b60008151905061272381613e1d565b92915050565b600082601f83011261273e5761273d6137ad565b5b813561274e84826020860161260e565b91505092915050565b600082601f83011261276c5761276b6137ad565b5b813561277c848260208601612650565b91505092915050565b60008135905061279481613e34565b92915050565b6000602082840312156127b0576127af6137c1565b5b60006127be84828501612692565b91505092915050565b6000602082840312156127dd576127dc6137c1565b5b60006127eb848285016126a7565b91505092915050565b6000806040838503121561280b5761280a6137c1565b5b600061281985828601612692565b925050602061282a85828601612692565b9150509250929050565b60008060006060848603121561284d5761284c6137c1565b5b600061285b86828701612692565b935050602061286c86828701612692565b925050604061287d86828701612785565b9150509250925092565b600080600080608085870312156128a1576128a06137c1565b5b60006128af87828801612692565b94505060206128c087828801612692565b93505060406128d187828801612785565b925050606085013567ffffffffffffffff8111156128f2576128f16137bc565b5b6128fe87828801612729565b91505092959194509250565b60008060408385031215612921576129206137c1565b5b600061292f85828601612692565b9250506020612940858286016126ea565b9150509250929050565b60008060408385031215612961576129606137c1565b5b600061296f85828601612692565b925050602061298085828601612785565b9150509250929050565b6000602082840312156129a05761299f6137c1565b5b600082013567ffffffffffffffff8111156129be576129bd6137bc565b5b6129ca848285016126bc565b91505092915050565b6000602082840312156129e9576129e86137c1565b5b60006129f7848285016126ff565b91505092915050565b600060208284031215612a1657612a156137c1565b5b6000612a2484828501612714565b91505092915050565b600060208284031215612a4357612a426137c1565b5b600082013567ffffffffffffffff811115612a6157612a606137bc565b5b612a6d84828501612757565b91505092915050565b600060208284031215612a8c57612a8b6137c1565b5b6000612a9a84828501612785565b91505092915050565b612aac8161352f565b82525050565b612abb81613541565b82525050565b6000612acc826133cc565b612ad681856133e2565b9350612ae68185602086016135b2565b612aef816137c6565b840191505092915050565b6000612b05826133d7565b612b0f81856133fe565b9350612b1f8185602086016135b2565b612b28816137c6565b840191505092915050565b6000612b3e826133d7565b612b48818561340f565b9350612b588185602086016135b2565b80840191505092915050565b6000612b716017836133fe565b9150612b7c826137d7565b602082019050919050565b6000612b946032836133fe565b9150612b9f82613800565b604082019050919050565b6000612bb76026836133fe565b9150612bc28261384f565b604082019050919050565b6000612bda601c836133fe565b9150612be58261389e565b602082019050919050565b6000612bfd6024836133fe565b9150612c08826138c7565b604082019050919050565b6000612c206019836133fe565b9150612c2b82613916565b602082019050919050565b6000612c436010836133fe565b9150612c4e8261393f565b602082019050919050565b6000612c66603a836133fe565b9150612c7182613968565b604082019050919050565b6000612c896014836133fe565b9150612c94826139b7565b602082019050919050565b6000612cac601d836133fe565b9150612cb7826139e0565b602082019050919050565b6000612ccf602c836133fe565b9150612cda82613a09565b604082019050919050565b6000612cf26038836133fe565b9150612cfd82613a58565b604082019050919050565b6000612d15602a836133fe565b9150612d2082613aa7565b604082019050919050565b6000612d386029836133fe565b9150612d4382613af6565b604082019050919050565b6000612d5b6020836133fe565b9150612d6682613b45565b602082019050919050565b6000612d7e602c836133fe565b9150612d8982613b6e565b604082019050919050565b6000612da16020836133fe565b9150612dac82613bbd565b602082019050919050565b6000612dc46029836133fe565b9150612dcf82613be6565b604082019050919050565b6000612de7602f836133fe565b9150612df282613c35565b604082019050919050565b6000612e0a6021836133fe565b9150612e1582613c84565b604082019050919050565b6000612e2d6000836133f3565b9150612e3882613cd3565b600082019050919050565b6000612e506031836133fe565b9150612e5b82613cd6565b604082019050919050565b6000612e73601d836133fe565b9150612e7e82613d25565b602082019050919050565b6000612e96601f836133fe565b9150612ea182613d4e565b602082019050919050565b6000612eb9601a836133fe565b9150612ec482613d77565b602082019050919050565b6000612edc6035836133fe565b9150612ee782613da0565b604082019050919050565b612efb81613599565b82525050565b6000612f0d8285612b33565b9150612f198284612b33565b91508190509392505050565b6000612f3082612e20565b9150819050919050565b6000602082019050612f4f6000830184612aa3565b92915050565b6000608082019050612f6a6000830187612aa3565b612f776020830186612aa3565b612f846040830185612ef2565b8181036060830152612f968184612ac1565b905095945050505050565b6000602082019050612fb66000830184612ab2565b92915050565b60006020820190508181036000830152612fd68184612afa565b905092915050565b60006020820190508181036000830152612ff781612b64565b9050919050565b6000602082019050818103600083015261301781612b87565b9050919050565b6000602082019050818103600083015261303781612baa565b9050919050565b6000602082019050818103600083015261305781612bcd565b9050919050565b6000602082019050818103600083015261307781612bf0565b9050919050565b6000602082019050818103600083015261309781612c13565b9050919050565b600060208201905081810360008301526130b781612c36565b9050919050565b600060208201905081810360008301526130d781612c59565b9050919050565b600060208201905081810360008301526130f781612c7c565b9050919050565b6000602082019050818103600083015261311781612c9f565b9050919050565b6000602082019050818103600083015261313781612cc2565b9050919050565b6000602082019050818103600083015261315781612ce5565b9050919050565b6000602082019050818103600083015261317781612d08565b9050919050565b6000602082019050818103600083015261319781612d2b565b9050919050565b600060208201905081810360008301526131b781612d4e565b9050919050565b600060208201905081810360008301526131d781612d71565b9050919050565b600060208201905081810360008301526131f781612d94565b9050919050565b6000602082019050818103600083015261321781612db7565b9050919050565b6000602082019050818103600083015261323781612dda565b9050919050565b6000602082019050818103600083015261325781612dfd565b9050919050565b6000602082019050818103600083015261327781612e43565b9050919050565b6000602082019050818103600083015261329781612e66565b9050919050565b600060208201905081810360008301526132b781612e89565b9050919050565b600060208201905081810360008301526132d781612eac565b9050919050565b600060208201905081810360008301526132f781612ecf565b9050919050565b60006020820190506133136000830184612ef2565b92915050565b6000613323613334565b905061332f8282613617565b919050565b6000604051905090565b600067ffffffffffffffff8211156133595761335861377e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133855761338461377e565b5b61338e826137c6565b9050602081019050919050565b600067ffffffffffffffff8211156133b6576133b561377e565b5b6133bf826137c6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061342582613599565b915061343083613599565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613465576134646136c2565b5b828201905092915050565b600061347b82613599565b915061348683613599565b925082613496576134956136f1565b5b828204905092915050565b60006134ac82613599565b91506134b783613599565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134f0576134ef6136c2565b5b828202905092915050565b600061350682613599565b915061351183613599565b925082821015613524576135236136c2565b5b828203905092915050565b600061353a82613579565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135d05780820151818401526020810190506135b5565b838111156135df576000848401525b50505050565b600060028204905060018216806135fd57607f821691505b6020821081141561361157613610613720565b5b50919050565b613620826137c6565b810181811067ffffffffffffffff8211171561363f5761363e61377e565b5b80604052505050565b600061365382613599565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613686576136856136c2565b5b600182019050919050565b600061369c82613599565b91506136a783613599565b9250826136b7576136b66136f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7075626c69632073616c65206973206e6f74206c697665000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f7072652073616c65206973206e6f74206c697665000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f796f7520646f6e2774206f776e2072657175657374656420746f6b656e000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000600082015250565b7f696e76616c6964207175616e746974793a207a65726f206f722067726561746560008201527f72207468616e206d696e7420616c6c6f77616e63650000000000000000000000602082015250565b613df88161352f565b8114613e0357600080fd5b50565b613e0f81613541565b8114613e1a57600080fd5b50565b613e268161354d565b8114613e3157600080fd5b50565b613e3d81613599565b8114613e4857600080fd5b5056fea2646970667358221220a3f1870da97f12d517b29de24460807a87829471583e3edeff7cff5d238668a164736f6c6343000806003300000000000000000000000042069abfe407c60cf4ae4112bedead391dba1cdb
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063c87b56dd11610095578063e71b870e11610064578063e71b870e146105e9578063e985e9c514610614578063f2fde38b14610651578063f8e93ef91461067a576101c2565b8063c87b56dd14610553578063ca3cb52214610590578063d2d8cb67146105a7578063e222c7f9146105d2576101c2565b806395d89b41116100d157806395d89b41146104ab578063a08818d3146104d6578063a22cb46514610501578063b88d4fde1461052a576101c2565b806370a082311461042c578063715018a6146104695780638da5cb5b14610480576101c2565b806342842e0e1161016457806359d42a861161013e57806359d42a861461036e5780635a7adf7f146103995780636352211e146103c45780636466739714610401576101c2565b806342842e0e1461030057806343f3c8861461032957806355f804b314610345576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806323b872dd1461029557806333bc1c5c146102be5780633ccfd60b146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906129d3565b610696565b6040516101fb9190612fa1565b60405180910390f35b34801561021057600080fd5b50610219610778565b6040516102269190612fbc565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612a76565b61080a565b6040516102639190612f3a565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061294a565b61088f565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612834565b6109a7565b005b3480156102ca57600080fd5b506102d3610a07565b6040516102e09190612fa1565b60405180910390f35b3480156102f557600080fd5b506102fe610a1a565b005b34801561030c57600080fd5b5061032760048036038101906103229190612834565b610aaf565b005b610343600480360381019061033e919061298a565b610acf565b005b34801561035157600080fd5b5061036c60048036038101906103679190612a2d565b610cdc565b005b34801561037a57600080fd5b50610383610d72565b60405161039091906132fe565b60405180910390f35b3480156103a557600080fd5b506103ae610d77565b6040516103bb9190612fa1565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612a76565b610d8a565b6040516103f89190612f3a565b60405180910390f35b34801561040d57600080fd5b50610416610e3c565b60405161042391906132fe565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e919061279a565b610e41565b60405161046091906132fe565b60405180910390f35b34801561047557600080fd5b5061047e610ef9565b005b34801561048c57600080fd5b50610495610f81565b6040516104a29190612f3a565b60405180910390f35b3480156104b757600080fd5b506104c0610fab565b6040516104cd9190612fbc565b60405180910390f35b3480156104e257600080fd5b506104eb61103d565b6040516104f89190612f3a565b60405180910390f35b34801561050d57600080fd5b506105286004803603810190610523919061290a565b611063565b005b34801561053657600080fd5b50610551600480360381019061054c9190612887565b6111e4565b005b34801561055f57600080fd5b5061057a60048036038101906105759190612a76565b611246565b6040516105879190612fbc565b60405180910390f35b34801561059c57600080fd5b506105a56112ed565b005b3480156105b357600080fd5b506105bc611395565b6040516105c991906132fe565b60405180910390f35b3480156105de57600080fd5b506105e76113a0565b005b3480156105f557600080fd5b506105fe611448565b60405161060b91906132fe565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906127f4565b61144e565b6040516106489190612fa1565b60405180910390f35b34801561065d57600080fd5b506106786004803603810190610673919061279a565b6114e2565b005b610694600480360381019061068f919061298a565b6115da565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610771575061077082611695565b5b9050919050565b606060008054610787906135e5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906135e5565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000610815826116ff565b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906131be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089a82610d8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109029061323e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092a61176b565b73ffffffffffffffffffffffffffffffffffffffff16148061095957506109588161095361176b565b61144e565b5b610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f9061313e565b60405180910390fd5b6109a28383611773565b505050565b6109b86109b261176b565b8261182c565b6109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061325e565b60405180910390fd5b610a0283838361190a565b505050565b600860019054906101000a900460ff1681565b610a2261176b565b73ffffffffffffffffffffffffffffffffffffffff16610a40610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d906131de565b60405180910390fd5b6000479050610aac610aa6610f81565b82611b66565b50565b610aca838383604051806020016040528060008152506111e4565b505050565b60026007541415610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061329e565b60405180910390fd5b6002600781905550600860009054906101000a900460ff16610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906130de565b60405180910390fd5b610b7581611c5a565b60005b8151811015610cc6573373ffffffffffffffffffffffffffffffffffffffff16600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110610be957610be861374f565b5b60200260200101516040518263ffffffff1660e01b8152600401610c0d91906132fe565b60206040518083038186803b158015610c2557600080fd5b505afa158015610c39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5d91906127c7565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa9061327e565b60405180910390fd5b8080610cbe90613648565b915050610b78565b50610cd13382611da8565b600160078190555050565b610ce461176b565b73ffffffffffffffffffffffffffffffffffffffff16610d02610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f906131de565b60405180910390fd5b8060099080519060200190610d6e9291906124fb565b5050565b60a081565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a9061317e565b60405180910390fd5b80915050919050565b601e81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061315e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f0161176b565b73ffffffffffffffffffffffffffffffffffffffff16610f1f610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906131de565b60405180910390fd5b610f7f6000611df0565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610fba906135e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe6906135e5565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61106b61176b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d09061307e565b60405180910390fd5b80600560006110e661176b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119361176b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d89190612fa1565b60405180910390a35050565b6111f56111ef61176b565b8361182c565b611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061325e565b60405180910390fd5b61124084848484611eb6565b50505050565b6060611251826116ff565b611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112879061321e565b60405180910390fd5b600061129a611f12565b905060008151116112ba57604051806020016040528060008152506112e5565b806112c484611fa4565b6040516020016112d5929190612f01565b6040516020818303038152906040525b915050919050565b6112f561176b565b73ffffffffffffffffffffffffffffffffffffffff16611313610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611360906131de565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b663c0a75e0b4400081565b6113a861176b565b73ffffffffffffffffffffffffffffffffffffffff166113c6610f81565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611413906131de565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b6114f081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114ea61176b565b73ffffffffffffffffffffffffffffffffffffffff16611508610f81565b73ffffffffffffffffffffffffffffffffffffffff161461155e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611555906131de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c59061301e565b60405180910390fd5b6115d781611df0565b50565b60026007541415611620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116179061329e565b60405180910390fd5b6002600781905550600860019054906101000a900460ff16611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612fde565b60405180910390fd5b61168081611c5a565b61168a3382611da8565b600160078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117e683610d8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611837826116ff565b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061311e565b60405180910390fd5b600061188183610d8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118f057508373ffffffffffffffffffffffffffffffffffffffff166118d88461080a565b73ffffffffffffffffffffffffffffffffffffffff16145b806119015750611900818561144e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192a82610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906131fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e79061305e565b60405180910390fd5b6119fb838383612105565b611a06600082611773565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5691906134fb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aad919061341a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba0906130fe565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bcf90612f25565b60006040518083038185875af1925050503d8060008114611c0c576040519150601f19603f3d011682016040523d82523d6000602084013e611c11565b606091505b5050905080611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c906130be565b60405180910390fd5b505050565b600081519050600081118015611c715750601e8111155b611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca7906132de565b60405180910390fd5b80663c0a75e0b44000611cc391906134a1565b3414611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb906132be565b60405180910390fd5b60005b8251811015611da3576000838281518110611d2557611d2461374f565b5b602002602001015190506113888114158015611d42575060a08110155b8015611d5057506114f08111155b611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d869061309e565b60405180910390fd5b508080611d9b90613648565b915050611d07565b505050565b60005b8151811015611deb57611dd883838381518110611dcb57611dca61374f565b5b602002602001015161210a565b8080611de390613648565b915050611dab565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec184848461190a565b611ecd84848484612128565b611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390612ffe565b60405180910390fd5b50505050565b606060098054611f21906135e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4d906135e5565b8015611f9a5780601f10611f6f57610100808354040283529160200191611f9a565b820191906000526020600020905b815481529060010190602001808311611f7d57829003601f168201915b5050505050905090565b60606000821415611fec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612100565b600082905060005b6000821461201e57808061200790613648565b915050600a826120179190613470565b9150611ff4565b60008167ffffffffffffffff81111561203a5761203961377e565b5b6040519080825280601f01601f19166020018201604052801561206c5781602001600182028036833780820191505090505b5090505b600085146120f95760018261208591906134fb565b9150600a856120949190613691565b60306120a0919061341a565b60f81b8183815181106120b6576120b561374f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f29190613470565b9450612070565b8093505050505b919050565b505050565b6121248282604051806020016040528060008152506122bf565b5050565b60006121498473ffffffffffffffffffffffffffffffffffffffff1661231a565b156122b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217261176b565b8786866040518563ffffffff1660e01b81526004016121949493929190612f55565b602060405180830381600087803b1580156121ae57600080fd5b505af19250505080156121df57506040513d601f19601f820116820180604052508101906121dc9190612a00565b60015b612262573d806000811461220f576040519150601f19603f3d011682016040523d82523d6000602084013e612214565b606091505b5060008151141561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190612ffe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122b7565b600190505b949350505050565b6122c9838361232d565b6122d66000848484612128565b612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c90612ffe565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123949061319e565b60405180910390fd5b6123a6816116ff565b156123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd9061303e565b60405180910390fd5b6123f260008383612105565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612442919061341a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612507906135e5565b90600052602060002090601f0160209004810192826125295760008555612570565b82601f1061254257805160ff1916838001178555612570565b82800160010185558215612570579182015b8281111561256f578251825591602001919060010190612554565b5b50905061257d9190612581565b5090565b5b8082111561259a576000816000905550600101612582565b5090565b60006125b16125ac8461333e565b613319565b905080838252602082019050828560208602820111156125d4576125d36137b2565b5b60005b8581101561260457816125ea8882612785565b8452602084019350602083019250506001810190506125d7565b5050509392505050565b600061262161261c8461336a565b613319565b90508281526020810184848401111561263d5761263c6137b7565b5b6126488482856135a3565b509392505050565b600061266361265e8461339b565b613319565b90508281526020810184848401111561267f5761267e6137b7565b5b61268a8482856135a3565b509392505050565b6000813590506126a181613def565b92915050565b6000815190506126b681613def565b92915050565b600082601f8301126126d1576126d06137ad565b5b81356126e184826020860161259e565b91505092915050565b6000813590506126f981613e06565b92915050565b60008135905061270e81613e1d565b92915050565b60008151905061272381613e1d565b92915050565b600082601f83011261273e5761273d6137ad565b5b813561274e84826020860161260e565b91505092915050565b600082601f83011261276c5761276b6137ad565b5b813561277c848260208601612650565b91505092915050565b60008135905061279481613e34565b92915050565b6000602082840312156127b0576127af6137c1565b5b60006127be84828501612692565b91505092915050565b6000602082840312156127dd576127dc6137c1565b5b60006127eb848285016126a7565b91505092915050565b6000806040838503121561280b5761280a6137c1565b5b600061281985828601612692565b925050602061282a85828601612692565b9150509250929050565b60008060006060848603121561284d5761284c6137c1565b5b600061285b86828701612692565b935050602061286c86828701612692565b925050604061287d86828701612785565b9150509250925092565b600080600080608085870312156128a1576128a06137c1565b5b60006128af87828801612692565b94505060206128c087828801612692565b93505060406128d187828801612785565b925050606085013567ffffffffffffffff8111156128f2576128f16137bc565b5b6128fe87828801612729565b91505092959194509250565b60008060408385031215612921576129206137c1565b5b600061292f85828601612692565b9250506020612940858286016126ea565b9150509250929050565b60008060408385031215612961576129606137c1565b5b600061296f85828601612692565b925050602061298085828601612785565b9150509250929050565b6000602082840312156129a05761299f6137c1565b5b600082013567ffffffffffffffff8111156129be576129bd6137bc565b5b6129ca848285016126bc565b91505092915050565b6000602082840312156129e9576129e86137c1565b5b60006129f7848285016126ff565b91505092915050565b600060208284031215612a1657612a156137c1565b5b6000612a2484828501612714565b91505092915050565b600060208284031215612a4357612a426137c1565b5b600082013567ffffffffffffffff811115612a6157612a606137bc565b5b612a6d84828501612757565b91505092915050565b600060208284031215612a8c57612a8b6137c1565b5b6000612a9a84828501612785565b91505092915050565b612aac8161352f565b82525050565b612abb81613541565b82525050565b6000612acc826133cc565b612ad681856133e2565b9350612ae68185602086016135b2565b612aef816137c6565b840191505092915050565b6000612b05826133d7565b612b0f81856133fe565b9350612b1f8185602086016135b2565b612b28816137c6565b840191505092915050565b6000612b3e826133d7565b612b48818561340f565b9350612b588185602086016135b2565b80840191505092915050565b6000612b716017836133fe565b9150612b7c826137d7565b602082019050919050565b6000612b946032836133fe565b9150612b9f82613800565b604082019050919050565b6000612bb76026836133fe565b9150612bc28261384f565b604082019050919050565b6000612bda601c836133fe565b9150612be58261389e565b602082019050919050565b6000612bfd6024836133fe565b9150612c08826138c7565b604082019050919050565b6000612c206019836133fe565b9150612c2b82613916565b602082019050919050565b6000612c436010836133fe565b9150612c4e8261393f565b602082019050919050565b6000612c66603a836133fe565b9150612c7182613968565b604082019050919050565b6000612c896014836133fe565b9150612c94826139b7565b602082019050919050565b6000612cac601d836133fe565b9150612cb7826139e0565b602082019050919050565b6000612ccf602c836133fe565b9150612cda82613a09565b604082019050919050565b6000612cf26038836133fe565b9150612cfd82613a58565b604082019050919050565b6000612d15602a836133fe565b9150612d2082613aa7565b604082019050919050565b6000612d386029836133fe565b9150612d4382613af6565b604082019050919050565b6000612d5b6020836133fe565b9150612d6682613b45565b602082019050919050565b6000612d7e602c836133fe565b9150612d8982613b6e565b604082019050919050565b6000612da16020836133fe565b9150612dac82613bbd565b602082019050919050565b6000612dc46029836133fe565b9150612dcf82613be6565b604082019050919050565b6000612de7602f836133fe565b9150612df282613c35565b604082019050919050565b6000612e0a6021836133fe565b9150612e1582613c84565b604082019050919050565b6000612e2d6000836133f3565b9150612e3882613cd3565b600082019050919050565b6000612e506031836133fe565b9150612e5b82613cd6565b604082019050919050565b6000612e73601d836133fe565b9150612e7e82613d25565b602082019050919050565b6000612e96601f836133fe565b9150612ea182613d4e565b602082019050919050565b6000612eb9601a836133fe565b9150612ec482613d77565b602082019050919050565b6000612edc6035836133fe565b9150612ee782613da0565b604082019050919050565b612efb81613599565b82525050565b6000612f0d8285612b33565b9150612f198284612b33565b91508190509392505050565b6000612f3082612e20565b9150819050919050565b6000602082019050612f4f6000830184612aa3565b92915050565b6000608082019050612f6a6000830187612aa3565b612f776020830186612aa3565b612f846040830185612ef2565b8181036060830152612f968184612ac1565b905095945050505050565b6000602082019050612fb66000830184612ab2565b92915050565b60006020820190508181036000830152612fd68184612afa565b905092915050565b60006020820190508181036000830152612ff781612b64565b9050919050565b6000602082019050818103600083015261301781612b87565b9050919050565b6000602082019050818103600083015261303781612baa565b9050919050565b6000602082019050818103600083015261305781612bcd565b9050919050565b6000602082019050818103600083015261307781612bf0565b9050919050565b6000602082019050818103600083015261309781612c13565b9050919050565b600060208201905081810360008301526130b781612c36565b9050919050565b600060208201905081810360008301526130d781612c59565b9050919050565b600060208201905081810360008301526130f781612c7c565b9050919050565b6000602082019050818103600083015261311781612c9f565b9050919050565b6000602082019050818103600083015261313781612cc2565b9050919050565b6000602082019050818103600083015261315781612ce5565b9050919050565b6000602082019050818103600083015261317781612d08565b9050919050565b6000602082019050818103600083015261319781612d2b565b9050919050565b600060208201905081810360008301526131b781612d4e565b9050919050565b600060208201905081810360008301526131d781612d71565b9050919050565b600060208201905081810360008301526131f781612d94565b9050919050565b6000602082019050818103600083015261321781612db7565b9050919050565b6000602082019050818103600083015261323781612dda565b9050919050565b6000602082019050818103600083015261325781612dfd565b9050919050565b6000602082019050818103600083015261327781612e43565b9050919050565b6000602082019050818103600083015261329781612e66565b9050919050565b600060208201905081810360008301526132b781612e89565b9050919050565b600060208201905081810360008301526132d781612eac565b9050919050565b600060208201905081810360008301526132f781612ecf565b9050919050565b60006020820190506133136000830184612ef2565b92915050565b6000613323613334565b905061332f8282613617565b919050565b6000604051905090565b600067ffffffffffffffff8211156133595761335861377e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133855761338461377e565b5b61338e826137c6565b9050602081019050919050565b600067ffffffffffffffff8211156133b6576133b561377e565b5b6133bf826137c6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061342582613599565b915061343083613599565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613465576134646136c2565b5b828201905092915050565b600061347b82613599565b915061348683613599565b925082613496576134956136f1565b5b828204905092915050565b60006134ac82613599565b91506134b783613599565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134f0576134ef6136c2565b5b828202905092915050565b600061350682613599565b915061351183613599565b925082821015613524576135236136c2565b5b828203905092915050565b600061353a82613579565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135d05780820151818401526020810190506135b5565b838111156135df576000848401525b50505050565b600060028204905060018216806135fd57607f821691505b6020821081141561361157613610613720565b5b50919050565b613620826137c6565b810181811067ffffffffffffffff8211171561363f5761363e61377e565b5b80604052505050565b600061365382613599565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613686576136856136c2565b5b600182019050919050565b600061369c82613599565b91506136a783613599565b9250826136b7576136b66136f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7075626c69632073616c65206973206e6f74206c697665000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f7072652073616c65206973206e6f74206c697665000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f796f7520646f6e2774206f776e2072657175657374656420746f6b656e000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000600082015250565b7f696e76616c6964207175616e746974793a207a65726f206f722067726561746560008201527f72207468616e206d696e7420616c6c6f77616e63650000000000000000000000602082015250565b613df88161352f565b8114613e0357600080fd5b50565b613e0f81613541565b8114613e1a57600080fd5b50565b613e268161354d565b8114613e3157600080fd5b50565b613e3d81613599565b8114613e4857600080fd5b5056fea2646970667358221220a3f1870da97f12d517b29de24460807a87829471583e3edeff7cff5d238668a164736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000042069abfe407c60cf4ae4112bedead391dba1cdb
-----Decoded View---------------
Arg [0] : _cdbs3 (address): 0x42069ABFE407C60cf4ae4112bEDEaD391dBa1cdB
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000042069abfe407c60cf4ae4112bedead391dba1cdb
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.