Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 CLUB
Holders
101
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
230,823.875553958250148159 CLUBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BoysClub
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//Web: https://www.boysclub2006.com //TG: https://t.me/boysclub2006 //X: https://x.com/boysclub2006 // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // 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 subtraction 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; } } } 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; } 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; } 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); } 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; } /** * @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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract BoysClub is ERC20, Ownable { using SafeMath for uint256; address public uniswapV2Pair; bool public tradingActive = false; IUniswapV2Router02 public uniswapV2Router; address private routerAddress; bool private swapping; address public feesWallet; uint256 public swapTokensAtAmount; uint256 public swapMinimum; bool public swapEnabled = true; mapping(address => bool) public excludedFromMaxTx; uint256 public maxTxAmount; uint256 public maxWalletAmount; bool public limitsEnabled = true; bool public antiContractDumpEnabled = true; bool public blacklistDisabled = false; mapping(address => bool) public blacklistedWallets; uint256 public buyFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; mapping(address => bool) private _excludedFromFees; mapping(address => bool) public ammPairs; constructor() ERC20(unicode"Boy’s Club", "CLUB") { uint256 totalSupply = 100000000 * 1e18; routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( routerAddress ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); ammPairs[uniswapV2Pair] = true; uint256 _buyMarketingFee = 30; uint256 _buyLiquidityFee = 0; uint256 _sellMarketingFee = 30; uint256 _sellLiquidityFee = 0; swapTokensAtAmount = (totalSupply * 5) / 1000; swapMinimum = (totalSupply * 5) / 1000; buyDevFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; sellDevFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; buyFees = buyDevFee + buyLiquidityFee; sellFees = sellDevFee + sellLiquidityFee; feesWallet = address(0xde2B0379CC0D13b54d8fEcd70be7e6439fC632DA); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); limitsEnabled = true; maxTxAmount = 1000000 * 1e18; maxWalletAmount = 1000000 * 1e18; excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() public onlyOwner { tradingActive = true; } function changeSwapBackRestriction(bool newVal) public onlyOwner { antiContractDumpEnabled = newVal; } function disableLimits() external onlyOwner returns (bool) { limitsEnabled = false; return true; } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function setSwapMinimum(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapMinimum = newAmount; return true; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setMaxTxAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxTxAmount = newNum * (10 ** 18); } function setMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxWalletAmount = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { excludedFromMaxTx[updAds] = isEx; } function setBuyFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyFees = buyDevFee + buyLiquidityFee; require(buyFees <= 20); } function setSellFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellFees = sellDevFee + sellLiquidityFee; require(sellFees <= 60); } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludedFromFees[account] = excluded; } function addAMMPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAMMPair(pair, value); } function _setAMMPair(address pair, bool value) private { ammPairs[pair] = value; } function setFeesWallet(address _wallet) external onlyOwner { feesWallet = _wallet; } function isExcludedFromFees(address account) public view returns (bool) { return _excludedFromFees[account]; } 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(!blacklistedWallets[from], "Blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && !swapping && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _excludedFromFees[from] || _excludedFromFees[to], "Trading is not active." ); } if ( ammPairs[from] && !excludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } else if ( ammPairs[to] && !excludedFromMaxTx[from] ) { require( amount <= maxTxAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!excludedFromMaxTx[to]) { require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapMinimum; if ( canSwap && swapEnabled && !swapping && !ammPairs[from] && !_excludedFromFees[from] && !_excludedFromFees[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; if (_excludedFromFees[from] || _excludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (ammPairs[to] && sellFees > 0) { fees = amount.mul(sellFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellFees; tokensForMarketing += (fees * sellDevFee) / sellFees; } else if (ammPairs[from] && buyFees > 0) { fees = amount.mul(buyFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyFees; tokensForMarketing += (fees * buyDevFee) / buyFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function blacklistAddress(address _address, bool _isBlacklisting) external onlyOwner { require(!blacklistDisabled); require(_address != address(uniswapV2Pair)); require(_address != address(routerAddress)); blacklistedWallets[_address] = _isBlacklisting; } function renounceBlacklistAbility() public onlyOwner { blacklistDisabled = true; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, feesWallet, block.timestamp ); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } uint256 amountToSwap = swapTokensAtAmount; if (antiContractDumpEnabled) { amountToSwap = amount < swapTokensAtAmount ? amount : swapTokensAtAmount; } if (contractBalance > amountToSwap) { contractBalance = amountToSwap; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); } (success,) = address(feesWallet).call{ value: address(this).balance }(""); } function withdrawContractTokens() external { require(owner() == _msgSender() || feesWallet == _msgSender(), "Caller is not the owner or marketing wallet"); super._transfer(address(this), address(feesWallet), balanceOf(address(this))); } function swapContractTokens() public onlyOwner { bool success; swapTokensForEth(balanceOf(address(this))); (success,) = address(feesWallet).call{value: address(this).balance}(""); } function sendContractEth() external { bool success; (success,) = address(feesWallet).call{value: address(this).balance}(""); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addAMMPair","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiContractDumpEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"changeSwapBackRestriction","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":[],"name":"disableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"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":"renounceBlacklistAbility","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendContractEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapMinimum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapContractTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"inputs":[],"name":"withdrawContractTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805460ff60a01b19169055600c805460ff191660011790556010805462ffffff19166101011790553480156200003b57600080fd5b506040518060400160405280600c81526020016b2137bcf1404cb99021b63ab160a11b8152506040518060400160405280600481526020016321a62aa160e11b81525081600390816200008f919062000685565b5060046200009e828262000685565b505050620000bb620000b5620003f760201b60201c565b620003fb565b60088054737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0319918216811790925560078054909116821790556040805163c45a015560e01b815290516a52b7d2dcc80cd2e40000009291829163c45a0155916004808201926020929091908290030181865afa1580156200013c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000162919062000751565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d6919062000751565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000751565b600680546001600160a01b0319166001600160a01b039290921691821790556000908152601b60205260408120805460ff19166001179055601e9081816103e86200029787600562000799565b620002a39190620007b9565b600a556103e8620002b687600562000799565b620002c29190620007b9565b600b556013849055601483905560168290556017819055620002e58385620007dc565b601255601754601654620002fa9190620007dc565b601555600980546001600160a01b03191673de2b0379cc0d13b54d8fecd70be7e6439fc632da179055620003426200033a6005546001600160a01b031690565b60016200044d565b6200034f3060016200044d565b6200035e61dead60016200044d565b6010805460ff1916600117905569d3c21bcecceda1000000600e819055600f556200039d620003956005546001600160a01b031690565b600162000482565b620003aa30600162000482565b620003b961dead600162000482565b620003c685600162000482565b600654620003df906001600160a01b0316600162000482565b620003eb3387620004b7565b505050505050620007f2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620004576200057e565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6200048c6200057e565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005279190620007dc565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200050a565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060c57607f821691505b6020821081036200062d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005dc57600081815260208120601f850160051c810160208610156200065c5750805b601f850160051c820191505b818110156200067d5782815560010162000668565b505050505050565b81516001600160401b03811115620006a157620006a1620005e1565b620006b981620006b28454620005f7565b8462000633565b602080601f831160018114620006f15760008415620006d85750858301515b600019600386901b1c1916600185901b1785556200067d565b600085815260208120601f198616915b82811015620007225788860151825594840194600190910190840162000701565b5085821015620007415787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076457600080fd5b81516001600160a01b03811681146200077c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007b357620007b362000783565b92915050565b600082620007d757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007b357620007b362000783565b6124c580620008026000396000f3fe6080604052600436106103545760003560e01c806395f8788c116101c6578063c0246668116100f7578063e4748b9e11610095578063f2fde38b1161006f578063f2fde38b1461098e578063f6374342146109ae578063f8821a62146109c4578063f928364c146109da57600080fd5b8063e4748b9e14610942578063ec28438a14610958578063f11a24d31461097857600080fd5b8063dd62ed3e116100d1578063dd62ed3e146108d6578063e01af92c146108f6578063e0f3ccf514610916578063e2f456051461092c57600080fd5b8063c024666814610881578063c20c43bf146108a1578063c4530d72146108c157600080fd5b8063a72905a211610164578063afa4f3b21161013e578063afa4f3b21461080b578063b2d8f2081461082b578063b6de4f2e1461084b578063bbc0c7421461086057600080fd5b8063a72905a2146107a5578063a9059cbb146107d5578063aa4bde28146107f557600080fd5b8063a0d82dc5116101a0578063a0d82dc514610730578063a2d83c4214610746578063a2edb2c314610765578063a457c2d71461078557600080fd5b806395f8788c146106da5780639c3b4fdc146106fa5780639fd8234e1461071057600080fd5b8063455a4396116102a05780637571336a1161023e5780638c0b5e22116102185780638c0b5e221461067c5780638c457c5a146106925780638da5cb5b146106a757806395d89b41146106c557600080fd5b80637571336a146106275780637e44d2cc146106475780638a8c523c1461066757600080fd5b806354f9c98c1161027a57806354f9c98c146105a85780636ddd1713146105d857806370a08231146105f2578063715018a61461061257600080fd5b8063455a43961461052f57806349bd5a5e1461054f5780634fbee1931461056f57600080fd5b80632b5ba3b91161030d5780633582ad23116102e75780633582ad23146104b557806339509351146104cf578063418eeb29146104ef57806343d4f92b1461050f57600080fd5b80632b5ba3b9146104545780632fe4716314610484578063313ce5671461049957600080fd5b806306fdde0314610360578063095ea7b31461038b5780631694505e146103bb57806318160ddd146103f357806323b872dd1461041257806327a14fc21461043257600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b506103756109ef565b604051610382919061201e565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004612081565b610a81565b6040519015158152602001610382565b3480156103c757600080fd5b506007546103db906001600160a01b031681565b6040516001600160a01b039091168152602001610382565b3480156103ff57600080fd5b506002545b604051908152602001610382565b34801561041e57600080fd5b506103ab61042d3660046120ad565b610a9b565b34801561043e57600080fd5b5061045261044d3660046120ee565b610abf565b005b34801561046057600080fd5b506103ab61046f366004612107565b60116020526000908152604090205460ff1681565b34801561049057600080fd5b50610452610b1f565b3480156104a557600080fd5b5060405160128152602001610382565b3480156104c157600080fd5b506010546103ab9060ff1681565b3480156104db57600080fd5b506103ab6104ea366004612081565b610bc9565b3480156104fb57600080fd5b506103ab61050a3660046120ee565b610beb565b34801561051b57600080fd5b5061045261052a366004612107565b610c83565b34801561053b57600080fd5b5061045261054a366004612134565b610cad565b34801561055b57600080fd5b506006546103db906001600160a01b031681565b34801561057b57600080fd5b506103ab61058a366004612107565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156105b457600080fd5b506103ab6105c3366004612107565b600d6020526000908152604090205460ff1681565b3480156105e457600080fd5b50600c546103ab9060ff1681565b3480156105fe57600080fd5b5061040461060d366004612107565b610d2c565b34801561061e57600080fd5b50610452610d47565b34801561063357600080fd5b50610452610642366004612134565b610d59565b34801561065357600080fd5b506009546103db906001600160a01b031681565b34801561067357600080fd5b50610452610d8c565b34801561068857600080fd5b50610404600e5481565b34801561069e57600080fd5b50610452610da9565b3480156106b357600080fd5b506005546001600160a01b03166103db565b3480156106d157600080fd5b50610375610e07565b3480156106e657600080fd5b506104526106f5366004612134565b610e16565b34801561070657600080fd5b5061040460135481565b34801561071c57600080fd5b5061045261072b366004612169565b610ece565b34801561073c57600080fd5b5061040460165481565b34801561075257600080fd5b506010546103ab90610100900460ff1681565b34801561077157600080fd5b506010546103ab9062010000900460ff1681565b34801561079157600080fd5b506103ab6107a0366004612081565b610efc565b3480156107b157600080fd5b506103ab6107c0366004612107565b601b6020526000908152604090205460ff1681565b3480156107e157600080fd5b506103ab6107f0366004612081565b610f77565b34801561080157600080fd5b50610404600f5481565b34801561081757600080fd5b506103ab6108263660046120ee565b610f85565b34801561083757600080fd5b50610452610846366004612169565b611018565b34801561085757600080fd5b50610452611046565b34801561086c57600080fd5b506006546103ab90600160a01b900460ff1681565b34801561088d57600080fd5b5061045261089c366004612134565b61107a565b3480156108ad57600080fd5b506104526108bc36600461218b565b6110ad565b3480156108cd57600080fd5b506104526110cf565b3480156108e257600080fd5b506104046108f13660046121a6565b6110ea565b34801561090257600080fd5b5061045261091136600461218b565b611115565b34801561092257600080fd5b5061040460155481565b34801561093857600080fd5b50610404600a5481565b34801561094e57600080fd5b5061040460125481565b34801561096457600080fd5b506104526109733660046120ee565b611130565b34801561098457600080fd5b5061040460145481565b34801561099a57600080fd5b506104526109a9366004612107565b611190565b3480156109ba57600080fd5b5061040460175481565b3480156109d057600080fd5b50610404600b5481565b3480156109e657600080fd5b506103ab611209565b6060600380546109fe906121df565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a906121df565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b600033610a8f818585611223565b60019150505b92915050565b600033610aa9858285611347565b610ab48585856113bb565b506001949350505050565b610ac7611a9d565b670de0b6b3a76400006103e8610adc60025490565b610ae790600161222f565b610af19190612246565b610afb9190612246565b811015610b0757600080fd5b610b1981670de0b6b3a764000061222f565b600f5550565b6005546001600160a01b0316331480610b4257506009546001600160a01b031633145b610ba75760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201526a1d1a5b99c81dd85b1b195d60aa1b60648201526084015b60405180910390fd5b600954610bc79030906001600160a01b0316610bc282610d2c565b611af7565b565b600033610a8f818585610bdc83836110ea565b610be69190612268565b611223565b6000610bf5611a9d565b620186a0610c0260025490565b610c0d90600161222f565b610c179190612246565b821015610c365760405162461bcd60e51b8152600401610b9e9061227b565b6064610c4160025490565b610c4c90600461222f565b610c569190612246565b821115610c755760405162461bcd60e51b8152600401610b9e906122d0565b50600b81905560015b919050565b610c8b611a9d565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610cb5611a9d565b60105462010000900460ff1615610ccb57600080fd5b6006546001600160a01b0390811690831603610ce657600080fd5b6008546001600160a01b0390811690831603610d0157600080fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526020819052604090205490565b610d4f611a9d565b610bc76000611c21565b610d61611a9d565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610d94611a9d565b6006805460ff60a01b1916600160a01b179055565b6009546040516000916001600160a01b03169047905b60006040518083038185875af1925050503d8060008114610dfc576040519150601f19603f3d011682016040523d82523d6000602084013e610e01565b606091505b50505050565b6060600480546109fe906121df565b610e1e611a9d565b6006546001600160a01b0390811690831603610ea25760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b9e565b6001600160a01b0382166000908152601b60205260409020805460ff19168215151790555050565b5050565b610ed6611a9d565b60168290556017819055610eea8183612268565b6015819055603c1015610eca57600080fd5b60003381610f0a82866110ea565b905083811015610f6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b9e565b610ab48286868403611223565b600033610a8f8185856113bb565b6000610f8f611a9d565b620186a0610f9c60025490565b610fa790600161222f565b610fb19190612246565b821015610fd05760405162461bcd60e51b8152600401610b9e9061227b565b6064610fdb60025490565b610fe690600461222f565b610ff09190612246565b82111561100f5760405162461bcd60e51b8152600401610b9e906122d0565b50600a55600190565b611020611a9d565b601382905560148190556110348183612268565b601281905560141015610eca57600080fd5b61104e611a9d565b600061106161105c30610d2c565b611c73565b6009546040516001600160a01b03909116904790610dbf565b611082611a9d565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6110b5611a9d565b601080549115156101000261ff0019909216919091179055565b6110d7611a9d565b6010805462ff0000191662010000179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61111d611a9d565b600c805460ff1916911515919091179055565b611138611a9d565b670de0b6b3a76400006103e861114d60025490565b61115890600161222f565b6111629190612246565b61116c9190612246565b81101561117857600080fd5b61118a81670de0b6b3a764000061222f565b600e5550565b611198611a9d565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9e565b61120681611c21565b50565b6000611213611a9d565b506010805460ff19169055600190565b6001600160a01b0383166112855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b9e565b6001600160a01b0382166112e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b9e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061135384846110ea565b90506000198114610e0157818110156113ae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b9e565b610e018484848403611223565b6001600160a01b0383166113e15760405162461bcd60e51b8152600401610b9e90612322565b6001600160a01b0382166114075760405162461bcd60e51b8152600401610b9e90612367565b6001600160a01b03831660009081526011602052604090205460ff161561145e5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610b9e565b806000036114775761147283836000611af7565b505050565b60105460ff16156117cf576005546001600160a01b038481169116148015906114ae57506005546001600160a01b03838116911614155b80156114c45750600854600160a01b900460ff16155b80156114d857506001600160a01b03821615155b80156114ef57506001600160a01b03821661dead14155b156117cf57600654600160a01b900460ff16611589576001600160a01b0383166000908152601a602052604090205460ff168061154457506001600160a01b0382166000908152601a602052604090205460ff165b6115895760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b9e565b6001600160a01b0383166000908152601b602052604090205460ff1680156115ca57506001600160a01b0382166000908152600d602052604090205460ff16155b1561169e57600e5481111561163f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b9e565b600f5461164b83610d2c565b6116559083612268565b11156116995760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9e565b6117cf565b6001600160a01b0382166000908152601b602052604090205460ff1680156116df57506001600160a01b0383166000908152600d602052604090205460ff16155b1561175557600e548111156116995760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b9e565b6001600160a01b0382166000908152600d602052604090205460ff166117cf57600f5461178183610d2c565b61178b9083612268565b11156117cf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9e565b60006117da30610d2c565b600b54909150811080159081906117f35750600c5460ff165b80156118095750600854600160a01b900460ff16155b801561182e57506001600160a01b0385166000908152601b602052604090205460ff16155b801561185357506001600160a01b0385166000908152601a602052604090205460ff16155b801561187857506001600160a01b0384166000908152601a602052604090205460ff16155b156118a7576008805460ff60a01b1916600160a01b17905561189983611dcd565b6008805460ff60a01b191690555b6008546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806118f557506001600160a01b0385166000908152601a602052604090205460ff165b156118fe575060005b60008115611a89576001600160a01b0386166000908152601b602052604090205460ff16801561193057506000601554115b156119be57611955606461194f60155488611f3f90919063ffffffff16565b90611f52565b905060155460175482611968919061222f565b6119729190612246565b601960008282546119839190612268565b9091555050601554601654611998908361222f565b6119a29190612246565b601860008282546119b39190612268565b90915550611a6b9050565b6001600160a01b0387166000908152601b602052604090205460ff1680156119e857506000601254115b15611a6b57611a07606461194f60125488611f3f90919063ffffffff16565b905060125460145482611a1a919061222f565b611a249190612246565b60196000828254611a359190612268565b9091555050601254601354611a4a908361222f565b611a549190612246565b60186000828254611a659190612268565b90915550505b8015611a7c57611a7c873083611af7565b611a8681866123aa565b94505b611a94878787611af7565b50505050505050565b6005546001600160a01b03163314610bc75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b9e565b6001600160a01b038316611b1d5760405162461bcd60e51b8152600401610b9e90612322565b6001600160a01b038216611b435760405162461bcd60e51b8152600401610b9e90612367565b6001600160a01b03831660009081526020819052604090205481811015611bbb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b9e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e01565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ca857611ca86123bd565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2591906123d3565b81600181518110611d3857611d386123bd565b6001600160a01b039283166020918202929092010152600754611d5e9130911684611223565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d979085906000908690309042906004016123f0565b600060405180830381600087803b158015611db157600080fd5b505af1158015611dc5573d6000803e3d6000fd5b505050505050565b6000611dd830610d2c565b90506000601854601954611dec9190612268565b90506000821580611dfb575081155b15611e065750505050565b600a54601054610100900460ff1615611e2f57600a548510611e2a57600a54611e2c565b845b90505b80841115611e3b578093505b600060028460195487611e4e919061222f565b611e589190612246565b611e629190612246565b90506000611e708683611f5e565b905047611e7c82611c73565b6000611e884783611f5e565b90506000611ea58861194f60185485611f3f90919063ffffffff16565b90506000611eb382846123aa565b6000601981905560185590508515801590611ece5750600081115b15611edd57611edd8682611f6a565b6009546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611f2a576040519150601f19603f3d011682016040523d82523d6000602084013e611f2f565b606091505b5050505050505050505050505050565b6000611f4b828461222f565b9392505050565b6000611f4b8284612246565b6000611f4b82846123aa565b600754611f829030906001600160a01b031684611223565b60075460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611ff2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120179190612461565b5050505050565b600060208083528351808285015260005b8181101561204b5785810183015185820160400152820161202f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461120657600080fd5b6000806040838503121561209457600080fd5b823561209f8161206c565b946020939093013593505050565b6000806000606084860312156120c257600080fd5b83356120cd8161206c565b925060208401356120dd8161206c565b929592945050506040919091013590565b60006020828403121561210057600080fd5b5035919050565b60006020828403121561211957600080fd5b8135611f4b8161206c565b80358015158114610c7e57600080fd5b6000806040838503121561214757600080fd5b82356121528161206c565b915061216060208401612124565b90509250929050565b6000806040838503121561217c57600080fd5b50508035926020909101359150565b60006020828403121561219d57600080fd5b611f4b82612124565b600080604083850312156121b957600080fd5b82356121c48161206c565b915060208301356121d48161206c565b809150509250929050565b600181811c908216806121f357607f821691505b60208210810361221357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a9557610a95612219565b60008261226357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a9557610a95612219565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526032908201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160408201527137101a12903a37ba30b61039bab838363c9760711b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a9557610a95612219565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123e557600080fd5b8151611f4b8161206c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124405784516001600160a01b03168352938301939183019160010161241b565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561247657600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201166363fb76e1db1e6bcdc8cec79a6206307ef2d494d1d008ce0b68f4873640e64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103545760003560e01c806395f8788c116101c6578063c0246668116100f7578063e4748b9e11610095578063f2fde38b1161006f578063f2fde38b1461098e578063f6374342146109ae578063f8821a62146109c4578063f928364c146109da57600080fd5b8063e4748b9e14610942578063ec28438a14610958578063f11a24d31461097857600080fd5b8063dd62ed3e116100d1578063dd62ed3e146108d6578063e01af92c146108f6578063e0f3ccf514610916578063e2f456051461092c57600080fd5b8063c024666814610881578063c20c43bf146108a1578063c4530d72146108c157600080fd5b8063a72905a211610164578063afa4f3b21161013e578063afa4f3b21461080b578063b2d8f2081461082b578063b6de4f2e1461084b578063bbc0c7421461086057600080fd5b8063a72905a2146107a5578063a9059cbb146107d5578063aa4bde28146107f557600080fd5b8063a0d82dc5116101a0578063a0d82dc514610730578063a2d83c4214610746578063a2edb2c314610765578063a457c2d71461078557600080fd5b806395f8788c146106da5780639c3b4fdc146106fa5780639fd8234e1461071057600080fd5b8063455a4396116102a05780637571336a1161023e5780638c0b5e22116102185780638c0b5e221461067c5780638c457c5a146106925780638da5cb5b146106a757806395d89b41146106c557600080fd5b80637571336a146106275780637e44d2cc146106475780638a8c523c1461066757600080fd5b806354f9c98c1161027a57806354f9c98c146105a85780636ddd1713146105d857806370a08231146105f2578063715018a61461061257600080fd5b8063455a43961461052f57806349bd5a5e1461054f5780634fbee1931461056f57600080fd5b80632b5ba3b91161030d5780633582ad23116102e75780633582ad23146104b557806339509351146104cf578063418eeb29146104ef57806343d4f92b1461050f57600080fd5b80632b5ba3b9146104545780632fe4716314610484578063313ce5671461049957600080fd5b806306fdde0314610360578063095ea7b31461038b5780631694505e146103bb57806318160ddd146103f357806323b872dd1461041257806327a14fc21461043257600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b506103756109ef565b604051610382919061201e565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004612081565b610a81565b6040519015158152602001610382565b3480156103c757600080fd5b506007546103db906001600160a01b031681565b6040516001600160a01b039091168152602001610382565b3480156103ff57600080fd5b506002545b604051908152602001610382565b34801561041e57600080fd5b506103ab61042d3660046120ad565b610a9b565b34801561043e57600080fd5b5061045261044d3660046120ee565b610abf565b005b34801561046057600080fd5b506103ab61046f366004612107565b60116020526000908152604090205460ff1681565b34801561049057600080fd5b50610452610b1f565b3480156104a557600080fd5b5060405160128152602001610382565b3480156104c157600080fd5b506010546103ab9060ff1681565b3480156104db57600080fd5b506103ab6104ea366004612081565b610bc9565b3480156104fb57600080fd5b506103ab61050a3660046120ee565b610beb565b34801561051b57600080fd5b5061045261052a366004612107565b610c83565b34801561053b57600080fd5b5061045261054a366004612134565b610cad565b34801561055b57600080fd5b506006546103db906001600160a01b031681565b34801561057b57600080fd5b506103ab61058a366004612107565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156105b457600080fd5b506103ab6105c3366004612107565b600d6020526000908152604090205460ff1681565b3480156105e457600080fd5b50600c546103ab9060ff1681565b3480156105fe57600080fd5b5061040461060d366004612107565b610d2c565b34801561061e57600080fd5b50610452610d47565b34801561063357600080fd5b50610452610642366004612134565b610d59565b34801561065357600080fd5b506009546103db906001600160a01b031681565b34801561067357600080fd5b50610452610d8c565b34801561068857600080fd5b50610404600e5481565b34801561069e57600080fd5b50610452610da9565b3480156106b357600080fd5b506005546001600160a01b03166103db565b3480156106d157600080fd5b50610375610e07565b3480156106e657600080fd5b506104526106f5366004612134565b610e16565b34801561070657600080fd5b5061040460135481565b34801561071c57600080fd5b5061045261072b366004612169565b610ece565b34801561073c57600080fd5b5061040460165481565b34801561075257600080fd5b506010546103ab90610100900460ff1681565b34801561077157600080fd5b506010546103ab9062010000900460ff1681565b34801561079157600080fd5b506103ab6107a0366004612081565b610efc565b3480156107b157600080fd5b506103ab6107c0366004612107565b601b6020526000908152604090205460ff1681565b3480156107e157600080fd5b506103ab6107f0366004612081565b610f77565b34801561080157600080fd5b50610404600f5481565b34801561081757600080fd5b506103ab6108263660046120ee565b610f85565b34801561083757600080fd5b50610452610846366004612169565b611018565b34801561085757600080fd5b50610452611046565b34801561086c57600080fd5b506006546103ab90600160a01b900460ff1681565b34801561088d57600080fd5b5061045261089c366004612134565b61107a565b3480156108ad57600080fd5b506104526108bc36600461218b565b6110ad565b3480156108cd57600080fd5b506104526110cf565b3480156108e257600080fd5b506104046108f13660046121a6565b6110ea565b34801561090257600080fd5b5061045261091136600461218b565b611115565b34801561092257600080fd5b5061040460155481565b34801561093857600080fd5b50610404600a5481565b34801561094e57600080fd5b5061040460125481565b34801561096457600080fd5b506104526109733660046120ee565b611130565b34801561098457600080fd5b5061040460145481565b34801561099a57600080fd5b506104526109a9366004612107565b611190565b3480156109ba57600080fd5b5061040460175481565b3480156109d057600080fd5b50610404600b5481565b3480156109e657600080fd5b506103ab611209565b6060600380546109fe906121df565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a906121df565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b600033610a8f818585611223565b60019150505b92915050565b600033610aa9858285611347565b610ab48585856113bb565b506001949350505050565b610ac7611a9d565b670de0b6b3a76400006103e8610adc60025490565b610ae790600161222f565b610af19190612246565b610afb9190612246565b811015610b0757600080fd5b610b1981670de0b6b3a764000061222f565b600f5550565b6005546001600160a01b0316331480610b4257506009546001600160a01b031633145b610ba75760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201526a1d1a5b99c81dd85b1b195d60aa1b60648201526084015b60405180910390fd5b600954610bc79030906001600160a01b0316610bc282610d2c565b611af7565b565b600033610a8f818585610bdc83836110ea565b610be69190612268565b611223565b6000610bf5611a9d565b620186a0610c0260025490565b610c0d90600161222f565b610c179190612246565b821015610c365760405162461bcd60e51b8152600401610b9e9061227b565b6064610c4160025490565b610c4c90600461222f565b610c569190612246565b821115610c755760405162461bcd60e51b8152600401610b9e906122d0565b50600b81905560015b919050565b610c8b611a9d565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610cb5611a9d565b60105462010000900460ff1615610ccb57600080fd5b6006546001600160a01b0390811690831603610ce657600080fd5b6008546001600160a01b0390811690831603610d0157600080fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526020819052604090205490565b610d4f611a9d565b610bc76000611c21565b610d61611a9d565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610d94611a9d565b6006805460ff60a01b1916600160a01b179055565b6009546040516000916001600160a01b03169047905b60006040518083038185875af1925050503d8060008114610dfc576040519150601f19603f3d011682016040523d82523d6000602084013e610e01565b606091505b50505050565b6060600480546109fe906121df565b610e1e611a9d565b6006546001600160a01b0390811690831603610ea25760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b9e565b6001600160a01b0382166000908152601b60205260409020805460ff19168215151790555050565b5050565b610ed6611a9d565b60168290556017819055610eea8183612268565b6015819055603c1015610eca57600080fd5b60003381610f0a82866110ea565b905083811015610f6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b9e565b610ab48286868403611223565b600033610a8f8185856113bb565b6000610f8f611a9d565b620186a0610f9c60025490565b610fa790600161222f565b610fb19190612246565b821015610fd05760405162461bcd60e51b8152600401610b9e9061227b565b6064610fdb60025490565b610fe690600461222f565b610ff09190612246565b82111561100f5760405162461bcd60e51b8152600401610b9e906122d0565b50600a55600190565b611020611a9d565b601382905560148190556110348183612268565b601281905560141015610eca57600080fd5b61104e611a9d565b600061106161105c30610d2c565b611c73565b6009546040516001600160a01b03909116904790610dbf565b611082611a9d565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6110b5611a9d565b601080549115156101000261ff0019909216919091179055565b6110d7611a9d565b6010805462ff0000191662010000179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61111d611a9d565b600c805460ff1916911515919091179055565b611138611a9d565b670de0b6b3a76400006103e861114d60025490565b61115890600161222f565b6111629190612246565b61116c9190612246565b81101561117857600080fd5b61118a81670de0b6b3a764000061222f565b600e5550565b611198611a9d565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9e565b61120681611c21565b50565b6000611213611a9d565b506010805460ff19169055600190565b6001600160a01b0383166112855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b9e565b6001600160a01b0382166112e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b9e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061135384846110ea565b90506000198114610e0157818110156113ae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b9e565b610e018484848403611223565b6001600160a01b0383166113e15760405162461bcd60e51b8152600401610b9e90612322565b6001600160a01b0382166114075760405162461bcd60e51b8152600401610b9e90612367565b6001600160a01b03831660009081526011602052604090205460ff161561145e5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610b9e565b806000036114775761147283836000611af7565b505050565b60105460ff16156117cf576005546001600160a01b038481169116148015906114ae57506005546001600160a01b03838116911614155b80156114c45750600854600160a01b900460ff16155b80156114d857506001600160a01b03821615155b80156114ef57506001600160a01b03821661dead14155b156117cf57600654600160a01b900460ff16611589576001600160a01b0383166000908152601a602052604090205460ff168061154457506001600160a01b0382166000908152601a602052604090205460ff165b6115895760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b9e565b6001600160a01b0383166000908152601b602052604090205460ff1680156115ca57506001600160a01b0382166000908152600d602052604090205460ff16155b1561169e57600e5481111561163f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b9e565b600f5461164b83610d2c565b6116559083612268565b11156116995760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9e565b6117cf565b6001600160a01b0382166000908152601b602052604090205460ff1680156116df57506001600160a01b0383166000908152600d602052604090205460ff16155b1561175557600e548111156116995760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b9e565b6001600160a01b0382166000908152600d602052604090205460ff166117cf57600f5461178183610d2c565b61178b9083612268565b11156117cf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9e565b60006117da30610d2c565b600b54909150811080159081906117f35750600c5460ff165b80156118095750600854600160a01b900460ff16155b801561182e57506001600160a01b0385166000908152601b602052604090205460ff16155b801561185357506001600160a01b0385166000908152601a602052604090205460ff16155b801561187857506001600160a01b0384166000908152601a602052604090205460ff16155b156118a7576008805460ff60a01b1916600160a01b17905561189983611dcd565b6008805460ff60a01b191690555b6008546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806118f557506001600160a01b0385166000908152601a602052604090205460ff165b156118fe575060005b60008115611a89576001600160a01b0386166000908152601b602052604090205460ff16801561193057506000601554115b156119be57611955606461194f60155488611f3f90919063ffffffff16565b90611f52565b905060155460175482611968919061222f565b6119729190612246565b601960008282546119839190612268565b9091555050601554601654611998908361222f565b6119a29190612246565b601860008282546119b39190612268565b90915550611a6b9050565b6001600160a01b0387166000908152601b602052604090205460ff1680156119e857506000601254115b15611a6b57611a07606461194f60125488611f3f90919063ffffffff16565b905060125460145482611a1a919061222f565b611a249190612246565b60196000828254611a359190612268565b9091555050601254601354611a4a908361222f565b611a549190612246565b60186000828254611a659190612268565b90915550505b8015611a7c57611a7c873083611af7565b611a8681866123aa565b94505b611a94878787611af7565b50505050505050565b6005546001600160a01b03163314610bc75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b9e565b6001600160a01b038316611b1d5760405162461bcd60e51b8152600401610b9e90612322565b6001600160a01b038216611b435760405162461bcd60e51b8152600401610b9e90612367565b6001600160a01b03831660009081526020819052604090205481811015611bbb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b9e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e01565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ca857611ca86123bd565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2591906123d3565b81600181518110611d3857611d386123bd565b6001600160a01b039283166020918202929092010152600754611d5e9130911684611223565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d979085906000908690309042906004016123f0565b600060405180830381600087803b158015611db157600080fd5b505af1158015611dc5573d6000803e3d6000fd5b505050505050565b6000611dd830610d2c565b90506000601854601954611dec9190612268565b90506000821580611dfb575081155b15611e065750505050565b600a54601054610100900460ff1615611e2f57600a548510611e2a57600a54611e2c565b845b90505b80841115611e3b578093505b600060028460195487611e4e919061222f565b611e589190612246565b611e629190612246565b90506000611e708683611f5e565b905047611e7c82611c73565b6000611e884783611f5e565b90506000611ea58861194f60185485611f3f90919063ffffffff16565b90506000611eb382846123aa565b6000601981905560185590508515801590611ece5750600081115b15611edd57611edd8682611f6a565b6009546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611f2a576040519150601f19603f3d011682016040523d82523d6000602084013e611f2f565b606091505b5050505050505050505050505050565b6000611f4b828461222f565b9392505050565b6000611f4b8284612246565b6000611f4b82846123aa565b600754611f829030906001600160a01b031684611223565b60075460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611ff2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120179190612461565b5050505050565b600060208083528351808285015260005b8181101561204b5785810183015185820160400152820161202f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461120657600080fd5b6000806040838503121561209457600080fd5b823561209f8161206c565b946020939093013593505050565b6000806000606084860312156120c257600080fd5b83356120cd8161206c565b925060208401356120dd8161206c565b929592945050506040919091013590565b60006020828403121561210057600080fd5b5035919050565b60006020828403121561211957600080fd5b8135611f4b8161206c565b80358015158114610c7e57600080fd5b6000806040838503121561214757600080fd5b82356121528161206c565b915061216060208401612124565b90509250929050565b6000806040838503121561217c57600080fd5b50508035926020909101359150565b60006020828403121561219d57600080fd5b611f4b82612124565b600080604083850312156121b957600080fd5b82356121c48161206c565b915060208301356121d48161206c565b809150509250929050565b600181811c908216806121f357607f821691505b60208210810361221357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a9557610a95612219565b60008261226357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a9557610a95612219565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526032908201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160408201527137101a12903a37ba30b61039bab838363c9760711b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a9557610a95612219565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123e557600080fd5b8151611f4b8161206c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124405784516001600160a01b03168352938301939183019160010161241b565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561247657600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201166363fb76e1db1e6bcdc8cec79a6206307ef2d494d1d008ce0b68f4873640e64736f6c63430008110033
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.