Overview
Max Total Supply
160,735,138.760508946777729493 NESS
Holders
2,796 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.001293 CRO
Onchain Market Cap
$16,145.84
Circulating Supply Market Cap
$22,833.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
NessToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-03-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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); } /** * @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 guidelines: functions revert instead * of 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 { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to 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 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 { using SafeMath for uint256; /** * @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 { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } /** * @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() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract NessToken is ERC20Burnable, Ownable { using SafeMath for uint256; // TOTAL MAX SUPPLY = 800,000,000 NESS uint256 public constant LIQUIDITY_MINING_PROGRAM_ALLOCATION = 500000000 ether; uint256 public constant SEEDING_FUND_POOL_ALLOCATION = 10000000 ether; uint256 public constant MARKETING_FUND_POOL_ALLOCATION = 200000000 ether; uint256 public constant ADVISOR_FUND_POOL_ALLOCATION = 90000000 ether; uint256 public constant MARKETING_VESTING_DURATION = 1440 days; // 48 months uint256 public constant ADVISOR_VESTING_DURATION = 720 days; // 24 months uint256 public startTime; uint256 public marketingVestingEndTime; uint256 public advisorVestingEndTime; uint256 public marketingFundRewardRate; uint256 public advisorFundRewardRate; address public marketingFund; address public advisorFund; uint256 public marketingLastClaimedTime; uint256 public advisorLastClaimedTime; bool public liquidityMiningDistributed = false; constructor( uint256 _startTime, address _marketingFund, address _advisorFund ) public ERC20("Darkness Share", "NESS") { _mint(msg.sender, SEEDING_FUND_POOL_ALLOCATION); startTime = _startTime; marketingVestingEndTime = _startTime.add(MARKETING_VESTING_DURATION); advisorVestingEndTime = _startTime.add(ADVISOR_VESTING_DURATION); marketingLastClaimedTime = _startTime; advisorLastClaimedTime = _startTime; marketingFundRewardRate = MARKETING_FUND_POOL_ALLOCATION.div(MARKETING_VESTING_DURATION); advisorFundRewardRate = ADVISOR_FUND_POOL_ALLOCATION.div(ADVISOR_VESTING_DURATION); require(_marketingFund != address(0), "Address cannot be 0"); marketingFund = _marketingFund; require(_advisorFund != address(0), "Address cannot be 0"); advisorFund = _advisorFund; } function setMarketingFund(address _marketingFund) external onlyOwner { require(_marketingFund != address(0), "zero"); marketingFund = _marketingFund; } function setAdvisorFund(address _advisorFund) external onlyOwner { require(_advisorFund != address(0), "zero"); advisorFund = _advisorFund; } function unclaimedMarketingFund() public view returns (uint256 _pending) { uint256 _now = block.timestamp; if (_now > marketingVestingEndTime) _now = marketingVestingEndTime; if (marketingLastClaimedTime >= _now) return 0; _pending = _now.sub(marketingLastClaimedTime).mul(marketingFundRewardRate); } function unclaimedAdvisorFund() public view returns (uint256 _pending) { uint256 _now = block.timestamp; if (_now > advisorVestingEndTime) _now = advisorVestingEndTime; if (advisorLastClaimedTime >= _now) return 0; _pending = _now.sub(advisorLastClaimedTime).mul(advisorFundRewardRate); } /** * @dev Claim pending rewards to advisor and marketing fund */ function claimRewards() external { uint256 _pending = unclaimedMarketingFund(); if (_pending > 0 && marketingFund != address(0)) { _mint(marketingFund, _pending); marketingLastClaimedTime = block.timestamp; } _pending = unclaimedAdvisorFund(); if (_pending > 0 && advisorFund != address(0)) { _mint(advisorFund, _pending); advisorLastClaimedTime = block.timestamp; } } /** * @notice distribute to reward pool (only once) */ function distributeReward(address _farmingIncentiveFund) external onlyOwner { require(!liquidityMiningDistributed, "only can distribute once"); require(_farmingIncentiveFund != address(0), "!_farmingIncentiveFund"); liquidityMiningDistributed = true; _mint(_farmingIncentiveFund, LIQUIDITY_MINING_PROGRAM_ALLOCATION); } function burn(uint256 amount) public override { super.burn(amount); } function rescueStuckErc20(address _token) external onlyOwner { IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this))); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"address","name":"_marketingFund","type":"address"},{"internalType":"address","name":"_advisorFund","type":"address"}],"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"},{"inputs":[],"name":"ADVISOR_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADVISOR_VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_MINING_PROGRAM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEEDING_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advisorFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advisorFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advisorLastClaimedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advisorVestingEndTime","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":"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":"claimRewards","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":"_farmingIncentiveFund","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","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":"liquidityMiningDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingLastClaimedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingVestingEndTime","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueStuckErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_advisorFund","type":"address"}],"name":"setAdvisorFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingFund","type":"address"}],"name":"setMarketingFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[],"name":"unclaimedAdvisorFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unclaimedMarketingFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600f805460ff191690553480156200001b57600080fd5b506040516200262438038062002624833981810160405260608110156200004157600080fd5b50805160208083015160409384015184518086018652600e81526d4461726b6e65737320536861726560901b818501908152865180880190975260048752634e45535360e01b948701949094528051949592949193909291620000a791600391620004b3565b508051620000bd906004906020840190620004b3565b50506005805460ff19166012179055506000620000d9620002d0565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000146336a084595161401484a000000620002d4565b826006819055506200016b63076a700084620003e360201b620016a21790919060201c565b6007556200018a836303b53800620003e3602090811b620016a217901c565b600855600d839055600e839055620001be6aa56fa5b99019a5c800000063076a700062000445602090811b6200171d17901c565b600955620001e86a4a723dc6b40b8a9a0000006303b5380062000445602090811b6200171d17901c565b600a556001600160a01b0382166200023d576040805162461bcd60e51b81526020600482015260136024820152720416464726573732063616e6e6f74206265203606c1b604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b03848116919091179091558116620002a7576040805162461bcd60e51b81526020600482015260136024820152720416464726573732063616e6e6f74206265203606c1b604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055506200054f9050565b3390565b6001600160a01b03821662000330576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200033e60008383620004ae565b6200035a81600254620003e360201b620016a21790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200038d918390620016a2620003e3821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200043e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008082116200049c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381620004a657fe5b049392505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004f657805160ff191683800117855562000526565b8280016001018555821562000526579182015b828111156200052657825182559160200191906001019062000509565b506200053492915062000538565b5090565b5b8082111562000534576000815560010162000539565b6120c5806200055f6000396000f3fe608060405234801561001057600080fd5b50600436106102ad5760003560e01c806379cc67901161017b578063ab83f05b116100d8578063dd62ed3e1161008c578063f2fde38b11610071578063f2fde38b146106fd578063f3decf7614610730578063fd434d2314610738576102ad565b8063dd62ed3e146106ba578063f256b130146106f5576102ad565b8063b89dbdcd116100bd578063b89dbdcd146106a2578063b9ceb0f1146106aa578063d4e5add0146106b2576102ad565b8063ab83f05b14610692578063ac3962401461069a576102ad565b806395d89b411161012f578063a457c2d711610114578063a457c2d714610618578063a83dbec714610651578063a9059cbb14610659576102ad565b806395d89b4114610608578063985fd3ab14610610576102ad565b8063820cdc0811610160578063820cdc08146105c75780638da5cb5b146105cf578063931e3f0e14610600576102ad565b806379cc67901461055b57806381ca7eba14610594576102ad565b8063395093511161022957806364ee3efb116101dd57806370a08231116101c257806370a0823114610518578063715018a61461054b57806378e9792514610553576102ad565b806364ee3efb1461050857806367a09f3a14610510576102ad565b806342966c681161020e57806342966c68146104db5780634cb8e8af146104f85780635e46bfac14610500576102ad565b8063395093511461049a578063416b9250146104d3576102ad565b806319d748141161028057806324597f131161026557806324597f1314610441578063313ce56714610474578063372500ab14610492576102ad565b806319d74814146103cb57806323b872dd146103fe576102ad565b806306fdde03146102b2578063092193ab1461032f578063095ea7b31461036457806318160ddd146103b1575b600080fd5b6102ba610740565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f45781810151838201526020016102dc565b50505050905090810190601f1680156103215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103626004803603602081101561034557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166107f5565b005b61039d6004803603604081101561037a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109d5565b604080519115158252519081900360200190f35b6103b96109f3565b60408051918252519081900360200190f35b610362600480360360208110156103e157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109f9565b61039d6004803603606081101561041457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610b6c565b6103626004803603602081101561045757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c0d565b61047c610d80565b6040805160ff9092168252519081900360200190f35b610362610d89565b61039d600480360360408110156104b057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e49565b6103b9610ea4565b610362600480360360208110156104f157600080fd5b5035610eac565b6103b9610eb5565b6103b9610ebb565b6103b9610ec1565b6103b9610f0f565b6103b96004803603602081101561052e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610f1e565b610362610f46565b6103b9611062565b6103626004803603604081101561057157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611068565b610362600480360360208110156105aa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166110c2565b6103b96112c4565b6105d76112ca565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103b96112eb565b6102ba6112f1565b6105d7611370565b61039d6004803603604081101561062e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561138c565b6103b9611401565b61039d6004803603604081101561066f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611410565b6103b9611424565b6103b9611466565b6103b9611475565b61039d611485565b6103b961148e565b6103b9600480360360408110156106d057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611494565b6105d76114cc565b6103626004803603602081101561071357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114e8565b6103b9611694565b6103b961169c565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b505050505090505b90565b6107fd61179e565b73ffffffffffffffffffffffffffffffffffffffff1661081b6112ca565b73ffffffffffffffffffffffffffffffffffffffff161461089d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f5460ff161561090f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661099157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f215f6661726d696e67496e63656e7469766546756e6400000000000000000000604482015290519081900360640190fd5b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556109d2816b019d971e4fe8401e740000006117a2565b50565b60006109e96109e261179e565b84846118d3565b5060015b92915050565b60025490565b610a0161179e565b73ffffffffffffffffffffffffffffffffffffffff16610a1f6112ca565b73ffffffffffffffffffffffffffffffffffffffff1614610aa157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610b2557604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048083019190915260248201527f7a65726f00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610b79848484611a1a565b610c0384610b8561179e565b610bfe85604051806060016040528060288152602001611fb56028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610bd061179e565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190611bea565b6118d3565b5060019392505050565b610c1561179e565b73ffffffffffffffffffffffffffffffffffffffff16610c336112ca565b73ffffffffffffffffffffffffffffffffffffffff1614610cb557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610d3957604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048083019190915260248201527f7a65726f00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460ff1690565b6000610d93610ec1565b9050600081118015610dbc5750600b5473ffffffffffffffffffffffffffffffffffffffff1615155b15610de957600b54610de49073ffffffffffffffffffffffffffffffffffffffff16826117a2565b42600d555b610df1611424565b9050600081118015610e1a5750600c5473ffffffffffffffffffffffffffffffffffffffff1615155b156109d257600c54610e429073ffffffffffffffffffffffffffffffffffffffff16826117a2565b42600e5550565b60006109e9610e5661179e565b84610bfe8560016000610e6761179e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c1681529252902054906116a2565b6303b5380081565b6109d281611c9b565b60095481565b600a5481565b6007546000904290811115610ed557506007545b80600d5410610ee85760009150506107f2565b610f09600954610f03600d5484611cac90919063ffffffff16565b90611d23565b91505090565b6a4a723dc6b40b8a9a00000081565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610f4e61179e565b73ffffffffffffffffffffffffffffffffffffffff16610f6c6112ca565b73ffffffffffffffffffffffffffffffffffffffff1614610fee57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60065481565b600061109f82604051806060016040528060248152602001611fdd602491396110988661109361179e565b611494565b9190611bea565b90506110b3836110ad61179e565b836118d3565b6110bd8383611d96565b505050565b6110ca61179e565b73ffffffffffffffffffffffffffffffffffffffff166110e86112ca565b73ffffffffffffffffffffffffffffffffffffffff161461116a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61118e6112ca565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8616916370a08231916024808301926020929190829003018186803b1580156111fa57600080fd5b505afa15801561120e573d6000803e3d6000fd5b505050506040513d602081101561122457600080fd5b5051604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909316600484015260248301919091525160448083019260209291908290030181600087803b15801561129a57600080fd5b505af11580156112ae573d6000803e3d6000fd5b505050506040513d60208110156110bd57600080fd5b60085481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600d5481565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ea5780601f106107bf576101008083540402835291602001916107ea565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b60006109e961139961179e565b84610bfe8560405180606001604052806025815260200161206b60259139600160006113c361179e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190611bea565b6a084595161401484a00000081565b60006109e961141d61179e565b8484611a1a565b600854600090429081111561143857506008545b80600e541061144b5760009150506107f2565b610f09600a54610f03600e5484611cac90919063ffffffff16565b6aa56fa5b99019a5c800000081565b6b019d971e4fe8401e7400000081565b600f5460ff1681565b60075481565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b6114f061179e565b73ffffffffffffffffffffffffffffffffffffffff1661150e6112ca565b73ffffffffffffffffffffffffffffffffffffffff161461159057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166115fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611f266026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b63076a700081565b600e5481565b60008282018381101561171657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600080821161178d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161179657fe5b049392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff821661182457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611830600083836110bd565b60025461183d90826116a2565b60025573ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461187090826116a2565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff831661193f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120476024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166119ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611f4c6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611a86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120226025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611ee16023913960400191505060405180910390fd5b611afd8383836110bd565b611b4781604051806060016040528060268152602001611f6e6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611bea565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054611b8390826116a2565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c58578181015183820152602001611c40565b50505050905090810190601f168015611c855780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6109d2611ca661179e565b82611d96565b600082821115611d1d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611d32575060006109ed565b82820282848281611d3f57fe5b0414611716576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611f946021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611e02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120016021913960400191505060405180910390fd5b611e0e826000836110bd565b611e5881604051806060016040528060228152602001611f046022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190611bea565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254611e8b9082611cac565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c64277f91cefd486ea3cc1b9fa46d78f3b0050079e6770aeef371309f94bf7064736f6c634300060c003300000000000000000000000000000000000000000000000000000000621d6200000000000000000000000000d3001ef166216c3e176cb85234fb4806911cd0c700000000000000000000000016d53f73002d64d5b6d106b2085ea778361f68f8
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102ad5760003560e01c806379cc67901161017b578063ab83f05b116100d8578063dd62ed3e1161008c578063f2fde38b11610071578063f2fde38b146106fd578063f3decf7614610730578063fd434d2314610738576102ad565b8063dd62ed3e146106ba578063f256b130146106f5576102ad565b8063b89dbdcd116100bd578063b89dbdcd146106a2578063b9ceb0f1146106aa578063d4e5add0146106b2576102ad565b8063ab83f05b14610692578063ac3962401461069a576102ad565b806395d89b411161012f578063a457c2d711610114578063a457c2d714610618578063a83dbec714610651578063a9059cbb14610659576102ad565b806395d89b4114610608578063985fd3ab14610610576102ad565b8063820cdc0811610160578063820cdc08146105c75780638da5cb5b146105cf578063931e3f0e14610600576102ad565b806379cc67901461055b57806381ca7eba14610594576102ad565b8063395093511161022957806364ee3efb116101dd57806370a08231116101c257806370a0823114610518578063715018a61461054b57806378e9792514610553576102ad565b806364ee3efb1461050857806367a09f3a14610510576102ad565b806342966c681161020e57806342966c68146104db5780634cb8e8af146104f85780635e46bfac14610500576102ad565b8063395093511461049a578063416b9250146104d3576102ad565b806319d748141161028057806324597f131161026557806324597f1314610441578063313ce56714610474578063372500ab14610492576102ad565b806319d74814146103cb57806323b872dd146103fe576102ad565b806306fdde03146102b2578063092193ab1461032f578063095ea7b31461036457806318160ddd146103b1575b600080fd5b6102ba610740565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f45781810151838201526020016102dc565b50505050905090810190601f1680156103215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103626004803603602081101561034557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166107f5565b005b61039d6004803603604081101561037a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109d5565b604080519115158252519081900360200190f35b6103b96109f3565b60408051918252519081900360200190f35b610362600480360360208110156103e157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109f9565b61039d6004803603606081101561041457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610b6c565b6103626004803603602081101561045757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c0d565b61047c610d80565b6040805160ff9092168252519081900360200190f35b610362610d89565b61039d600480360360408110156104b057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e49565b6103b9610ea4565b610362600480360360208110156104f157600080fd5b5035610eac565b6103b9610eb5565b6103b9610ebb565b6103b9610ec1565b6103b9610f0f565b6103b96004803603602081101561052e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610f1e565b610362610f46565b6103b9611062565b6103626004803603604081101561057157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611068565b610362600480360360208110156105aa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166110c2565b6103b96112c4565b6105d76112ca565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103b96112eb565b6102ba6112f1565b6105d7611370565b61039d6004803603604081101561062e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561138c565b6103b9611401565b61039d6004803603604081101561066f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611410565b6103b9611424565b6103b9611466565b6103b9611475565b61039d611485565b6103b961148e565b6103b9600480360360408110156106d057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611494565b6105d76114cc565b6103626004803603602081101561071357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114e8565b6103b9611694565b6103b961169c565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b505050505090505b90565b6107fd61179e565b73ffffffffffffffffffffffffffffffffffffffff1661081b6112ca565b73ffffffffffffffffffffffffffffffffffffffff161461089d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f5460ff161561090f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661099157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f215f6661726d696e67496e63656e7469766546756e6400000000000000000000604482015290519081900360640190fd5b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556109d2816b019d971e4fe8401e740000006117a2565b50565b60006109e96109e261179e565b84846118d3565b5060015b92915050565b60025490565b610a0161179e565b73ffffffffffffffffffffffffffffffffffffffff16610a1f6112ca565b73ffffffffffffffffffffffffffffffffffffffff1614610aa157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610b2557604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048083019190915260248201527f7a65726f00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610b79848484611a1a565b610c0384610b8561179e565b610bfe85604051806060016040528060288152602001611fb56028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610bd061179e565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190611bea565b6118d3565b5060019392505050565b610c1561179e565b73ffffffffffffffffffffffffffffffffffffffff16610c336112ca565b73ffffffffffffffffffffffffffffffffffffffff1614610cb557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610d3957604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048083019190915260248201527f7a65726f00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460ff1690565b6000610d93610ec1565b9050600081118015610dbc5750600b5473ffffffffffffffffffffffffffffffffffffffff1615155b15610de957600b54610de49073ffffffffffffffffffffffffffffffffffffffff16826117a2565b42600d555b610df1611424565b9050600081118015610e1a5750600c5473ffffffffffffffffffffffffffffffffffffffff1615155b156109d257600c54610e429073ffffffffffffffffffffffffffffffffffffffff16826117a2565b42600e5550565b60006109e9610e5661179e565b84610bfe8560016000610e6761179e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c1681529252902054906116a2565b6303b5380081565b6109d281611c9b565b60095481565b600a5481565b6007546000904290811115610ed557506007545b80600d5410610ee85760009150506107f2565b610f09600954610f03600d5484611cac90919063ffffffff16565b90611d23565b91505090565b6a4a723dc6b40b8a9a00000081565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610f4e61179e565b73ffffffffffffffffffffffffffffffffffffffff16610f6c6112ca565b73ffffffffffffffffffffffffffffffffffffffff1614610fee57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60065481565b600061109f82604051806060016040528060248152602001611fdd602491396110988661109361179e565b611494565b9190611bea565b90506110b3836110ad61179e565b836118d3565b6110bd8383611d96565b505050565b6110ca61179e565b73ffffffffffffffffffffffffffffffffffffffff166110e86112ca565b73ffffffffffffffffffffffffffffffffffffffff161461116a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61118e6112ca565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8616916370a08231916024808301926020929190829003018186803b1580156111fa57600080fd5b505afa15801561120e573d6000803e3d6000fd5b505050506040513d602081101561122457600080fd5b5051604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909316600484015260248301919091525160448083019260209291908290030181600087803b15801561129a57600080fd5b505af11580156112ae573d6000803e3d6000fd5b505050506040513d60208110156110bd57600080fd5b60085481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600d5481565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107ea5780601f106107bf576101008083540402835291602001916107ea565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b60006109e961139961179e565b84610bfe8560405180606001604052806025815260200161206b60259139600160006113c361179e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190611bea565b6a084595161401484a00000081565b60006109e961141d61179e565b8484611a1a565b600854600090429081111561143857506008545b80600e541061144b5760009150506107f2565b610f09600a54610f03600e5484611cac90919063ffffffff16565b6aa56fa5b99019a5c800000081565b6b019d971e4fe8401e7400000081565b600f5460ff1681565b60075481565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b6114f061179e565b73ffffffffffffffffffffffffffffffffffffffff1661150e6112ca565b73ffffffffffffffffffffffffffffffffffffffff161461159057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166115fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611f266026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b63076a700081565b600e5481565b60008282018381101561171657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600080821161178d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161179657fe5b049392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff821661182457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611830600083836110bd565b60025461183d90826116a2565b60025573ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461187090826116a2565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff831661193f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120476024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166119ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611f4c6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611a86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120226025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611ee16023913960400191505060405180910390fd5b611afd8383836110bd565b611b4781604051806060016040528060268152602001611f6e6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611bea565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054611b8390826116a2565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c58578181015183820152602001611c40565b50505050905090810190601f168015611c855780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6109d2611ca661179e565b82611d96565b600082821115611d1d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611d32575060006109ed565b82820282848281611d3f57fe5b0414611716576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611f946021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611e02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120016021913960400191505060405180910390fd5b611e0e826000836110bd565b611e5881604051806060016040528060228152602001611f046022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190611bea565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254611e8b9082611cac565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c64277f91cefd486ea3cc1b9fa46d78f3b0050079e6770aeef371309f94bf7064736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000621d6200000000000000000000000000d3001ef166216c3e176cb85234fb4806911cd0c700000000000000000000000016d53f73002d64d5b6d106b2085ea778361f68f8
-----Decoded View---------------
Arg [0] : _startTime (uint256): 1646092800
Arg [1] : _marketingFund (address): 0xD3001EF166216c3E176cb85234Fb4806911Cd0c7
Arg [2] : _advisorFund (address): 0x16d53F73002D64d5B6d106B2085EA778361f68F8
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000621d6200
Arg [1] : 000000000000000000000000d3001ef166216c3e176cb85234fb4806911cd0c7
Arg [2] : 00000000000000000000000016d53f73002d64d5b6d106b2085ea778361f68f8
Deployed Bytecode Sourcemap
25595:4264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13240:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29244:360;;;;;;;;;;;;;;;;-1:-1:-1;29244:360:0;;;;:::i;:::-;;15386:169;;;;;;;;;;;;;;;;-1:-1:-1;15386:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14339:108;;;:::i;:::-;;;;;;;;;;;;;;;;27744:164;;;;;;;;;;;;;;;;-1:-1:-1;27744:164:0;;;;:::i;16037:355::-;;;;;;;;;;;;;;;;-1:-1:-1;16037:355:0;;;;;;;;;;;;;;;;;;:::i;27562:174::-;;;;;;;;;;;;;;;;-1:-1:-1;27562:174:0;;;;:::i;14183:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28685:479;;;:::i;16801:218::-;;;;;;;;;;;;;;;;-1:-1:-1;16801:218:0;;;;;;;;;:::i;26127:59::-;;;:::i;29612:83::-;;;;;;;;;;;;;;;;-1:-1:-1;29612:83:0;;:::i;26329:38::-;;;:::i;26374:36::-;;;:::i;27916:341::-;;;:::i;25967:69::-;;;:::i;14510:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14510:127:0;;;;:::i;25041:148::-;;;:::i;26208:24::-;;;:::i;23072:295::-;;;;;;;;;;;;;;;;-1:-1:-1;23072:295:0;;;;;;;;;:::i;29703:153::-;;;;;;;;;;;;;;;;-1:-1:-1;29703:153:0;;;;:::i;26284:36::-;;;:::i;24390:87::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26489:39;;;:::i;13450:95::-;;;:::i;26454:26::-;;;:::i;17522:269::-;;;;;;;;;;;;;;;;-1:-1:-1;17522:269:0;;;;;;;;;:::i;25810:69::-;;;:::i;14850:175::-;;;;;;;;;;;;;;;;-1:-1:-1;14850:175:0;;;;;;;;;:::i;28265:329::-;;;:::i;25888:72::-;;;:::i;25726:77::-;;;:::i;26581:46::-;;;:::i;26239:38::-;;;:::i;15088:151::-;;;;;;;;;;;;;;;;-1:-1:-1;15088:151:0;;;;;;;;;;;:::i;26419:28::-;;;:::i;25344:244::-;;;;;;;;;;;;;;;;-1:-1:-1;25344:244:0;;;;:::i;26045:62::-;;;:::i;26535:37::-;;;:::i;13240:91::-;13318:5;13311:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13285:13;;13311:12;;13318:5;;13311:12;;13318:5;13311:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13240:91;;:::o;29244:360::-;24621:12;:10;:12::i;:::-;24610:23;;:7;:5;:7::i;:::-;:23;;;24602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29340:26:::1;::::0;::::1;;29339:27;29331:64;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29414:35;::::0;::::1;29406:70;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29487:26;:33:::0;;;::::1;29516:4;29487:33;::::0;;29531:65:::1;29537:21:::0;25788:15:::1;29531:5;:65::i;:::-;29244:360:::0;:::o;15386:169::-;15469:4;15486:39;15495:12;:10;:12::i;:::-;15509:7;15518:6;15486:8;:39::i;:::-;-1:-1:-1;15543:4:0;15386:169;;;;;:::o;14339:108::-;14427:12;;14339:108;:::o;27744:164::-;24621:12;:10;:12::i;:::-;24610:23;;:7;:5;:7::i;:::-;:23;;;24602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27828:26:::1;::::0;::::1;27820:43;;;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27874:11;:26:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;27744:164::o;16037:355::-;16177:4;16194:36;16204:6;16212:9;16223:6;16194:9;:36::i;:::-;16241:121;16250:6;16258:12;:10;:12::i;:::-;16272:89;16310:6;16272:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;16292:12;:10;:12::i;:::-;16272:33;;;;;;;;;;;;;-1:-1:-1;16272:33:0;;;:89;:37;:89::i;:::-;16241:8;:121::i;:::-;-1:-1:-1;16380:4:0;16037:355;;;;;:::o;27562:174::-;24621:12;:10;:12::i;:::-;24610:23;;:7;:5;:7::i;:::-;:23;;;24602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27650:28:::1;::::0;::::1;27642:45;;;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27698:13;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;27562:174::o;14183:91::-;14257:9;;;;14183:91;:::o;28685:479::-;28729:16;28748:24;:22;:24::i;:::-;28729:43;;28798:1;28787:8;:12;:43;;;;-1:-1:-1;28803:13:0;;:27;:13;:27;;28787:43;28783:163;;;28853:13;;28847:30;;28853:13;;28868:8;28847:5;:30::i;:::-;28919:15;28892:24;:42;28783:163;28967:22;:20;:22::i;:::-;28956:33;;29015:1;29004:8;:12;:41;;;;-1:-1:-1;29020:11:0;;:25;:11;:25;;29004:41;29000:157;;;29068:11;;29062:28;;29068:11;;29081:8;29062:5;:28::i;:::-;29130:15;29105:22;:40;28685:479;:::o;16801:218::-;16889:4;16906:83;16915:12;:10;:12::i;:::-;16929:7;16938:50;16977:10;16938:11;:25;16950:12;:10;:12::i;:::-;16938:25;;;;;;;;;;;;;;;;;;-1:-1:-1;16938:25:0;;;:34;;;;;;;;;;;:38;:50::i;26127:59::-;26178:8;26127:59;:::o;29612:83::-;29669:18;29680:6;29669:10;:18::i;26329:38::-;;;;:::o;26374:36::-;;;;:::o;27916:341::-;28052:23;;27971:16;;28015:15;;28045:30;;28041:66;;;-1:-1:-1;28084:23:0;;28041:66;28150:4;28122:24;;:32;28118:46;;28163:1;28156:8;;;;;28118:46;28186:63;28225:23;;28186:34;28195:24;;28186:4;:8;;:34;;;;:::i;:::-;:38;;:63::i;:::-;28175:74;;27916:341;;:::o;25967:69::-;26022:14;25967:69;:::o;14510:127::-;14611:18;;14584:7;14611:18;;;;;;;;;;;;14510:127::o;25041:148::-;24621:12;:10;:12::i;:::-;24610:23;;:7;:5;:7::i;:::-;:23;;;24602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25132:6:::1;::::0;25111:40:::1;::::0;25148:1:::1;::::0;25132:6:::1;::::0;::::1;25111:40;25132:6;::::0;25111:40:::1;::::0;25148:1;;25111:40:::1;25162:6;:19:::0;;;::::1;::::0;;25041:148::o;26208:24::-;;;;:::o;23072:295::-;23149:26;23178:84;23215:6;23178:84;;;;;;;;;;;;;;;;;:32;23188:7;23197:12;:10;:12::i;:::-;23178:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;23149:113;;23275:51;23284:7;23293:12;:10;:12::i;:::-;23307:18;23275:8;:51::i;:::-;23337:22;23343:7;23352:6;23337:5;:22::i;:::-;23072:295;;;:::o;29703:153::-;24621:12;:10;:12::i;:::-;24610:23;;:7;:5;:7::i;:::-;:23;;;24602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29782:6:::1;29775:23;;;29799:7;:5;:7::i;:::-;29808:39;::::0;;;;;29841:4:::1;29808:39;::::0;::::1;::::0;;;:24:::1;::::0;::::1;::::0;::::1;::::0;:39;;;;;::::1;::::0;;;;;;;;:24;:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29808:39:0;29775:73:::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;29808:39:::1;::::0;29775:73;;;;;;;-1:-1:-1;29775:73:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;26284:36:::0;;;;:::o;24390:87::-;24463:6;;;;;;;;24390:87::o;26489:39::-;;;;:::o;13450:95::-;13530:7;13523:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13497:13;;13523:14;;13530:7;;13523:14;;13530:7;13523:14;;;;;;;;;;;;;;;;;;;;;;;;26454:26;;;;;;:::o;17522:269::-;17615:4;17632:129;17641:12;:10;:12::i;:::-;17655:7;17664:96;17703:15;17664:96;;;;;;;;;;;;;;;;;:11;:25;17676:12;:10;:12::i;:::-;17664:25;;;;;;;;;;;;;;;;;;-1:-1:-1;17664:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;25810:69::-;25865:14;25810:69;:::o;14850:175::-;14936:4;14953:42;14963:12;:10;:12::i;:::-;14977:9;14988:6;14953:9;:42::i;28265:329::-;28399:21;;28318:16;;28362:15;;28392:28;;28388:62;;;-1:-1:-1;28429:21:0;;28388:62;28491:4;28465:22;;:30;28461:44;;28504:1;28497:8;;;;;28461:44;28527:59;28564:21;;28527:32;28536:22;;28527:4;:8;;:32;;;;:::i;25888:72::-;25945:15;25888:72;:::o;25726:77::-;25788:15;25726:77;:::o;26581:46::-;;;;;;:::o;26239:38::-;;;;:::o;15088:151::-;15204:18;;;;15177:7;15204:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15088:151::o;26419:28::-;;;;;;:::o;25344:244::-;24621:12;:10;:12::i;:::-;24610:23;;:7;:5;:7::i;:::-;:23;;;24602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25433:22:::1;::::0;::::1;25425:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:6;::::0;25514:38:::1;::::0;::::1;::::0;;::::1;::::0;25535:6:::1;::::0;::::1;;::::0;25514:38:::1;::::0;;;::::1;25563:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;25344:244::o;26045:62::-;26098:9;26045:62;:::o;26535:37::-;;;;:::o;2766:179::-;2824:7;2856:5;;;2880:6;;;;2872:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2936:1;2766:179;-1:-1:-1;;;2766:179:0:o;4343:153::-;4401:7;4433:1;4429;:5;4421:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4487:1;4483;:5;;;;;;;4343:153;-1:-1:-1;;;4343:153:0:o;8078:106::-;8166:10;8078:106;:::o;19136:378::-;19220:21;;;19212:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19290:49;19319:1;19323:7;19332:6;19290:20;:49::i;:::-;19367:12;;:24;;19384:6;19367:16;:24::i;:::-;19352:12;:39;19423:18;;;:9;:18;;;;;;;;;;;:30;;19446:6;19423:22;:30::i;:::-;19402:18;;;:9;:18;;;;;;;;;;;:51;;;;19469:37;;;;;;;19402:18;;:9;;19469:37;;;;;;;;;;19136:378;;:::o;20703:380::-;20839:19;;;20831:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20918:21;;;20910:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20991:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21043:32;;;;;;;;;;;;;;;;;20703:380;;;:::o;18281:573::-;18421:20;;;18413:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18502:23;;;18494:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18578:47;18599:6;18607:9;18618:6;18578:20;:47::i;:::-;18658:71;18680:6;18658:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;18638:17;;;;:9;:17;;;;;;;;;;;:91;;;;18763:20;;;;;;;:32;;18788:6;18763:24;:32::i;:::-;18740:20;;;;:9;:20;;;;;;;;;;;;:55;;;;18811:35;;;;;;;18740:20;;18811:35;;;;;;;;;;;;;18281:573;;;:::o;5593:200::-;5713:7;5749:12;5741:6;;;;5733:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5780:5:0;;;5593:200::o;22662:91::-;22718:27;22724:12;:10;:12::i;:::-;22738:6;22718:5;:27::i;3228:158::-;3286:7;3319:1;3314;:6;;3306:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3373:5:0;;;3228:158::o;3645:220::-;3703:7;3727:6;3723:20;;-1:-1:-1;3742:1:0;3735:8;;3723:20;3766:5;;;3770:1;3766;:5;:1;3790:5;;;;;:10;3782:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19847:418;19931:21;;;19923:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20003:49;20024:7;20041:1;20045:6;20003:20;:49::i;:::-;20086:68;20109:6;20086:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;20065:18;;;:9;:18;;;;;;;;;;:89;20180:12;;:24;;20197:6;20180:16;:24::i;:::-;20165:12;:39;20220:37;;;;;;;;20246:1;;20220:37;;;;;;;;;;;;;19847:418;;:::o
Swarm Source
ipfs://6c64277f91cefd486ea3cc1b9fa46d78f3b0050079e6770aeef371309f94bf70
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.