ERC-20
Overview
Max Total Supply
1,000,000,000 SPEED
Holders
45
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,592,254.387162387919686143 SPEEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SPEED
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // SPEED is a proposition to balance launches, currently, there are many bad actors which can be removed. // MEV: Negative for both the individual and holders, positive for the developer. // Validators: Negative for everybody as added costs of gas wars reduce profitability. // Greed: Negative for everybody other than the individual. // How does SPEED solve this? // MEV is completely removed in a way that allows early buy volume, // Validator costs are reduced by preventing high gas transactions. // Greed is prevented by stopping many ways to gain an advantage. // Finally, taxes are balanced between the developer, early buyers and future holders. // Happy Trading SPEED. // https://twitter.com/SPEED_ERC20 // https://t.me/SPEEDPORTALETH pragma solidity >=0.8.18; import {ERC20} from "ERC20.sol"; import {Ownable} from "Ownable.sol"; import {SafeMath} from "SafeMath.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SPEED is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public buyTotalFees; uint256 public sellTotalFees; uint256 public blockStart; uint256 public copyWei; uint256 public blockTxCount; uint256 public currentBlock; bool private swapping; bool public antiMevBot; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; bool public transferDelayEnabled = true; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping (address => bool) private bots; mapping(address => uint256) private _holderLastTransferTimestamp; mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20("SPEED", "SPEED") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); buyTotalFees = 20; sellTotalFees = 20; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; maxWallet = 20_000_000 * 1e18; swapTokensAtAmount = totalSupply / 50; devWallet = address(msg.sender); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; blockStart = block.number; copyWei = tx.gasprice.sub(block.basefee); antiMevBot = true; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateAntiMevBotEnabled(bool enabled) external onlyOwner { antiMevBot = enabled; } function updateBuyFees( uint256 _buyTotalFees ) external onlyOwner { buyTotalFees = _buyTotalFees; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _sellTotalFees ) external onlyOwner { sellTotalFees = _sellTotalFees; require(sellTotalFees <= 20, "Must keep fees at 20% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(!bots[from] && !bots[to]); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if (blockStart == block.number) { revert("Bundle Protection"); } else if (block.number < blockStart + 2) { require(tx.gasprice.sub(block.basefee) <= copyWei, "Dont Waste Gas"); } if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { if (block.number <= blockStart + 10) { revert("Selling is disabled for 11 blocks"); } } if (!swapping && antiMevBot){ if (block.number > blockStart + 10) { if (currentBlock == block.number) { blockTxCount++; require (blockTxCount <= 2, "Only 2 tx's allowed per block"); } else { currentBlock = block.number; blockTxCount = 1; } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } 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 swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); (success, ) = address(devWallet).call{value: ethBalance}(""); } function addBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBots(address[] memory notbot) public onlyOwner { for (uint i = 0; i < notbot.length; i++) { bots[notbot[i]] = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "IERC20.sol"; import "IERC20Metadata.sol"; import "Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 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; } } }
{ "evmVersion": "london", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "Token_speedV2.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","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":[],"name":"antiMevBot","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":"","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":[],"name":"blockStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"copyWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateAntiMevBotEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTotalFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526010805465ffffffff00001916650101000100001790553480156200002857600080fd5b5060408051808201825260058082526414d411515160da1b602080840182905284518086019095529184529083015290600362000066838262000607565b50600462000075828262000607565b505050620000926200008c620002f160201b60201c565b620002f5565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000b481600162000347565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001259190620006d3565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000173573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001999190620006d3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020d9190620006d3565b6001600160a01b031660a08190526200022890600162000347565b60a051620002389060016200037c565b6014600a819055600b556a108b2a2c2802909400000060078190556009556b033b2e3c9fd0803ce80000006200027060328262000705565b600855600680546001600160a01b03191633179055620002a46200029c6005546001600160a01b031690565b6001620003d0565b620002b1306001620003d0565b620002d0620002c86005546001600160a01b031690565b600162000347565b620002dd30600162000347565b620002e9338262000439565b505062000750565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200035162000500565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620003da62000500565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004a9919062000728565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200055c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200048c565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200058e57607f821691505b602082108103620005af57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055e57600081815260208120601f850160051c81016020861015620005de5750805b601f850160051c820191505b81811015620005ff57828155600101620005ea565b505050505050565b81516001600160401b0381111562000623576200062362000563565b6200063b8162000634845462000579565b84620005b5565b602080601f8311600181146200067357600084156200065a5750858301515b600019600386901b1c1916600185901b178555620005ff565b600085815260208120601f198616915b82811015620006a45788860151825594840194600190910190840162000683565b5085821015620006c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006e657600080fd5b81516001600160a01b0381168114620006fe57600080fd5b9392505050565b6000826200072357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200074a57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611fd3620007996000396000818161041e015261116c01526000818161031f0152818161112e01528181611a3e01528181611af70152611b330152611fd36000f3fe6080604052600436106102765760003560e01c80638da5cb5b1161014f578063c0246668116100c1578063e12ed13c1161007a578063e12ed13c14610781578063e2f4560514610797578063e884f260146107ad578063eba4c333146107c2578063f2fde38b146107e2578063f8b45b051461080257600080fd5b8063c0246668146106d2578063c876d0b9146106f2578063c8c8ebe414610715578063d34628cc1461072b578063d85ba0631461074b578063dd62ed3e1461076157600080fd5b806397faffca1161011357806397faffca146106155780639d2ab3b91461062b578063a457c2d714610641578063a9059cbb14610661578063b62496f514610681578063bbc0c742146106b157600080fd5b80638da5cb5b146105835780638ea5220f146105a1578063924de9b7146105c157806393009eeb146105e157806395d89b411461060057600080fd5b80634a62bb65116101e8578063715018a6116101ac578063715018a6146104ee57806371fc468814610503578063751039fc146105235780637571336a146105385780637b2feaaa146105585780638a8c523c1461056e57600080fd5b80634a62bb65146104405780634ce9746e146104605780636a486a8e146104805780636ddd17131461049657806370a08231146104b857600080fd5b806323b872dd1161023a57806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806331c2d847146103ca57806339509351146103ec57806349bd5a5e1461040c57600080fd5b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102dd5780631694505e1461030d57806318160ddd1461035957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610818565b6040516102a49190611ba7565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004611c1a565b6108aa565b60405190151581526020016102a4565b3480156102e957600080fd5b506102cd6102f8366004611c46565b60126020526000908152604090205460ff1681565b34801561031957600080fd5b506103417f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a4565b34801561036557600080fd5b506002545b6040519081526020016102a4565b34801561038457600080fd5b506102cd610393366004611c63565b6108c4565b3480156103a457600080fd5b5061034161dead81565b3480156103ba57600080fd5b50604051601281526020016102a4565b3480156103d657600080fd5b506103ea6103e5366004611cba565b6108e8565b005b3480156103f857600080fd5b506102cd610407366004611c1a565b61095c565b34801561041857600080fd5b506103417f000000000000000000000000000000000000000000000000000000000000000081565b34801561044c57600080fd5b506010546102cd9062010000900460ff1681565b34801561046c57600080fd5b506103ea61047b366004611d8f565b61097e565b34801561048c57600080fd5b5061036a600b5481565b3480156104a257600080fd5b506010546102cd90640100000000900460ff1681565b3480156104c457600080fd5b5061036a6104d3366004611c46565b6001600160a01b031660009081526020819052604090205490565b3480156104fa57600080fd5b506103ea6109a0565b34801561050f57600080fd5b506103ea61051e366004611daa565b6109b4565b34801561052f57600080fd5b506102cd610a1a565b34801561054457600080fd5b506103ea610553366004611dc3565b610a36565b34801561056457600080fd5b5061036a600c5481565b34801561057a57600080fd5b506103ea610a69565b34801561058f57600080fd5b506005546001600160a01b0316610341565b3480156105ad57600080fd5b50600654610341906001600160a01b031681565b3480156105cd57600080fd5b506103ea6105dc366004611d8f565b610aa8565b3480156105ed57600080fd5b506010546102cd90610100900460ff1681565b34801561060c57600080fd5b50610297610ad0565b34801561062157600080fd5b5061036a600e5481565b34801561063757600080fd5b5061036a600d5481565b34801561064d57600080fd5b506102cd61065c366004611c1a565b610adf565b34801561066d57600080fd5b506102cd61067c366004611c1a565b610b5a565b34801561068d57600080fd5b506102cd61069c366004611c46565b60156020526000908152604090205460ff1681565b3480156106bd57600080fd5b506010546102cd906301000000900460ff1681565b3480156106de57600080fd5b506103ea6106ed366004611dc3565b610b68565b3480156106fe57600080fd5b506010546102cd9065010000000000900460ff1681565b34801561072157600080fd5b5061036a60075481565b34801561073757600080fd5b506103ea610746366004611cba565b610bcf565b34801561075757600080fd5b5061036a600a5481565b34801561076d57600080fd5b5061036a61077c366004611df8565b610c3f565b34801561078d57600080fd5b5061036a600f5481565b3480156107a357600080fd5b5061036a60085481565b3480156107b957600080fd5b506102cd610c6a565b3480156107ce57600080fd5b506103ea6107dd366004611daa565b610c89565b3480156107ee57600080fd5b506103ea6107fd366004611c46565b610ce7565b34801561080e57600080fd5b5061036a60095481565b60606003805461082790611e31565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611e31565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b6000336108b8818585610d5d565b60019150505b92915050565b6000336108d2858285610e81565b6108dd858585610efb565b506001949350505050565b6108f06116cc565b60005b81518110156109585760006013600084848151811061091457610914611e6b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061095081611e97565b9150506108f3565b5050565b6000336108b881858561096f8383610c3f565b6109799190611eb0565b610d5d565b6109866116cc565b601080549115156101000261ff0019909216919091179055565b6109a86116cc565b6109b26000611726565b565b6109bc6116cc565b600a8190556014811115610a175760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b50565b6000610a246116cc565b506010805462ff000019169055600190565b610a3e6116cc565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610a716116cc565b6010805464ffff000000191664010100000017905543600c55610a943a48611778565b600d556010805461ff001916610100179055565b610ab06116cc565b601080549115156401000000000264ff0000000019909216919091179055565b60606004805461082790611e31565b60003381610aed8286610c3f565b905083811015610b4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a0e565b6108dd8286868403610d5d565b6000336108b8818585610efb565b610b706116cc565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610bd76116cc565b60005b815181101561095857600160136000848481518110610bfb57610bfb611e6b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c3781611e97565b915050610bda565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610c746116cc565b506010805465ff000000000019169055600190565b610c916116cc565b600b8190556014811115610a175760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a0e565b610cef6116cc565b6001600160a01b038116610d545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0e565b610a1781611726565b6001600160a01b038316610dbf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0e565b6001600160a01b038216610e205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a0e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e8d8484610c3f565b90506000198114610ef55781811015610ee85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a0e565b610ef58484848403610d5d565b50505050565b6001600160a01b03831660009081526013602052604090205460ff16158015610f3d57506001600160a01b03821660009081526013602052604090205460ff16155b610f4657600080fd5b80600003610f5f57610f5a8383600061178b565b505050565b60105462010000900460ff161561136f576005546001600160a01b03848116911614801590610f9c57506005546001600160a01b03838116911614155b8015610fb057506001600160a01b03821615155b8015610fbf575060105460ff16155b1561136f576010546301000000900460ff16611059576001600160a01b03831660009081526011602052604090205460ff168061101457506001600160a01b03821660009081526011602052604090205460ff165b6110595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a0e565b43600c540361109e5760405162461bcd60e51b8152602060048201526011602482015270213ab732363290283937ba32b1ba34b7b760791b6044820152606401610a0e565b600c546110ac906002611eb0565b4310156110ff57600d546110c03a48611778565b11156110ff5760405162461bcd60e51b815260206004820152600e60248201526d446f6e742057617374652047617360901b6044820152606401610a0e565b60105465010000000000900460ff161561124f576005546001600160a01b0383811691161480159061116357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156111a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561124f5732600090815260146020526040902054431161123c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a0e565b3260009081526014602052604090204390555b6001600160a01b03831660009081526015602052604090205460ff16801561129057506001600160a01b03821660009081526012602052604090205460ff16155b1561136f576007548111156113055760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a0e565b6009546001600160a01b03831660009081526020819052604090205461132b9083611eb0565b111561136f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0e565b6001600160a01b03821660009081526015602052604090205460ff1680156113b057506001600160a01b03831660009081526012602052604090205460ff16155b1561141b57600c546113c390600a611eb0565b431161141b5760405162461bcd60e51b815260206004820152602160248201527f53656c6c696e672069732064697361626c656420666f7220313120626c6f636b6044820152607360f81b6064820152608401610a0e565b60105460ff161580156114355750601054610100900460ff165b156114cf57600c5461144890600a611eb0565b4311156114cf5743600f54036114c557600e805490600061146883611e97565b91905055506002600e5411156114c05760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c792032207478277320616c6c6f7765642070657220626c6f636b0000006044820152606401610a0e565b6114cf565b43600f556001600e555b30600090815260208190526040902054600854811080159081906114fd5750601054640100000000900460ff165b801561150c575060105460ff16155b801561153157506001600160a01b03851660009081526015602052604090205460ff16155b801561155657506001600160a01b03851660009081526011602052604090205460ff16155b801561157b57506001600160a01b03841660009081526011602052604090205460ff16155b156115a0576010805460ff1916600117905561159561192f565b6010805460ff191690555b6010546001600160a01b03861660009081526011602052604090205460ff918216159116806115e757506001600160a01b03851660009081526011602052604090205460ff165b156115f0575060005b600081156116b8576001600160a01b03861660009081526015602052604090205460ff16801561162257506000600b54115b1561164e576116476064611641600b54886119cf90919063ffffffff16565b906119db565b905061169a565b6001600160a01b03871660009081526015602052604090205460ff16801561167857506000600a54115b1561169a576116976064611641600a54886119cf90919063ffffffff16565b90505b80156116ab576116ab87308361178b565b6116b58186611ec3565b94505b6116c387878761178b565b50505050505050565b6005546001600160a01b031633146109b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a0e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006117848284611ec3565b9392505050565b6001600160a01b0383166117ef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0e565b6001600160a01b0382166118515760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0e565b6001600160a01b038316600090815260208190526040902054818110156118c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a0e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ef5565b306000908152602081905260408120549081810361194b575050565b60085482111561195b5760085491505b8147611966826119e7565b60006119724783611778565b6006546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146119c0576040519150601f19603f3d011682016040523d82523d6000602084013e6119c5565b606091505b5050505050505050565b60006117848284611ed6565b60006117848284611eed565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a1c57611a1c611e6b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abe9190611f0f565b81600181518110611ad157611ad1611e6b565b60200260200101906001600160a01b031690816001600160a01b031681525050611b1c307f000000000000000000000000000000000000000000000000000000000000000084610d5d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b71908590600090869030904290600401611f2c565b600060405180830381600087803b158015611b8b57600080fd5b505af1158015611b9f573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611bd457858101830151858201604001528201611bb8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1757600080fd5b8035611c1581611bf5565b919050565b60008060408385031215611c2d57600080fd5b8235611c3881611bf5565b946020939093013593505050565b600060208284031215611c5857600080fd5b813561178481611bf5565b600080600060608486031215611c7857600080fd5b8335611c8381611bf5565b92506020840135611c9381611bf5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611ccd57600080fd5b823567ffffffffffffffff80821115611ce557600080fd5b818501915085601f830112611cf957600080fd5b813581811115611d0b57611d0b611ca4565b8060051b604051601f19603f83011681018181108582111715611d3057611d30611ca4565b604052918252848201925083810185019188831115611d4e57600080fd5b938501935b82851015611d7357611d6485611c0a565b84529385019392850192611d53565b98975050505050505050565b80358015158114611c1557600080fd5b600060208284031215611da157600080fd5b61178482611d7f565b600060208284031215611dbc57600080fd5b5035919050565b60008060408385031215611dd657600080fd5b8235611de181611bf5565b9150611def60208401611d7f565b90509250929050565b60008060408385031215611e0b57600080fd5b8235611e1681611bf5565b91506020830135611e2681611bf5565b809150509250929050565b600181811c90821680611e4557607f821691505b602082108103611e6557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611ea957611ea9611e81565b5060010190565b808201808211156108be576108be611e81565b818103818111156108be576108be611e81565b80820281158282048414176108be576108be611e81565b600082611f0a57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611f2157600080fd5b815161178481611bf5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f7c5784516001600160a01b031683529383019391830191600101611f57565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220db33cffcd5166ac02ece9af6c52434afca62bb629fd47028b3b18c15faba8e1164736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102765760003560e01c80638da5cb5b1161014f578063c0246668116100c1578063e12ed13c1161007a578063e12ed13c14610781578063e2f4560514610797578063e884f260146107ad578063eba4c333146107c2578063f2fde38b146107e2578063f8b45b051461080257600080fd5b8063c0246668146106d2578063c876d0b9146106f2578063c8c8ebe414610715578063d34628cc1461072b578063d85ba0631461074b578063dd62ed3e1461076157600080fd5b806397faffca1161011357806397faffca146106155780639d2ab3b91461062b578063a457c2d714610641578063a9059cbb14610661578063b62496f514610681578063bbc0c742146106b157600080fd5b80638da5cb5b146105835780638ea5220f146105a1578063924de9b7146105c157806393009eeb146105e157806395d89b411461060057600080fd5b80634a62bb65116101e8578063715018a6116101ac578063715018a6146104ee57806371fc468814610503578063751039fc146105235780637571336a146105385780637b2feaaa146105585780638a8c523c1461056e57600080fd5b80634a62bb65146104405780634ce9746e146104605780636a486a8e146104805780636ddd17131461049657806370a08231146104b857600080fd5b806323b872dd1161023a57806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806331c2d847146103ca57806339509351146103ec57806349bd5a5e1461040c57600080fd5b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102dd5780631694505e1461030d57806318160ddd1461035957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610818565b6040516102a49190611ba7565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004611c1a565b6108aa565b60405190151581526020016102a4565b3480156102e957600080fd5b506102cd6102f8366004611c46565b60126020526000908152604090205460ff1681565b34801561031957600080fd5b506103417f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a4565b34801561036557600080fd5b506002545b6040519081526020016102a4565b34801561038457600080fd5b506102cd610393366004611c63565b6108c4565b3480156103a457600080fd5b5061034161dead81565b3480156103ba57600080fd5b50604051601281526020016102a4565b3480156103d657600080fd5b506103ea6103e5366004611cba565b6108e8565b005b3480156103f857600080fd5b506102cd610407366004611c1a565b61095c565b34801561041857600080fd5b506103417f00000000000000000000000073c32d28c6233cdeec934ba4658d6653092ff36781565b34801561044c57600080fd5b506010546102cd9062010000900460ff1681565b34801561046c57600080fd5b506103ea61047b366004611d8f565b61097e565b34801561048c57600080fd5b5061036a600b5481565b3480156104a257600080fd5b506010546102cd90640100000000900460ff1681565b3480156104c457600080fd5b5061036a6104d3366004611c46565b6001600160a01b031660009081526020819052604090205490565b3480156104fa57600080fd5b506103ea6109a0565b34801561050f57600080fd5b506103ea61051e366004611daa565b6109b4565b34801561052f57600080fd5b506102cd610a1a565b34801561054457600080fd5b506103ea610553366004611dc3565b610a36565b34801561056457600080fd5b5061036a600c5481565b34801561057a57600080fd5b506103ea610a69565b34801561058f57600080fd5b506005546001600160a01b0316610341565b3480156105ad57600080fd5b50600654610341906001600160a01b031681565b3480156105cd57600080fd5b506103ea6105dc366004611d8f565b610aa8565b3480156105ed57600080fd5b506010546102cd90610100900460ff1681565b34801561060c57600080fd5b50610297610ad0565b34801561062157600080fd5b5061036a600e5481565b34801561063757600080fd5b5061036a600d5481565b34801561064d57600080fd5b506102cd61065c366004611c1a565b610adf565b34801561066d57600080fd5b506102cd61067c366004611c1a565b610b5a565b34801561068d57600080fd5b506102cd61069c366004611c46565b60156020526000908152604090205460ff1681565b3480156106bd57600080fd5b506010546102cd906301000000900460ff1681565b3480156106de57600080fd5b506103ea6106ed366004611dc3565b610b68565b3480156106fe57600080fd5b506010546102cd9065010000000000900460ff1681565b34801561072157600080fd5b5061036a60075481565b34801561073757600080fd5b506103ea610746366004611cba565b610bcf565b34801561075757600080fd5b5061036a600a5481565b34801561076d57600080fd5b5061036a61077c366004611df8565b610c3f565b34801561078d57600080fd5b5061036a600f5481565b3480156107a357600080fd5b5061036a60085481565b3480156107b957600080fd5b506102cd610c6a565b3480156107ce57600080fd5b506103ea6107dd366004611daa565b610c89565b3480156107ee57600080fd5b506103ea6107fd366004611c46565b610ce7565b34801561080e57600080fd5b5061036a60095481565b60606003805461082790611e31565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611e31565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b6000336108b8818585610d5d565b60019150505b92915050565b6000336108d2858285610e81565b6108dd858585610efb565b506001949350505050565b6108f06116cc565b60005b81518110156109585760006013600084848151811061091457610914611e6b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061095081611e97565b9150506108f3565b5050565b6000336108b881858561096f8383610c3f565b6109799190611eb0565b610d5d565b6109866116cc565b601080549115156101000261ff0019909216919091179055565b6109a86116cc565b6109b26000611726565b565b6109bc6116cc565b600a8190556014811115610a175760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b50565b6000610a246116cc565b506010805462ff000019169055600190565b610a3e6116cc565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610a716116cc565b6010805464ffff000000191664010100000017905543600c55610a943a48611778565b600d556010805461ff001916610100179055565b610ab06116cc565b601080549115156401000000000264ff0000000019909216919091179055565b60606004805461082790611e31565b60003381610aed8286610c3f565b905083811015610b4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a0e565b6108dd8286868403610d5d565b6000336108b8818585610efb565b610b706116cc565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610bd76116cc565b60005b815181101561095857600160136000848481518110610bfb57610bfb611e6b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c3781611e97565b915050610bda565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610c746116cc565b506010805465ff000000000019169055600190565b610c916116cc565b600b8190556014811115610a175760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a0e565b610cef6116cc565b6001600160a01b038116610d545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0e565b610a1781611726565b6001600160a01b038316610dbf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0e565b6001600160a01b038216610e205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a0e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e8d8484610c3f565b90506000198114610ef55781811015610ee85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a0e565b610ef58484848403610d5d565b50505050565b6001600160a01b03831660009081526013602052604090205460ff16158015610f3d57506001600160a01b03821660009081526013602052604090205460ff16155b610f4657600080fd5b80600003610f5f57610f5a8383600061178b565b505050565b60105462010000900460ff161561136f576005546001600160a01b03848116911614801590610f9c57506005546001600160a01b03838116911614155b8015610fb057506001600160a01b03821615155b8015610fbf575060105460ff16155b1561136f576010546301000000900460ff16611059576001600160a01b03831660009081526011602052604090205460ff168061101457506001600160a01b03821660009081526011602052604090205460ff165b6110595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a0e565b43600c540361109e5760405162461bcd60e51b8152602060048201526011602482015270213ab732363290283937ba32b1ba34b7b760791b6044820152606401610a0e565b600c546110ac906002611eb0565b4310156110ff57600d546110c03a48611778565b11156110ff5760405162461bcd60e51b815260206004820152600e60248201526d446f6e742057617374652047617360901b6044820152606401610a0e565b60105465010000000000900460ff161561124f576005546001600160a01b0383811691161480159061116357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156111a157507f00000000000000000000000073c32d28c6233cdeec934ba4658d6653092ff3676001600160a01b0316826001600160a01b031614155b1561124f5732600090815260146020526040902054431161123c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a0e565b3260009081526014602052604090204390555b6001600160a01b03831660009081526015602052604090205460ff16801561129057506001600160a01b03821660009081526012602052604090205460ff16155b1561136f576007548111156113055760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a0e565b6009546001600160a01b03831660009081526020819052604090205461132b9083611eb0565b111561136f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0e565b6001600160a01b03821660009081526015602052604090205460ff1680156113b057506001600160a01b03831660009081526012602052604090205460ff16155b1561141b57600c546113c390600a611eb0565b431161141b5760405162461bcd60e51b815260206004820152602160248201527f53656c6c696e672069732064697361626c656420666f7220313120626c6f636b6044820152607360f81b6064820152608401610a0e565b60105460ff161580156114355750601054610100900460ff165b156114cf57600c5461144890600a611eb0565b4311156114cf5743600f54036114c557600e805490600061146883611e97565b91905055506002600e5411156114c05760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c792032207478277320616c6c6f7765642070657220626c6f636b0000006044820152606401610a0e565b6114cf565b43600f556001600e555b30600090815260208190526040902054600854811080159081906114fd5750601054640100000000900460ff165b801561150c575060105460ff16155b801561153157506001600160a01b03851660009081526015602052604090205460ff16155b801561155657506001600160a01b03851660009081526011602052604090205460ff16155b801561157b57506001600160a01b03841660009081526011602052604090205460ff16155b156115a0576010805460ff1916600117905561159561192f565b6010805460ff191690555b6010546001600160a01b03861660009081526011602052604090205460ff918216159116806115e757506001600160a01b03851660009081526011602052604090205460ff165b156115f0575060005b600081156116b8576001600160a01b03861660009081526015602052604090205460ff16801561162257506000600b54115b1561164e576116476064611641600b54886119cf90919063ffffffff16565b906119db565b905061169a565b6001600160a01b03871660009081526015602052604090205460ff16801561167857506000600a54115b1561169a576116976064611641600a54886119cf90919063ffffffff16565b90505b80156116ab576116ab87308361178b565b6116b58186611ec3565b94505b6116c387878761178b565b50505050505050565b6005546001600160a01b031633146109b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a0e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006117848284611ec3565b9392505050565b6001600160a01b0383166117ef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0e565b6001600160a01b0382166118515760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0e565b6001600160a01b038316600090815260208190526040902054818110156118c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a0e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ef5565b306000908152602081905260408120549081810361194b575050565b60085482111561195b5760085491505b8147611966826119e7565b60006119724783611778565b6006546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146119c0576040519150601f19603f3d011682016040523d82523d6000602084013e6119c5565b606091505b5050505050505050565b60006117848284611ed6565b60006117848284611eed565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a1c57611a1c611e6b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abe9190611f0f565b81600181518110611ad157611ad1611e6b565b60200260200101906001600160a01b031690816001600160a01b031681525050611b1c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d5d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b71908590600090869030904290600401611f2c565b600060405180830381600087803b158015611b8b57600080fd5b505af1158015611b9f573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611bd457858101830151858201604001528201611bb8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1757600080fd5b8035611c1581611bf5565b919050565b60008060408385031215611c2d57600080fd5b8235611c3881611bf5565b946020939093013593505050565b600060208284031215611c5857600080fd5b813561178481611bf5565b600080600060608486031215611c7857600080fd5b8335611c8381611bf5565b92506020840135611c9381611bf5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611ccd57600080fd5b823567ffffffffffffffff80821115611ce557600080fd5b818501915085601f830112611cf957600080fd5b813581811115611d0b57611d0b611ca4565b8060051b604051601f19603f83011681018181108582111715611d3057611d30611ca4565b604052918252848201925083810185019188831115611d4e57600080fd5b938501935b82851015611d7357611d6485611c0a565b84529385019392850192611d53565b98975050505050505050565b80358015158114611c1557600080fd5b600060208284031215611da157600080fd5b61178482611d7f565b600060208284031215611dbc57600080fd5b5035919050565b60008060408385031215611dd657600080fd5b8235611de181611bf5565b9150611def60208401611d7f565b90509250929050565b60008060408385031215611e0b57600080fd5b8235611e1681611bf5565b91506020830135611e2681611bf5565b809150509250929050565b600181811c90821680611e4557607f821691505b602082108103611e6557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611ea957611ea9611e81565b5060010190565b808201808211156108be576108be611e81565b818103818111156108be576108be611e81565b80820281158282048414176108be576108be611e81565b600082611f0a57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611f2157600080fd5b815161178481611bf5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f7c5784516001600160a01b031683529383019391830191600101611f57565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220db33cffcd5166ac02ece9af6c52434afca62bb629fd47028b3b18c15faba8e1164736f6c63430008140033
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.