ERC-20
Overview
Max Total Supply
454,616,167.354514835 JUMP
Holders
1,140
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 JUMPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ,---, ,---._ ____ ,-.----. ,`--.' | .-- -.' \ ,' , `.\ / \ | : : | | : ,--, ,-+-,.' _ || : \ ' ' ; : ; | ,'_ /| ,-+-. ; , ||| | .\ :| | | : | .--. | | : ,--.'|' | ;|. : |: |' : ; | : :,'_ /| : . | | | ,', | ':| | \ :| | ' : | ' | | . . | | / | | ||| : . /' : | | ; || | ' | | | ' | : | : |,; | |`-' ; | ; ___ l : | | : ' ; ; . | ; |--' | | ; `---'. | / /\ J :| ; ' | | ' | : | | , : ' | `--..`; / ../ `..- ,: | : ; ; | | : ' |/ : : : .--,_ \ \ ; ' : `--' \; | |`-' | | : | |`. \ \ ,' : , .-./| ;/ `---'.| `-- -`, ; "---....--' `--`----' '---' `---` '---`" (Website) https://jump.farm (Telegram) https://t.me/jumpportal (Twitter) https://twitter.com/jumpfarm */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; pragma experimental ABIEncoderV2; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IWETH { function deposit() external payable; function withdraw(uint) external; } contract Token is ERC20, Ownable { /// STATE VARIABLES /// /// @notice Address of UniswapV2Router IUniswapV2Router02 public immutable uniswapV2Router; /// @notice Address of /ETH LP address public immutable uniswapV2Pair; /// @notice Burn address address public constant deadAddress = address(0xdead); /// @notice WETH address address public immutable WETH; /// @notice treasury address public treasury; /// @notice Team wallet address address public teamWallet; bool private swapping; /// @notice Bool if trading is active bool public tradingActive = true; /// @notice Bool if swap is enabled bool public swapEnabled = true; /// @notice Bool if limits are in effect bool public limitsInEffect = true; /// @notice Current max wallet amount (If limits in effect) uint256 public maxWallet; /// @notice Current max transaction amount (If limits in effect) uint256 public maxTransactionAmount; /// @notice Current percent of supply to swap tokens at (i.e. 5 = 0.05%) uint256 public swapPercent; /// @notice Current buy side total fees uint256 public buyTotalFees; /// @notice Current buy side backing fee uint256 public buyBackingFee; /// @notice Current buy side liquidity fee uint256 public buyLiquidityFee; /// @notice Current buy side team fee uint256 public buyTeamFee; /// @notice Current sell side total fees uint256 public sellTotalFees; /// @notice Current sell side backing fee uint256 public sellBackingFee; /// @notice Current sell side liquidity fee uint256 public sellLiquidityFee; /// @notice Current sell side team fee uint256 public sellTeamFee; /// @notice Current tokens going for backing uint256 public tokensForBacking; /// @notice Current tokens going for liquidity uint256 public tokensForLiquidity; /// @notice Current tokens going for tean uint256 public tokensForTeam; /// MAPPINGS /// /// @dev Bool if address is excluded from fees mapping(address => bool) private _isExcludedFromFees; /// @notice Bool if address is excluded from max transaction amount mapping(address => bool) public _isExcludedMaxTransactionAmount; /// @notice Bool if address is AMM pair mapping(address => bool) public automatedMarketMakerPairs; /// EVENTS /// event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); /// CONSTRUCTOR /// /// @param _weth Address of WETH constructor(address _weth) ERC20("JUMP Token", "JUMP") { WETH = _weth; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uint256 startingSupply_ = 1_000_000 * 10 ** 9; uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyBackingFee = 1; uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 2; uint256 _sellBackingFee = 1; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 2; maxWallet = 10_000 * 1e9; // 1% maxTransactionAmount = 10_000 * 1e9; // 1% swapPercent = 25; // 0.25% buyBackingFee = _buyBackingFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee; sellBackingFee = _sellBackingFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee; teamWallet = owner(); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(msg.sender, startingSupply_); } receive() external payable {} /// AMM PAIR /// /// @notice Sets if address is AMM pair /// @param pair Address of pair /// @param value Bool if AMM pair function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } /// @dev Internal function to set `vlaue` of `pair` function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /// INTERNAL TRANSFER /// /// @dev Internal function to burn `amount` from `account` function _burnFrom(address account, uint256 amount) internal { uint256 decreasedAllowance_ = allowance(account, msg.sender) - amount; _approve(account, msg.sender, decreasedAllowance_); _burn(account, amount); } /// @dev Internal function to transfer - handles fee logic 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"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } 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 any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForBacking += (fees * sellBackingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForBacking += (fees * buyBackingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } /// INTERNAL FUNCTION /// /// @dev INTERNAL function to swap `tokenAmount` for ETH /// @dev Invoked in `swapBack()` function swapTokensForEth(uint256 tokenAmount) internal { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } /// @dev INTERNAL function to add `tokenAmount` and `ethAmount` to LP /// @dev Invoked in `swapBack()` function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable treasury, block.timestamp ); } /// @dev INTERNAL function to transfer fees properly /// @dev Invoked in `_transfer()` function swapBack() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForBacking + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount() * 20) { contractBalance = swapTokensAtAmount() * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance - liquidityTokens; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForBacking = (ethBalance * tokensForBacking) / totalTokensToSwap - (tokensForLiquidity / 2); uint256 ethForTeam = (ethBalance * tokensForTeam) / totalTokensToSwap - (tokensForLiquidity / 2); uint256 ethForLiquidity = ethBalance - ethForBacking - ethForTeam; tokensForLiquidity = 0; tokensForBacking = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } uint256 _balance = address(this).balance; IWETH(WETH).deposit{value: _balance}(); IERC20(WETH).transfer(treasury, _balance); } /// VIEW FUNCTION /// /// @notice Returns decimals function decimals() public view virtual override returns (uint8) { return 9; } /// @notice Returns if address is excluded from fees function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } /// @notice Returns at what percent of supply to swap tokens at function swapTokensAtAmount() public view returns (uint256 amount_) { amount_ = (totalSupply() * swapPercent) / 10000; } /// TREASURY FUNCTION /// /// @notice Mint (Only by treasury) /// @param account Address to mint to /// @param amount Amount to mint function mint(address account, uint256 amount) external { require(msg.sender == treasury, "msg.sender not treasury"); _mint(account, amount); } /// USER FUNCTIONS /// /// @notice Burn /// @param account Address to burn from /// @param amount Amount to to burn function burnFrom(address account, uint256 amount) external { _burnFrom(account, amount); } /// @notice Burn /// @param amount Amount to to burn function burn(uint256 amount) external { _burn(msg.sender, amount); } /// OWNER FUNCTIONS /// /// @notice Set address of treasury function setTreasury(address _treasury) external onlyOwner { treasury = _treasury; excludeFromFees(_treasury, true); excludeFromMaxTransaction(_treasury, true); } /// @notice Enable trading - once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } /// @notice Update percent of supply to swap tokens at function updateSwapTokensAtPercent( uint256 newPercent ) external onlyOwner returns (bool) { require( newPercent >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require( newPercent <= 50, "Swap amount cannot be higher than 0.50% total supply." ); swapPercent = newPercent; return true; } /// @notice Update swap enabled /// @dev Only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } /// @notice Update buy side fees function updateBuyFees( uint256 _backingFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyBackingFee = _backingFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee; } /// @notice Update sell side fees function updateSellFees( uint256 _backingFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellBackingFee = _backingFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee; } /// @notice Set if an address is excluded from fees function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @notice Set if an address is excluded from max transaction function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } /// @notice Update team wallet function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; excludeFromFees(newWallet, true); excludeFromMaxTransaction(newWallet, true); } /// @notice Remove limits in palce function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } /// @notice Withdraw stuck tokens from contract function withdrawStuck() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } /// @notice Withdraw stuck token from contract function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } /// @notice Withdraw stuck ETH from contract function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"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":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"sellBackingFee","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":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBacking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"updateSwapTokensAtPercent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040526007805462ffffff60a81b19166201010160a81b1790553480156200002857600080fd5b5060405162003650380380620036508339810160408190526200004b916200062a565b6040518060400160405280600a815260200169252aa6a8102a37b5b2b760b11b8152506040518060400160405280600481526020016304a554d560e41b81525081600390816200009c919062000700565b506004620000ab828262000700565b505050620000c8620000c26200037260201b60201c565b62000376565b6001600160a01b03811660c052737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905166038d7ea4c6800091839163c45a0155916004808201926020929091908290030181865afa15801562000136573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015c91906200062a565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d091906200062a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024491906200062a565b6001600160a01b031660a08190526200025f906001620003c8565b6509184e72a00060088190556009556019600a556001600c8190556000600d8190556002600e81905582828280620002988385620007cc565b620002a49190620007cc565b600b5560108390556011829055601281905580620002c38385620007cc565b620002cf9190620007cc565b600f55600554600780546001600160a01b0319166001600160a01b039092169182179055620003009060016200041c565b6200030d3060016200041c565b6200031c61dead60016200041c565b6200033b620003336005546001600160a01b031690565b6001620004ca565b62000348306001620004ca565b6200035761dead6001620004ca565b62000363338862000540565b505050505050505050620007f4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200046b5760405162461bcd60e51b815260206004820181905260248201526000805160206200363083398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314620005155760405162461bcd60e51b8152602060048201819052602482015260008051602062003630833981519152604482015260640162000462565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216620005985760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000462565b8060026000828254620005ac9190620007cc565b90915550506001600160a01b03821660009081526020819052604081208054839290620005db908490620007cc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200063d57600080fd5b81516001600160a01b03811681146200065557600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200068757607f821691505b602082108103620006a857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062557600081815260208120601f850160051c81016020861015620006d75750805b601f850160051c820191505b81811015620006f857828155600101620006e3565b505050505050565b81516001600160401b038111156200071c576200071c6200065c565b62000734816200072d845462000672565b84620006ae565b602080601f8311600181146200076c5760008415620007535750858301515b600019600386901b1c1916600185901b178555620006f8565b600085815260208120601f198616915b828110156200079d578886015182559484019460019091019084016200077c565b5085821015620007bc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620007ee57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c051612dd46200085c6000396000818161089d015281816125a00152612638015260008181610563015261111701526000818161042e01528181612710015281816127c9015281816128050152818161287f01526128e70152612dd46000f3fe6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a79578063f637434214610a99578063f8b45b0514610aaf578063fde83a3414610ac557600080fd5b8063dd62ed3e146109e8578063e2f4560514610a2e578063f0f4426014610a43578063f11a24d314610a6357600080fd5b8063c17b5b8c116100dc578063c17b5b8c14610986578063c8c8ebe4146109a6578063d729715f146109bc578063d85ba063146109d257600080fd5b8063bc205ad314610930578063be1512f314610950578063c02466681461096657600080fd5b80639c2e4ac61161016f578063ad5c464811610149578063ad5c46481461088b578063b62496f5146108bf578063ba22abc3146108ef578063bbc0c7421461090f57600080fd5b80639c2e4ac614610835578063a457c2d71461084b578063a9059cbb1461086b57600080fd5b80638da5cb5b116101ab5780638da5cb5b146107c2578063924de9b7146107e057806395d89b41146108005780639a7a23d61461081557600080fd5b80637f6bf20a146107775780638095d5641461078d5780638a8c523c146107ad57600080fd5b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a146106f757806379cc6790146107175780637ca8448a146107375780637cb332bb1461075757600080fd5b80636f33037f1461068157806370a0823114610697578063715018a6146106cd578063751039fc146106e257600080fd5b806361d027b31161029057806361d027b31461061557806367a1bd55146106355780636a486a8e1461064a5780636ddd17131461066057600080fd5b80634ac1126a146105a65780634fbee193146105bc57806359927044146105f557600080fd5b806327c8f8351161032357806340c10f19116102fd57806340c10f191461050f57806342966c681461053157806349bd5a5e146105515780634a62bb651461058557600080fd5b806327c8f835146104bd578063313ce567146104d357806339509351146104ef57600080fd5b80631694505e1161035f5780631694505e1461041c57806318160ddd146104685780631a8145bb1461048757806323b872dd1461049d57600080fd5b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610adb565b6040516103b3919061295f565b60405180910390f35b3480156103c857600080fd5b506103dc6103d73660046129c2565b610b6d565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc6104073660046129ee565b60176020526000908152604090205460ff1681565b34801561042857600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b3565b34801561047457600080fd5b506002545b6040519081526020016103b3565b34801561049357600080fd5b5061047960145481565b3480156104a957600080fd5b506103dc6104b8366004612a12565b610b84565b3480156104c957600080fd5b5061045061dead81565b3480156104df57600080fd5b50604051600981526020016103b3565b3480156104fb57600080fd5b506103dc61050a3660046129c2565b610c33565b34801561051b57600080fd5b5061052f61052a3660046129c2565b610c6f565b005b34801561053d57600080fd5b5061052f61054c366004612a53565b610cd7565b34801561055d57600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b34801561059157600080fd5b506007546103dc90600160b81b900460ff1681565b3480156105b257600080fd5b50610479600a5481565b3480156105c857600080fd5b506103dc6105d73660046129ee565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561060157600080fd5b50600754610450906001600160a01b031681565b34801561062157600080fd5b50600654610450906001600160a01b031681565b34801561064157600080fd5b5061052f610ce4565b34801561065657600080fd5b50610479600f5481565b34801561066c57600080fd5b506007546103dc90600160b01b900460ff1681565b34801561068d57600080fd5b5061047960105481565b3480156106a357600080fd5b506104796106b23660046129ee565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061052f610e08565b3480156106ee57600080fd5b506103dc610e3e565b34801561070357600080fd5b5061052f610712366004612a7a565b610e7e565b34801561072357600080fd5b5061052f6107323660046129c2565b610ed3565b34801561074357600080fd5b5061052f6107523660046129ee565b610edd565b34801561076357600080fd5b5061052f6107723660046129ee565b610f67565b34801561078357600080fd5b5061047960135481565b34801561079957600080fd5b5061052f6107a8366004612ab3565b610ffd565b3480156107b957600080fd5b5061052f611053565b3480156107ce57600080fd5b506005546001600160a01b0316610450565b3480156107ec57600080fd5b5061052f6107fb366004612adf565b611094565b34801561080c57600080fd5b506103a66110dc565b34801561082157600080fd5b5061052f610830366004612a7a565b6110eb565b34801561084157600080fd5b50610479600e5481565b34801561085757600080fd5b506103dc6108663660046129c2565b6111c6565b34801561087757600080fd5b506103dc6108863660046129c2565b61125f565b34801561089757600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b3480156108cb57600080fd5b506103dc6108da3660046129ee565b60186020526000908152604090205460ff1681565b3480156108fb57600080fd5b506103dc61090a366004612a53565b61126c565b34801561091b57600080fd5b506007546103dc90600160a81b900460ff1681565b34801561093c57600080fd5b5061052f61094b366004612afc565b61137f565b34801561095c57600080fd5b50610479600c5481565b34801561097257600080fd5b5061052f610981366004612a7a565b6114e7565b34801561099257600080fd5b5061052f6109a1366004612ab3565b611570565b3480156109b257600080fd5b5061047960095481565b3480156109c857600080fd5b5061047960125481565b3480156109de57600080fd5b50610479600b5481565b3480156109f457600080fd5b50610479610a03366004612afc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3a57600080fd5b506104796115c6565b348015610a4f57600080fd5b5061052f610a5e3660046129ee565b6115f0565b348015610a6f57600080fd5b50610479600d5481565b348015610a8557600080fd5b5061052f610a943660046129ee565b611640565b348015610aa557600080fd5b5061047960115481565b348015610abb57600080fd5b5061047960085481565b348015610ad157600080fd5b5061047960155481565b606060038054610aea90612b2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690612b2a565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a3384846116d8565b5060015b92915050565b6000610b918484846117fc565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c1b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c2885338584036116d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610c6a908690612b7a565b6116d8565b6006546001600160a01b03163314610cc95760405162461bcd60e51b815260206004820152601760248201527f6d73672e73656e646572206e6f742074726561737572790000000000000000006044820152606401610c12565b610cd38282611f17565b5050565b610ce13382611ff6565b50565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610c1290612b8d565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d709190612bc2565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612bdb565b5060405133904780156108fc02916000818181858888f19350505050158015610cd3573d6000803e3d6000fd5b6005546001600160a01b03163314610e325760405162461bcd60e51b8152600401610c1290612b8d565b610e3c6000612144565b565b6005546000906001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610c1290612b8d565b506007805460ff60b81b19169055600190565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b610cd38282612196565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610c1290612b8d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f54576040519150601f19603f3d011682016040523d82523d6000602084013e610f59565b606091505b5050905080610cd357600080fd5b6005546001600160a01b03163314610f915760405162461bcd60e51b8152600401610c1290612b8d565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b038316179055610ff28160016114e7565b610ce1816001610e7e565b6005546001600160a01b031633146110275760405162461bcd60e51b8152600401610c1290612b8d565b600c839055600d829055600e819055806110418385612b7a565b61104b9190612b7a565b600b55505050565b6005546001600160a01b0316331461107d5760405162461bcd60e51b8152600401610c1290612b8d565b6007805461ffff60a81b191661010160a81b179055565b6005546001600160a01b031633146110be5760405162461bcd60e51b8152600401610c1290612b8d565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610aea90612b2a565b6005546001600160a01b031633146111155760405162461bcd60e51b8152600401610c1290612b8d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111bc5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c12565b610cd382826121dc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c12565b61125533858584036116d8565b5060019392505050565b6000610b7a3384846117fc565b6005546000906001600160a01b031633146112995760405162461bcd60e51b8152600401610c1290612b8d565b60018210156113075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610c12565b60328211156113765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610c12565b50600a55600190565b6005546001600160a01b031633146113a95760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b0382166113ff5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c12565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146a9190612bc2565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156114bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e19190612bdb565b50505050565b6005546001600160a01b031633146115115760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610c1290612b8d565b601083905560118290556012819055806115b48385612b7a565b6115be9190612b7a565b600f55505050565b6000612710600a546115d760025490565b6115e19190612bf8565b6115eb9190612c0f565b905090565b6005546001600160a01b0316331461161a5760405162461bcd60e51b8152600401610c1290612b8d565b600680546001600160a01b0319166001600160a01b038316179055610ff28160016114e7565b6005546001600160a01b0316331461166a5760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b0381166116cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610ce181612144565b6001600160a01b03831661173a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c12565b6001600160a01b03821661179b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c12565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118225760405162461bcd60e51b8152600401610c1290612c31565b6001600160a01b0382166118485760405162461bcd60e51b8152600401610c1290612c76565b806000036118615761185c83836000612230565b505050565b600754600160b81b900460ff1615611be0576005546001600160a01b0384811691161480159061189f57506005546001600160a01b03838116911614155b80156118b357506001600160a01b03821615155b80156118ca57506001600160a01b03821661dead14155b80156118e05750600754600160a01b900460ff16155b15611be057600754600160a81b900460ff1661197a576001600160a01b03831660009081526016602052604090205460ff168061193557506001600160a01b03821660009081526016602052604090205460ff165b61197a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c12565b6001600160a01b03831660009081526018602052604090205460ff1680156119bb57506001600160a01b03821660009081526017602052604090205460ff16155b15611a9f57600954811115611a305760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c12565b6008546001600160a01b038316600090815260208190526040902054611a569083612b7a565b1115611a9a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b611be0565b6001600160a01b03821660009081526018602052604090205460ff168015611ae057506001600160a01b03831660009081526017602052604090205460ff16155b15611b5657600954811115611a9a5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c12565b6001600160a01b03821660009081526017602052604090205460ff16611be0576008546001600160a01b038316600090815260208190526040902054611b9c9083612b7a565b1115611be05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b3060009081526020819052604081205490611bf96115c6565b8210159050808015611c145750600754600160b01b900460ff165b8015611c2a5750600754600160a01b900460ff16155b8015611c4f57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c7457506001600160a01b03851660009081526016602052604090205460ff16155b8015611c9957506001600160a01b03841660009081526016602052604090205460ff16155b15611cc7576007805460ff60a01b1916600160a01b179055611cb9612384565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611d1557506001600160a01b03851660009081526016602052604090205460ff165b15611d1e575060005b60008115611f03576001600160a01b03861660009081526018602052604090205460ff168015611d5057506000600f54115b15611e08576064600f5486611d659190612bf8565b611d6f9190612c0f565b9050600f5460115482611d829190612bf8565b611d8c9190612c0f565b60146000828254611d9d9190612b7a565b9091555050600f54601254611db29083612bf8565b611dbc9190612c0f565b60156000828254611dcd9190612b7a565b9091555050600f54601054611de29083612bf8565b611dec9190612c0f565b60136000828254611dfd9190612b7a565b90915550611ee59050565b6001600160a01b03871660009081526018602052604090205460ff168015611e3257506000600b54115b15611ee5576064600b5486611e479190612bf8565b611e519190612c0f565b9050600b54600d5482611e649190612bf8565b611e6e9190612c0f565b60146000828254611e7f9190612b7a565b9091555050600b54600e54611e949083612bf8565b611e9e9190612c0f565b60156000828254611eaf9190612b7a565b9091555050600b54600c54611ec49083612bf8565b611ece9190612c0f565b60136000828254611edf9190612b7a565b90915550505b8015611ef657611ef6873083612230565b611f008186612cb9565b94505b611f0e878787612230565b50505050505050565b6001600160a01b038216611f6d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c12565b8060026000828254611f7f9190612b7a565b90915550506001600160a01b03821660009081526020819052604081208054839290611fac908490612b7a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166120565760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c12565b6001600160a01b038216600090815260208190526040902054818110156120ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c12565b6001600160a01b03831660009081526020819052604081208383039055600280548492906120f9908490612cb9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526001602090815260408083203384529091528120546121c5908390612cb9565b90506121d28333836116d8565b61185c8383611ff6565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122565760405162461bcd60e51b8152600401610c1290612c31565b6001600160a01b03821661227c5760405162461bcd60e51b8152600401610c1290612c76565b6001600160a01b038316600090815260208190526040902054818110156122f45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c12565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061232b908490612b7a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161237791815260200190565b60405180910390a36114e1565b30600090815260208190526040812054905060006015546013546014546123ab9190612b7a565b6123b59190612b7a565b905060008215806123c4575081155b156123ce57505050565b6123d66115c6565b6123e1906014612bf8565b8311156123fe576123f06115c6565b6123fb906014612bf8565b92505b6000600283601454866124119190612bf8565b61241b9190612c0f565b6124259190612c0f565b905060006124338286612cb9565b90504761243f826126b9565b600061244b8247612cb9565b90506000600260145461245e9190612c0f565b876013548461246d9190612bf8565b6124779190612c0f565b6124819190612cb9565b9050600060026014546124949190612c0f565b88601554856124a39190612bf8565b6124ad9190612c0f565b6124b79190612cb9565b90506000816124c68486612cb9565b6124d09190612cb9565b60006014819055601381905560158190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461252d576040519150601f19603f3d011682016040523d82523d6000602084013e612532565b606091505b509098505086158015906125465750600081115b15612599576125558782612879565b601454604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156125f957600080fd5b505af115801561260d573d6000803e3d6000fd5b505060065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690527f0000000000000000000000000000000000000000000000000000000000000000909116935063a9059cbb925060440190506020604051808303816000875af1158015612687573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ab9190612bdb565b505050505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126ee576126ee612ccc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561276c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127909190612ce2565b816001815181106127a3576127a3612ccc565b60200260200101906001600160a01b031690816001600160a01b0316815250506127ee307f0000000000000000000000000000000000000000000000000000000000000000846116d8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612843908590600090869030904290600401612cff565b600060405180830381600087803b15801561285d57600080fd5b505af1158015612871573d6000803e3d6000fd5b505050505050565b6128a4307f0000000000000000000000000000000000000000000000000000000000000000846116d8565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612933573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129589190612d70565b5050505050565b600060208083528351808285015260005b8181101561298c57858101830151858201604001528201612970565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce157600080fd5b600080604083850312156129d557600080fd5b82356129e0816129ad565b946020939093013593505050565b600060208284031215612a0057600080fd5b8135612a0b816129ad565b9392505050565b600080600060608486031215612a2757600080fd5b8335612a32816129ad565b92506020840135612a42816129ad565b929592945050506040919091013590565b600060208284031215612a6557600080fd5b5035919050565b8015158114610ce157600080fd5b60008060408385031215612a8d57600080fd5b8235612a98816129ad565b91506020830135612aa881612a6c565b809150509250929050565b600080600060608486031215612ac857600080fd5b505081359360208301359350604090920135919050565b600060208284031215612af157600080fd5b8135612a0b81612a6c565b60008060408385031215612b0f57600080fd5b8235612b1a816129ad565b91506020830135612aa8816129ad565b600181811c90821680612b3e57607f821691505b602082108103612b5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7e57610b7e612b64565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612bd457600080fd5b5051919050565b600060208284031215612bed57600080fd5b8151612a0b81612a6c565b8082028115828204841417610b7e57610b7e612b64565b600082612c2c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7e57610b7e612b64565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cf457600080fd5b8151612a0b816129ad565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d4f5784516001600160a01b031683529383019391830191600101612d2a565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612d8557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212206abdf87a02b971c7581a57871423c852c5b039ce9b70e820365d647d3050413464736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a79578063f637434214610a99578063f8b45b0514610aaf578063fde83a3414610ac557600080fd5b8063dd62ed3e146109e8578063e2f4560514610a2e578063f0f4426014610a43578063f11a24d314610a6357600080fd5b8063c17b5b8c116100dc578063c17b5b8c14610986578063c8c8ebe4146109a6578063d729715f146109bc578063d85ba063146109d257600080fd5b8063bc205ad314610930578063be1512f314610950578063c02466681461096657600080fd5b80639c2e4ac61161016f578063ad5c464811610149578063ad5c46481461088b578063b62496f5146108bf578063ba22abc3146108ef578063bbc0c7421461090f57600080fd5b80639c2e4ac614610835578063a457c2d71461084b578063a9059cbb1461086b57600080fd5b80638da5cb5b116101ab5780638da5cb5b146107c2578063924de9b7146107e057806395d89b41146108005780639a7a23d61461081557600080fd5b80637f6bf20a146107775780638095d5641461078d5780638a8c523c146107ad57600080fd5b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a146106f757806379cc6790146107175780637ca8448a146107375780637cb332bb1461075757600080fd5b80636f33037f1461068157806370a0823114610697578063715018a6146106cd578063751039fc146106e257600080fd5b806361d027b31161029057806361d027b31461061557806367a1bd55146106355780636a486a8e1461064a5780636ddd17131461066057600080fd5b80634ac1126a146105a65780634fbee193146105bc57806359927044146105f557600080fd5b806327c8f8351161032357806340c10f19116102fd57806340c10f191461050f57806342966c681461053157806349bd5a5e146105515780634a62bb651461058557600080fd5b806327c8f835146104bd578063313ce567146104d357806339509351146104ef57600080fd5b80631694505e1161035f5780631694505e1461041c57806318160ddd146104685780631a8145bb1461048757806323b872dd1461049d57600080fd5b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610adb565b6040516103b3919061295f565b60405180910390f35b3480156103c857600080fd5b506103dc6103d73660046129c2565b610b6d565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc6104073660046129ee565b60176020526000908152604090205460ff1681565b34801561042857600080fd5b506104507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b3565b34801561047457600080fd5b506002545b6040519081526020016103b3565b34801561049357600080fd5b5061047960145481565b3480156104a957600080fd5b506103dc6104b8366004612a12565b610b84565b3480156104c957600080fd5b5061045061dead81565b3480156104df57600080fd5b50604051600981526020016103b3565b3480156104fb57600080fd5b506103dc61050a3660046129c2565b610c33565b34801561051b57600080fd5b5061052f61052a3660046129c2565b610c6f565b005b34801561053d57600080fd5b5061052f61054c366004612a53565b610cd7565b34801561055d57600080fd5b506104507f00000000000000000000000020746fde9ae1b7bbd3dbaddae3c9244a27bd2b0681565b34801561059157600080fd5b506007546103dc90600160b81b900460ff1681565b3480156105b257600080fd5b50610479600a5481565b3480156105c857600080fd5b506103dc6105d73660046129ee565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561060157600080fd5b50600754610450906001600160a01b031681565b34801561062157600080fd5b50600654610450906001600160a01b031681565b34801561064157600080fd5b5061052f610ce4565b34801561065657600080fd5b50610479600f5481565b34801561066c57600080fd5b506007546103dc90600160b01b900460ff1681565b34801561068d57600080fd5b5061047960105481565b3480156106a357600080fd5b506104796106b23660046129ee565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061052f610e08565b3480156106ee57600080fd5b506103dc610e3e565b34801561070357600080fd5b5061052f610712366004612a7a565b610e7e565b34801561072357600080fd5b5061052f6107323660046129c2565b610ed3565b34801561074357600080fd5b5061052f6107523660046129ee565b610edd565b34801561076357600080fd5b5061052f6107723660046129ee565b610f67565b34801561078357600080fd5b5061047960135481565b34801561079957600080fd5b5061052f6107a8366004612ab3565b610ffd565b3480156107b957600080fd5b5061052f611053565b3480156107ce57600080fd5b506005546001600160a01b0316610450565b3480156107ec57600080fd5b5061052f6107fb366004612adf565b611094565b34801561080c57600080fd5b506103a66110dc565b34801561082157600080fd5b5061052f610830366004612a7a565b6110eb565b34801561084157600080fd5b50610479600e5481565b34801561085757600080fd5b506103dc6108663660046129c2565b6111c6565b34801561087757600080fd5b506103dc6108863660046129c2565b61125f565b34801561089757600080fd5b506104507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156108cb57600080fd5b506103dc6108da3660046129ee565b60186020526000908152604090205460ff1681565b3480156108fb57600080fd5b506103dc61090a366004612a53565b61126c565b34801561091b57600080fd5b506007546103dc90600160a81b900460ff1681565b34801561093c57600080fd5b5061052f61094b366004612afc565b61137f565b34801561095c57600080fd5b50610479600c5481565b34801561097257600080fd5b5061052f610981366004612a7a565b6114e7565b34801561099257600080fd5b5061052f6109a1366004612ab3565b611570565b3480156109b257600080fd5b5061047960095481565b3480156109c857600080fd5b5061047960125481565b3480156109de57600080fd5b50610479600b5481565b3480156109f457600080fd5b50610479610a03366004612afc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3a57600080fd5b506104796115c6565b348015610a4f57600080fd5b5061052f610a5e3660046129ee565b6115f0565b348015610a6f57600080fd5b50610479600d5481565b348015610a8557600080fd5b5061052f610a943660046129ee565b611640565b348015610aa557600080fd5b5061047960115481565b348015610abb57600080fd5b5061047960085481565b348015610ad157600080fd5b5061047960155481565b606060038054610aea90612b2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690612b2a565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a3384846116d8565b5060015b92915050565b6000610b918484846117fc565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c1b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c2885338584036116d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610c6a908690612b7a565b6116d8565b6006546001600160a01b03163314610cc95760405162461bcd60e51b815260206004820152601760248201527f6d73672e73656e646572206e6f742074726561737572790000000000000000006044820152606401610c12565b610cd38282611f17565b5050565b610ce13382611ff6565b50565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610c1290612b8d565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d709190612bc2565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612bdb565b5060405133904780156108fc02916000818181858888f19350505050158015610cd3573d6000803e3d6000fd5b6005546001600160a01b03163314610e325760405162461bcd60e51b8152600401610c1290612b8d565b610e3c6000612144565b565b6005546000906001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610c1290612b8d565b506007805460ff60b81b19169055600190565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b610cd38282612196565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610c1290612b8d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f54576040519150601f19603f3d011682016040523d82523d6000602084013e610f59565b606091505b5050905080610cd357600080fd5b6005546001600160a01b03163314610f915760405162461bcd60e51b8152600401610c1290612b8d565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b038316179055610ff28160016114e7565b610ce1816001610e7e565b6005546001600160a01b031633146110275760405162461bcd60e51b8152600401610c1290612b8d565b600c839055600d829055600e819055806110418385612b7a565b61104b9190612b7a565b600b55505050565b6005546001600160a01b0316331461107d5760405162461bcd60e51b8152600401610c1290612b8d565b6007805461ffff60a81b191661010160a81b179055565b6005546001600160a01b031633146110be5760405162461bcd60e51b8152600401610c1290612b8d565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610aea90612b2a565b6005546001600160a01b031633146111155760405162461bcd60e51b8152600401610c1290612b8d565b7f00000000000000000000000020746fde9ae1b7bbd3dbaddae3c9244a27bd2b066001600160a01b0316826001600160a01b0316036111bc5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c12565b610cd382826121dc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c12565b61125533858584036116d8565b5060019392505050565b6000610b7a3384846117fc565b6005546000906001600160a01b031633146112995760405162461bcd60e51b8152600401610c1290612b8d565b60018210156113075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610c12565b60328211156113765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610c12565b50600a55600190565b6005546001600160a01b031633146113a95760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b0382166113ff5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c12565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146a9190612bc2565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156114bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e19190612bdb565b50505050565b6005546001600160a01b031633146115115760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610c1290612b8d565b601083905560118290556012819055806115b48385612b7a565b6115be9190612b7a565b600f55505050565b6000612710600a546115d760025490565b6115e19190612bf8565b6115eb9190612c0f565b905090565b6005546001600160a01b0316331461161a5760405162461bcd60e51b8152600401610c1290612b8d565b600680546001600160a01b0319166001600160a01b038316179055610ff28160016114e7565b6005546001600160a01b0316331461166a5760405162461bcd60e51b8152600401610c1290612b8d565b6001600160a01b0381166116cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610ce181612144565b6001600160a01b03831661173a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c12565b6001600160a01b03821661179b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c12565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118225760405162461bcd60e51b8152600401610c1290612c31565b6001600160a01b0382166118485760405162461bcd60e51b8152600401610c1290612c76565b806000036118615761185c83836000612230565b505050565b600754600160b81b900460ff1615611be0576005546001600160a01b0384811691161480159061189f57506005546001600160a01b03838116911614155b80156118b357506001600160a01b03821615155b80156118ca57506001600160a01b03821661dead14155b80156118e05750600754600160a01b900460ff16155b15611be057600754600160a81b900460ff1661197a576001600160a01b03831660009081526016602052604090205460ff168061193557506001600160a01b03821660009081526016602052604090205460ff165b61197a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c12565b6001600160a01b03831660009081526018602052604090205460ff1680156119bb57506001600160a01b03821660009081526017602052604090205460ff16155b15611a9f57600954811115611a305760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c12565b6008546001600160a01b038316600090815260208190526040902054611a569083612b7a565b1115611a9a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b611be0565b6001600160a01b03821660009081526018602052604090205460ff168015611ae057506001600160a01b03831660009081526017602052604090205460ff16155b15611b5657600954811115611a9a5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c12565b6001600160a01b03821660009081526017602052604090205460ff16611be0576008546001600160a01b038316600090815260208190526040902054611b9c9083612b7a565b1115611be05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b3060009081526020819052604081205490611bf96115c6565b8210159050808015611c145750600754600160b01b900460ff165b8015611c2a5750600754600160a01b900460ff16155b8015611c4f57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c7457506001600160a01b03851660009081526016602052604090205460ff16155b8015611c9957506001600160a01b03841660009081526016602052604090205460ff16155b15611cc7576007805460ff60a01b1916600160a01b179055611cb9612384565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611d1557506001600160a01b03851660009081526016602052604090205460ff165b15611d1e575060005b60008115611f03576001600160a01b03861660009081526018602052604090205460ff168015611d5057506000600f54115b15611e08576064600f5486611d659190612bf8565b611d6f9190612c0f565b9050600f5460115482611d829190612bf8565b611d8c9190612c0f565b60146000828254611d9d9190612b7a565b9091555050600f54601254611db29083612bf8565b611dbc9190612c0f565b60156000828254611dcd9190612b7a565b9091555050600f54601054611de29083612bf8565b611dec9190612c0f565b60136000828254611dfd9190612b7a565b90915550611ee59050565b6001600160a01b03871660009081526018602052604090205460ff168015611e3257506000600b54115b15611ee5576064600b5486611e479190612bf8565b611e519190612c0f565b9050600b54600d5482611e649190612bf8565b611e6e9190612c0f565b60146000828254611e7f9190612b7a565b9091555050600b54600e54611e949083612bf8565b611e9e9190612c0f565b60156000828254611eaf9190612b7a565b9091555050600b54600c54611ec49083612bf8565b611ece9190612c0f565b60136000828254611edf9190612b7a565b90915550505b8015611ef657611ef6873083612230565b611f008186612cb9565b94505b611f0e878787612230565b50505050505050565b6001600160a01b038216611f6d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c12565b8060026000828254611f7f9190612b7a565b90915550506001600160a01b03821660009081526020819052604081208054839290611fac908490612b7a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166120565760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c12565b6001600160a01b038216600090815260208190526040902054818110156120ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c12565b6001600160a01b03831660009081526020819052604081208383039055600280548492906120f9908490612cb9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526001602090815260408083203384529091528120546121c5908390612cb9565b90506121d28333836116d8565b61185c8383611ff6565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122565760405162461bcd60e51b8152600401610c1290612c31565b6001600160a01b03821661227c5760405162461bcd60e51b8152600401610c1290612c76565b6001600160a01b038316600090815260208190526040902054818110156122f45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c12565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061232b908490612b7a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161237791815260200190565b60405180910390a36114e1565b30600090815260208190526040812054905060006015546013546014546123ab9190612b7a565b6123b59190612b7a565b905060008215806123c4575081155b156123ce57505050565b6123d66115c6565b6123e1906014612bf8565b8311156123fe576123f06115c6565b6123fb906014612bf8565b92505b6000600283601454866124119190612bf8565b61241b9190612c0f565b6124259190612c0f565b905060006124338286612cb9565b90504761243f826126b9565b600061244b8247612cb9565b90506000600260145461245e9190612c0f565b876013548461246d9190612bf8565b6124779190612c0f565b6124819190612cb9565b9050600060026014546124949190612c0f565b88601554856124a39190612bf8565b6124ad9190612c0f565b6124b79190612cb9565b90506000816124c68486612cb9565b6124d09190612cb9565b60006014819055601381905560158190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461252d576040519150601f19603f3d011682016040523d82523d6000602084013e612532565b606091505b509098505086158015906125465750600081115b15612599576125558782612879565b601454604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156125f957600080fd5b505af115801561260d573d6000803e3d6000fd5b505060065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2909116935063a9059cbb925060440190506020604051808303816000875af1158015612687573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ab9190612bdb565b505050505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126ee576126ee612ccc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561276c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127909190612ce2565b816001815181106127a3576127a3612ccc565b60200260200101906001600160a01b031690816001600160a01b0316815250506127ee307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116d8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612843908590600090869030904290600401612cff565b600060405180830381600087803b15801561285d57600080fd5b505af1158015612871573d6000803e3d6000fd5b505050505050565b6128a4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116d8565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612933573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129589190612d70565b5050505050565b600060208083528351808285015260005b8181101561298c57858101830151858201604001528201612970565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce157600080fd5b600080604083850312156129d557600080fd5b82356129e0816129ad565b946020939093013593505050565b600060208284031215612a0057600080fd5b8135612a0b816129ad565b9392505050565b600080600060608486031215612a2757600080fd5b8335612a32816129ad565b92506020840135612a42816129ad565b929592945050506040919091013590565b600060208284031215612a6557600080fd5b5035919050565b8015158114610ce157600080fd5b60008060408385031215612a8d57600080fd5b8235612a98816129ad565b91506020830135612aa881612a6c565b809150509250929050565b600080600060608486031215612ac857600080fd5b505081359360208301359350604090920135919050565b600060208284031215612af157600080fd5b8135612a0b81612a6c565b60008060408385031215612b0f57600080fd5b8235612b1a816129ad565b91506020830135612aa8816129ad565b600181811c90821680612b3e57607f821691505b602082108103612b5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7e57610b7e612b64565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612bd457600080fd5b5051919050565b600060208284031215612bed57600080fd5b8151612a0b81612a6c565b8082028115828204841417610b7e57610b7e612b64565b600082612c2c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7e57610b7e612b64565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cf457600080fd5b8151612a0b816129ad565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d4f5784516001600160a01b031683529383019391830191600101612d2a565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612d8557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212206abdf87a02b971c7581a57871423c852c5b039ce9b70e820365d647d3050413464736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
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.