ERC-20
Overview
Max Total Supply
2,069,727.065902777777776487 DUGO
Holders
549
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
304.1943287037037037 DUGOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Dugo
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./IDugo.sol"; error Dugo_FunctionLocked(); error Dugo_InvalidMaxSupply(); error Dugo_NotAswangContract(); error Dugo_NotTokenOwner(); error Dugo_TokenIdOutOfRange(); interface IAswang is IERC721 { function prayingStartedAt(uint256 tokenId) external view returns (uint256); } /** .,,,,. ,l;..,l;. .co, ,ol. ;do'.'::'..ox;. .cxl..:xOOk:..cxc. .dk:. ;xxc:dk; ;xd, ,xx; 'xk;. 'xx, 'dx; ;xd, .dOxc;,;oOx. .okc. .cko. .oOo'. .c0o. .lkl. .okc. .:kx, .dkc. ;xd, ;xd, .. .. 'okc. .lOo. .lko. .oOl. :Od' .dOc. ;kx' ,xk; ...'',,,,,,''... ,xk; .:xx' ..';:coodddddddddoddoollc:;'. .okl. .okl. ..''..... ....''.. :kk, .:O0c ..,:loxkkxxkkdl:,.. 'xOc. .o0k; .,:oxkkkkxoooooodxkO00Okxoc,.. .o0x. ,k0o. .;ldxdoc;'....',,;;;;,....,:lxOOOko:,. :0O; .cOO:. .:odo:'. 'cdoc:,,,;:lloc' .':oxOOxc,. ,kKl. .dX0; .:ooc'. 'lxd;. 'lko' .'cxOOxc' .xXk' ;OKd'.'oxl' ;dxc. .''. ,xk: .'cxOkl'.lK0: .oK0:.'okl. ,xk:. .ldlldc. 'xk; .,okxc';OXd. 'kXx'.cxl. .oOd. .ck: ,xl. .lOd. ,oxl''xXO, ;0Kl..cl' .dOo. .oO: ,kx. cOx, .'cc..lKK: .cKKo;cdo. .l0x' .ol;,lx:. .d0d' .cdc':0Xo. .dX0c.oKXO:. 'x0l. ..... .lOOc. .xK0o.'xXx. ;OXk; .:k0Oo;. ;OKd' 'd00o. .:xxl;' .lKO: .oKKo. .;okOko;. 'oOOd:'......,cx0KOl. .;oxo;. 'xKo. 'xXO: ..'cxO0Odc,. .,:lddxxkxkkkdc,. .'cxxd:... .c0k' ;0Xx' .;c;. .':ok00Odl;'. ...... ..;ldkxo;. .lko, ,O0; .cKXd. .:dl' .';ldk00Oxoc;,... ..,;coxkkxl;.. .;xko, 'kKl. .oKKl. ,oo, .:; .';lxkO00Okkxdoc:;:clodxOOOkoc;.. ,;. .;dxc. .dKx. ,kKO:. .;' 'oo. ..',::codkkxxkxdlc:,... ;xx; '::. .lKO; .c0Xk, 'ol. 'l, .:c. 'oko. ;OKl. .oKKo. .. .:;. 'dc. .;; .;, ;xl. .;xd, .. 'xXd. .xX0c. .dk: .. .:c. ;xc .,dk. cOl. .,:. :Ok, .oKk' 'kXO: :Okc;. .'. .ld' .l0: .cx: ;cdkc. cKO; ;0XO; .dXx. .;; 'ko. ,:. .xKx' ;0Kc. cKXx'.;O0dl' . ;; .. :dldkc. 'kKo. .oXXd..oKO:.cd:,;cdl. .lko;;oOo''oOd' .dKd. .dX0l. :OOdoloxdlc;,:' .:;,:ldxolllxOl. .lKx. 'xXO:. ........ ...... .c0k' 'OWNOoccccccccccc:c::::::;;;;,,,;;;,,,,,,,,;,,,,,,,;;,,,'''''''',,,,;;;;,,,,,;;,;;;;;;;;;;;:::::;::cccccccllccllllodONO' :XWWWNXK00OO00000000000000OOOOOOO00OOOOO00000000000000KXXXXXXXXXKK00000000OO0O000OOOOOOOOOOOO000OOOO000OOOOOOOO00KXNNWNd * @title Aswang Tribe $DUGO token * @author Augminted Labs, LLC */ contract Dugo is IDugo, ERC20, Ownable, ReentrancyGuard { IAswang public immutable ASWANG; uint256 public immutable STARTED_AT; uint256 public constant GENESIS_SUPPLY = 3333; uint256 public constant TOTAL_SUPPLY = 6666; uint256 public constant GENESIS_BASE_RATE = 5 ether; uint256 public constant MANANANGGAL_BASE_RATE = 2 ether; uint256 public constant EPOCH_DURATION = 180 days; uint256 public maxSupply = 10_000_000 ether; uint256 public totalClaimed = 2_000_000 ether; mapping(bytes4 => bool) public functionLocked; mapping(uint256 => uint256) internal _lastClaimedAt; constructor( IAswang aswang, address team ) ERC20("Dugo", "DUGO") { ASWANG = aswang; STARTED_AT = block.timestamp; _mint(team, totalClaimed); } /** * @notice Modifier applied to functions that will be disabled when they're no longer needed */ modifier lockable() { if (functionLocked[msg.sig]) revert Dugo_FunctionLocked(); _; } /** * @notice Current !praying epoch */ function currentEpoch() public view returns (uint256) { return (block.timestamp - STARTED_AT) / EPOCH_DURATION; } /** * @notice Base rate of specified token * @param tokenId Token to return base rate for */ function baseRate(uint256 tokenId) public pure returns (uint256) { if (tokenId >= TOTAL_SUPPLY) revert Dugo_TokenIdOutOfRange(); return tokenId < GENESIS_SUPPLY ? GENESIS_BASE_RATE : MANANANGGAL_BASE_RATE; } /** * @notice Calculate the $DUGO generation rate at a specified epoch * @param _baseRate Base rate for a particular token * @param epoch Epoch to calculate rate for */ function rate(uint256 _baseRate, uint256 epoch) internal pure returns (uint256) { return epoch == 0 ? _baseRate : _baseRate / (2 ** epoch); } /** * @notice Last time $DUGO was claimed for a specified token * @param tokenId Token to return the last claim time for */ function lastClaimedAt(uint256 tokenId) public view returns (uint256) { uint256 prayingStartedAt = ASWANG.prayingStartedAt(tokenId); if (prayingStartedAt == 0) return 0; return prayingStartedAt > _lastClaimedAt[tokenId] ? prayingStartedAt : _lastClaimedAt[tokenId]; } /** * @notice The amount of currently claimable $DUGO for a specified token * @param tokenId Token to return the amount of claimable $DUGO for */ function claimable(uint256 tokenId) public view returns (uint256) { uint256 claimFrom = lastClaimedAt(tokenId); if (claimFrom == 0) return 0; uint256 totalClaimable; uint256 _currentEpoch = currentEpoch(); uint256 _baseRate = baseRate(tokenId); uint256 epochEndsAt = STARTED_AT + EPOCH_DURATION; for (uint256 i; i <= _currentEpoch;) { unchecked { if (epochEndsAt > claimFrom) { totalClaimable += ((i == _currentEpoch ? block.timestamp : epochEndsAt) - claimFrom) * rate(_baseRate, i) / 1 days; claimFrom = epochEndsAt; } epochEndsAt += EPOCH_DURATION; ++i; } } return totalClaimable; } /** * @notice Lower the maximum token supply * @param newMaxSupply New max supply */ function lowerMaxSupply(uint256 newMaxSupply) external lockable onlyOwner { if (newMaxSupply > maxSupply || newMaxSupply < totalClaimed) revert Dugo_InvalidMaxSupply(); maxSupply = newMaxSupply; } /** * @notice ASWANG contract only function to burn a specified amount of $DUGO * @param account Account to burn $DUGO from * @param amount Amount of $DUGO to burn */ function burn(address account, uint256 amount) public override { if (_msgSender() != address(ASWANG)) revert Dugo_NotAswangContract(); _burn(account, amount); } /** * @notice ASWANG contract only function to claim $DUGO for a specified token * @param account Account that owns the token * @param tokenId Token to claim $DUGO for */ function claim(address account, uint256 tokenId) public override { if (_msgSender() != address(ASWANG)) revert Dugo_NotAswangContract(); _claim(account, tokenId); } /** * @notice Claim $DUGO for specified tokens * @param tokenIds Tokens to claim $DUGO for */ function claim(uint256[] calldata tokenIds) external { for (uint256 i; i < tokenIds.length;) { _claim(_msgSender(), tokenIds[i]); _lastClaimedAt[tokenIds[i]] = block.timestamp; unchecked { ++i; } } } /** * @notice Internal function to claim $DUGO for specified account and token * @param account Account that owns the token * @param tokenId Token to claim $DUGO for */ function _claim(address account, uint256 tokenId) internal nonReentrant { if (ASWANG.ownerOf(tokenId) != account) revert Dugo_NotTokenOwner(); if (totalClaimed < maxSupply) { uint256 _claimable = claimable(tokenId); _mint( account, totalClaimed + _claimable < maxSupply ? _claimable : maxSupply - totalClaimed ); totalClaimed += _claimable; } } /** * @notice Recover ASWANG tokens accidentally transferred directly to the contract * @param to Account to send the ASWANG to * @param tokenId ASWANG to recover */ function recoveryTransfer(address to, uint256 tokenId) external lockable onlyOwner { ASWANG.transferFrom(address(this), to, tokenId); } /** * @notice Lock individual functions that are no longer needed. WARNING: THIS CANNOT BE UNDONE * @dev Only affects functions with the lockable modifier * @param id First 4 bytes of the calldata (i.e. function identifier) */ function lockFunction(bytes4 id) public onlyOwner { functionLocked[id] = true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) 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 making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IDugo is IERC20 { function burn(address, uint256) external; function claim(address, uint256) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "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":"contract IAswang","name":"aswang","type":"address"},{"internalType":"address","name":"team","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Dugo_FunctionLocked","type":"error"},{"inputs":[],"name":"Dugo_InvalidMaxSupply","type":"error"},{"inputs":[],"name":"Dugo_NotAswangContract","type":"error"},{"inputs":[],"name":"Dugo_NotTokenOwner","type":"error"},{"inputs":[],"name":"Dugo_TokenIdOutOfRange","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ASWANG","outputs":[{"internalType":"contract IAswang","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANANANGGAL_BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTED_AT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"baseRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lastClaimedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoveryTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526a084595161401484a0000006007556a01a784379d99db420000006008553480156200002f57600080fd5b5060405162001c7538038062001c75833981016040819052620000529162000302565b604051806040016040528060048152602001634475676f60e01b815250604051806040016040528060048152602001634455474f60e01b8152508160039080519060200190620000a492919062000243565b508051620000ba90600490602084019062000243565b505050620000d7620000d16200010560201b60201c565b62000109565b60016006556001600160a01b0382166080524260a052600854620000fd9082906200015b565b5050620003a4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ca919062000341565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f990849062000341565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002519062000368565b90600052602060002090601f016020900481019282620002755760008555620002c0565b82601f106200029057805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002c0578251825591602001919060010190620002a3565b50620002ce929150620002d2565b5090565b5b80821115620002ce5760008155600101620002d3565b6001600160a01b0381168114620002ff57600080fd5b50565b600080604083850312156200031657600080fd5b82516200032381620002e9565b60208401519092506200033681620002e9565b809150509250929050565b600082198211156200036357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200037d57607f821691505b6020821081036200039e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161187a620003fb60003960008181610251015281816108b40152610b680152600081816102a101528181610667015281816107a8015281816108fa015281816109f1015261108b015261187a6000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063902d55a51161011a578063aad3ec96116100ad578063d1d58b251161007c578063d1d58b251461046c578063d54ad2a11461047f578063d5abeb0114610488578063dd62ed3e14610491578063f2fde38b146104ca57600080fd5b8063aad3ec9614610410578063bbadfe7614610423578063be89ca8414610446578063c4e9374d1461045957600080fd5b8063a457c2d7116100e9578063a457c2d7146103d1578063a4c35c94146103e4578063a70b9f0c146103f3578063a9059cbb146103fd57600080fd5b8063902d55a5146103a457806395d89b41146103ad57806399ec6765146103b55780639dc29fac146103be57600080fd5b8063395093511161019d5780636ba4c1381161016c5780636ba4c1381461034757806370a082311461035a578063715018a614610383578063766718081461038b5780638da5cb5b1461039357600080fd5b806339509351146102ff57806339ea79141461031257806352e123d31461032157806357f576eb1461033457600080fd5b806323b872dd116101d957806323b872dd146102895780632cb10d861461029c578063313ce567146102db57806334531828146102ea57600080fd5b806306fdde031461020b578063095ea7b3146102295780630a9bb92f1461024c57806318160ddd14610281575b600080fd5b6102136104dd565b6040516102209190611437565b60405180910390f35b61023c6102373660046114a1565b61056f565b6040519015158152602001610220565b6102737f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610220565b600254610273565b61023c6102973660046114cd565b610589565b6102c37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610220565b60405160128152602001610220565b6102fd6102f836600461150e565b6105ad565b005b61023c61030d3660046114a1565b610605565b610273671bc16d674ec8000081565b61027361032f366004611538565b610644565b6102fd6103423660046114a1565b610717565b6102fd610355366004611551565b610808565b6102736103683660046115c6565b6001600160a01b031660009081526020819052604090205490565b6102fd610873565b6102736108a9565b6005546001600160a01b03166102c3565b610273611a0a81565b6102136108e8565b610273610d0581565b6102fd6103cc3660046114a1565b6108f7565b61023c6103df3660046114a1565b61094e565b610273674563918244f4000081565b61027362ed4e0081565b61023c61040b3660046114a1565b6109e0565b6102fd61041e3660046114a1565b6109ee565b61023c61043136600461150e565b60096020526000908152604090205460ff1681565b610273610454366004611538565b610a41565b6102fd610467366004611538565b610a8b565b61027361047a366004611538565b610b24565b61027360085481565b61027360075481565b61027361049f3660046115e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102fd6104d83660046115c6565b610bf3565b6060600380546104ec9061161c565b80601f01602080910402602001604051908101604052809291908181526020018280546105189061161c565b80156105655780601f1061053a57610100808354040283529160200191610565565b820191906000526020600020905b81548152906001019060200180831161054857829003601f168201915b5050505050905090565b60003361057d818585610c8e565b60019150505b92915050565b600033610597858285610db2565b6105a2858585610e44565b506001949350505050565b6005546001600160a01b031633146105e05760405162461bcd60e51b81526004016105d790611656565b60405180910390fd5b6001600160e01b0319166000908152600960205260409020805460ff19166001179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061057d908290869061063f9087906116a1565b610c8e565b60405163cd197a4f60e01b81526004810182905260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cd197a4f90602401602060405180830381865afa1580156106ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d291906116b9565b9050806000036106e55750600092915050565b6000838152600a6020526040902054811161070e576000838152600a6020526040902054610710565b805b9392505050565b600080356001600160e01b03191681526009602052604090205460ff1615610752576040516305954a1d60e01b815260040160405180910390fd5b6005546001600160a01b0316331461077c5760405162461bcd60e51b81526004016105d790611656565b6040516323b872dd60e01b81523060048201526001600160a01b038381166024830152604482018390527f000000000000000000000000000000000000000000000000000000000000000016906323b872dd90606401600060405180830381600087803b1580156107ec57600080fd5b505af1158015610800573d6000803e3d6000fd5b505050505050565b60005b8181101561086e5761083533848484818110610829576108296116d2565b90506020020135611012565b42600a600085858581811061084c5761084c6116d2565b602090810292909201358352508101919091526040016000205560010161080b565b505050565b6005546001600160a01b0316331461089d5760405162461bcd60e51b81526004016105d790611656565b6108a7600061118f565b565b600062ed4e006108d97f0000000000000000000000000000000000000000000000000000000000000000426116e8565b6108e39190611715565b905090565b6060600480546104ec9061161c565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610940576040516339a8a56160e01b815260040160405180910390fd5b61094a82826111e1565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109d35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d7565b6105a28286868403610c8e565b60003361057d818585610e44565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610a37576040516339a8a56160e01b815260040160405180910390fd5b61094a8282611012565b6000611a0a8210610a6557604051634fd6398160e01b815260040160405180910390fd5b610d058210610a7c57671bc16d674ec80000610583565b674563918244f4000092915050565b600080356001600160e01b03191681526009602052604090205460ff1615610ac6576040516305954a1d60e01b815260040160405180910390fd5b6005546001600160a01b03163314610af05760405162461bcd60e51b81526004016105d790611656565b600754811180610b01575060085481105b15610b1f576040516307bd90f960e11b815260040160405180910390fd5b600755565b600080610b3083610644565b905080600003610b435750600092915050565b600080610b4e6108a9565b90506000610b5b86610a41565b90506000610b8c62ed4e007f00000000000000000000000000000000000000000000000000000000000000006116a1565b905060005b838111610be75785821115610bd65762015180610bae848361132f565b87868414610bbc5784610bbe565b425b030281610bcd57610bcd6116ff565b04850194508195505b62ed4e009190910190600101610b91565b50929695505050505050565b6005546001600160a01b03163314610c1d5760405162461bcd60e51b81526004016105d790611656565b6001600160a01b038116610c825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b610c8b8161118f565b50565b6001600160a01b038316610cf05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6001600160a01b038216610d515760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610e3e5781811015610e315760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105d7565b610e3e8484848403610c8e565b50505050565b6001600160a01b038316610ea85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d7565b6001600160a01b038216610f0a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d7565b6001600160a01b03831660009081526020819052604090205481811015610f825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610fb99084906116a1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100591815260200190565b60405180910390a3610e3e565b6002600654036110645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105d7565b60026006556040516331a9108f60e11b8152600481018290526001600160a01b03838116917f000000000000000000000000000000000000000000000000000000000000000090911690636352211e90602401602060405180830381865afa1580156110d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f89190611737565b6001600160a01b03161461111f576040516379da728760e11b815260040160405180910390fd5b600754600854101561118657600061113682610b24565b905061116d836007548360085461114d91906116a1565b106111675760085460075461116291906116e8565b611358565b82611358565b806008600082825461117f91906116a1565b9091555050505b50506001600655565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166112415760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d7565b6001600160a01b038216600090815260208190526040902054818110156112b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d7565b6001600160a01b03831660009081526020819052604081208383039055600280548492906112e49084906116e8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000811561135157611342826002611838565b61134c9084611715565b610710565b5090919050565b6001600160a01b0382166113ae5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d7565b80600260008282546113c091906116a1565b90915550506001600160a01b038216600090815260208190526040812080548392906113ed9084906116a1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b8181101561146457858101830151858201604001528201611448565b81811115611476576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c8b57600080fd5b600080604083850312156114b457600080fd5b82356114bf8161148c565b946020939093013593505050565b6000806000606084860312156114e257600080fd5b83356114ed8161148c565b925060208401356114fd8161148c565b929592945050506040919091013590565b60006020828403121561152057600080fd5b81356001600160e01b03198116811461071057600080fd5b60006020828403121561154a57600080fd5b5035919050565b6000806020838503121561156457600080fd5b823567ffffffffffffffff8082111561157c57600080fd5b818501915085601f83011261159057600080fd5b81358181111561159f57600080fd5b8660208260051b85010111156115b457600080fd5b60209290920196919550909350505050565b6000602082840312156115d857600080fd5b81356107108161148c565b600080604083850312156115f657600080fd5b82356116018161148c565b915060208301356116118161148c565b809150509250929050565b600181811c9082168061163057607f821691505b60208210810361165057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156116b4576116b461168b565b500190565b6000602082840312156116cb57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000828210156116fa576116fa61168b565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261173257634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561174957600080fd5b81516107108161148c565b600181815b8085111561178f5781600019048211156117755761177561168b565b8085161561178257918102915b93841c9390800290611759565b509250929050565b6000826117a657506001610583565b816117b357506000610583565b81600181146117c957600281146117d3576117ef565b6001915050610583565b60ff8411156117e4576117e461168b565b50506001821b610583565b5060208310610133831016604e8410600b8410161715611812575081810a610583565b61181c8383611754565b80600019048211156118305761183061168b565b029392505050565b6000610710838361179756fea2646970667358221220a03c7484d5b79bb47d5e12a69e34e508b4b9e3d0770cdc13d29c5e77a8716dac64736f6c634300080e0033000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b000000000000000000000000e5890f2b56e9c53dd04651b3627288f062aef7f1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063902d55a51161011a578063aad3ec96116100ad578063d1d58b251161007c578063d1d58b251461046c578063d54ad2a11461047f578063d5abeb0114610488578063dd62ed3e14610491578063f2fde38b146104ca57600080fd5b8063aad3ec9614610410578063bbadfe7614610423578063be89ca8414610446578063c4e9374d1461045957600080fd5b8063a457c2d7116100e9578063a457c2d7146103d1578063a4c35c94146103e4578063a70b9f0c146103f3578063a9059cbb146103fd57600080fd5b8063902d55a5146103a457806395d89b41146103ad57806399ec6765146103b55780639dc29fac146103be57600080fd5b8063395093511161019d5780636ba4c1381161016c5780636ba4c1381461034757806370a082311461035a578063715018a614610383578063766718081461038b5780638da5cb5b1461039357600080fd5b806339509351146102ff57806339ea79141461031257806352e123d31461032157806357f576eb1461033457600080fd5b806323b872dd116101d957806323b872dd146102895780632cb10d861461029c578063313ce567146102db57806334531828146102ea57600080fd5b806306fdde031461020b578063095ea7b3146102295780630a9bb92f1461024c57806318160ddd14610281575b600080fd5b6102136104dd565b6040516102209190611437565b60405180910390f35b61023c6102373660046114a1565b61056f565b6040519015158152602001610220565b6102737f0000000000000000000000000000000000000000000000000000000062ac8f4781565b604051908152602001610220565b600254610273565b61023c6102973660046114cd565b610589565b6102c37f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b81565b6040516001600160a01b039091168152602001610220565b60405160128152602001610220565b6102fd6102f836600461150e565b6105ad565b005b61023c61030d3660046114a1565b610605565b610273671bc16d674ec8000081565b61027361032f366004611538565b610644565b6102fd6103423660046114a1565b610717565b6102fd610355366004611551565b610808565b6102736103683660046115c6565b6001600160a01b031660009081526020819052604090205490565b6102fd610873565b6102736108a9565b6005546001600160a01b03166102c3565b610273611a0a81565b6102136108e8565b610273610d0581565b6102fd6103cc3660046114a1565b6108f7565b61023c6103df3660046114a1565b61094e565b610273674563918244f4000081565b61027362ed4e0081565b61023c61040b3660046114a1565b6109e0565b6102fd61041e3660046114a1565b6109ee565b61023c61043136600461150e565b60096020526000908152604090205460ff1681565b610273610454366004611538565b610a41565b6102fd610467366004611538565b610a8b565b61027361047a366004611538565b610b24565b61027360085481565b61027360075481565b61027361049f3660046115e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102fd6104d83660046115c6565b610bf3565b6060600380546104ec9061161c565b80601f01602080910402602001604051908101604052809291908181526020018280546105189061161c565b80156105655780601f1061053a57610100808354040283529160200191610565565b820191906000526020600020905b81548152906001019060200180831161054857829003601f168201915b5050505050905090565b60003361057d818585610c8e565b60019150505b92915050565b600033610597858285610db2565b6105a2858585610e44565b506001949350505050565b6005546001600160a01b031633146105e05760405162461bcd60e51b81526004016105d790611656565b60405180910390fd5b6001600160e01b0319166000908152600960205260409020805460ff19166001179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061057d908290869061063f9087906116a1565b610c8e565b60405163cd197a4f60e01b81526004810182905260009081906001600160a01b037f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b169063cd197a4f90602401602060405180830381865afa1580156106ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d291906116b9565b9050806000036106e55750600092915050565b6000838152600a6020526040902054811161070e576000838152600a6020526040902054610710565b805b9392505050565b600080356001600160e01b03191681526009602052604090205460ff1615610752576040516305954a1d60e01b815260040160405180910390fd5b6005546001600160a01b0316331461077c5760405162461bcd60e51b81526004016105d790611656565b6040516323b872dd60e01b81523060048201526001600160a01b038381166024830152604482018390527f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b16906323b872dd90606401600060405180830381600087803b1580156107ec57600080fd5b505af1158015610800573d6000803e3d6000fd5b505050505050565b60005b8181101561086e5761083533848484818110610829576108296116d2565b90506020020135611012565b42600a600085858581811061084c5761084c6116d2565b602090810292909201358352508101919091526040016000205560010161080b565b505050565b6005546001600160a01b0316331461089d5760405162461bcd60e51b81526004016105d790611656565b6108a7600061118f565b565b600062ed4e006108d97f0000000000000000000000000000000000000000000000000000000062ac8f47426116e8565b6108e39190611715565b905090565b6060600480546104ec9061161c565b337f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b6001600160a01b031614610940576040516339a8a56160e01b815260040160405180910390fd5b61094a82826111e1565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109d35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d7565b6105a28286868403610c8e565b60003361057d818585610e44565b337f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b6001600160a01b031614610a37576040516339a8a56160e01b815260040160405180910390fd5b61094a8282611012565b6000611a0a8210610a6557604051634fd6398160e01b815260040160405180910390fd5b610d058210610a7c57671bc16d674ec80000610583565b674563918244f4000092915050565b600080356001600160e01b03191681526009602052604090205460ff1615610ac6576040516305954a1d60e01b815260040160405180910390fd5b6005546001600160a01b03163314610af05760405162461bcd60e51b81526004016105d790611656565b600754811180610b01575060085481105b15610b1f576040516307bd90f960e11b815260040160405180910390fd5b600755565b600080610b3083610644565b905080600003610b435750600092915050565b600080610b4e6108a9565b90506000610b5b86610a41565b90506000610b8c62ed4e007f0000000000000000000000000000000000000000000000000000000062ac8f476116a1565b905060005b838111610be75785821115610bd65762015180610bae848361132f565b87868414610bbc5784610bbe565b425b030281610bcd57610bcd6116ff565b04850194508195505b62ed4e009190910190600101610b91565b50929695505050505050565b6005546001600160a01b03163314610c1d5760405162461bcd60e51b81526004016105d790611656565b6001600160a01b038116610c825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b610c8b8161118f565b50565b6001600160a01b038316610cf05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6001600160a01b038216610d515760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610e3e5781811015610e315760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105d7565b610e3e8484848403610c8e565b50505050565b6001600160a01b038316610ea85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d7565b6001600160a01b038216610f0a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d7565b6001600160a01b03831660009081526020819052604090205481811015610f825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610fb99084906116a1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100591815260200190565b60405180910390a3610e3e565b6002600654036110645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105d7565b60026006556040516331a9108f60e11b8152600481018290526001600160a01b03838116917f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b90911690636352211e90602401602060405180830381865afa1580156110d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f89190611737565b6001600160a01b03161461111f576040516379da728760e11b815260040160405180910390fd5b600754600854101561118657600061113682610b24565b905061116d836007548360085461114d91906116a1565b106111675760085460075461116291906116e8565b611358565b82611358565b806008600082825461117f91906116a1565b9091555050505b50506001600655565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166112415760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d7565b6001600160a01b038216600090815260208190526040902054818110156112b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d7565b6001600160a01b03831660009081526020819052604081208383039055600280548492906112e49084906116e8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000811561135157611342826002611838565b61134c9084611715565b610710565b5090919050565b6001600160a01b0382166113ae5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d7565b80600260008282546113c091906116a1565b90915550506001600160a01b038216600090815260208190526040812080548392906113ed9084906116a1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600060208083528351808285015260005b8181101561146457858101830151858201604001528201611448565b81811115611476576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c8b57600080fd5b600080604083850312156114b457600080fd5b82356114bf8161148c565b946020939093013593505050565b6000806000606084860312156114e257600080fd5b83356114ed8161148c565b925060208401356114fd8161148c565b929592945050506040919091013590565b60006020828403121561152057600080fd5b81356001600160e01b03198116811461071057600080fd5b60006020828403121561154a57600080fd5b5035919050565b6000806020838503121561156457600080fd5b823567ffffffffffffffff8082111561157c57600080fd5b818501915085601f83011261159057600080fd5b81358181111561159f57600080fd5b8660208260051b85010111156115b457600080fd5b60209290920196919550909350505050565b6000602082840312156115d857600080fd5b81356107108161148c565b600080604083850312156115f657600080fd5b82356116018161148c565b915060208301356116118161148c565b809150509250929050565b600181811c9082168061163057607f821691505b60208210810361165057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156116b4576116b461168b565b500190565b6000602082840312156116cb57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000828210156116fa576116fa61168b565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261173257634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561174957600080fd5b81516107108161148c565b600181815b8085111561178f5781600019048211156117755761177561168b565b8085161561178257918102915b93841c9390800290611759565b509250929050565b6000826117a657506001610583565b816117b357506000610583565b81600181146117c957600281146117d3576117ef565b6001915050610583565b60ff8411156117e4576117e461168b565b50506001821b610583565b5060208310610133831016604e8410600b8410161715611812575081810a610583565b61181c8383611754565b80600019048211156118305761183061168b565b029392505050565b6000610710838361179756fea2646970667358221220a03c7484d5b79bb47d5e12a69e34e508b4b9e3d0770cdc13d29c5e77a8716dac64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b000000000000000000000000e5890f2b56e9c53dd04651b3627288f062aef7f1
-----Decoded View---------------
Arg [0] : aswang (address): 0xa462127735352B1F03dA8Ab92a87803d05cc6a7B
Arg [1] : team (address): 0xe5890f2b56E9C53DD04651B3627288f062Aef7F1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b
Arg [1] : 000000000000000000000000e5890f2b56e9c53dd04651b3627288f062aef7f1
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.