ERC-20
Overview
Max Total Supply
200,000,000 EGRN
Holders
704
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EnergreenToken
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* .******,. &@@@@@@@@@@@@@@@@@@@@@@@@@@& ,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@. #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ @@@@@@@@@@@@@@@@@@@@@@@%. .&@@@@@@@@@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@@@( .@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@. @@@@@@@@@@@@@@ *@@@@@@@@@@@@@ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ .@@@@@@@@@@@@% /@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@/ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@& @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@ *@@@@@@@@@@@( .@@@@@@@@@@@& @@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@, .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@% @@@@@@@@@@@@ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ %@@@@@@@@@@@@ /@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@@@@@@@@@@& #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@% &@@@@@@@@@@@@@, .@@@@@@@@@@@@@* .@@@@@@@@@@@@@@/ ,@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@. @@@@@@@@@@@@@@@& @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@# #@@@@@@@@@@@@@@@@@@@@@ /@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, /@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@% &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@& (@@@@@@@@@@@@@@(. ______ _ _ ______ _____ _____ _____ ______ ______ _ _ | ____ | \ | | | ____ | __ \ / ____| | __ \ | ____ | ____ | \ | | | |__ | \| | | |__ | |__) | | | __ | |__)| | |__ | |__ | \| | | __| | . ` | | __| | _ / | | |_ | | _ / | __| | __| | . ` | | |____ | |\ | | |____ | | \ \ | |__| | | | \ \ | |____ | |____ | |\ | |______ |_| \_| |______ |_| \_\ \_____| |_| \_||______ |______ |_| \_| @author : Baris Arya Cantepe */ pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract EnergreenToken is ERC20,ERC20Burnable, Ownable , ReentrancyGuard { uint256 public constant MAX_SUPPLY = 200000000 * (10 ** 18); uint256 private constant INITIAL_STAKING = 60000000 * (10 ** 18); uint256 private constant INITIAL_LIQUIDITY = 3000000 * (10 ** 18); uint256 private constant INITIAL_IDO = 80000 * (10 ** 18); uint256 private constant INITIAL_PRIVATE_SALE_1 = 35039350 * (10 ** 15); uint256 private constant INITIAL_PRIVATE_SALE_2 = 40000 * (10 ** 18); uint256 private constant INITIAL_RESERVE = 75000000 * (10 ** 18); address public constant stakingAddress = 0xe1C9E85A91f97090f27bE358D03E4Ad28f8F242A ; address public constant liquidityAddress = 0x656F4EAc864393d61362e24434f8Ad2987543aC3 ; address public constant idoAddress = 0x34EcE43178f23F908164651aB673ffbfc26b0b22 ; address public constant privateSale1Address = 0xFaC7c87D1777662909b7Bf7e4E7bc0922423229c ; address public constant privateSale2Address = 0x14530Dd3325CE7D035d231210CC4b2bF5b0ebE88 ; address public constant marketingAddress = 0x3aca898549cC4863beC8D95362Ecc4030a6ad346 ; address public constant reserveAddress = 0x66D9Bb5cC0D8B32C62C46Dfb7376031A497afe70 ; address public constant teamAddress = 0x7F4C6325b0690d98138229C1b2938886ffe10A65 ; address public constant advisorAddress = 0x9c137226d0D4c191F4A680F646dFEb381e7Acee4 ; address public releaserAddress = 0x5299020821E252fD686F372EAFC06a57bA4B303c; uint256 public startDate; uint constant SECONDS_PER_DAY = 24 * 60 * 60; uint constant SECONDS_PER_HOUR = 60 * 60; uint constant SECONDS_PER_MINUTE = 60; int constant OFFSET19700101 = 2440588; struct Vesting { uint256 vestingTime; uint256 period; uint256 amount; uint256 totalVesting; } mapping(address => Vesting) public vestings; mapping(address => bool) public blacklist; event VestingClaimed(address indexed beneficiary, uint256 amount , uint256 claimedPeriod); constructor( ) ERC20("ENERGREEN", "EGRN") { startDate = block.timestamp; uint256 _currentDay; (, , _currentDay) = timestampToDate(startDate) ; // releaseVesting function sets the new vesting time in next month as the same day of current month // Constructor checks deploy day to block errors when estimating new vestings (Some months don't have 29. day or more.). require(_currentDay < 29 , "This contract can not be deployed when the current day of month is bigger than 28.") ; _mint(address(this), MAX_SUPPLY); _transfer(address(this), stakingAddress, INITIAL_STAKING); _transfer(address(this), liquidityAddress, INITIAL_LIQUIDITY); _transfer(address(this), idoAddress, INITIAL_IDO); _transfer(address(this), privateSale1Address, INITIAL_PRIVATE_SALE_1); _transfer(address(this), privateSale2Address, INITIAL_PRIVATE_SALE_2); _transfer(address(this), reserveAddress, INITIAL_RESERVE); vestings[marketingAddress] = Vesting({ vestingTime: getNextVestingMonth(1 , startDate) , period: 133, amount: 248120300751879699248120, // Approximately 248,120 EGRN totalVesting: 133 }); vestings[privateSale1Address] = Vesting({ vestingTime: getNextVestingMonth(9 , startDate), period: 13, amount: 51211357692307692307692, // Approximately 51,211 EGRN totalVesting: 13 }); vestings[privateSale2Address] = Vesting({ vestingTime: getNextVestingMonth(8 , startDate), period: 13, amount: 58461538461538461538461, // Approximately 58,461 EGRN totalVesting: 13 }); vestings[idoAddress] = Vesting({ vestingTime: getNextVestingMonth(1 , startDate), period: 200, amount: 4600 * (10 ** 18), totalVesting: 200 }); vestings[teamAddress] = Vesting({ vestingTime: getNextVestingMonth(12 , startDate), period: 96, amount: 208333333333333333333333, // Approximately 208,333 EGRN totalVesting: 96 }); vestings[advisorAddress] = Vesting({ vestingTime: getNextVestingMonth(12 , startDate), period: 48, amount: 135400270833333333333333 , // Approximately 135,400 EGRN totalVesting: 48 }); } // VESTING LOCK RELEASE function releaseVesting (address vestingAddress) public releaserOrOwner nonReentrant { Vesting memory vesting = vestings[vestingAddress] ; require( block.timestamp >= vesting.vestingTime , "Vesting time is not now." ) ; require( vesting.period > 0 , "Vesting is over for this address" ) ; uint256 nextVestingTime ; if (vestingAddress == idoAddress) { nextVestingTime = vesting.vestingTime + 1 weeks ; } // Adding 1 week for IDO vesting else { nextVestingTime = getNextVestingMonth(1 , vesting.vestingTime) ; // Vesting day is same for every month except IDO sale. } vesting.vestingTime = nextVestingTime; vesting.period -= 1 ; vestings[vestingAddress] = vesting ; _transfer(address(this), vestingAddress, vesting.amount); emit VestingClaimed(vestingAddress, vesting.amount,(vesting.totalVesting - vesting.period)); } //Pure functions function getNextVestingMonth (uint256 _addingMonth , uint256 _currentTimestamp) public pure returns (uint256 _timestamp) { uint256 currentYear ; uint256 currentMonth ; uint256 currentDay ; (currentYear, currentMonth , currentDay) = timestampToDate(_currentTimestamp) ; uint256 nextYear = (_addingMonth / 12 ) + currentYear ; uint256 nextMonth = (_addingMonth % 12 ) + currentMonth ; if (nextMonth > 12 ) { nextYear += 1 ; nextMonth = nextMonth % 12 ; } uint256 nextTimestamp = timestampFromDate(nextYear , nextMonth , currentDay) ; return nextTimestamp ; } function _daysToDate(uint _days) internal pure returns (uint year, uint month, uint day) { int __days = int(_days); int L = __days + 68569 + OFFSET19700101; int N = 4 * L / 146097; L = L - (146097 * N + 3) / 4; int _year = 4000 * (L + 1) / 1461001; L = L - 1461 * _year / 4 + 31; int _month = 80 * L / 2447; int _day = L - 2447 * _month / 80; L = _month / 11; _month = _month + 2 - 12 * L; _year = 100 * (N - 49) + _year + L; year = uint(_year); month = uint(_month); day = uint(_day); } function _daysFromDate(uint year, uint month, uint day) internal pure returns (uint _days) { require(year >= 1970); int _year = int(year); int _month = int(month); int _day = int(day); int __days = _day - 32075 + 1461 * (_year + 4800 + (_month - 14) / 12) / 4 + 367 * (_month - 2 - (_month - 14) / 12 * 12) / 12 - 3 * ((_year + 4900 + (_month - 14) / 12) / 100) / 4 - OFFSET19700101; _days = uint(__days); } function timestampToDate(uint timestamp) public pure returns (uint year, uint month, uint day) { (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY); } function timestampFromDate(uint year, uint month, uint day) public pure returns (uint timestamp) { timestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY; } // View functions function getClaimedVestingCountForAddress (address _address) public view returns (uint256) { return vestings[_address].totalVesting - vestings[_address].period ; } function getTotalRemainingVestingAmountsForAddress (address _address) public view returns (uint256) { Vesting memory vesting = vestings[_address] ; uint256 remainingPeriod = vesting.period ; uint256 periodicAmount = vesting.amount ; uint256 remainingVestingAmount = remainingPeriod * periodicAmount ; return remainingVestingAmount ; } // Setter function setReleaserAddress(address _releaserAddress) public onlyOwner{ releaserAddress = _releaserAddress; } // Blacklist related function addToBlacklist(address user) public onlyOwner { blacklist[user] = true; } function removeFromBlacklist(address user) public onlyOwner { blacklist[user] = false; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { require(!blacklist[from], "Token transfer not allowed: source address is blacklisted"); require(!blacklist[to], "Token transfer not allowed: destination address is blacklisted"); super._beforeTokenTransfer(from, to, amount); } modifier releaserOrOwner() { require(owner() == _msgSender() || releaserAddress == _msgSender() , "You don't have permission to call release function."); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // 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.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 (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 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 (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimedPeriod","type":"uint256"}],"name":"VestingClaimed","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"advisorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_address","type":"address"}],"name":"getClaimedVestingCountForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_addingMonth","type":"uint256"},{"internalType":"uint256","name":"_currentTimestamp","type":"uint256"}],"name":"getNextVestingMonth","outputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTotalRemainingVestingAmountsForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"idoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"liquidityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"privateSale1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"vestingAddress","type":"address"}],"name":"releaseVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaserAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_releaserAddress","type":"address"}],"name":"setReleaserAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"}],"name":"timestampFromDate","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"timestampToDate","outputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"}],"stateMutability":"pure","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestings","outputs":[{"internalType":"uint256","name":"vestingTime","type":"uint256"},{"internalType":"uint256","name":"period","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"totalVesting","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600780546001600160a01b031916735299020821e252fd686f372eafc06a57ba4b303c1790553480156200003757600080fd5b506040518060400160405280600981526020016822a722a923a922a2a760b91b8152506040518060400160405280600481526020016322a3a92760e11b8152508160039081620000889190620010f3565b506004620000978282620010f3565b505050620000b4620000ae6200084c60201b60201c565b62000850565b6001600655426008819055600090620000cd90620008a2565b925050601d82109050620001695760405162461bcd60e51b815260206004820152605260248201527f5468697320636f6e74726163742063616e206e6f74206265206465706c6f796560448201527f64207768656e207468652063757272656e7420646179206f66206d6f6e74682060648201527134b9903134b3b3b2b9103a3430b710191c1760711b608482015260a4015b60405180910390fd5b62000180306aa56fa5b99019a5c8000000620008cc565b620001ac3073e1c9e85a91f97090f27be358d03e4ad28f8f242a6a31a17e847807b1bc0000006200098c565b620001d83073656f4eac864393d61362e24434f8ad2987543ac36a027b46536c66c8e30000006200098c565b62000203307334ece43178f23f908164651ab673ffbfc26b0b226910f0cf064dd5920000006200098c565b6200022e3073fac7c87d1777662909b7bf7e4e7bc0922423229c69076b7caa0a91377f00006200098c565b62000259307314530dd3325ce7d035d231210cc4b2bf5b0ebe88690878678326eac90000006200098c565b62000285307366d9bb5cc0d8b32c62c46dfb7376031a497afe706a3e09de2596099e2b0000006200098c565b6040518060800160405280620002a5600160085462000b3360201b60201c565b81526085602080830182905269348aa0e27823dce133f8604080850191909152606093840192909252733aca898549cc4863bec8d95362ecc4030a6ad346600052600980825284517f8b0be7075a8526885e4ca4e1e5d143d81190ca3735d78cf8f4a8b2dc9e96f50d55908401517f8b0be7075a8526885e4ca4e1e5d143d81190ca3735d78cf8f4a8b2dc9e96f50e55838201517f8b0be7075a8526885e4ca4e1e5d143d81190ca3735d78cf8f4a8b2dc9e96f50f5592909101517f8b0be7075a8526885e4ca4e1e5d143d81190ca3735d78cf8f4a8b2dc9e96f51055805160808101909152600854909182916200039e919062000b33565b8152600d6020808301829052690ad82c5afbc08c2fc4ec60408085019190915260609384019290925273fac7c87d1777662909b7bf7e4e7bc0922423229c6000526009815283517f1c848b98a732fc9f665b47552a83401ff7c97c618e8b088cf957ec8ec2c3afae558301517f1c848b98a732fc9f665b47552a83401ff7c97c618e8b088cf957ec8ec2c3afaf55828101517f1c848b98a732fc9f665b47552a83401ff7c97c618e8b088cf957ec8ec2c3afb0559101517f1c848b98a732fc9f665b47552a83401ff7c97c618e8b088cf957ec8ec2c3afb155805160808101909152600880548291620004919162000b33565b8152600d6020808301829052690c6134d360437489d89d6040808501919091526060938401929092527314530dd3325ce7d035d231210cc4b2bf5b0ebe886000526009815283517f4e197b5d5ec943f927832b8dbff1469cb75bcec6a7c4cfc6f869e8b32ee05777558301517f4e197b5d5ec943f927832b8dbff1469cb75bcec6a7c4cfc6f869e8b32ee0577855828101517f4e197b5d5ec943f927832b8dbff1469cb75bcec6a7c4cfc6f869e8b32ee05779559101517f4e197b5d5ec943f927832b8dbff1469cb75bcec6a7c4cfc6f869e8b32ee0577a558051608081019091526008548190620005869060019062000b33565b815260c8602080830182905268f95dd2ec27cce000006040808501919091526060938401929092527334ece43178f23f908164651ab673ffbfc26b0b226000526009815283517fc0847b38fc209d2ec245c5c20fca02bb1ef1a520a64c43e016a8ebe2248ea3e5558301517fc0847b38fc209d2ec245c5c20fca02bb1ef1a520a64c43e016a8ebe2248ea3e655828101517fc0847b38fc209d2ec245c5c20fca02bb1ef1a520a64c43e016a8ebe2248ea3e7559101517fc0847b38fc209d2ec245c5c20fca02bb1ef1a520a64c43e016a8ebe2248ea3e85580516080810190915260085481906200067a90600c9062000b33565b815260606020808301829052692c1dc5cb155c2c355555604080850191909152928201829052737f4c6325b0690d98138229c1b2938886ffe10a656000526009815283517f3cb0f024f70e251ce145a69aa14587acf1d3d4229fb0556d66adb594216f681c558301517f3cb0f024f70e251ce145a69aa14587acf1d3d4229fb0556d66adb594216f681d55828201517f3cb0f024f70e251ce145a69aa14587acf1d3d4229fb0556d66adb594216f681e5591909101517f3cb0f024f70e251ce145a69aa14587acf1d3d4229fb0556d66adb594216f681f5580516080810190915260085481906200076e90600c9062000b33565b815260306020808301829052691cac103a4d89454b1555604080850191909152606093840192909252739c137226d0d4c191f4a680f646dfeb381e7acee46000526009815283517faf2250ca46ceb6ef0698458db84abfecb74d1e7f953089d1293634915e4812ec558301517faf2250ca46ceb6ef0698458db84abfecb74d1e7f953089d1293634915e4812ed558201517faf2250ca46ceb6ef0698458db84abfecb74d1e7f953089d1293634915e4812ee5501517faf2250ca46ceb6ef0698458db84abfecb74d1e7f953089d1293634915e4812ef555062001308565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008080620008bf620008b96201518086620011eb565b62000bcd565b9196909550909350915050565b6001600160a01b038216620009245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000160565b620009326000838362000d79565b806002600082825462000946919062001202565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062002ca0833981519152910160405180910390a35050565b6001600160a01b038316620009f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000160565b6001600160a01b03821662000a565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000160565b62000a6383838362000d79565b6001600160a01b0383166000908152602081905260409020548181101562000add5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000160565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062002ca0833981519152910160405180910390a350505050565b600080808062000b4385620008a2565b9194509250905060008362000b5a600c89620011eb565b62000b66919062001202565b905060008362000b78600c8a62001218565b62000b84919062001202565b9050600c81111562000baf5762000b9d60018362001202565b915062000bac600c8262001218565b90505b600062000bbe83838662000eb8565b96505050505050505b92915050565b60008080838162253d8c62000be68362010bd96200122f565b62000bf291906200122f565b9050600062023ab162000c078360046200125a565b62000c13919062001290565b9050600462000c268262023ab16200125a565b62000c339060036200122f565b62000c3f919062001290565b62000c4b9083620012c4565b9150600062164b0962000c608460016200122f565b62000c6e90610fa06200125a565b62000c7a919062001290565b9050600462000c8c826105b56200125a565b62000c98919062001290565b62000ca49084620012c4565b62000cb190601f6200122f565b9250600061098f62000cc58560506200125a565b62000cd1919062001290565b90506000605062000ce58361098f6200125a565b62000cf1919062001290565b62000cfd9086620012c4565b905062000d0c600b8362001290565b945062000d1b85600c6200125a565b62000d288360026200122f565b62000d349190620012c4565b9150848362000d45603187620012c4565b62000d529060646200125a565b62000d5e91906200122f565b62000d6a91906200122f565b9a919950975095505050505050565b6001600160a01b0383166000908152600a602052604090205460ff161562000e0a5760405162461bcd60e51b815260206004820152603960248201527f546f6b656e207472616e73666572206e6f7420616c6c6f7765643a20736f757260448201527f6365206164647265737320697320626c61636b6c697374656400000000000000606482015260840162000160565b6001600160a01b0382166000908152600a602052604090205460ff161562000e9b5760405162461bcd60e51b815260206004820152603e60248201527f546f6b656e207472616e73666572206e6f7420616c6c6f7765643a206465737460448201527f696e6174696f6e206164647265737320697320626c61636b6c69737465640000606482015260840162000160565b62000eb383838362000eb360201b62000cea1760201c565b505050565b60006201518062000ecb85858562000edf565b62000ed79190620012ee565b949350505050565b60006107b284101562000ef157600080fd5b838383600062253d8c60046064600c62000f0d600e88620012c4565b62000f19919062001290565b62000f27886113246200122f565b62000f3391906200122f565b62000f3f919062001290565b62000f4c9060036200125a565b62000f58919062001290565b600c8062000f68600e88620012c4565b62000f74919062001290565b62000f8190600c6200125a565b62000f8e600288620012c4565b62000f9a9190620012c4565b62000fa89061016f6200125a565b62000fb4919062001290565b6004600c62000fc5600e89620012c4565b62000fd1919062001290565b62000fdf896112c06200122f565b62000feb91906200122f565b62000ff9906105b56200125a565b62001005919062001290565b62001013617d4b87620012c4565b6200101f91906200122f565b6200102b91906200122f565b620010379190620012c4565b620010439190620012c4565b98975050505050505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200107a57607f821691505b6020821081036200109b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000eb357600081815260208120601f850160051c81016020861015620010ca5750805b601f850160051c820191505b81811015620010eb57828155600101620010d6565b505050505050565b81516001600160401b038111156200110f576200110f6200104f565b620011278162001120845462001065565b84620010a1565b602080601f8311600181146200115f5760008415620011465750858301515b600019600386901b1c1916600185901b178555620010eb565b600085815260208120601f198616915b8281101562001190578886015182559484019460019091019084016200116f565b5085821015620011af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082620011fd57620011fd620011bf565b500490565b8082018082111562000bc75762000bc7620011d5565b6000826200122a576200122a620011bf565b500690565b8082018281126000831280158216821582161715620012525762001252620011d5565b505092915050565b80820260008212600160ff1b84141615620012795762001279620011d5565b818105831482151762000bc75762000bc7620011d5565b600082620012a257620012a2620011bf565b600160ff1b821460001984141615620012bf57620012bf620011d5565b500590565b8181036000831280158383131683831282161715620012e757620012e7620011d5565b5092915050565b808202811582820484141762000bc75762000bc7620011d5565b61198880620013186000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80637dde92e21161013b578063ccf0b7fa116100b8578063dd62ed3e1161007c578063dd62ed3e14610571578063de5101af14610584578063f2fde38b146105b2578063f79ed94b146105c5578063f9f92be4146105e057600080fd5b8063ccf0b7fa146104c8578063d486d129146104db578063d7b4be24146104ee578063da59c43014610509578063daf498631461051c57600080fd5b8063a457c2d7116100ff578063a457c2d714610461578063a5ece94114610474578063a9059cbb1461048f578063b2dbe5a0146104a2578063c65051bb146104b557600080fd5b80637dde92e2146103f75780638da5cb5b146104125780638f441b691461042357806395d89b411461043e57806396d4d0911461044657600080fd5b806332cb6b0c116101c957806353b64cde1161018d57806353b64cde146103855780635a3f42e5146103a057806370a08231146103b3578063715018a6146103dc57806379cc6790146103e457600080fd5b806332cb6b0c14610325578063395093511461033757806342966c681461034a57806344337ea11461035f578063537df3b61461037257600080fd5b80631c75f085116102105780631c75f085146102a25780631f4f77b2146102d557806323b872dd146102e8578063313ce567146102fb5780633221c93f1461030a57600080fd5b806306fdde0314610242578063095ea7b3146102605780630b97bc861461028357806318160ddd1461029a575b600080fd5b61024a610603565b604051610257919061164e565b60405180910390f35b61027361026e3660046116b8565b610695565b6040519015158152602001610257565b61028c60085481565b604051908152602001610257565b60025461028c565b6102bd737f4c6325b0690d98138229c1b2938886ffe10a6581565b6040516001600160a01b039091168152602001610257565b61028c6102e33660046116e2565b6106af565b6102736102f636600461170e565b6106d2565b60405160128152602001610257565b6102bd73656f4eac864393d61362e24434f8ad2987543ac381565b61028c6aa56fa5b99019a5c800000081565b6102736103453660046116b8565b6106f6565b61035d61035836600461174a565b610718565b005b61035d61036d366004611763565b610725565b61035d610380366004611763565b610751565b6102bd7334ece43178f23f908164651ab673ffbfc26b0b2281565b61028c6103ae366004611763565b61077a565b61028c6103c1366004611763565b6001600160a01b031660009081526020819052604090205490565b61035d6107a7565b61035d6103f23660046116b8565b6107bb565b6102bd7314530dd3325ce7d035d231210cc4b2bf5b0ebe8881565b6005546001600160a01b03166102bd565b6102bd73fac7c87d1777662909b7bf7e4e7bc0922423229c81565b61024a6107d4565b6102bd739c137226d0d4c191f4a680f646dfeb381e7acee481565b61027361046f3660046116b8565b6107e3565b6102bd733aca898549cc4863bec8d95362ecc4030a6ad34681565b61027361049d3660046116b8565b610863565b61035d6104b0366004611763565b610871565b6007546102bd906001600160a01b031681565b61028c6104d6366004611763565b61089b565b61035d6104e9366004611763565b6108fa565b6102bd73e1c9e85a91f97090f27be358d03e4ad28f8f242a81565b61028c610517366004611785565b610b9b565b61055161052a366004611763565b60096020526000908152604090208054600182015460028301546003909301549192909184565b604080519485526020850193909352918301526060820152608001610257565b61028c61057f3660046117a7565b610c23565b61059761059236600461174a565b610c4e565b60408051938452602084019290925290820152606001610257565b61035d6105c0366004611763565b610c74565b6102bd7366d9bb5cc0d8b32c62c46dfb7376031a497afe7081565b6102736105ee366004611763565b600a6020526000908152604090205460ff1681565b606060038054610612906117da565b80601f016020809104026020016040519081016040528092919081815260200182805461063e906117da565b801561068b5780601f106106605761010080835404028352916020019161068b565b820191906000526020600020905b81548152906001019060200180831161066e57829003601f168201915b5050505050905090565b6000336106a3818585610cef565b60019150505b92915050565b6000620151806106c0858585610e13565b6106ca919061182a565b949350505050565b6000336106e0858285610f50565b6106eb858585610fca565b506001949350505050565b6000336106a38185856107098383610c23565b6107139190611841565b610cef565b6107223382611179565b50565b61072d6112b7565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6107596112b7565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6001600160a01b038116600090815260096020526040812060018101546003909101546106a99190611854565b6107af6112b7565b6107b96000611311565b565b6107c6823383610f50565b6107d08282611179565b5050565b606060048054610612906117da565b600033816107f18286610c23565b9050838110156108565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106eb8286868403610cef565b6000336106a3818585610fca565b6108796112b7565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526009602090815260408083208151608081018352815481526001820154938101849052600282015492810183905260039091015460608201529190836108f0828461182a565b9695505050505050565b6005546001600160a01b031633148061091d57506007546001600160a01b031633145b6109855760405162461bcd60e51b815260206004820152603360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f2063616c60448201527236103932b632b0b9b290333ab731ba34b7b71760691b606482015260840161084d565b61098d611363565b6001600160a01b03811660009081526009602090815260409182902082516080810184528154808252600183015493820193909352600282015493810193909352600301546060830152421015610a265760405162461bcd60e51b815260206004820152601860248201527f56657374696e672074696d65206973206e6f74206e6f772e0000000000000000604482015260640161084d565b6000816020015111610a7a5760405162461bcd60e51b815260206004820181905260248201527f56657374696e67206973206f76657220666f7220746869732061646472657373604482015260640161084d565b60007334ece43178f23f908164651ab673ffbfc26b0b21196001600160a01b03841601610ab7578151610ab09062093a80611841565b9050610ac9565b610ac660018360000151610b9b565b90505b80825260208201805160019190610ae1908390611854565b9052506001600160a01b0383166000908152600960209081526040918290208451815590840151600182015590830151600282018190556060840151600390920191909155610b339030908590610fca565b826001600160a01b03167f4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b51721836040015184602001518560600151610b779190611854565b6040805192835260208301919091520160405180910390a250506107226001600655565b600080600080610baa85610c4e565b91945092509050600083610bbf600c8961187d565b610bc99190611841565b9050600083610bd9600c8a611891565b610be39190611841565b9050600c811115610c0957610bf9600183611841565b9150610c06600c82611891565b90505b6000610c168383866106af565b9998505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008080610c67610c62620151808661187d565b6113bc565b9196909550909350915050565b610c7c6112b7565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084d565b61072281611311565b505050565b6001600160a01b038316610d515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084d565b6001600160a01b038216610db25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107b2841015610e2457600080fd5b838383600062253d8c60046064600c610e3e600e886118a5565b610e4891906118cc565b610e54886113246118fa565b610e5e91906118fa565b610e6891906118cc565b610e73906003611922565b610e7d91906118cc565b600c80610e8b600e886118a5565b610e9591906118cc565b610ea090600c611922565b610eab6002886118a5565b610eb591906118a5565b610ec19061016f611922565b610ecb91906118cc565b6004600c610eda600e896118a5565b610ee491906118cc565b610ef0896112c06118fa565b610efa91906118fa565b610f06906105b5611922565b610f1091906118cc565b610f1c617d4b876118a5565b610f2691906118fa565b610f3091906118fa565b610f3a91906118a5565b610f4491906118a5565b98975050505050505050565b6000610f5c8484610c23565b90506000198114610fc45781811015610fb75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084d565b610fc48484848403610cef565b50505050565b6001600160a01b03831661102e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161084d565b6001600160a01b0382166110905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161084d565b61109b838383611530565b6001600160a01b038316600090815260208190526040902054818110156111135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161084d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fc4565b6001600160a01b0382166111d95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161084d565b6111e582600083611530565b6001600160a01b038216600090815260208190526040902054818110156112595760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161084d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002600654036113b55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084d565b6002600655565b60008080838162253d8c6113d38362010bd96118fa565b6113dd91906118fa565b9050600062023ab16113f0836004611922565b6113fa91906118cc565b9050600461140b8262023ab1611922565b6114169060036118fa565b61142091906118cc565b61142a90836118a5565b9150600062164b0961143d8460016118fa565b61144990610fa0611922565b61145391906118cc565b90506004611463826105b5611922565b61146d91906118cc565b61147790846118a5565b61148290601f6118fa565b9250600061098f611494856050611922565b61149e91906118cc565b9050600060506114b08361098f611922565b6114ba91906118cc565b6114c490866118a5565b90506114d1600b836118cc565b94506114de85600c611922565b6114e98360026118fa565b6114f391906118a5565b915084836115026031876118a5565b61150d906064611922565b61151791906118fa565b61152191906118fa565b9a919950975095505050505050565b6001600160a01b0383166000908152600a602052604090205460ff16156115bf5760405162461bcd60e51b815260206004820152603960248201527f546f6b656e207472616e73666572206e6f7420616c6c6f7765643a20736f757260448201527f6365206164647265737320697320626c61636b6c697374656400000000000000606482015260840161084d565b6001600160a01b0382166000908152600a602052604090205460ff1615610cea5760405162461bcd60e51b815260206004820152603e60248201527f546f6b656e207472616e73666572206e6f7420616c6c6f7765643a206465737460448201527f696e6174696f6e206164647265737320697320626c61636b6c69737465640000606482015260840161084d565b600060208083528351808285015260005b8181101561167b5785810183015185820160400152820161165f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146116b357600080fd5b919050565b600080604083850312156116cb57600080fd5b6116d48361169c565b946020939093013593505050565b6000806000606084860312156116f757600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561172357600080fd5b61172c8461169c565b925061173a6020850161169c565b9150604084013590509250925092565b60006020828403121561175c57600080fd5b5035919050565b60006020828403121561177557600080fd5b61177e8261169c565b9392505050565b6000806040838503121561179857600080fd5b50508035926020909101359150565b600080604083850312156117ba57600080fd5b6117c38361169c565b91506117d16020840161169c565b90509250929050565b600181811c908216806117ee57607f821691505b60208210810361180e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106a9576106a9611814565b808201808211156106a9576106a9611814565b818103818111156106a9576106a9611814565b634e487b7160e01b600052601260045260246000fd5b60008261188c5761188c611867565b500490565b6000826118a0576118a0611867565b500690565b81810360008312801583831316838312821617156118c5576118c5611814565b5092915050565b6000826118db576118db611867565b600160ff1b8214600019841416156118f5576118f5611814565b500590565b808201828112600083128015821682158216171561191a5761191a611814565b505092915050565b80820260008212600160ff1b8414161561193e5761193e611814565b81810583148215176106a9576106a961181456fea2646970667358221220bf3a3a5f61fc8083adec6377bb51d4c11876b8468426b38fa71d90ee21deec4a64736f6c63430008120033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80637dde92e21161013b578063ccf0b7fa116100b8578063dd62ed3e1161007c578063dd62ed3e14610571578063de5101af14610584578063f2fde38b146105b2578063f79ed94b146105c5578063f9f92be4146105e057600080fd5b8063ccf0b7fa146104c8578063d486d129146104db578063d7b4be24146104ee578063da59c43014610509578063daf498631461051c57600080fd5b8063a457c2d7116100ff578063a457c2d714610461578063a5ece94114610474578063a9059cbb1461048f578063b2dbe5a0146104a2578063c65051bb146104b557600080fd5b80637dde92e2146103f75780638da5cb5b146104125780638f441b691461042357806395d89b411461043e57806396d4d0911461044657600080fd5b806332cb6b0c116101c957806353b64cde1161018d57806353b64cde146103855780635a3f42e5146103a057806370a08231146103b3578063715018a6146103dc57806379cc6790146103e457600080fd5b806332cb6b0c14610325578063395093511461033757806342966c681461034a57806344337ea11461035f578063537df3b61461037257600080fd5b80631c75f085116102105780631c75f085146102a25780631f4f77b2146102d557806323b872dd146102e8578063313ce567146102fb5780633221c93f1461030a57600080fd5b806306fdde0314610242578063095ea7b3146102605780630b97bc861461028357806318160ddd1461029a575b600080fd5b61024a610603565b604051610257919061164e565b60405180910390f35b61027361026e3660046116b8565b610695565b6040519015158152602001610257565b61028c60085481565b604051908152602001610257565b60025461028c565b6102bd737f4c6325b0690d98138229c1b2938886ffe10a6581565b6040516001600160a01b039091168152602001610257565b61028c6102e33660046116e2565b6106af565b6102736102f636600461170e565b6106d2565b60405160128152602001610257565b6102bd73656f4eac864393d61362e24434f8ad2987543ac381565b61028c6aa56fa5b99019a5c800000081565b6102736103453660046116b8565b6106f6565b61035d61035836600461174a565b610718565b005b61035d61036d366004611763565b610725565b61035d610380366004611763565b610751565b6102bd7334ece43178f23f908164651ab673ffbfc26b0b2281565b61028c6103ae366004611763565b61077a565b61028c6103c1366004611763565b6001600160a01b031660009081526020819052604090205490565b61035d6107a7565b61035d6103f23660046116b8565b6107bb565b6102bd7314530dd3325ce7d035d231210cc4b2bf5b0ebe8881565b6005546001600160a01b03166102bd565b6102bd73fac7c87d1777662909b7bf7e4e7bc0922423229c81565b61024a6107d4565b6102bd739c137226d0d4c191f4a680f646dfeb381e7acee481565b61027361046f3660046116b8565b6107e3565b6102bd733aca898549cc4863bec8d95362ecc4030a6ad34681565b61027361049d3660046116b8565b610863565b61035d6104b0366004611763565b610871565b6007546102bd906001600160a01b031681565b61028c6104d6366004611763565b61089b565b61035d6104e9366004611763565b6108fa565b6102bd73e1c9e85a91f97090f27be358d03e4ad28f8f242a81565b61028c610517366004611785565b610b9b565b61055161052a366004611763565b60096020526000908152604090208054600182015460028301546003909301549192909184565b604080519485526020850193909352918301526060820152608001610257565b61028c61057f3660046117a7565b610c23565b61059761059236600461174a565b610c4e565b60408051938452602084019290925290820152606001610257565b61035d6105c0366004611763565b610c74565b6102bd7366d9bb5cc0d8b32c62c46dfb7376031a497afe7081565b6102736105ee366004611763565b600a6020526000908152604090205460ff1681565b606060038054610612906117da565b80601f016020809104026020016040519081016040528092919081815260200182805461063e906117da565b801561068b5780601f106106605761010080835404028352916020019161068b565b820191906000526020600020905b81548152906001019060200180831161066e57829003601f168201915b5050505050905090565b6000336106a3818585610cef565b60019150505b92915050565b6000620151806106c0858585610e13565b6106ca919061182a565b949350505050565b6000336106e0858285610f50565b6106eb858585610fca565b506001949350505050565b6000336106a38185856107098383610c23565b6107139190611841565b610cef565b6107223382611179565b50565b61072d6112b7565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6107596112b7565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6001600160a01b038116600090815260096020526040812060018101546003909101546106a99190611854565b6107af6112b7565b6107b96000611311565b565b6107c6823383610f50565b6107d08282611179565b5050565b606060048054610612906117da565b600033816107f18286610c23565b9050838110156108565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6106eb8286868403610cef565b6000336106a3818585610fca565b6108796112b7565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526009602090815260408083208151608081018352815481526001820154938101849052600282015492810183905260039091015460608201529190836108f0828461182a565b9695505050505050565b6005546001600160a01b031633148061091d57506007546001600160a01b031633145b6109855760405162461bcd60e51b815260206004820152603360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f2063616c60448201527236103932b632b0b9b290333ab731ba34b7b71760691b606482015260840161084d565b61098d611363565b6001600160a01b03811660009081526009602090815260409182902082516080810184528154808252600183015493820193909352600282015493810193909352600301546060830152421015610a265760405162461bcd60e51b815260206004820152601860248201527f56657374696e672074696d65206973206e6f74206e6f772e0000000000000000604482015260640161084d565b6000816020015111610a7a5760405162461bcd60e51b815260206004820181905260248201527f56657374696e67206973206f76657220666f7220746869732061646472657373604482015260640161084d565b60007334ece43178f23f908164651ab673ffbfc26b0b21196001600160a01b03841601610ab7578151610ab09062093a80611841565b9050610ac9565b610ac660018360000151610b9b565b90505b80825260208201805160019190610ae1908390611854565b9052506001600160a01b0383166000908152600960209081526040918290208451815590840151600182015590830151600282018190556060840151600390920191909155610b339030908590610fca565b826001600160a01b03167f4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b51721836040015184602001518560600151610b779190611854565b6040805192835260208301919091520160405180910390a250506107226001600655565b600080600080610baa85610c4e565b91945092509050600083610bbf600c8961187d565b610bc99190611841565b9050600083610bd9600c8a611891565b610be39190611841565b9050600c811115610c0957610bf9600183611841565b9150610c06600c82611891565b90505b6000610c168383866106af565b9998505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008080610c67610c62620151808661187d565b6113bc565b9196909550909350915050565b610c7c6112b7565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084d565b61072281611311565b505050565b6001600160a01b038316610d515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084d565b6001600160a01b038216610db25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107b2841015610e2457600080fd5b838383600062253d8c60046064600c610e3e600e886118a5565b610e4891906118cc565b610e54886113246118fa565b610e5e91906118fa565b610e6891906118cc565b610e73906003611922565b610e7d91906118cc565b600c80610e8b600e886118a5565b610e9591906118cc565b610ea090600c611922565b610eab6002886118a5565b610eb591906118a5565b610ec19061016f611922565b610ecb91906118cc565b6004600c610eda600e896118a5565b610ee491906118cc565b610ef0896112c06118fa565b610efa91906118fa565b610f06906105b5611922565b610f1091906118cc565b610f1c617d4b876118a5565b610f2691906118fa565b610f3091906118fa565b610f3a91906118a5565b610f4491906118a5565b98975050505050505050565b6000610f5c8484610c23565b90506000198114610fc45781811015610fb75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084d565b610fc48484848403610cef565b50505050565b6001600160a01b03831661102e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161084d565b6001600160a01b0382166110905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161084d565b61109b838383611530565b6001600160a01b038316600090815260208190526040902054818110156111135760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161084d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fc4565b6001600160a01b0382166111d95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161084d565b6111e582600083611530565b6001600160a01b038216600090815260208190526040902054818110156112595760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161084d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002600654036113b55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084d565b6002600655565b60008080838162253d8c6113d38362010bd96118fa565b6113dd91906118fa565b9050600062023ab16113f0836004611922565b6113fa91906118cc565b9050600461140b8262023ab1611922565b6114169060036118fa565b61142091906118cc565b61142a90836118a5565b9150600062164b0961143d8460016118fa565b61144990610fa0611922565b61145391906118cc565b90506004611463826105b5611922565b61146d91906118cc565b61147790846118a5565b61148290601f6118fa565b9250600061098f611494856050611922565b61149e91906118cc565b9050600060506114b08361098f611922565b6114ba91906118cc565b6114c490866118a5565b90506114d1600b836118cc565b94506114de85600c611922565b6114e98360026118fa565b6114f391906118a5565b915084836115026031876118a5565b61150d906064611922565b61151791906118fa565b61152191906118fa565b9a919950975095505050505050565b6001600160a01b0383166000908152600a602052604090205460ff16156115bf5760405162461bcd60e51b815260206004820152603960248201527f546f6b656e207472616e73666572206e6f7420616c6c6f7765643a20736f757260448201527f6365206164647265737320697320626c61636b6c697374656400000000000000606482015260840161084d565b6001600160a01b0382166000908152600a602052604090205460ff1615610cea5760405162461bcd60e51b815260206004820152603e60248201527f546f6b656e207472616e73666572206e6f7420616c6c6f7765643a206465737460448201527f696e6174696f6e206164647265737320697320626c61636b6c69737465640000606482015260840161084d565b600060208083528351808285015260005b8181101561167b5785810183015185820160400152820161165f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146116b357600080fd5b919050565b600080604083850312156116cb57600080fd5b6116d48361169c565b946020939093013593505050565b6000806000606084860312156116f757600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561172357600080fd5b61172c8461169c565b925061173a6020850161169c565b9150604084013590509250925092565b60006020828403121561175c57600080fd5b5035919050565b60006020828403121561177557600080fd5b61177e8261169c565b9392505050565b6000806040838503121561179857600080fd5b50508035926020909101359150565b600080604083850312156117ba57600080fd5b6117c38361169c565b91506117d16020840161169c565b90509250929050565b600181811c908216806117ee57607f821691505b60208210810361180e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106a9576106a9611814565b808201808211156106a9576106a9611814565b818103818111156106a9576106a9611814565b634e487b7160e01b600052601260045260246000fd5b60008261188c5761188c611867565b500490565b6000826118a0576118a0611867565b500690565b81810360008312801583831316838312821617156118c5576118c5611814565b5092915050565b6000826118db576118db611867565b600160ff1b8214600019841416156118f5576118f5611814565b500590565b808201828112600083128015821682158216171561191a5761191a611814565b505092915050565b80820260008212600160ff1b8414161561193e5761193e611814565b81810583148215176106a9576106a961181456fea2646970667358221220bf3a3a5f61fc8083adec6377bb51d4c11876b8468426b38fa71d90ee21deec4a64736f6c63430008120033
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.