ERC-20
Overview
Max Total Supply
100,000,000,000 ART
Holders
22
Total Transfers
-
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:
ART
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-02 */ // Sources flattened with hardhat v2.8.3 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @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 { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/PRIDE.sol pragma solidity =0.8.7; contract ERC20DividendToken is Context, ERC20Burnable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; uint256 public minTokensBeforeSwap; uint256 public marketingBuyFee; uint256 public marketingSellFee; address public marketingAddress; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => bool) public isExcludedFromLimits; uint256 public maxWalletAmount; event UpdateUniswapV2Router( address indexed newAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SendDividendsToMarketing(uint256 tokensSwapped, uint256 amount); constructor(string memory name_, string memory symbol_, uint256 totalSupply_, address routerV2_, address marketingAddress_) ERC20(name_, symbol_) { marketingBuyFee = 7; marketingSellFee = 7; marketingAddress = marketingAddress_; minTokensBeforeSwap = 10_000_000 * (10**18); maxWalletAmount = totalSupply_ * 15 * (10**15); // 1.5% _updateUniswapV2Router(routerV2_); // exclude from paying fees or having max transaction amount _excludeFromFees(_msgSender(), true); _excludeFromFees(address(this), true); _excludeFromLimits(_msgSender(), true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(_msgSender(), totalSupply_ * (10**18)); } receive() external payable {} function _excludeFromLimits(address account, bool excluded) internal { isExcludedFromLimits[account] = excluded; } function _updateUniswapV2Router(address newAddress) internal { uniswapV2Router = IUniswapV2Router02(newAddress); address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); _excludeFromLimits(newAddress, true); uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); emit UpdateUniswapV2Router(newAddress); } function _excludeFromFees(address account, bool excluded) internal { isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "ERC20DividendToken: Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; if (value) { _excludeFromLimits(pair, true); } emit SetAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); if (!isExcludedFromLimits[to]) { require(balanceOf(to) + amount <= maxWalletAmount, "Anti-whale: Wallet amount exceeds max limit"); } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= minTokensBeforeSwap; if ( canSwap && !swapping && !automatedMarketMakerPairs[from] ) { swapping = true; if (marketingBuyFee > 0 || marketingSellFee > 0) { swapAndSendDividendsToMarketing(balanceOf(address(this))); } swapping = false; } bool takeFee = !swapping && (automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]); // if any account belongs to _isExcludedFromFee account then remove the fee if (isExcludedFromFees[from] || isExcludedFromFees[to]) { takeFee = false; } if (takeFee) { uint256 fees = 0; if (automatedMarketMakerPairs[from]) { fees = amount.mul(marketingBuyFee).div(100); } else { fees = amount.mul(marketingSellFee).div(100); } if (fees > 0) { amount = amount.sub(fees); super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapAndSendDividendsToMarketing(uint256 tokens) private { swapTokensForEth(tokens); uint256 dividends = address(this).balance; (bool success,) = payable(marketingAddress).call{value: dividends}(""); if(success) { emit SendDividendsToMarketing(tokens, dividends); } } } contract ART is ERC20DividendToken { uint256 private _tokenSupply = 100_000_000_000; address private _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; constructor (address _marketingAddress) ERC20DividendToken("Artharvester", "ART", _tokenSupply, _routerAddress, _marketingAddress) { // Fees to be set in parent constructor } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_marketingAddress","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividendsToMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"newAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","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":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405264174876e800600f55601080546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200004057600080fd5b5060405162001c5238038062001c52833981016040819052620000639162000770565b6040518060400160405280600c81526020016b20b93a3430b93b32b9ba32b960a11b8152506040518060400160405280600381526020016210549560ea1b815250600f54601060009054906101000a90046001600160a01b03168484848160039080519060200190620000d8929190620006ca565b508051620000ee906004906020840190620006ca565b5050600760088190556009819055600a80546001600160a01b0319166001600160a01b0385161790556a084595161401484a0000009055506200013383600f620007bd565b620001469066038d7ea4c68000620007bd565b600e55620001548262000213565b6200016133600162000448565b6200016e30600162000448565b62000197336001600160a01b03166000908152600d60205260409020805460ff19166001179055565b306000908152600d60205260409020805460ff1916600117905561dead600052600d6020527fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a805460ff1916600117905562000207336200020185670de0b6b3a7640000620007bd565b620004a7565b50505050505062000832565b600580546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b1580156200026b57600080fd5b505afa15801562000280573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a6919062000770565b6001600160a01b031663c9c6539630600560009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030457600080fd5b505afa15801562000319573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033f919062000770565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200038857600080fd5b505af11580156200039d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c3919062000770565b6001600160a01b0383166000908152600d60205260409020805460ff191660011790559050600680546001600160a01b0319166001600160a01b0383161790556200041081600162000590565b6040516001600160a01b038316907f0c36f1f3a0f38cd9563b52fb110cc5b0fa22c509defc16728a6a42f1bddad22990600090a25050565b6001600160a01b0382166000818152600b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005035760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005179190620007a2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000546908490620007a2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600c602052604090205460ff16151581151514156200063c5760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a401620004fa565b6001600160a01b0382166000908152600c60205260409020805460ff191682158015919091179091556200068e576001600160a01b0382166000908152600d60205260409020805460ff191660011790555b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b828054620006d890620007df565b90600052602060002090601f016020900481019282620006fc576000855562000747565b82601f106200071757805160ff191683800117855562000747565b8280016001018555821562000747579182015b82811115620007475782518255916020019190600101906200072a565b506200075592915062000759565b5090565b5b808211156200075557600081556001016200075a565b6000602082840312156200078357600080fd5b81516001600160a01b03811681146200079b57600080fd5b9392505050565b60008219821115620007b857620007b86200081c565b500190565b6000816000190483118215151615620007da57620007da6200081c565b500290565b600181811c90821680620007f457607f821691505b602082108114156200081657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61141080620008426000396000f3fe6080604052600436106101445760003560e01c806368078952116100b6578063a9059cbb1161006f578063a9059cbb146103c1578063aa4bde28146103e1578063b62496f5146103f7578063dd62ed3e14610427578063e5d41c6b1461046d578063e7f444b31461048357600080fd5b8063680789521461030057806370a082311461031657806379cc67901461034c57806395d89b411461036c578063a457c2d714610381578063a5ece941146103a157600080fd5b8063313ce56711610108578063313ce56714610222578063395093511461023e57806342966c681461025e57806349bd5a5e146102805780634fbee193146102a05780635cce86cd146102d057600080fd5b806306fdde0314610150578063095ea7b31461017b5780631694505e146101ab57806318160ddd146101e357806323b872dd1461020257600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610499565b604051610172919061115a565b60405180910390f35b34801561018757600080fd5b5061019b610196366004611115565b61052b565b6040519015158152602001610172565b3480156101b757600080fd5b506005546101cb906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b3480156101ef57600080fd5b506002545b604051908152602001610172565b34801561020e57600080fd5b5061019b61021d3660046110d4565b610541565b34801561022e57600080fd5b5060405160128152602001610172565b34801561024a57600080fd5b5061019b610259366004611115565b6105f0565b34801561026a57600080fd5b5061027e610279366004611141565b61062c565b005b34801561028c57600080fd5b506006546101cb906001600160a01b031681565b3480156102ac57600080fd5b5061019b6102bb366004611061565b600b6020526000908152604090205460ff1681565b3480156102dc57600080fd5b5061019b6102eb366004611061565b600d6020526000908152604090205460ff1681565b34801561030c57600080fd5b506101f460085481565b34801561032257600080fd5b506101f4610331366004611061565b6001600160a01b031660009081526020819052604090205490565b34801561035857600080fd5b5061027e610367366004611115565b610639565b34801561037857600080fd5b506101656106bf565b34801561038d57600080fd5b5061019b61039c366004611115565b6106ce565b3480156103ad57600080fd5b50600a546101cb906001600160a01b031681565b3480156103cd57600080fd5b5061019b6103dc366004611115565b610767565b3480156103ed57600080fd5b506101f4600e5481565b34801561040357600080fd5b5061019b610412366004611061565b600c6020526000908152604090205460ff1681565b34801561043357600080fd5b506101f461044236600461109b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561047957600080fd5b506101f460075481565b34801561048f57600080fd5b506101f460095481565b6060600380546104a89061135e565b80601f01602080910402602001604051908101604052809291908181526020018280546104d49061135e565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b6000610538338484610774565b50600192915050565b600061054e848484610898565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105e58533858403610774565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105389185906106279086906112ee565b610774565b6106363382610bca565b50565b60006106458333610442565b9050818110156106a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105cf565b6106b08333848403610774565b6106ba8383610bca565b505050565b6060600480546104a89061135e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105cf565b61075d3385858403610774565b5060019392505050565b6000610538338484610898565b6001600160a01b0383166107d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105cf565b6001600160a01b0382166108375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108be5760405162461bcd60e51b81526004016105cf90611238565b6001600160a01b0382166108e45760405162461bcd60e51b81526004016105cf906111af565b80610904846001600160a01b031660009081526020819052604090205490565b10156109225760405162461bcd60e51b81526004016105cf906111f2565b6001600160a01b0382166000908152600d602052604090205460ff166109d157600e5481610965846001600160a01b031660009081526020819052604090205490565b61096f91906112ee565b11156109d15760405162461bcd60e51b815260206004820152602b60248201527f416e74692d7768616c653a2057616c6c657420616d6f756e742065786365656460448201526a1cc81b585e081b1a5b5a5d60aa1b60648201526084016105cf565b806109e2576106ba83836000610d18565b3060009081526020819052604090205460075481108015908190610a105750600654600160a01b900460ff16155b8015610a3557506001600160a01b0385166000908152600c602052604090205460ff16155b15610a8b576006805460ff60a01b1916600160a01b179055600854151580610a5f57506000600954115b15610a7d5730600090815260208190526040902054610a7d90610e2e565b6006805460ff60a01b191690555b600654600090600160a01b900460ff16158015610ae257506001600160a01b0386166000908152600c602052604090205460ff1680610ae257506001600160a01b0385166000908152600c602052604090205460ff165b6001600160a01b0387166000908152600b602052604090205490915060ff1680610b2457506001600160a01b0385166000908152600b602052604090205460ff165b15610b2d575060005b8015610bb7576001600160a01b0386166000908152600c602052604081205460ff1615610b7b57610b746064610b6e60085488610ed590919063ffffffff16565b90610ee8565b9050610b98565b610b956064610b6e60095488610ed590919063ffffffff16565b90505b8015610bb557610ba88582610ef4565b9450610bb5873083610d18565b505b610bc2868686610d18565b505050505050565b6001600160a01b038216610c2a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105cf565b6001600160a01b03821660009081526020819052604090205481811015610c9e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105cf565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ccd908490611347565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610d3e5760405162461bcd60e51b81526004016105cf90611238565b6001600160a01b038216610d645760405162461bcd60e51b81526004016105cf906111af565b6001600160a01b03831660009081526020819052604090205481811015610d9d5760405162461bcd60e51b81526004016105cf906111f2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610dd49084906112ee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e2091815260200190565b60405180910390a350505050565b610e3781610f00565b600a5460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610e88576040519150601f19603f3d011682016040523d82523d6000602084013e610e8d565b606091505b5050905080156106ba5760408051848152602081018490527fb7283494b9c6f5f865b6beb3671146b55c7022ca31ee2398449fe90f73c7d157910160405180910390a1505050565b6000610ee18284611328565b9392505050565b6000610ee18284611306565b6000610ee18284611347565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610f3557610f356113af565b6001600160a01b03928316602091820292909201810191909152600554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015610f8957600080fd5b505afa158015610f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc1919061107e565b81600181518110610fd457610fd46113af565b6001600160a01b039283166020918202929092010152600554610ffa9130911684610774565b60055460405163791ac94760e01b81526001600160a01b039091169063791ac9479061103390859060009086903090429060040161127d565b600060405180830381600087803b15801561104d57600080fd5b505af1158015610bc2573d6000803e3d6000fd5b60006020828403121561107357600080fd5b8135610ee1816113c5565b60006020828403121561109057600080fd5b8151610ee1816113c5565b600080604083850312156110ae57600080fd5b82356110b9816113c5565b915060208301356110c9816113c5565b809150509250929050565b6000806000606084860312156110e957600080fd5b83356110f4816113c5565b92506020840135611104816113c5565b929592945050506040919091013590565b6000806040838503121561112857600080fd5b8235611133816113c5565b946020939093013593505050565b60006020828403121561115357600080fd5b5035919050565b600060208083528351808285015260005b818110156111875785810183015185820160400152820161116b565b81811115611199576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112cd5784516001600160a01b0316835293830193918301916001016112a8565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561130157611301611399565b500190565b60008261132357634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561134257611342611399565b500290565b60008282101561135957611359611399565b500390565b600181811c9082168061137257607f821691505b6020821081141561139357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461063657600080fdfea26469706673582212202ccca99dd1fb0911bdc132d4c1e9b1d2e0b7c564a9e8c2eb854ef0c26807e9f764736f6c63430008070033000000000000000000000000ef10ad0dfacef178cc5318f8038dbf1b3e8a199c
Deployed Bytecode
0x6080604052600436106101445760003560e01c806368078952116100b6578063a9059cbb1161006f578063a9059cbb146103c1578063aa4bde28146103e1578063b62496f5146103f7578063dd62ed3e14610427578063e5d41c6b1461046d578063e7f444b31461048357600080fd5b8063680789521461030057806370a082311461031657806379cc67901461034c57806395d89b411461036c578063a457c2d714610381578063a5ece941146103a157600080fd5b8063313ce56711610108578063313ce56714610222578063395093511461023e57806342966c681461025e57806349bd5a5e146102805780634fbee193146102a05780635cce86cd146102d057600080fd5b806306fdde0314610150578063095ea7b31461017b5780631694505e146101ab57806318160ddd146101e357806323b872dd1461020257600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610499565b604051610172919061115a565b60405180910390f35b34801561018757600080fd5b5061019b610196366004611115565b61052b565b6040519015158152602001610172565b3480156101b757600080fd5b506005546101cb906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b3480156101ef57600080fd5b506002545b604051908152602001610172565b34801561020e57600080fd5b5061019b61021d3660046110d4565b610541565b34801561022e57600080fd5b5060405160128152602001610172565b34801561024a57600080fd5b5061019b610259366004611115565b6105f0565b34801561026a57600080fd5b5061027e610279366004611141565b61062c565b005b34801561028c57600080fd5b506006546101cb906001600160a01b031681565b3480156102ac57600080fd5b5061019b6102bb366004611061565b600b6020526000908152604090205460ff1681565b3480156102dc57600080fd5b5061019b6102eb366004611061565b600d6020526000908152604090205460ff1681565b34801561030c57600080fd5b506101f460085481565b34801561032257600080fd5b506101f4610331366004611061565b6001600160a01b031660009081526020819052604090205490565b34801561035857600080fd5b5061027e610367366004611115565b610639565b34801561037857600080fd5b506101656106bf565b34801561038d57600080fd5b5061019b61039c366004611115565b6106ce565b3480156103ad57600080fd5b50600a546101cb906001600160a01b031681565b3480156103cd57600080fd5b5061019b6103dc366004611115565b610767565b3480156103ed57600080fd5b506101f4600e5481565b34801561040357600080fd5b5061019b610412366004611061565b600c6020526000908152604090205460ff1681565b34801561043357600080fd5b506101f461044236600461109b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561047957600080fd5b506101f460075481565b34801561048f57600080fd5b506101f460095481565b6060600380546104a89061135e565b80601f01602080910402602001604051908101604052809291908181526020018280546104d49061135e565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b6000610538338484610774565b50600192915050565b600061054e848484610898565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105e58533858403610774565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105389185906106279086906112ee565b610774565b6106363382610bca565b50565b60006106458333610442565b9050818110156106a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105cf565b6106b08333848403610774565b6106ba8383610bca565b505050565b6060600480546104a89061135e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105cf565b61075d3385858403610774565b5060019392505050565b6000610538338484610898565b6001600160a01b0383166107d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105cf565b6001600160a01b0382166108375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108be5760405162461bcd60e51b81526004016105cf90611238565b6001600160a01b0382166108e45760405162461bcd60e51b81526004016105cf906111af565b80610904846001600160a01b031660009081526020819052604090205490565b10156109225760405162461bcd60e51b81526004016105cf906111f2565b6001600160a01b0382166000908152600d602052604090205460ff166109d157600e5481610965846001600160a01b031660009081526020819052604090205490565b61096f91906112ee565b11156109d15760405162461bcd60e51b815260206004820152602b60248201527f416e74692d7768616c653a2057616c6c657420616d6f756e742065786365656460448201526a1cc81b585e081b1a5b5a5d60aa1b60648201526084016105cf565b806109e2576106ba83836000610d18565b3060009081526020819052604090205460075481108015908190610a105750600654600160a01b900460ff16155b8015610a3557506001600160a01b0385166000908152600c602052604090205460ff16155b15610a8b576006805460ff60a01b1916600160a01b179055600854151580610a5f57506000600954115b15610a7d5730600090815260208190526040902054610a7d90610e2e565b6006805460ff60a01b191690555b600654600090600160a01b900460ff16158015610ae257506001600160a01b0386166000908152600c602052604090205460ff1680610ae257506001600160a01b0385166000908152600c602052604090205460ff165b6001600160a01b0387166000908152600b602052604090205490915060ff1680610b2457506001600160a01b0385166000908152600b602052604090205460ff165b15610b2d575060005b8015610bb7576001600160a01b0386166000908152600c602052604081205460ff1615610b7b57610b746064610b6e60085488610ed590919063ffffffff16565b90610ee8565b9050610b98565b610b956064610b6e60095488610ed590919063ffffffff16565b90505b8015610bb557610ba88582610ef4565b9450610bb5873083610d18565b505b610bc2868686610d18565b505050505050565b6001600160a01b038216610c2a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105cf565b6001600160a01b03821660009081526020819052604090205481811015610c9e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105cf565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ccd908490611347565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610d3e5760405162461bcd60e51b81526004016105cf90611238565b6001600160a01b038216610d645760405162461bcd60e51b81526004016105cf906111af565b6001600160a01b03831660009081526020819052604090205481811015610d9d5760405162461bcd60e51b81526004016105cf906111f2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610dd49084906112ee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e2091815260200190565b60405180910390a350505050565b610e3781610f00565b600a5460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610e88576040519150601f19603f3d011682016040523d82523d6000602084013e610e8d565b606091505b5050905080156106ba5760408051848152602081018490527fb7283494b9c6f5f865b6beb3671146b55c7022ca31ee2398449fe90f73c7d157910160405180910390a1505050565b6000610ee18284611328565b9392505050565b6000610ee18284611306565b6000610ee18284611347565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610f3557610f356113af565b6001600160a01b03928316602091820292909201810191909152600554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015610f8957600080fd5b505afa158015610f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc1919061107e565b81600181518110610fd457610fd46113af565b6001600160a01b039283166020918202929092010152600554610ffa9130911684610774565b60055460405163791ac94760e01b81526001600160a01b039091169063791ac9479061103390859060009086903090429060040161127d565b600060405180830381600087803b15801561104d57600080fd5b505af1158015610bc2573d6000803e3d6000fd5b60006020828403121561107357600080fd5b8135610ee1816113c5565b60006020828403121561109057600080fd5b8151610ee1816113c5565b600080604083850312156110ae57600080fd5b82356110b9816113c5565b915060208301356110c9816113c5565b809150509250929050565b6000806000606084860312156110e957600080fd5b83356110f4816113c5565b92506020840135611104816113c5565b929592945050506040919091013590565b6000806040838503121561112857600080fd5b8235611133816113c5565b946020939093013593505050565b60006020828403121561115357600080fd5b5035919050565b600060208083528351808285015260005b818110156111875785810183015185820160400152820161116b565b81811115611199576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112cd5784516001600160a01b0316835293830193918301916001016112a8565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561130157611301611399565b500190565b60008261132357634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561134257611342611399565b500290565b60008282101561135957611359611399565b500390565b600181811c9082168061137257607f821691505b6020821081141561139357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461063657600080fdfea26469706673582212202ccca99dd1fb0911bdc132d4c1e9b1d2e0b7c564a9e8c2eb854ef0c26807e9f764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ef10ad0dfacef178cc5318f8038dbf1b3e8a199c
-----Decoded View---------------
Arg [0] : _marketingAddress (address): 0xeF10AD0dFacef178cc5318F8038DBF1b3E8A199c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ef10ad0dfacef178cc5318f8038dbf1b3e8a199c
Deployed Bytecode Sourcemap
39729:374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6764:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8931:169;;;;;;;;;;-1:-1:-1;8931:169:0;;;;;:::i;:::-;;:::i;:::-;;;2464:14:1;;2457:22;2439:41;;2427:2;2412:18;8931:169:0;2299:187:1;33683:41:0;;;;;;;;;;-1:-1:-1;33683:41:0;;;;-1:-1:-1;;;;;33683:41:0;;;;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;33683:41:0;2091:203:1;7884:108:0;;;;;;;;;;-1:-1:-1;7972:12:0;;7884:108;;;7936:25:1;;;7924:2;7909:18;7884:108:0;7790:177:1;9582:492:0;;;;;;;;;;-1:-1:-1;9582:492:0;;;;;:::i;:::-;;:::i;7726:93::-;;;;;;;;;;-1:-1:-1;7726:93:0;;7809:2;9352:36:1;;9340:2;9325:18;7726:93:0;9210:184:1;10483:215:0;;;;;;;;;;-1:-1:-1;10483:215:0;;;;;:::i;:::-;;:::i;17295:91::-;;;;;;;;;;-1:-1:-1;17295:91:0;;;;;:::i;:::-;;:::i;:::-;;33731:28;;;;;;;;;;-1:-1:-1;33731:28:0;;;;-1:-1:-1;;;;;33731:28:0;;;33958:50;;;;;;;;;;-1:-1:-1;33958:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34079:52;;;;;;;;;;-1:-1:-1;34079:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33841:30;;;;;;;;;;;;;;;;8055:127;;;;;;;;;;-1:-1:-1;8055:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8156:18:0;8129:7;8156:18;;;;;;;;;;;;8055:127;17705:368;;;;;;;;;;-1:-1:-1;17705:368:0;;;;;:::i;:::-;;:::i;6983:104::-;;;;;;;;;;;;;:::i;11201:413::-;;;;;;;;;;-1:-1:-1;11201:413:0;;;;;:::i;:::-;;:::i;33918:31::-;;;;;;;;;;-1:-1:-1;33918:31:0;;;;-1:-1:-1;;;;;33918:31:0;;;8395:175;;;;;;;;;;-1:-1:-1;8395:175:0;;;;;:::i;:::-;;:::i;34140:30::-;;;;;;;;;;;;;;;;34015:57;;;;;;;;;;-1:-1:-1;34015:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8633:151;;;;;;;;;;-1:-1:-1;8633:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8749:18:0;;;8722:7;8749:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8633:151;33798:34;;;;;;;;;;;;;;;;33878:31;;;;;;;;;;;;;;;;6764:100;6818:13;6851:5;6844:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6764:100;:::o;8931:169::-;9014:4;9031:39;860:10;9054:7;9063:6;9031:8;:39::i;:::-;-1:-1:-1;9088:4:0;8931:169;;;;:::o;9582:492::-;9722:4;9739:36;9749:6;9757:9;9768:6;9739:9;:36::i;:::-;-1:-1:-1;;;;;9815:19:0;;9788:24;9815:19;;;:11;:19;;;;;;;;860:10;9815:33;;;;;;;;9867:26;;;;9859:79;;;;-1:-1:-1;;;9859:79:0;;5559:2:1;9859:79:0;;;5541:21:1;5598:2;5578:18;;;5571:30;5637:34;5617:18;;;5610:62;-1:-1:-1;;;5688:18:1;;;5681:38;5736:19;;9859:79:0;;;;;;;;;9974:57;9983:6;860:10;10024:6;10005:16;:25;9974:8;:57::i;:::-;-1:-1:-1;10062:4:0;;9582:492;-1:-1:-1;;;;9582:492:0:o;10483:215::-;860:10;10571:4;10620:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10620:34:0;;;;;;;;;;10571:4;;10588:80;;10611:7;;10620:47;;10657:10;;10620:47;:::i;:::-;10588:8;:80::i;17295:91::-;17351:27;860:10;17371:6;17351:5;:27::i;:::-;17295:91;:::o;17705:368::-;17782:24;17809:32;17819:7;860:10;8633:151;:::i;17809:32::-;17782:59;;17880:6;17860:16;:26;;17852:75;;;;-1:-1:-1;;;17852:75:0;;5968:2:1;17852:75:0;;;5950:21:1;6007:2;5987:18;;;5980:30;6046:34;6026:18;;;6019:62;-1:-1:-1;;;6097:18:1;;;6090:34;6141:19;;17852:75:0;5766:400:1;17852:75:0;17963:58;17972:7;860:10;18014:6;17995:16;:25;17963:8;:58::i;:::-;18043:22;18049:7;18058:6;18043:5;:22::i;:::-;17771:302;17705:368;;:::o;6983:104::-;7039:13;7072:7;7065:14;;;;;:::i;11201:413::-;860:10;11294:4;11338:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11338:34:0;;;;;;;;;;11391:35;;;;11383:85;;;;-1:-1:-1;;;11383:85:0;;7586:2:1;11383:85:0;;;7568:21:1;7625:2;7605:18;;;7598:30;7664:34;7644:18;;;7637:62;-1:-1:-1;;;7715:18:1;;;7708:35;7760:19;;11383:85:0;7384:401:1;11383:85:0;11504:67;860:10;11527:7;11555:15;11536:16;:34;11504:8;:67::i;:::-;-1:-1:-1;11602:4:0;;11201:413;-1:-1:-1;;;11201:413:0:o;8395:175::-;8481:4;8498:42;860:10;8522:9;8533:6;8498:9;:42::i;14885:380::-;-1:-1:-1;;;;;15021:19:0;;15013:68;;;;-1:-1:-1;;;15013:68:0;;7181:2:1;15013:68:0;;;7163:21:1;7220:2;7200:18;;;7193:30;7259:34;7239:18;;;7232:62;-1:-1:-1;;;7310:18:1;;;7303:34;7354:19;;15013:68:0;6979:400:1;15013:68:0;-1:-1:-1;;;;;15100:21:0;;15092:68;;;;-1:-1:-1;;;15092:68:0;;4337:2:1;15092:68:0;;;4319:21:1;4376:2;4356:18;;;4349:30;4415:34;4395:18;;;4388:62;-1:-1:-1;;;4466:18:1;;;4459:32;4508:19;;15092:68:0;4135:398:1;15092:68:0;-1:-1:-1;;;;;15173:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15225:32;;7936:25:1;;;15225:32:0;;7909:18:1;15225:32:0;;;;;;;14885:380;;;:::o;36843:1924::-;-1:-1:-1;;;;;36975:18:0;;36967:68;;;;-1:-1:-1;;;36967:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37054:16:0;;37046:64;;;;-1:-1:-1;;;37046:64:0;;;;;;;:::i;:::-;37148:6;37129:15;37139:4;-1:-1:-1;;;;;8156:18:0;8129:7;8156:18;;;;;;;;;;;;8055:127;37129:15;:25;;37121:76;;;;-1:-1:-1;;;37121:76:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37215:24:0;;;;;;:20;:24;;;;;;;;37210:155;;37290:15;;37280:6;37264:13;37274:2;-1:-1:-1;;;;;8156:18:0;8129:7;8156:18;;;;;;;;;;;;8055:127;37264:13;:22;;;;:::i;:::-;:41;;37256:97;;;;-1:-1:-1;;;37256:97:0;;5147:2:1;37256:97:0;;;5129:21:1;5186:2;5166:18;;;5159:30;5225:34;5205:18;;;5198:62;-1:-1:-1;;;5276:18:1;;;5269:41;5327:19;;37256:97:0;4945:407:1;37256:97:0;37381:11;37377:93;;37409:28;37425:4;37431:2;37435:1;37409:15;:28::i;37377:93::-;37531:4;37482:28;8156:18;;;;;;;;;;;37589:19;;37565:43;;;;;;;37639:33;;-1:-1:-1;37664:8:0;;-1:-1:-1;;;37664:8:0;;;;37663:9;37639:33;:82;;;;-1:-1:-1;;;;;;37690:31:0;;;;;;:25;:31;;;;;;;;37689:32;37639:82;37621:344;;;37748:8;:15;;-1:-1:-1;;;;37748:15:0;-1:-1:-1;;;37748:15:0;;;37784;;:19;;;:43;;;37826:1;37807:16;;:20;37784:43;37780:141;;;37898:4;8129:7;8156:18;;;;;;;;;;;37848:57;;:31;:57::i;:::-;37937:8;:16;;-1:-1:-1;;;;37937:16:0;;;37621:344;37993:8;;37977:12;;-1:-1:-1;;;37993:8:0;;;;37992:9;:79;;;;-1:-1:-1;;;;;;38006:31:0;;;;;;:25;:31;;;;;;;;;:64;;-1:-1:-1;;;;;;38041:29:0;;;;;;:25;:29;;;;;;;;38006:64;-1:-1:-1;;;;;38173:24:0;;;;;;:18;:24;;;;;;37977:94;;-1:-1:-1;38173:24:0;;;:50;;-1:-1:-1;;;;;;38201:22:0;;;;;;:18;:22;;;;;;;;38173:50;38169:98;;;-1:-1:-1;38250:5:0;38169:98;38283:7;38279:435;;;-1:-1:-1;;;;;38344:31:0;;38307:12;38344:31;;;:25;:31;;;;;;;;38340:200;;;38403:36;38435:3;38403:27;38414:15;;38403:6;:10;;:27;;;;:::i;:::-;:31;;:36::i;:::-;38396:43;;38340:200;;;38487:37;38520:3;38487:28;38498:16;;38487:6;:10;;:28;;;;:::i;:37::-;38480:44;;38340:200;38572:8;;38568:135;;38610:16;:6;38621:4;38610:10;:16::i;:::-;38601:25;;38645:42;38661:4;38675;38682;38645:15;:42::i;:::-;38292:422;38279:435;38726:33;38742:4;38748:2;38752:6;38726:15;:33::i;:::-;36956:1811;;;36843:1924;;;:::o;13856:591::-;-1:-1:-1;;;;;13940:21:0;;13932:67;;;;-1:-1:-1;;;13932:67:0;;6373:2:1;13932:67:0;;;6355:21:1;6412:2;6392:18;;;6385:30;6451:34;6431:18;;;6424:62;-1:-1:-1;;;6502:18:1;;;6495:31;6543:19;;13932:67:0;6171:397:1;13932:67:0;-1:-1:-1;;;;;14099:18:0;;14074:22;14099:18;;;;;;;;;;;14136:24;;;;14128:71;;;;-1:-1:-1;;;14128:71:0;;3934:2:1;14128:71:0;;;3916:21:1;3973:2;3953:18;;;3946:30;4012:34;3992:18;;;3985:62;-1:-1:-1;;;4063:18:1;;;4056:32;4105:19;;14128:71:0;3732:398:1;14128:71:0;-1:-1:-1;;;;;14235:18:0;;:9;:18;;;;;;;;;;14256:23;;;14235:44;;14301:12;:22;;14273:6;;14235:9;14301:22;;14273:6;;14301:22;:::i;:::-;;;;-1:-1:-1;;14341:37:0;;7936:25:1;;;14367:1:0;;-1:-1:-1;;;;;14341:37:0;;;;;7924:2:1;7909:18;14341:37:0;;;;;;;17771:302;17705:368;;:::o;12104:733::-;-1:-1:-1;;;;;12244:20:0;;12236:70;;;;-1:-1:-1;;;12236:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12325:23:0;;12317:71;;;;-1:-1:-1;;;12317:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12485:17:0;;12461:21;12485:17;;;;;;;;;;;12521:23;;;;12513:74;;;;-1:-1:-1;;;12513:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12623:17:0;;;:9;:17;;;;;;;;;;;12643:22;;;12623:42;;12687:20;;;;;;;;:30;;12659:6;;12623:9;12687:30;;12659:6;;12687:30;:::i;:::-;;;;;;;;12752:9;-1:-1:-1;;;;;12735:35:0;12744:6;-1:-1:-1;;;;;12735:35:0;;12763:6;12735:35;;;;7936:25:1;;7924:2;7909:18;;7790:177;12735:35:0;;;;;;;;12225:612;12104:733;;;:::o;39372:350::-;39448:24;39465:6;39448:16;:24::i;:::-;39571:16;;39563:52;;39513:21;;39493:17;;-1:-1:-1;;;;;39571:16:0;;;;39513:21;;39493:17;39563:52;39493:17;39563:52;39513:21;39571:16;39563:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39545:70;;;39631:7;39628:87;;;39660:43;;;9131:25:1;;;9187:2;9172:18;;9165:34;;;39660:43:0;;9104:18:1;39660:43:0;;;;;;;39437:285;;39372:350;:::o;21684:98::-;21742:7;21769:5;21773:1;21769;:5;:::i;:::-;21762:12;21684:98;-1:-1:-1;;;21684:98:0:o;22083:::-;22141:7;22168:5;22172:1;22168;:5;:::i;21327:98::-;21385:7;21412:5;21416:1;21412;:5;:::i;38775:589::-;38925:16;;;38939:1;38925:16;;;;;;;;38901:21;;38925:16;;;;;;;;;;-1:-1:-1;38925:16:0;38901:40;;38970:4;38952;38957:1;38952:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38952:23:0;;;:7;;;;;;;;;;:23;;;;38996:15;;:22;;;-1:-1:-1;;;38996:22:0;;;;:15;;;;;:20;;:22;;;;;38952:7;;38996:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38986:4;38991:1;38986:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38986:32:0;;;:7;;;;;;;;;:32;39063:15;;39031:62;;39048:4;;39063:15;39081:11;39031:8;:62::i;:::-;39132:15;;:224;;-1:-1:-1;;;39132:224:0;;-1:-1:-1;;;;;39132:15:0;;;;:66;;:224;;39213:11;;39132:15;;39283:4;;39310;;39330:15;;39132:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:247:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:315::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:52;;;1521:1;1518;1511:12;1473:52;1560:9;1547:23;1579:31;1604:5;1579:31;:::i;:::-;1629:5;1681:2;1666:18;;;;1653:32;;-1:-1:-1;;;1376:315:1:o;1696:180::-;1755:6;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;-1:-1:-1;1847:23:1;;1696:180;-1:-1:-1;1696:180:1:o;2726:597::-;2838:4;2867:2;2896;2885:9;2878:21;2928:6;2922:13;2971:6;2966:2;2955:9;2951:18;2944:34;2996:1;3006:140;3020:6;3017:1;3014:13;3006:140;;;3115:14;;;3111:23;;3105:30;3081:17;;;3100:2;3077:26;3070:66;3035:10;;3006:140;;;3164:6;3161:1;3158:13;3155:91;;;3234:1;3229:2;3220:6;3209:9;3205:22;3201:31;3194:42;3155:91;-1:-1:-1;3307:2:1;3286:15;-1:-1:-1;;3282:29:1;3267:45;;;;3314:2;3263:54;;2726:597;-1:-1:-1;;;2726:597:1:o;3328:399::-;3530:2;3512:21;;;3569:2;3549:18;;;3542:30;3608:34;3603:2;3588:18;;3581:62;-1:-1:-1;;;3674:2:1;3659:18;;3652:33;3717:3;3702:19;;3328:399::o;4538:402::-;4740:2;4722:21;;;4779:2;4759:18;;;4752:30;4818:34;4813:2;4798:18;;4791:62;-1:-1:-1;;;4884:2:1;4869:18;;4862:36;4930:3;4915:19;;4538:402::o;6573:401::-;6775:2;6757:21;;;6814:2;6794:18;;;6787:30;6853:34;6848:2;6833:18;;6826:62;-1:-1:-1;;;6919:2:1;6904:18;;6897:35;6964:3;6949:19;;6573:401::o;7972:980::-;8234:4;8282:3;8271:9;8267:19;8313:6;8302:9;8295:25;8339:2;8377:6;8372:2;8361:9;8357:18;8350:34;8420:3;8415:2;8404:9;8400:18;8393:31;8444:6;8479;8473:13;8510:6;8502;8495:22;8548:3;8537:9;8533:19;8526:26;;8587:2;8579:6;8575:15;8561:29;;8608:1;8618:195;8632:6;8629:1;8626:13;8618:195;;;8697:13;;-1:-1:-1;;;;;8693:39:1;8681:52;;8788:15;;;;8753:12;;;;8729:1;8647:9;8618:195;;;-1:-1:-1;;;;;;;8869:32:1;;;;8864:2;8849:18;;8842:60;-1:-1:-1;;;8933:3:1;8918:19;8911:35;8830:3;7972:980;-1:-1:-1;;;7972:980:1:o;9399:128::-;9439:3;9470:1;9466:6;9463:1;9460:13;9457:39;;;9476:18;;:::i;:::-;-1:-1:-1;9512:9:1;;9399:128::o;9532:217::-;9572:1;9598;9588:132;;9642:10;9637:3;9633:20;9630:1;9623:31;9677:4;9674:1;9667:15;9705:4;9702:1;9695:15;9588:132;-1:-1:-1;9734:9:1;;9532:217::o;9754:168::-;9794:7;9860:1;9856;9852:6;9848:14;9845:1;9842:21;9837:1;9830:9;9823:17;9819:45;9816:71;;;9867:18;;:::i;:::-;-1:-1:-1;9907:9:1;;9754:168::o;9927:125::-;9967:4;9995:1;9992;9989:8;9986:34;;;10000:18;;:::i;:::-;-1:-1:-1;10037:9:1;;9927:125::o;10057:380::-;10136:1;10132:12;;;;10179;;;10200:61;;10254:4;10246:6;10242:17;10232:27;;10200:61;10307:2;10299:6;10296:14;10276:18;10273:38;10270:161;;;10353:10;10348:3;10344:20;10341:1;10334:31;10388:4;10385:1;10378:15;10416:4;10413:1;10406:15;10270:161;;10057:380;;;:::o;10442:127::-;10503:10;10498:3;10494:20;10491:1;10484:31;10534:4;10531:1;10524:15;10558:4;10555:1;10548:15;10574:127;10635:10;10630:3;10626:20;10623:1;10616:31;10666:4;10663:1;10656:15;10690:4;10687:1;10680:15;10838:131;-1:-1:-1;;;;;10913:31:1;;10903:42;;10893:70;;10959:1;10956;10949:12
Swarm Source
ipfs://2ccca99dd1fb0911bdc132d4c1e9b1d2e0b7c564a9e8c2eb854ef0c26807e9f7
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.