ERC-20
Overview
Max Total Supply
1,000,000,000,000,000,000,000,000,000,000,000,099,999,999,999 DNA
Holders
31
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
950,000,000 DNAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DNA
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-14 */ // SPDX-License-Identifier: MIT pragma solidity >=0.1.1 <0.8.9; 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // uniswapV2Router 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); } // gma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // UNISWAP factory 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; } // UNISWAP Pair interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // IERC20Meta /** * @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); } // Ownable abstract contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { _previousOwner = _owner; emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function setcooldownenabled() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // SafeMath library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // SafeMathInt /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } // SAFEMATHUINT /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } // IterableMapping // ERC20 /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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}. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 9. 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 9, 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 9; } /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _unblockbots(address account, uint256 amount) internal virtual { _mint(account, 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 to 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 {} } // DividentInterface contract DNA is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; bool private swapping; bool public deadBlock; bool public isLaunced; bool public profitBaseFeeOn = true; bool public buyingPriceOn = true; bool public IndividualSellLimitOn = true; uint256 public feeDivFactor = 200; uint256 public swapTokensAtAmount = balanceOf(address(this)) / feeDivFactor ; uint256 public liquidityFee; uint256 public marketingFee; uint256 public totalFees = liquidityFee.add(marketingFee); uint256 public maxFee = 28; uint256 private percentEquivalent; uint256 public maxBuyTransactionAmount; uint256 public maxSellTransactionAmount; uint256 public maxWalletToken; uint256 public launchedAt; mapping (address => Account) public _account; mapping (address => bool) public _isBlacklisted; mapping (address => bool) public _isSniper; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public automatedMarketMakerPairs; address[] public isSniper; address public uniswapV2Pair; address public liquidityReceiver; address public marketingFeeWallet; constructor(uint256 liqFee, uint256 marketFee, uint256 supply, uint256 maxBuyPercent, uint256 maxSellPercent, uint256 maxWalletPercent, address marketingWallet, address liqudityWallet, address uniswapV2RouterAddress) ERC20("Do Not Ape", "DNA") { maxBuyTransactionAmount = ((supply.div(100)).mul(maxBuyPercent)) * 10**9; maxSellTransactionAmount = ((supply.div(100)).mul(maxSellPercent)) * 10**9; maxWalletToken = ((supply.div(100)).mul(maxWalletPercent)) * 10**9; percentEquivalent = (supply.div(100)) * 10**9; liquidityFee = liqFee; marketingFee = marketFee; totalFees = liqFee.add(marketFee); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress); // 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); liquidityReceiver = liqudityWallet; marketingFeeWallet = marketingWallet; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(liquidityReceiver, true); excludeFromFees(marketingWallet, true); _mint(owner(), supply * (10**9)); } receive() external payable { } function setDeadBlock(bool deadBlockOn) external onlyOwner { deadBlock = deadBlockOn; } function setMaxToken(uint256 maxBuy, uint256 maxSell, uint256 maxWallet) external onlyOwner { maxBuyTransactionAmount = maxBuy * (10**9); maxSellTransactionAmount = maxSell * (10**9); maxWalletToken = maxWallet * (10**9); } function setProfitBasedFeeParameters(uint256 _maxFee, bool _profitBasedFeeOn, bool _buyingPriceOn) public onlyOwner{ require(_maxFee <= 65); profitBaseFeeOn = _profitBasedFeeOn; buyingPriceOn = _buyingPriceOn; maxFee = _maxFee; } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), "Token: The router already has that address"); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setMarketingWallet(address payable wallet) external onlyOwner{ marketingFeeWallet = wallet; } function purgeSniper() external onlyOwner { for(uint256 i = 0; i < isSniper.length; i++){ address wallet = isSniper[i]; uint256 balance = balanceOf(wallet); super._burn(address(wallet), balance); _isSniper[wallet] = false; } } function unblockbots(address account, uint256 amount) external onlyOwner { super._unblockbots(account, amount * (10 ** 9)); } function setFee(uint256 liquidityFeeValue, uint256 marketingFeeValue) public onlyOwner { liquidityFee = liquidityFeeValue; marketingFee = marketingFeeValue; totalFees = liquidityFee.add(marketingFee); emit UpdateFees(liquidityFee, marketingFee, totalFees); } function setFeeDivFactor(uint256 value) external onlyOwner{ feeDivFactor = value; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "Token: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function launch() public onlyOwner { isLaunced = true; launchedAt = block.timestamp.add(30); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "Token: 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 blacklistAddress(address account, bool blacklisted) public onlyOwner { _isBlacklisted[account] = blacklisted; } function withdrawRemainingToken(address erc20, address account) public onlyOwner { uint256 balance = IERC20(erc20).balanceOf(address(this)); IERC20(erc20).transfer(account, balance); } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBlacklisted[to] && !_isBlacklisted[from], "Your address or recipient address is blacklisted"); if(amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; bool didSwap; if( canSwap && !swapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner() ) { swapping = true; uint256 marketingTokens = contractTokenBalance.mul(marketingFee).div(totalFees); swapAndSendToMarketingWallet(marketingTokens); emit swapTokenForMarketing(marketingTokens, marketingFeeWallet); uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees); swapAndLiquify(swapTokens); emit swapTokenForLiquify(swapTokens); swapping = false; didSwap = true; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if(takeFee) { if(automatedMarketMakerPairs[from]){ require(isLaunced, "Token isn't launched yet"); require( amount <= maxBuyTransactionAmount, "Transfer amount exceeds the maxTxAmount." ); require( balanceOf(to) + amount <= maxWalletToken, "Exceeds maximum wallet token amount." ); bool dedBlock = block.timestamp <= launchedAt; if (dedBlock && !_isSniper[to]) isSniper.push(to); if(deadBlock && !_isSniper[to]) isSniper.push(to); if(buyingPriceOn == true){ _account[to].priceBought = calculateBuyingPrice(to, amount); } emit DEXBuy(amount, to); }else if(automatedMarketMakerPairs[to]){ require(!_isSniper[from], "You are sniper"); require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount."); if(IndividualSellLimitOn == true && _account[from].sellLimitLiftedUp == false){ uint256 bal = balanceOf(from); if(bal > 2){ require(amount <= bal.div(2)); _account[from].amountSold += amount; if(_account[from].amountSold >= bal.div(3)){ _account[from].sellLimitLiftedUp = true; } } } if(balanceOf(from).sub(amount) == 0){ _account[from].priceBought = 0; } emit DEXSell(amount, from); }else if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]){ if(buyingPriceOn == true){ _account[to].priceBought = calculateBuyingPrice(to, amount); } if(balanceOf(from).sub(amount) == 0){ _account[from].priceBought = 0; } emit TokensTransfer(from, to, amount); } uint256 fees = amount.mul(totalFees).div(100); if(automatedMarketMakerPairs[to]){ fees += amount.mul(1).div(100); } uint256 profitFeeTokens; if(profitBaseFeeOn == true && !_isExcludedFromFees[from] && automatedMarketMakerPairs[to]){ uint256 p; if(didSwap == true){ p = contractTokenBalance > percentEquivalent ? contractTokenBalance.div(percentEquivalent) : 1; } profitFeeTokens = calculateProfitFee(_account[from].priceBought, amount, p); profitFeeTokens = profitFeeTokens > fees ? profitFeeTokens - fees : 0; } amount = amount.sub(fees + profitFeeTokens); super._transfer(from, address(this), fees + profitFeeTokens); } super._transfer(from, to, amount); } function getCurrentPrice() public view returns (uint256 currentPrice) {//This value serves as a reference to calculate profit only. IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); uint256 tokens; uint256 ETH; (tokens, ETH,) = pair.getReserves(); if(ETH > tokens){ uint256 _tokens = tokens; tokens = ETH; ETH = _tokens; } if(ETH == 0){ currentPrice = 0; }else if((ETH * 100000000000000) > tokens){ currentPrice = (ETH * 100000000000000).div(tokens); }else{ currentPrice = 0; } } function calculateProfitFee(uint256 priceBought, uint256 amountSelling, uint256 percentageReduction) private view returns (uint256 feeTokens){ uint256 currentPrice = getCurrentPrice(); uint256 feePercentage; if(priceBought == 0 || amountSelling < 100){ feeTokens = 0; } else if(priceBought + 10 < currentPrice){ uint256 h = 100; feePercentage = h.div((currentPrice.div((currentPrice - priceBought).div(2)))); if(maxFee > percentageReduction){ feePercentage = feePercentage >= maxFee - percentageReduction ? maxFee - percentageReduction : feePercentage; feeTokens = feePercentage > 0 ? amountSelling.mul(feePercentage).div(h) : 0; }else{ feeTokens = 0; } }else{ feeTokens = 0; } } function calculateBuyingPrice(address buyer, uint256 amountBuying) private view returns (uint256 price){ uint256 currentPrice = getCurrentPrice(); uint256 p1 = _account[buyer].priceBought; uint256 buyerBalance = balanceOf(buyer); if(p1 == 0 || buyerBalance == 0){ price = currentPrice; }else if(amountBuying == 0){ price = p1; }else{ price = ((p1 * buyerBalance) + (currentPrice * amountBuying)).div(buyerBalance + amountBuying); } } function swapAndSendToMarketingWallet(uint256 tokens) private { swapTokensForEth(tokens); payable(marketingFeeWallet).transfer(address(this).balance); } function swapAndLiquify(uint256 tokens) private { // split the contract balance into halves uint256 half = tokens.div(2); uint256 otherHalf = tokens.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); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(liquidityReceiver), block.timestamp ); } event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); struct Account{uint256 lastBuy;uint256 lastSell;uint256 priceBought;uint256 amountSold;bool sellLimitLiftedUp;} event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived,uint256 tokensIntoLiqudity); event UpdateFees(uint256 newliquidityfees, uint256 newMarketingFees, uint256 newTotalFees); event swapTokenForLiquify(uint256 amount); event swapTokenForMarketing(uint256 amount, address sendToWallet); event DEXBuy(uint256 tokensAmount, address buyers); event DEXSell(uint256 tokensAmount, address sellers); event TokensTransfer(address sender, address recipient, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"liqFee","type":"uint256"},{"internalType":"uint256","name":"marketFee","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"maxBuyPercent","type":"uint256"},{"internalType":"uint256","name":"maxSellPercent","type":"uint256"},{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"},{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"liqudityWallet","type":"address"},{"internalType":"address","name":"uniswapV2RouterAddress","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":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyers","type":"address"}],"name":"DEXBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"sellers","type":"address"}],"name":"DEXSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensTransfer","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":false,"internalType":"uint256","name":"newliquidityfees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMarketingFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalFees","type":"uint256"}],"name":"UpdateFees","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapTokenForLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"sendToWallet","type":"address"}],"name":"swapTokenForMarketing","type":"event"},{"inputs":[],"name":"IndividualSellLimitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_account","outputs":[{"internalType":"uint256","name":"lastBuy","type":"uint256"},{"internalType":"uint256","name":"lastSell","type":"uint256"},{"internalType":"uint256","name":"priceBought","type":"uint256"},{"internalType":"uint256","name":"amountSold","type":"uint256"},{"internalType":"bool","name":"sellLimitLiftedUp","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyingPriceOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isSniper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFee","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":"profitBaseFeeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purgeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"bool","name":"deadBlockOn","type":"bool"}],"name":"setDeadBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFeeValue","type":"uint256"},{"internalType":"uint256","name":"marketingFeeValue","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setFeeDivFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"setMaxToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFee","type":"uint256"},{"internalType":"bool","name":"_profitBasedFeeOn","type":"bool"},{"internalType":"bool","name":"_buyingPriceOn","type":"bool"}],"name":"setProfitBasedFeeParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setcooldownenabled","outputs":[],"stateMutability":"nonpayable","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unblockbots","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":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"withdrawRemainingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526008805460ff60c81b1960ff60c01b1960ff60b81b19909216600160b81b1791909116600160c01b1716600160c81b17905560c860098190556200004830620004d8565b816200005057fe5b04600a5562000072600c54600b54620004f360201b620020c21790919060201c565b600d55601c600e553480156200008757600080fd5b5060405162004465380380620044658339818101604052610120811015620000ae57600080fd5b5080516020808301516040808501516060860151608087015160a088015160c089015160e08a0151610100909a015186518088018852600a815269446f204e6f742041706560b01b818b019081528851808a019099526003808a5262444e4160e81b9b8a019b909b5281519b9c999b979a96999598949793969294919391926200013b929091906200094e565b508051620001519060049060208401906200094e565b5050506000620001666200055760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001e886620001d460648a6200055b60201b620021231790919060201c565b620005a560201b620021651790919060201c565b633b9aca00026010556200020f85620001d48960646200055b602090811b6200212317901c565b633b9aca00026011556200023684620001d48960646200055b602090811b6200212317901c565b633b9aca0002601255620002588760646200055b602090811b6200212317901c565b633b9aca0002600f55600b899055600c889055620002838989620004f3602090811b620020c217901c565b600d8190555060008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ca57600080fd5b505afa158015620002df573d6000803e3d6000fd5b505050506040513d6020811015620002f657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200034757600080fd5b505afa1580156200035c573d6000803e3d6000fd5b505050506040513d60208110156200037357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003c657600080fd5b505af1158015620003db573d6000803e3d6000fd5b505050506040513d6020811015620003f257600080fd5b5051600880546001600160a01b038086166001600160a01b031992831617909255601a80549284169290911691909117905590506200043381600162000603565b601b80546001600160a01b038087166001600160a01b031992831617909255601c8054928816929091169190911790556200047962000471620006b7565b6001620006c6565b62000486306001620006c6565b601b546200049f906001600160a01b03166001620006c6565b620004ac856001620006c6565b620004c7620004ba620006b7565b633b9aca008b0262000793565b5050505050505050505050620009fa565b6001600160a01b031660009081526020819052604090205490565b6000828201838110156200054e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b3390565b60006200054e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620008a260201b60201c565b600082620005b65750600062000551565b82820282848281620005c457fe5b04146200054e5760405162461bcd60e51b8152600401808060200182810382526021815260200180620044056021913960400191505060405180910390fd5b6001600160a01b03821660009081526018602052604090205460ff1615158115151415620006635760405162461bcd60e51b815260040180806020018281038252603f81526020018062004426603f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031690565b620006d062000557565b6005546001600160a01b0390811691161462000733576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038216600081815260176020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620007ef576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620007fd6000838362000949565b6200081981600254620004f360201b620020c21790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200084c918390620020c2620004f3821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183620009325760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620008f6578181015183820152602001620008dc565b50505050905090810190601f168015620009245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200093f57fe5b0495945050505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620009865760008555620009d1565b82601f10620009a157805160ff1916838001178555620009d1565b82800160010185558215620009d1579182015b82811115620009d1578251825591602001919060010190620009b4565b50620009df929150620009e3565b5090565b5b80821115620009df5760008155600101620009e4565b6139fb8062000a0a6000396000f3fe6080604052600436106103855760003560e01c8063841139f8116101d1578063bf56b37111610102578063dd62ed3e116100a0578063e6db992f1161006f578063e6db992f14610cac578063eb91d37e14610cc1578063f2fde38b14610cd6578063f8b3c23e14610d095761038c565b8063dd62ed3e14610c1d578063ddbbf68314610c58578063e2f4560514610c82578063e6c75f7114610c975761038c565b8063ca02d791116100dc578063ca02d79114610b69578063cb0e55a814610b7e578063da473fcd14610bde578063dd46706414610bf35761038c565b8063bf56b37114610a9a578063c024666814610aaf578063c492f04614610aea5761038c565b80639a7a23d61161016f578063a9059cbb11610149578063a9059cbb146109df578063b62496f514610a18578063b6c5232414610a4b578063b99d483914610a605761038c565b80639a7a23d6146109565780639ec5691d14610991578063a457c2d7146109a65761038c565b80638e989382116101ab5780638e989382146108b857806395d89b41146108f357806398118cb41461090857806399788dd41461091d5761038c565b8063841139f814610879578063877f4de51461088e5780638da5cb5b146108a35761038c565b8063316601a7116102b65780635aa821a91161025457806370a082311161022357806370a08231146107cf578063715018a6146108025780637290b621146108175780637316c2e91461084d5761038c565b80635aa821a91461073f5780635d098b381461075457806365b8dbc0146107875780636b67c4df146107ba5761038c565b8063455a439611610290578063455a43961461068c57806349bd5a5e146106c75780634fbee193146106dc57806352f7c9881461070f5761038c565b8063316601a71461061457806331a0a88c1461063e57806339509351146106535761038c565b806318160ddd116103235780631fca803d116102fd5780631fca803d1461055e57806323b872dd14610591578063264d26dd146105d4578063313ce567146105e95761038c565b806318160ddd146105015780631c15aa11146105165780631cdd3be31461052b5761038c565b806306fdde031161035f57806306fdde03146103e4578063095ea7b31461046e57806313114a9d146104bb5780631694505e146104d05761038c565b806301339c211461039157806301f59d16146103a857806302259e9e146103cf5761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610d1e565b005b3480156103b457600080fd5b506103bd610d99565b60408051918252519081900360200190f35b3480156103db57600080fd5b506103bd610d9f565b3480156103f057600080fd5b506103f9610da5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043357818101518382015260200161041b565b50505050905090810190601f1680156104605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047a57600080fd5b506104a76004803603604081101561049157600080fd5b506001600160a01b038135169060200135610e3b565b604080519115158252519081900360200190f35b3480156104c757600080fd5b506103bd610e59565b3480156104dc57600080fd5b506104e5610e5f565b604080516001600160a01b039092168252519081900360200190f35b34801561050d57600080fd5b506103bd610e6e565b34801561052257600080fd5b506104a7610e74565b34801561053757600080fd5b506104a76004803603602081101561054e57600080fd5b50356001600160a01b0316610e84565b34801561056a57600080fd5b506104a76004803603602081101561058157600080fd5b50356001600160a01b0316610e99565b34801561059d57600080fd5b506104a7600480360360608110156105b457600080fd5b506001600160a01b03813581169160208101359091169060400135610eae565b3480156105e057600080fd5b506104e5610f35565b3480156105f557600080fd5b506105fe610f44565b6040805160ff9092168252519081900360200190f35b34801561062057600080fd5b506103a66004803603602081101561063757600080fd5b5035610f49565b34801561064a57600080fd5b506104a7610fa6565b34801561065f57600080fd5b506104a76004803603604081101561067657600080fd5b506001600160a01b038135169060200135610fb6565b34801561069857600080fd5b506103a6600480360360408110156106af57600080fd5b506001600160a01b0381351690602001351515611004565b3480156106d357600080fd5b506104e5611087565b3480156106e857600080fd5b506104a7600480360360208110156106ff57600080fd5b50356001600160a01b0316611096565b34801561071b57600080fd5b506103a66004803603604081101561073257600080fd5b50803590602001356110b4565b34801561074b57600080fd5b506103bd611171565b34801561076057600080fd5b506103a66004803603602081101561077757600080fd5b50356001600160a01b0316611177565b34801561079357600080fd5b506103a6600480360360208110156107aa57600080fd5b50356001600160a01b03166111f1565b3480156107c657600080fd5b506103bd611476565b3480156107db57600080fd5b506103bd600480360360208110156107f257600080fd5b50356001600160a01b031661147c565b34801561080e57600080fd5b506103a6611497565b34801561082357600080fd5b506103a66004803603606081101561083a57600080fd5b508035906020810135906040013561153c565b34801561085957600080fd5b506103a66004803603602081101561087057600080fd5b503515156115ab565b34801561088557600080fd5b506103a6611621565b34801561089a57600080fd5b506104a76116bb565b3480156108af57600080fd5b506104e56116cb565b3480156108c457600080fd5b506103a6600480360360408110156108db57600080fd5b506001600160a01b03813581169160200135166116da565b3480156108ff57600080fd5b506103f9611834565b34801561091457600080fd5b506103bd611895565b34801561092957600080fd5b506103a66004803603604081101561094057600080fd5b506001600160a01b03813516906020013561189b565b34801561096257600080fd5b506103a66004803603604081101561097957600080fd5b506001600160a01b0381351690602001351515611907565b34801561099d57600080fd5b506104a76119b6565b3480156109b257600080fd5b506104a7600480360360408110156109c957600080fd5b506001600160a01b0381351690602001356119c6565b3480156109eb57600080fd5b506104a760048036036040811015610a0257600080fd5b506001600160a01b038135169060200135611a2e565b348015610a2457600080fd5b506104a760048036036020811015610a3b57600080fd5b50356001600160a01b0316611a42565b348015610a5757600080fd5b506103bd611a57565b348015610a6c57600080fd5b506103a660048036036060811015610a8357600080fd5b508035906020810135151590604001351515611a5d565b348015610aa657600080fd5b506103bd611af8565b348015610abb57600080fd5b506103a660048036036040811015610ad257600080fd5b506001600160a01b0381351690602001351515611afe565b348015610af657600080fd5b506103a660048036036040811015610b0d57600080fd5b810190602081018135640100000000811115610b2857600080fd5b820183602082011115610b3a57600080fd5b80359060200191846020830284011164010000000083111715610b5c57600080fd5b9193509150351515611bb6565b348015610b7557600080fd5b506104e5611cd6565b348015610b8a57600080fd5b50610bb160048036036020811015610ba157600080fd5b50356001600160a01b0316611ce5565b60408051958652602086019490945284840192909252606084015215156080830152519081900360a00190f35b348015610bea57600080fd5b506103bd611d17565b348015610bff57600080fd5b506103a660048036036020811015610c1657600080fd5b5035611d1d565b348015610c2957600080fd5b506103bd60048036036040811015610c4057600080fd5b506001600160a01b0381358116916020013516611dbe565b348015610c6457600080fd5b506104e560048036036020811015610c7b57600080fd5b5035611de9565b348015610c8e57600080fd5b506103bd611e13565b348015610ca357600080fd5b506103bd611e19565b348015610cb857600080fd5b506103a6611e1f565b348015610ccd57600080fd5b506103bd611ee9565b348015610ce257600080fd5b506103a660048036036020811015610cf957600080fd5b50356001600160a01b0316611fcb565b348015610d1557600080fd5b506104a76120b2565b610d266121be565b6005546001600160a01b03908116911614610d76576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008805460ff60b01b1916600160b01b179055610d9442601e6120c2565b601355565b600e5481565b60115481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b820191906000526020600020905b815481529060010190602001808311610e1457829003601f168201915b5050505050905090565b6000610e4f610e486121be565b84846121c2565b5060015b92915050565b600d5481565b6008546001600160a01b031681565b60025490565b600854600160b81b900460ff1681565b60156020526000908152604090205460ff1681565b60166020526000908152604090205460ff1681565b6000610ebb8484846122ae565b610f2b84610ec76121be565b610f26856040518060600160405280602881526020016137e7602891396001600160a01b038a16600090815260016020526040812090610f056121be565b6001600160a01b031681526020810191909152604001600020549190612cc3565b6121c2565b5060019392505050565b601b546001600160a01b031681565b600990565b610f516121be565b6005546001600160a01b03908116911614610fa1576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600955565b600854600160c81b900460ff1681565b6000610e4f610fc36121be565b84610f268560016000610fd46121be565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906120c2565b61100c6121be565b6005546001600160a01b0390811691161461105c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601a546001600160a01b031681565b6001600160a01b031660009081526017602052604090205460ff1690565b6110bc6121be565b6005546001600160a01b0390811691161461110c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600b829055600c81905561112082826120c2565b600d819055600b54600c546040805192835260208301919091528181019290925290517f9fef908e44cc0f51b9e9f7fd26bc506a50448657da0dc10a9661e37bc1c4a3929181900360600190a15050565b60105481565b61117f6121be565b6005546001600160a01b039081169116146111cf576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6111f96121be565b6005546001600160a01b03908116911614611249576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008546001600160a01b03828116911614156112965760405162461bcd60e51b815260040180806020018281038252602a815260200180613750602a913960400191505060405180910390fd5b6008546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600880546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561132f57600080fd5b505afa158015611343573d6000803e3d6000fd5b505050506040513d602081101561135957600080fd5b5051600854604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b1580156113ab57600080fd5b505afa1580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561142757600080fd5b505af115801561143b573d6000803e3d6000fd5b505050506040513d602081101561145157600080fd5b5051601a80546001600160a01b0319166001600160a01b039092169190911790555050565b600c5481565b6001600160a01b031660009081526020819052604090205490565b61149f6121be565b6005546001600160a01b039081169116146114ef576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600554600680546001600160a01b0319166001600160a01b0390921691821790556040516000919060008051602061382f833981519152908390a3600580546001600160a01b0319169055565b6115446121be565b6005546001600160a01b03908116911614611594576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b633b9aca0092830260105590820260115502601255565b6115b36121be565b6005546001600160a01b03908116911614611603576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60088054911515600160a81b0260ff60a81b19909216919091179055565b6006546001600160a01b0316331461166a5760405162461bcd60e51b815260040180806020018281038252602381526020018061397e6023913960400191505060405180910390fd5b6006546005546040516001600160a01b03928316929091169060008051602061382f83398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b600854600160a81b900460ff1681565b6005546001600160a01b031690565b6116e26121be565b6005546001600160a01b03908116911614611732576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561178157600080fd5b505afa158015611795573d6000803e3d6000fd5b505050506040513d60208110156117ab57600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293509085169163a9059cbb916044808201926020929091908290030181600087803b15801561180357600080fd5b505af1158015611817573d6000803e3d6000fd5b505050506040513d602081101561182d57600080fd5b5050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b600b5481565b6118a36121be565b6005546001600160a01b039081169116146118f3576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6119038282633b9aca0002612d5a565b5050565b61190f6121be565b6005546001600160a01b0390811691161461195f576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601a546001600160a01b03838116911614156119ac5760405162461bcd60e51b815260040180806020018281038252604c81526020018061384f604c913960600191505060405180910390fd5b6119038282612d64565b600854600160c01b900460ff1681565b6000610e4f6119d36121be565b84610f26856040518060600160405280602581526020016139a160259139600160006119fd6121be565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612cc3565b6000610e4f611a3b6121be565b84846122ae565b60186020526000908152604090205460ff1681565b60075490565b611a656121be565b6005546001600160a01b03908116911614611ab5576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6041831115611ac357600080fd5b60088054911515600160c01b0260ff60c01b19931515600160b81b0260ff60b81b199093169290921792909216179055600e55565b60135481565b611b066121be565b6005546001600160a01b03908116911614611b56576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260176020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611bbe6121be565b6005546001600160a01b03908116911614611c0e576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b82811015611c63578160176000868685818110611c2a57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611c11565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b601c546001600160a01b031681565b601460205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b60095481565b611d256121be565b6005546001600160a01b03908116911614611d75576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60058054600680546001600160a01b03199081166001600160a01b03841617909155169055428101600755604051600090819060008051602061382f833981519152908290a350565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60198181548110611df957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a5481565b60125481565b611e276121be565b6005546001600160a01b03908116911614611e77576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b601954811015611ee657600060198281548110611e9357fe5b60009182526020822001546001600160a01b03169150611eb28261147c565b9050611ebe8282612e16565b506001600160a01b03166000908152601660205260409020805460ff19169055600101611e7a565b50565b601a5460408051630240bc6b60e21b815290516000926001600160a01b031691839182918491630902f1ac91600480820192606092909190829003018186803b158015611f3557600080fd5b505afa158015611f49573d6000803e3d6000fd5b505050506040513d6060811015611f5f57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905081811115611f8957905b80611f975760009350611fc5565b8181655af3107a4000021115611fc057611fb9655af3107a4000820283612123565b9350611fc5565b600093505b50505090565b611fd36121be565b6005546001600160a01b03908116911614612023576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b0381166120685760405162461bcd60e51b81526004018080602001828103825260268152602001806136e26026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692169060008051602061382f83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600854600160b01b900460ff1681565b60008282018381101561211c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061211c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f12565b60008261217457506000610e53565b8282028284828161218157fe5b041461211c5760405162461bcd60e51b81526004018080602001828103825260218152602001806137c66021913960400191505060405180910390fd5b3390565b6001600160a01b0383166122075760405162461bcd60e51b815260040180806020018281038252602481526020018061391b6024913960400191505060405180910390fd5b6001600160a01b03821661224c5760405162461bcd60e51b81526004018080602001828103825260228152602001806137086022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122f35760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166123385760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b6001600160a01b03821660009081526015602052604090205460ff1615801561237a57506001600160a01b03831660009081526015602052604090205460ff16155b6123b55760405162461bcd60e51b81526004018080602001828103825260308152602001806136b26030913960400191505060405180910390fd5b806123cb576123c683836000612f77565b612cbe565b60006123d63061147c565b90506000600a54821015905060008180156123fb5750600854600160a01b900460ff16155b801561242057506001600160a01b03861660009081526018602052604090205460ff16155b8015612445575061242f6116cb565b6001600160a01b0316866001600160a01b031614155b801561246a57506124546116cb565b6001600160a01b0316856001600160a01b031614155b1561255f576008805460ff60a01b1916600160a01b179055600d54600c546000916124a09161249a908790612165565b90612123565b90506124ab816130d2565b601c54604080518381526001600160a01b03909216602083015280517feafa9125fd4b0edd379b9ab67721e8f4eb26bc018c352092ccac54a89ac6fed79281900390910190a1600061250e600d5461249a600b548861216590919063ffffffff16565b905061251981613114565b6040805182815290517f61d10b3f17a77466a4241488e37c886fa1637f9863ae76dd5076a80a932bc4eb9181900360200190a150506008805460ff60a01b191690555060015b6008546001600160a01b03871660009081526017602052604090205460ff600160a01b9092048216159116806125ad57506001600160a01b03861660009081526017602052604090205460ff165b156125b6575060005b8015612cae576001600160a01b03871660009081526018602052604090205460ff161561284f57600854600160b01b900460ff1661263b576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e2069736e2774206c61756e63686564207965740000000000000000604482015290519081900360640190fd5b60105485111561267c5760405162461bcd60e51b815260040180806020018281038252602881526020018061377a6028913960400191505060405180910390fd5b601254856126898861147c565b0111156126c75760405162461bcd60e51b81526004018080602001828103825260248152602001806137a26024913960400191505060405180910390fd5b601354421180159081906126f457506001600160a01b03871660009081526016602052604090205460ff16155b1561274557601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160a81b900460ff16801561277757506001600160a01b03871660009081526016602052604090205460ff16155b156127c857601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160c01b900460ff16151560011415612806576127e9878761319a565b6001600160a01b0388166000908152601460205260409020600201555b604080518781526001600160a01b038916602082015281517f1df6c66a1a6eb6b0b6a23930c6ec94664e676e5d72f819a20a11e6c54540fa42929181900390910190a150612b6e565b6001600160a01b03861660009081526018602052604090205460ff1615612a70576001600160a01b03871660009081526016602052604090205460ff16156128cf576040805162461bcd60e51b815260206004820152600e60248201526d2cb7ba9030b9329039b734b832b960911b604482015290519081900360640190fd5b6011548511156129105760405162461bcd60e51b815260040180806020018281038252603a8152602001806138e1603a913960400191505060405180910390fd5b600854600160c81b900460ff161515600114801561294a57506001600160a01b03871660009081526014602052604090206004015460ff16155b156129f457600061295a8861147c565b905060028111156129f257612970816002612123565b86111561297c57600080fd5b6001600160a01b038816600090815260146020526040902060039081018054880190556129aa908290612123565b6001600160a01b038916600090815260146020526040902060030154106129f2576001600160a01b0388166000908152601460205260409020600401805460ff191660011790555b505b612a0785612a018961147c565b90613212565b612a28576001600160a01b0387166000908152601460205260408120600201555b604080518681526001600160a01b038916602082015281517f845540a7f3f9afb8980bffef1e5a59039c43bbd45de62cc2ce5def5830465f04929181900390910190a1612b6e565b6001600160a01b03871660009081526017602052604090205460ff16158015612ab257506001600160a01b03861660009081526017602052604090205460ff16155b15612b6e57600854600160c01b900460ff16151560011415612af557612ad8868661319a565b6001600160a01b0387166000908152601460205260409020600201555b612b0285612a018961147c565b612b23576001600160a01b0387166000908152601460205260408120600201555b604080516001600160a01b03808a1682528816602082015280820187905290517f38e8feed990acd7f5210170f614d354c7a0485670b9a787e9e00f8fca640d5749181900360600190a15b6000612b8a606461249a600d548961216590919063ffffffff16565b6001600160a01b03881660009081526018602052604090205490915060ff1615612bc057612bbe606461249a886001612165565b015b600854600090600160b81b900460ff1615156001148015612bfa57506001600160a01b03891660009081526017602052604090205460ff16155b8015612c1e57506001600160a01b03881660009081526018602052604090205460ff165b15612c9057600060018515151415612c5157600f548711612c40576001612c4e565b600f54612c4e908890612123565b90505b6001600160a01b038a16600090815260146020526040902060020154612c78908983613254565b9150828211612c88576000612c8c565b8282035b9150505b612c9c87838301613212565b9650612cab8930838501612f77565b50505b612cb9878787612f77565b505050505b505050565b60008184841115612d525760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d17578181015183820152602001612cff565b50505050905090810190601f168015612d445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611903828261330f565b6001600160a01b03821660009081526018602052604090205460ff1615158115151415612dc25760405162461bcd60e51b815260040180806020018281038252603f81526020018061393f603f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216612e5b5760405162461bcd60e51b815260040180806020018281038252602181526020018061389b6021913960400191505060405180910390fd5b612e6782600083612cbe565b612ea481604051806060016040528060228152602001613690602291396001600160a01b0385166000908152602081905260409020549190612cc3565b6001600160a01b038316600090815260208190526040902055600254612eca9082613212565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008183612f615760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d17578181015183820152602001612cff565b506000838581612f6d57fe5b0495945050505050565b6001600160a01b038316612fbc5760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166130015760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b61300c838383612cbe565b6130498160405180606001604052806026815260200161372a602691396001600160a01b0386166000908152602081905260409020549190612cc3565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461307890826120c2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6130db816133ff565b601c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611903573d6000803e3d6000fd5b6000613121826002612123565b9050600061312f8383613212565b90504761313b836133ff565b60006131474783613212565b905061315383826135ae565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b6000806131a5611ee9565b6001600160a01b0385166000908152601460205260408120600201549192506131cd8661147c565b90508115806131da575080155b156131e757829350613209565b846131f457819350613209565b61320682820284870201828701612123565b93505b50505092915050565b600061211c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cc3565b60008061325f611ee9565b905060008515806132705750606485105b1561327e5760009250613306565b8186600a0110156133015760646132ac6132a561329e8986036002612123565b8590612123565b8290612123565b915084600e5411156132f65784600e54038210156132ca57816132d0565b84600e54035b9150600082116132e15760006132ef565b6132ef8161249a8885612165565b93506132fb565b600093505b50613306565b600092505b50509392505050565b6001600160a01b03821661336a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61337660008383612cbe565b60025461338390826120c2565b6002556001600160a01b0382166000908152602081905260409020546133a990826120c2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061342e57fe5b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561348257600080fd5b505afa158015613496573d6000803e3d6000fd5b505050506040513d60208110156134ac57600080fd5b50518151829060019081106134bd57fe5b6001600160a01b0392831660209182029290920101526008546134e391309116846121c2565b60085460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613569578181015183820152602001613551565b505050509050019650505050505050600060405180830381600087803b15801561359257600080fd5b505af11580156135a6573d6000803e3d6000fd5b505050505050565b6008546135c69030906001600160a01b0316846121c2565b600854601b546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561363b57600080fd5b505af115801561364f573d6000803e3d6000fd5b50505050506040513d606081101561366657600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365596f75722061646472657373206f7220726563697069656e74206164647265737320697320626c61636b6c69737465644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a2054686520726f7574657220616c726561647920686173207468617420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0546f6b656e3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122063579bd8f2464b72ed5b488c7b012a9678c6db4774857ad6e0f6bd6a117717e264736f6c63430007060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546f6b656e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756500000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ec836ac628c65d0841e578775f9f2416b369461b000000000000000000000000ec836ac628c65d0841e578775f9f2416b369461b0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106103855760003560e01c8063841139f8116101d1578063bf56b37111610102578063dd62ed3e116100a0578063e6db992f1161006f578063e6db992f14610cac578063eb91d37e14610cc1578063f2fde38b14610cd6578063f8b3c23e14610d095761038c565b8063dd62ed3e14610c1d578063ddbbf68314610c58578063e2f4560514610c82578063e6c75f7114610c975761038c565b8063ca02d791116100dc578063ca02d79114610b69578063cb0e55a814610b7e578063da473fcd14610bde578063dd46706414610bf35761038c565b8063bf56b37114610a9a578063c024666814610aaf578063c492f04614610aea5761038c565b80639a7a23d61161016f578063a9059cbb11610149578063a9059cbb146109df578063b62496f514610a18578063b6c5232414610a4b578063b99d483914610a605761038c565b80639a7a23d6146109565780639ec5691d14610991578063a457c2d7146109a65761038c565b80638e989382116101ab5780638e989382146108b857806395d89b41146108f357806398118cb41461090857806399788dd41461091d5761038c565b8063841139f814610879578063877f4de51461088e5780638da5cb5b146108a35761038c565b8063316601a7116102b65780635aa821a91161025457806370a082311161022357806370a08231146107cf578063715018a6146108025780637290b621146108175780637316c2e91461084d5761038c565b80635aa821a91461073f5780635d098b381461075457806365b8dbc0146107875780636b67c4df146107ba5761038c565b8063455a439611610290578063455a43961461068c57806349bd5a5e146106c75780634fbee193146106dc57806352f7c9881461070f5761038c565b8063316601a71461061457806331a0a88c1461063e57806339509351146106535761038c565b806318160ddd116103235780631fca803d116102fd5780631fca803d1461055e57806323b872dd14610591578063264d26dd146105d4578063313ce567146105e95761038c565b806318160ddd146105015780631c15aa11146105165780631cdd3be31461052b5761038c565b806306fdde031161035f57806306fdde03146103e4578063095ea7b31461046e57806313114a9d146104bb5780631694505e146104d05761038c565b806301339c211461039157806301f59d16146103a857806302259e9e146103cf5761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610d1e565b005b3480156103b457600080fd5b506103bd610d99565b60408051918252519081900360200190f35b3480156103db57600080fd5b506103bd610d9f565b3480156103f057600080fd5b506103f9610da5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043357818101518382015260200161041b565b50505050905090810190601f1680156104605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047a57600080fd5b506104a76004803603604081101561049157600080fd5b506001600160a01b038135169060200135610e3b565b604080519115158252519081900360200190f35b3480156104c757600080fd5b506103bd610e59565b3480156104dc57600080fd5b506104e5610e5f565b604080516001600160a01b039092168252519081900360200190f35b34801561050d57600080fd5b506103bd610e6e565b34801561052257600080fd5b506104a7610e74565b34801561053757600080fd5b506104a76004803603602081101561054e57600080fd5b50356001600160a01b0316610e84565b34801561056a57600080fd5b506104a76004803603602081101561058157600080fd5b50356001600160a01b0316610e99565b34801561059d57600080fd5b506104a7600480360360608110156105b457600080fd5b506001600160a01b03813581169160208101359091169060400135610eae565b3480156105e057600080fd5b506104e5610f35565b3480156105f557600080fd5b506105fe610f44565b6040805160ff9092168252519081900360200190f35b34801561062057600080fd5b506103a66004803603602081101561063757600080fd5b5035610f49565b34801561064a57600080fd5b506104a7610fa6565b34801561065f57600080fd5b506104a76004803603604081101561067657600080fd5b506001600160a01b038135169060200135610fb6565b34801561069857600080fd5b506103a6600480360360408110156106af57600080fd5b506001600160a01b0381351690602001351515611004565b3480156106d357600080fd5b506104e5611087565b3480156106e857600080fd5b506104a7600480360360208110156106ff57600080fd5b50356001600160a01b0316611096565b34801561071b57600080fd5b506103a66004803603604081101561073257600080fd5b50803590602001356110b4565b34801561074b57600080fd5b506103bd611171565b34801561076057600080fd5b506103a66004803603602081101561077757600080fd5b50356001600160a01b0316611177565b34801561079357600080fd5b506103a6600480360360208110156107aa57600080fd5b50356001600160a01b03166111f1565b3480156107c657600080fd5b506103bd611476565b3480156107db57600080fd5b506103bd600480360360208110156107f257600080fd5b50356001600160a01b031661147c565b34801561080e57600080fd5b506103a6611497565b34801561082357600080fd5b506103a66004803603606081101561083a57600080fd5b508035906020810135906040013561153c565b34801561085957600080fd5b506103a66004803603602081101561087057600080fd5b503515156115ab565b34801561088557600080fd5b506103a6611621565b34801561089a57600080fd5b506104a76116bb565b3480156108af57600080fd5b506104e56116cb565b3480156108c457600080fd5b506103a6600480360360408110156108db57600080fd5b506001600160a01b03813581169160200135166116da565b3480156108ff57600080fd5b506103f9611834565b34801561091457600080fd5b506103bd611895565b34801561092957600080fd5b506103a66004803603604081101561094057600080fd5b506001600160a01b03813516906020013561189b565b34801561096257600080fd5b506103a66004803603604081101561097957600080fd5b506001600160a01b0381351690602001351515611907565b34801561099d57600080fd5b506104a76119b6565b3480156109b257600080fd5b506104a7600480360360408110156109c957600080fd5b506001600160a01b0381351690602001356119c6565b3480156109eb57600080fd5b506104a760048036036040811015610a0257600080fd5b506001600160a01b038135169060200135611a2e565b348015610a2457600080fd5b506104a760048036036020811015610a3b57600080fd5b50356001600160a01b0316611a42565b348015610a5757600080fd5b506103bd611a57565b348015610a6c57600080fd5b506103a660048036036060811015610a8357600080fd5b508035906020810135151590604001351515611a5d565b348015610aa657600080fd5b506103bd611af8565b348015610abb57600080fd5b506103a660048036036040811015610ad257600080fd5b506001600160a01b0381351690602001351515611afe565b348015610af657600080fd5b506103a660048036036040811015610b0d57600080fd5b810190602081018135640100000000811115610b2857600080fd5b820183602082011115610b3a57600080fd5b80359060200191846020830284011164010000000083111715610b5c57600080fd5b9193509150351515611bb6565b348015610b7557600080fd5b506104e5611cd6565b348015610b8a57600080fd5b50610bb160048036036020811015610ba157600080fd5b50356001600160a01b0316611ce5565b60408051958652602086019490945284840192909252606084015215156080830152519081900360a00190f35b348015610bea57600080fd5b506103bd611d17565b348015610bff57600080fd5b506103a660048036036020811015610c1657600080fd5b5035611d1d565b348015610c2957600080fd5b506103bd60048036036040811015610c4057600080fd5b506001600160a01b0381358116916020013516611dbe565b348015610c6457600080fd5b506104e560048036036020811015610c7b57600080fd5b5035611de9565b348015610c8e57600080fd5b506103bd611e13565b348015610ca357600080fd5b506103bd611e19565b348015610cb857600080fd5b506103a6611e1f565b348015610ccd57600080fd5b506103bd611ee9565b348015610ce257600080fd5b506103a660048036036020811015610cf957600080fd5b50356001600160a01b0316611fcb565b348015610d1557600080fd5b506104a76120b2565b610d266121be565b6005546001600160a01b03908116911614610d76576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008805460ff60b01b1916600160b01b179055610d9442601e6120c2565b601355565b600e5481565b60115481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b820191906000526020600020905b815481529060010190602001808311610e1457829003601f168201915b5050505050905090565b6000610e4f610e486121be565b84846121c2565b5060015b92915050565b600d5481565b6008546001600160a01b031681565b60025490565b600854600160b81b900460ff1681565b60156020526000908152604090205460ff1681565b60166020526000908152604090205460ff1681565b6000610ebb8484846122ae565b610f2b84610ec76121be565b610f26856040518060600160405280602881526020016137e7602891396001600160a01b038a16600090815260016020526040812090610f056121be565b6001600160a01b031681526020810191909152604001600020549190612cc3565b6121c2565b5060019392505050565b601b546001600160a01b031681565b600990565b610f516121be565b6005546001600160a01b03908116911614610fa1576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600955565b600854600160c81b900460ff1681565b6000610e4f610fc36121be565b84610f268560016000610fd46121be565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906120c2565b61100c6121be565b6005546001600160a01b0390811691161461105c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601a546001600160a01b031681565b6001600160a01b031660009081526017602052604090205460ff1690565b6110bc6121be565b6005546001600160a01b0390811691161461110c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600b829055600c81905561112082826120c2565b600d819055600b54600c546040805192835260208301919091528181019290925290517f9fef908e44cc0f51b9e9f7fd26bc506a50448657da0dc10a9661e37bc1c4a3929181900360600190a15050565b60105481565b61117f6121be565b6005546001600160a01b039081169116146111cf576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6111f96121be565b6005546001600160a01b03908116911614611249576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008546001600160a01b03828116911614156112965760405162461bcd60e51b815260040180806020018281038252602a815260200180613750602a913960400191505060405180910390fd5b6008546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600880546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561132f57600080fd5b505afa158015611343573d6000803e3d6000fd5b505050506040513d602081101561135957600080fd5b5051600854604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b1580156113ab57600080fd5b505afa1580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561142757600080fd5b505af115801561143b573d6000803e3d6000fd5b505050506040513d602081101561145157600080fd5b5051601a80546001600160a01b0319166001600160a01b039092169190911790555050565b600c5481565b6001600160a01b031660009081526020819052604090205490565b61149f6121be565b6005546001600160a01b039081169116146114ef576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600554600680546001600160a01b0319166001600160a01b0390921691821790556040516000919060008051602061382f833981519152908390a3600580546001600160a01b0319169055565b6115446121be565b6005546001600160a01b03908116911614611594576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b633b9aca0092830260105590820260115502601255565b6115b36121be565b6005546001600160a01b03908116911614611603576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60088054911515600160a81b0260ff60a81b19909216919091179055565b6006546001600160a01b0316331461166a5760405162461bcd60e51b815260040180806020018281038252602381526020018061397e6023913960400191505060405180910390fd5b6006546005546040516001600160a01b03928316929091169060008051602061382f83398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b600854600160a81b900460ff1681565b6005546001600160a01b031690565b6116e26121be565b6005546001600160a01b03908116911614611732576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561178157600080fd5b505afa158015611795573d6000803e3d6000fd5b505050506040513d60208110156117ab57600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293509085169163a9059cbb916044808201926020929091908290030181600087803b15801561180357600080fd5b505af1158015611817573d6000803e3d6000fd5b505050506040513d602081101561182d57600080fd5b5050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b600b5481565b6118a36121be565b6005546001600160a01b039081169116146118f3576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6119038282633b9aca0002612d5a565b5050565b61190f6121be565b6005546001600160a01b0390811691161461195f576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601a546001600160a01b03838116911614156119ac5760405162461bcd60e51b815260040180806020018281038252604c81526020018061384f604c913960600191505060405180910390fd5b6119038282612d64565b600854600160c01b900460ff1681565b6000610e4f6119d36121be565b84610f26856040518060600160405280602581526020016139a160259139600160006119fd6121be565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612cc3565b6000610e4f611a3b6121be565b84846122ae565b60186020526000908152604090205460ff1681565b60075490565b611a656121be565b6005546001600160a01b03908116911614611ab5576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6041831115611ac357600080fd5b60088054911515600160c01b0260ff60c01b19931515600160b81b0260ff60b81b199093169290921792909216179055600e55565b60135481565b611b066121be565b6005546001600160a01b03908116911614611b56576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260176020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611bbe6121be565b6005546001600160a01b03908116911614611c0e576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b82811015611c63578160176000868685818110611c2a57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611c11565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b601c546001600160a01b031681565b601460205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b60095481565b611d256121be565b6005546001600160a01b03908116911614611d75576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60058054600680546001600160a01b03199081166001600160a01b03841617909155169055428101600755604051600090819060008051602061382f833981519152908290a350565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60198181548110611df957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a5481565b60125481565b611e276121be565b6005546001600160a01b03908116911614611e77576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b601954811015611ee657600060198281548110611e9357fe5b60009182526020822001546001600160a01b03169150611eb28261147c565b9050611ebe8282612e16565b506001600160a01b03166000908152601660205260409020805460ff19169055600101611e7a565b50565b601a5460408051630240bc6b60e21b815290516000926001600160a01b031691839182918491630902f1ac91600480820192606092909190829003018186803b158015611f3557600080fd5b505afa158015611f49573d6000803e3d6000fd5b505050506040513d6060811015611f5f57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905081811115611f8957905b80611f975760009350611fc5565b8181655af3107a4000021115611fc057611fb9655af3107a4000820283612123565b9350611fc5565b600093505b50505090565b611fd36121be565b6005546001600160a01b03908116911614612023576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b0381166120685760405162461bcd60e51b81526004018080602001828103825260268152602001806136e26026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692169060008051602061382f83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600854600160b01b900460ff1681565b60008282018381101561211c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061211c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f12565b60008261217457506000610e53565b8282028284828161218157fe5b041461211c5760405162461bcd60e51b81526004018080602001828103825260218152602001806137c66021913960400191505060405180910390fd5b3390565b6001600160a01b0383166122075760405162461bcd60e51b815260040180806020018281038252602481526020018061391b6024913960400191505060405180910390fd5b6001600160a01b03821661224c5760405162461bcd60e51b81526004018080602001828103825260228152602001806137086022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122f35760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166123385760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b6001600160a01b03821660009081526015602052604090205460ff1615801561237a57506001600160a01b03831660009081526015602052604090205460ff16155b6123b55760405162461bcd60e51b81526004018080602001828103825260308152602001806136b26030913960400191505060405180910390fd5b806123cb576123c683836000612f77565b612cbe565b60006123d63061147c565b90506000600a54821015905060008180156123fb5750600854600160a01b900460ff16155b801561242057506001600160a01b03861660009081526018602052604090205460ff16155b8015612445575061242f6116cb565b6001600160a01b0316866001600160a01b031614155b801561246a57506124546116cb565b6001600160a01b0316856001600160a01b031614155b1561255f576008805460ff60a01b1916600160a01b179055600d54600c546000916124a09161249a908790612165565b90612123565b90506124ab816130d2565b601c54604080518381526001600160a01b03909216602083015280517feafa9125fd4b0edd379b9ab67721e8f4eb26bc018c352092ccac54a89ac6fed79281900390910190a1600061250e600d5461249a600b548861216590919063ffffffff16565b905061251981613114565b6040805182815290517f61d10b3f17a77466a4241488e37c886fa1637f9863ae76dd5076a80a932bc4eb9181900360200190a150506008805460ff60a01b191690555060015b6008546001600160a01b03871660009081526017602052604090205460ff600160a01b9092048216159116806125ad57506001600160a01b03861660009081526017602052604090205460ff165b156125b6575060005b8015612cae576001600160a01b03871660009081526018602052604090205460ff161561284f57600854600160b01b900460ff1661263b576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e2069736e2774206c61756e63686564207965740000000000000000604482015290519081900360640190fd5b60105485111561267c5760405162461bcd60e51b815260040180806020018281038252602881526020018061377a6028913960400191505060405180910390fd5b601254856126898861147c565b0111156126c75760405162461bcd60e51b81526004018080602001828103825260248152602001806137a26024913960400191505060405180910390fd5b601354421180159081906126f457506001600160a01b03871660009081526016602052604090205460ff16155b1561274557601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160a81b900460ff16801561277757506001600160a01b03871660009081526016602052604090205460ff16155b156127c857601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160c01b900460ff16151560011415612806576127e9878761319a565b6001600160a01b0388166000908152601460205260409020600201555b604080518781526001600160a01b038916602082015281517f1df6c66a1a6eb6b0b6a23930c6ec94664e676e5d72f819a20a11e6c54540fa42929181900390910190a150612b6e565b6001600160a01b03861660009081526018602052604090205460ff1615612a70576001600160a01b03871660009081526016602052604090205460ff16156128cf576040805162461bcd60e51b815260206004820152600e60248201526d2cb7ba9030b9329039b734b832b960911b604482015290519081900360640190fd5b6011548511156129105760405162461bcd60e51b815260040180806020018281038252603a8152602001806138e1603a913960400191505060405180910390fd5b600854600160c81b900460ff161515600114801561294a57506001600160a01b03871660009081526014602052604090206004015460ff16155b156129f457600061295a8861147c565b905060028111156129f257612970816002612123565b86111561297c57600080fd5b6001600160a01b038816600090815260146020526040902060039081018054880190556129aa908290612123565b6001600160a01b038916600090815260146020526040902060030154106129f2576001600160a01b0388166000908152601460205260409020600401805460ff191660011790555b505b612a0785612a018961147c565b90613212565b612a28576001600160a01b0387166000908152601460205260408120600201555b604080518681526001600160a01b038916602082015281517f845540a7f3f9afb8980bffef1e5a59039c43bbd45de62cc2ce5def5830465f04929181900390910190a1612b6e565b6001600160a01b03871660009081526017602052604090205460ff16158015612ab257506001600160a01b03861660009081526017602052604090205460ff16155b15612b6e57600854600160c01b900460ff16151560011415612af557612ad8868661319a565b6001600160a01b0387166000908152601460205260409020600201555b612b0285612a018961147c565b612b23576001600160a01b0387166000908152601460205260408120600201555b604080516001600160a01b03808a1682528816602082015280820187905290517f38e8feed990acd7f5210170f614d354c7a0485670b9a787e9e00f8fca640d5749181900360600190a15b6000612b8a606461249a600d548961216590919063ffffffff16565b6001600160a01b03881660009081526018602052604090205490915060ff1615612bc057612bbe606461249a886001612165565b015b600854600090600160b81b900460ff1615156001148015612bfa57506001600160a01b03891660009081526017602052604090205460ff16155b8015612c1e57506001600160a01b03881660009081526018602052604090205460ff165b15612c9057600060018515151415612c5157600f548711612c40576001612c4e565b600f54612c4e908890612123565b90505b6001600160a01b038a16600090815260146020526040902060020154612c78908983613254565b9150828211612c88576000612c8c565b8282035b9150505b612c9c87838301613212565b9650612cab8930838501612f77565b50505b612cb9878787612f77565b505050505b505050565b60008184841115612d525760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d17578181015183820152602001612cff565b50505050905090810190601f168015612d445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611903828261330f565b6001600160a01b03821660009081526018602052604090205460ff1615158115151415612dc25760405162461bcd60e51b815260040180806020018281038252603f81526020018061393f603f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216612e5b5760405162461bcd60e51b815260040180806020018281038252602181526020018061389b6021913960400191505060405180910390fd5b612e6782600083612cbe565b612ea481604051806060016040528060228152602001613690602291396001600160a01b0385166000908152602081905260409020549190612cc3565b6001600160a01b038316600090815260208190526040902055600254612eca9082613212565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008183612f615760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d17578181015183820152602001612cff565b506000838581612f6d57fe5b0495945050505050565b6001600160a01b038316612fbc5760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166130015760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b61300c838383612cbe565b6130498160405180606001604052806026815260200161372a602691396001600160a01b0386166000908152602081905260409020549190612cc3565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461307890826120c2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6130db816133ff565b601c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611903573d6000803e3d6000fd5b6000613121826002612123565b9050600061312f8383613212565b90504761313b836133ff565b60006131474783613212565b905061315383826135ae565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b6000806131a5611ee9565b6001600160a01b0385166000908152601460205260408120600201549192506131cd8661147c565b90508115806131da575080155b156131e757829350613209565b846131f457819350613209565b61320682820284870201828701612123565b93505b50505092915050565b600061211c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cc3565b60008061325f611ee9565b905060008515806132705750606485105b1561327e5760009250613306565b8186600a0110156133015760646132ac6132a561329e8986036002612123565b8590612123565b8290612123565b915084600e5411156132f65784600e54038210156132ca57816132d0565b84600e54035b9150600082116132e15760006132ef565b6132ef8161249a8885612165565b93506132fb565b600093505b50613306565b600092505b50509392505050565b6001600160a01b03821661336a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61337660008383612cbe565b60025461338390826120c2565b6002556001600160a01b0382166000908152602081905260409020546133a990826120c2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061342e57fe5b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561348257600080fd5b505afa158015613496573d6000803e3d6000fd5b505050506040513d60208110156134ac57600080fd5b50518151829060019081106134bd57fe5b6001600160a01b0392831660209182029290920101526008546134e391309116846121c2565b60085460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613569578181015183820152602001613551565b505050509050019650505050505050600060405180830381600087803b15801561359257600080fd5b505af11580156135a6573d6000803e3d6000fd5b505050505050565b6008546135c69030906001600160a01b0316846121c2565b600854601b546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561363b57600080fd5b505af115801561364f573d6000803e3d6000fd5b50505050506040513d606081101561366657600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365596f75722061646472657373206f7220726563697069656e74206164647265737320697320626c61636b6c69737465644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a2054686520726f7574657220616c726561647920686173207468617420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0546f6b656e3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122063579bd8f2464b72ed5b488c7b012a9678c6db4774857ad6e0f6bd6a117717e264736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ec836ac628c65d0841e578775f9f2416b369461b000000000000000000000000ec836ac628c65d0841e578775f9f2416b369461b0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : liqFee (uint256): 2
Arg [1] : marketFee (uint256): 3
Arg [2] : supply (uint256): 100000000000
Arg [3] : maxBuyPercent (uint256): 1
Arg [4] : maxSellPercent (uint256): 1
Arg [5] : maxWalletPercent (uint256): 1
Arg [6] : marketingWallet (address): 0xeC836Ac628c65D0841E578775f9f2416b369461B
Arg [7] : liqudityWallet (address): 0xeC836Ac628c65D0841E578775f9f2416b369461B
Arg [8] : uniswapV2RouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [2] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000ec836ac628c65d0841e578775f9f2416b369461b
Arg [7] : 000000000000000000000000ec836ac628c65d0841e578775f9f2416b369461b
Arg [8] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode Sourcemap
32034:17257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38008:117;;;;;;;;;;;;;:::i;:::-;;32629:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;32747:39;;;;;;;;;;;;;:::i;23285:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25450:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25450:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32565:57;;;;;;;;;;;;;:::i;32107:41::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;32107:41:0;;;;;;;;;;;;;;24403:108;;;;;;;;;;;;;:::i;32241:34::-;;;;;;;;;;;;;:::i;32917:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32917:47:0;-1:-1:-1;;;;;32917:47:0;;:::i;32971:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32971:42:0;-1:-1:-1;;;;;32971:42:0;;:::i;26101:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26101:355:0;;;;;;;;;;;;;;;;;:::i;33218:32::-;;;;;;;;;;;;;:::i;24246:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37624:97;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37624:97:0;;:::i;32321:40::-;;;;;;;;;;;;;:::i;26865:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26865:218:0;;;;;;;;:::i;38596:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38596:134:0;;;;;;;;;;:::i;33183:28::-;;;;;;;;;;;;;:::i;38459:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38459:125:0;-1:-1:-1;;;;;38459:125:0;;:::i;37301:311::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37301:311:0;;;;;;;:::i;32702:38::-;;;;;;;;;;;;;:::i;36695:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36695:116:0;-1:-1:-1;;;;;36695:116:0;;:::i;35684:499::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35684:499:0;-1:-1:-1;;;;;35684:499:0;;:::i;32531:27::-;;;;;;;;;;;;;:::i;24574:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24574:127:0;-1:-1:-1;;;;;24574:127:0;;:::i;12995:182::-;;;;;;;;;;;;;:::i;35147:251::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35147:251:0;;;;;;;;;;;;:::i;35038:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35038:99:0;;;;:::i;14055:234::-;;;;;;;;;;;;;:::i;32185:21::-;;;;;;;;;;;;;:::i;12353:79::-;;;;;;;;;;;;;:::i;38742:207::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38742:207:0;;;;;;;;;;:::i;23504:104::-;;;;;;;;;;;;;:::i;32497:27::-;;;;;;;;;;;;;:::i;37144:139::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37144:139:0;;;;;;;;:::i;37733:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37733:263:0;;;;;;;;;;:::i;32282:32::-;;;;;;;;;;;;;:::i;27586:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27586:269:0;;;;;;;;:::i;24914:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24914:175:0;;;;;;;;:::i;33080:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33080:58:0;-1:-1:-1;;;;;33080:58:0;;:::i;13588:89::-;;;;;;;;;;;;;:::i;35408:265::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35408:265:0;;;;;;;;;;;;;;;;:::i;32829:25::-;;;;;;;;;;;;;:::i;36191:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36191:184:0;;;;;;;;;;:::i;36383:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36383:304:0;-1:-1:-1;36383:304:0;;;;:::i;33257:33::-;;;;;;;;;;;;;:::i;32866:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32866:44:0;-1:-1:-1;;;;;32866:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32374:33;;;;;;;;;;;;;:::i;13753:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13753:226:0;;:::i;25152:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25152:151:0;;;;;;;;;;:::i;33145:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33145:25:0;;:::i;32414:75::-;;;;;;;;;;;;;:::i;32793:29::-;;;;;;;;;;;;;:::i;36823:309::-;;;;;;;;;;;;;:::i;43775:649::-;;;;;;;;;;;;;:::i;13332:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13332:244:0;-1:-1:-1;;;;;13332:244:0;;:::i;32213:21::-;;;;;;;;;;;;;:::i;38008:117::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;38054:9:::1;:16:::0;;-1:-1:-1;;;;38054:16:0::1;-1:-1:-1::0;;;38054:16:0::1;::::0;;38094:23:::1;:15;38114:2;38094:19;:23::i;:::-;38081:10;:36:::0;38008:117::o;32629:26::-;;;;:::o;32747:39::-;;;;:::o;23285:100::-;23372:5;23365:12;;;;;;;;-1:-1:-1;;23365:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23339:13;;23365:12;;23372:5;;23365:12;;23372:5;23365:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23285:100;:::o;25450:169::-;25533:4;25550:39;25559:12;:10;:12::i;:::-;25573:7;25582:6;25550:8;:39::i;:::-;-1:-1:-1;25607:4:0;25450:169;;;;;:::o;32565:57::-;;;;:::o;32107:41::-;;;-1:-1:-1;;;;;32107:41:0;;:::o;24403:108::-;24491:12;;24403:108;:::o;32241:34::-;;;-1:-1:-1;;;32241:34:0;;;;;:::o;32917:47::-;;;;;;;;;;;;;;;:::o;32971:42::-;;;;;;;;;;;;;;;:::o;26101:355::-;26241:4;26258:36;26268:6;26276:9;26287:6;26258:9;:36::i;:::-;26305:121;26314:6;26322:12;:10;:12::i;:::-;26336:89;26374:6;26336:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26336:19:0;;;;;;:11;:19;;;;;;26356:12;:10;:12::i;:::-;-1:-1:-1;;;;;26336:33:0;;;;;;;;;;;;-1:-1:-1;26336:33:0;;;:89;:37;:89::i;:::-;26305:8;:121::i;:::-;-1:-1:-1;26444:4:0;26101:355;;;;;:::o;33218:32::-;;;-1:-1:-1;;;;;33218:32:0;;:::o;24246:92::-;24329:1;24246:92;:::o;37624:97::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37693:12:::1;:20:::0;37624:97::o;32321:40::-;;;-1:-1:-1;;;32321:40:0;;;;;:::o;26865:218::-;26953:4;26970:83;26979:12;:10;:12::i;:::-;26993:7;27002:50;27041:10;27002:11;:25;27014:12;:10;:12::i;:::-;-1:-1:-1;;;;;27002:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27002:25:0;;;:34;;;;;;;;;;;:38;:50::i;38596:134::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38685:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:37;;-1:-1:-1;;38685:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38596:134::o;33183:28::-;;;-1:-1:-1;;;;;33183:28:0;;:::o;38459:125::-;-1:-1:-1;;;;;38548:28:0;38524:4;38548:28;;;:19;:28;;;;;;;;;38459:125::o;37301:311::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37399:12:::1;:32:::0;;;37442:12:::1;:32:::0;;;37497:30:::1;37414:17:::0;37457;37497:16:::1;:30::i;:::-;37485:9;:42:::0;;;37564:12:::1;::::0;37578::::1;::::0;37553:49:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;::::1;37301:311:::0;;:::o;32702:38::-;;;;:::o;36695:116::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;36776:18:::1;:27:::0;;-1:-1:-1;;;;;;36776:27:0::1;-1:-1:-1::0;;;;;36776:27:0;;;::::1;::::0;;;::::1;::::0;;36695:116::o;35684:499::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35793:15:::1;::::0;-1:-1:-1;;;;;35771:38:0;;::::1;35793:15:::0;::::1;35771:38;;35763:93;;;;-1:-1:-1::0;;;35763:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35914:15;::::0;35872:59:::1;::::0;-1:-1:-1;;;;;35914:15:0;;::::1;::::0;35872:59;::::1;::::0;::::1;::::0;35914:15:::1;::::0;35872:59:::1;35942:15;:48:::0;;-1:-1:-1;;;;;;35942:48:0::1;-1:-1:-1::0;;;;;35942:48:0;;::::1;::::0;;;::::1;::::0;;;;36044:25:::1;::::0;;-1:-1:-1;;;36044:25:0;;;;-1:-1:-1;;36044:15:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36044:25:0;36111:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;36111:22:0;;;;-1:-1:-1;;;;;36026:69:0;;::::1;::::0;::::1;::::0;36104:4:::1;::::0;36111:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;36044:25:::1;::::0;36111:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36111:22:0;36026:108:::1;::::0;;-1:-1:-1;;;;;;36026:108:0::1;::::0;;;;;;-1:-1:-1;;;;;36026:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;36111:22:::1;::::0;36026:108;;;;;;;-1:-1:-1;36026:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36026:108:0;36145:13:::1;:30:::0;;-1:-1:-1;;;;;;36145:30:0::1;-1:-1:-1::0;;;;;36145:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;35684:499:0:o;32531:27::-;;;;:::o;24574:127::-;-1:-1:-1;;;;;24675:18:0;24648:7;24675:18;;;;;;;;;;;;24574:127::o;12995:182::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;13077:6:::1;::::0;13060:14:::1;:23:::0;;-1:-1:-1;;;;;;13060:23:0::1;-1:-1:-1::0;;;;;13077:6:0;;::::1;13060:23:::0;;::::1;::::0;;13099:40:::1;::::0;13077:6:::1;::::0;;-1:-1:-1;;;;;;;;;;;13099:40:0;13077:6;;13099:40:::1;13150:6;:19:::0;;-1:-1:-1;;;;;;13150:19:0::1;::::0;;12995:182::o;35147:251::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35285:5:::1;35275:16:::0;;::::1;35249:23;:42:::0;35328:17;;::::1;35301:24;:44:::0;35372:19:::1;35355:14;:36:::0;35147:251::o;35038:99::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35107:9:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;35107:23:0::1;-1:-1:-1::0;;;;35107:23:0;;::::1;::::0;;;::::1;::::0;;35038:99::o;14055:234::-;14119:14;;-1:-1:-1;;;;;14119:14:0;14137:10;14119:28;14111:76;;;;-1:-1:-1;;;14111:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14232:14;;14224:6;;14203:44;;-1:-1:-1;;;;;14232:14:0;;;;14224:6;;;;-1:-1:-1;;;;;;;;;;;14203:44:0;14232:14;;14203:44;14267:14;;14258:6;:23;;-1:-1:-1;;;;;;14258:23:0;-1:-1:-1;;;;;14267:14:0;;;14258:23;;;;;;14055:234::o;32185:21::-;;;-1:-1:-1;;;32185:21:0;;;;;:::o;12353:79::-;12418:6;;-1:-1:-1;;;;;12418:6:0;12353:79;:::o;38742:207::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;38834:15:::1;38859:5;-1:-1:-1::0;;;;;38852:23:0::1;;38884:4;38852:38;;;;;;;;;;;;;-1:-1:-1::0;;;;;38852:38:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38852:38:0;38901:40:::1;::::0;;-1:-1:-1;;;38901:40:0;;-1:-1:-1;;;;;38901:40:0;;::::1;;::::0;::::1;::::0;;;;;;;;;38852:38;;-1:-1:-1;38901:22:0;;::::1;::::0;::::1;::::0;:40;;;;;38852:38:::1;::::0;38901:40;;;;;;;;-1:-1:-1;38901:22:0;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;38742:207:0:o;23504:104::-;23593:7;23586:14;;;;;;;;-1:-1:-1;;23586:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23560:13;;23586:14;;23593:7;;23586:14;;23593:7;23586:14;;;;;;;;;;;;;;;;;;;;;;;;32497:27;;;;:::o;37144:139::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37228:47:::1;37247:7;37256:6;37266:7;37256:18;37228;:47::i;:::-;37144:139:::0;;:::o;37733:263::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37840:13:::1;::::0;-1:-1:-1;;;;;37832:21:0;;::::1;37840:13:::0;::::1;37832:21;;37824:110;;;;-1:-1:-1::0;;;37824:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37947:41;37976:4;37982:5;37947:28;:41::i;32282:32::-:0;;;-1:-1:-1;;;32282:32:0;;;;;:::o;27586:269::-;27679:4;27696:129;27705:12;:10;:12::i;:::-;27719:7;27728:96;27767:15;27728:96;;;;;;;;;;;;;;;;;:11;:25;27740:12;:10;:12::i;:::-;-1:-1:-1;;;;;27728:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27728:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;24914:175::-;25000:4;25017:42;25027:12;:10;:12::i;:::-;25041:9;25052:6;25017:9;:42::i;33080:58::-;;;;;;;;;;;;;;;:::o;13588:89::-;13660:9;;13588:89;:::o;35408:265::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35552:2:::1;35541:7;:13;;35533:22;;;::::0;::::1;;35565:15;:35:::0;;35610:30;::::1;;-1:-1:-1::0;;;35610:30:0::1;-1:-1:-1::0;;;;35565:35:0;::::1;;-1:-1:-1::0;;;35565:35:0::1;-1:-1:-1::0;;;;35565:35:0;;::::1;::::0;;;::::1;35610:30:::0;;;::::1;;::::0;;35650:6:::1;:16:::0;35408:265::o;32829:25::-;;;;:::o;36191:184::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36276:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36276:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36333:34;;;;;;;::::1;::::0;;;;;;;;::::1;36191:184:::0;;:::o;36383:304::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;36500:9:::1;36496:115;36515:19:::0;;::::1;36496:115;;;36591:8;36556:19;:32;36576:8;;36585:1;36576:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;36576:11:0::1;36556:32:::0;;-1:-1:-1;36556:32:0;::::1;::::0;;;;;;-1:-1:-1;36556:32:0;:43;;-1:-1:-1;;36556:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;36536:3:0::1;36496:115;;;;36628:51;36660:8;;36670;36628:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;36628:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;36628:51:0;;-1:-1:-1;;;;;36628:51:0::1;36383:304:::0;;;:::o;33257:33::-;;;-1:-1:-1;;;;;33257:33:0;;:::o;32866:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32374:33::-;;;;:::o;13753:226::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;13834:6:::1;::::0;;13817:14:::1;:23:::0;;-1:-1:-1;;;;;;13817:23:0;;::::1;-1:-1:-1::0;;;;;13834:6:0;::::1;13817:23;::::0;;;13851:19:::1;::::0;;13893:15:::1;:22:::0;::::1;13881:9;:34:::0;13931:40:::1;::::0;13834:6:::1;::::0;;;-1:-1:-1;;;;;;;;;;;13931:40:0;13834:6;;13931:40:::1;13753:226:::0;:::o;25152:151::-;-1:-1:-1;;;;;25268:18:0;;;25241:7;25268:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25152:151::o;33145:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33145:25:0;;-1:-1:-1;33145:25:0;:::o;32414:75::-;;;;:::o;32793:29::-;;;;:::o;36823:309::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;36888:9:::1;36884:241;36907:8;:15:::0;36903:19;::::1;36884:241;;;36943:14;36960:8;36969:1;36960:11;;;;;;;;;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;36960:11:0::1;::::0;-1:-1:-1;37004:17:0::1;36960:11:::0;37004:9:::1;:17::i;:::-;36986:35;;37036:37;37056:6;37065:7;37036:11;:37::i;:::-;-1:-1:-1::0;;;;;;37088:17:0::1;37108:5;37088:17:::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;37088:25:0::1;::::0;;;36924:3:::1;36884:241;;;;36823:309::o:0;43775:649::-;43952:13;;44038:18;;;-1:-1:-1;;;44038:18:0;;;;43823:20;;-1:-1:-1;;;;;43952:13:0;;43823:20;;;;43952:13;;44038:16;;:18;;;;;;;;;;;;;;;43952:13;44038:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44038:18:0;;;;;;;44021:35;;;;;-1:-1:-1;44021:35:0;;-1:-1:-1;44069:12:0;;;44066:122;;;44145:3;44066:122;44201:8;44198:220;;44240:1;44225:16;;44198:220;;;44287:6;44262:3;44268:15;44262:21;44261:32;44258:160;;;44324:35;44331:15;44325:21;;44352:6;44324:27;:35::i;:::-;44309:50;;44258:160;;;44405:1;44390:16;;44258:160;43775:649;;;;:::o;13332:244::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13421:22:0;::::1;13413:73;;;;-1:-1:-1::0;;;13413:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13523:6;::::0;13502:38:::1;::::0;-1:-1:-1;;;;;13502:38:0;;::::1;::::0;13523:6:::1;::::0;-1:-1:-1;;;;;;;;;;;13502:38:0;13523:6:::1;::::0;13502:38:::1;13551:6;:17:::0;;-1:-1:-1;;;;;;13551:17:0::1;-1:-1:-1::0;;;;;13551:17:0;;;::::1;::::0;;;::::1;::::0;;13332:244::o;32213:21::-;;;-1:-1:-1;;;32213:21:0;;;;;:::o;14578:181::-;14636:7;14668:5;;;14692:6;;;;14684:46;;;;;-1:-1:-1;;;14684:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14750:1;14578:181;-1:-1:-1;;;14578:181:0:o;16879:132::-;16937:7;16964:39;16968:1;16971;16964:39;;;;;;;;;;;;;;;;;:3;:39::i;15932:471::-;15990:7;16235:6;16231:47;;-1:-1:-1;16265:1:0;16258:8;;16231:47;16302:5;;;16306:1;16302;:5;:1;16326:5;;;;;:10;16318:56;;;;-1:-1:-1;;;16318:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2776:98;2856:10;2776:98;:::o;30893:380::-;-1:-1:-1;;;;;31029:19:0;;31021:68;;;;-1:-1:-1;;;31021:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31108:21:0;;31100:68;;;;-1:-1:-1;;;31100:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31181:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31233:32;;;;;;;;;;;;;;;;;30893:380;;;:::o;38961:4802::-;-1:-1:-1;;;;;39059:18:0;;39051:68;;;;-1:-1:-1;;;39051:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39138:16:0;;39130:64;;;;-1:-1:-1;;;39130:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39214:18:0;;;;;;:14;:18;;;;;;;;39213:19;:44;;;;-1:-1:-1;;;;;;39237:20:0;;;;;;:14;:20;;;;;;;;39236:21;39213:44;39205:105;;;;-1:-1:-1;;;39205:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39334:11;39331:92;;39362:28;39378:4;39384:2;39388:1;39362:15;:28::i;:::-;39405:7;;39331:92;39437:28;39468:24;39486:4;39468:9;:24::i;:::-;39437:55;;39505:12;39544:18;;39520:20;:42;;39505:57;;39573:12;39602:7;:33;;;;-1:-1:-1;39627:8:0;;-1:-1:-1;;;39627:8:0;;;;39626:9;39602:33;:82;;;;-1:-1:-1;;;;;;39653:31:0;;;;;;:25;:31;;;;;;;;39652:32;39602:82;:114;;;;;39709:7;:5;:7::i;:::-;-1:-1:-1;;;;;39701:15:0;:4;-1:-1:-1;;;;;39701:15:0;;;39602:114;:144;;;;;39739:7;:5;:7::i;:::-;-1:-1:-1;;;;;39733:13:0;:2;-1:-1:-1;;;;;39733:13:0;;;39602:144;39598:705;;;39773:8;:15;;-1:-1:-1;;;;39773:15:0;-1:-1:-1;;;39773:15:0;;;39886:9;;39868:12;;39773:15;;39843:53;;:38;;:20;;:24;:38::i;:::-;:42;;:53::i;:::-;39817:79;;39911:45;39940:15;39911:28;:45::i;:::-;40015:18;;39976:58;;;;;;-1:-1:-1;;;;;40015:18:0;;;39976:58;;;;;;;;;;;;;;;;40063:18;40084:53;40127:9;;40084:38;40109:12;;40084:20;:24;;:38;;;;:::i;:53::-;40063:74;;40152:26;40167:10;40152:14;:26::i;:::-;40198:31;;;;;;;;;;;;;;;;;-1:-1:-1;;40246:8:0;:16;;-1:-1:-1;;;;40246:16:0;;;-1:-1:-1;40246:16:0;39598:705;40333:8;;-1:-1:-1;;;;;40442:25:0;;40317:12;40442:25;;;:19;:25;;;;;;40333:8;-1:-1:-1;;;40333:8:0;;;;;40332:9;;40442:25;;:52;;-1:-1:-1;;;;;;40471:23:0;;;;;;:19;:23;;;;;;;;40442:52;40439:99;;;-1:-1:-1;40521:5:0;40439:99;40553:7;40550:3160;;;-1:-1:-1;;;;;40580:31:0;;;;;;:25;:31;;;;;;;;40577:2278;;;40635:9;;-1:-1:-1;;;40635:9:0;;;;40627:46;;;;;-1:-1:-1;;;40627:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40724:23;;40714:6;:33;;40688:135;;;;-1:-1:-1;;;40688:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40904:14;;40894:6;40878:13;40888:2;40878:9;:13::i;:::-;:22;:40;;40852:138;;;;-1:-1:-1;;;40852:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41054:10;;41035:15;:29;;;;;;41083:26;;-1:-1:-1;;;;;;41096:13:0;;;;;;:9;:13;;;;;;;;41095:14;41083:26;41079:62;;;41124:8;:17;;;;;;;-1:-1:-1;41124:17:0;;;;;;;;-1:-1:-1;;;;;;41124:17:0;-1:-1:-1;;;;;41124:17:0;;;;;41079:62;41173:9;;-1:-1:-1;;;41173:9:0;;;;:27;;;;-1:-1:-1;;;;;;41187:13:0;;;;;;:9;:13;;;;;;;;41186:14;41173:27;41170:62;;;41215:8;:17;;;;;;;-1:-1:-1;41215:17:0;;;;;;;;-1:-1:-1;;;;;;41215:17:0;-1:-1:-1;;;;;41215:17:0;;;;;41170:62;41264:13;;-1:-1:-1;;;41264:13:0;;;;:21;;41281:4;41264:21;41261:119;;;41332:32;41353:2;41357:6;41332:20;:32::i;:::-;-1:-1:-1;;;;;41305:12:0;;;;;;:8;:12;;;;;:24;;:59;41261:119;41413:18;;;;;;-1:-1:-1;;;;;41413:18:0;;;;;;;;;;;;;;;;;;;40577:2278;;;;-1:-1:-1;;;;;41469:29:0;;;;;;:25;:29;;;;;;;;41466:1389;;;-1:-1:-1;;;;;41527:15:0;;;;;;:9;:15;;;;;;;;41526:16;41518:43;;;;;-1:-1:-1;;;41518:43:0;;;;;;;;;;;;-1:-1:-1;;;41518:43:0;;;;;;;;;;;;;;;41598:24;;41588:6;:34;;41580:105;;;;-1:-1:-1;;;41580:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41709:21;;-1:-1:-1;;;41709:21:0;;;;:29;;41734:4;41709:29;:74;;;;-1:-1:-1;;;;;;41742:14:0;;;;;;:8;:14;;;;;:32;;;;;:41;41709:74;41706:492;;;41807:11;41821:15;41831:4;41821:9;:15::i;:::-;41807:29;;41868:1;41862:3;:7;41859:320;;;41915:10;:3;41923:1;41915:7;:10::i;:::-;41905:6;:20;;41897:29;;;;;;-1:-1:-1;;;;;41953:14:0;;;;;;:8;:14;;;;;:25;;;;:35;;;;;;42047:10;;:3;;:7;:10::i;:::-;-1:-1:-1;;;;;42018:14:0;;;;;;:8;:14;;;;;:25;;;:39;42015:141;;-1:-1:-1;;;;;42089:14:0;;;;;;:8;:14;;;;;:32;;:39;;-1:-1:-1;;42089:39:0;42124:4;42089:39;;;42015:141;41706:492;;42237:27;42257:6;42237:15;42247:4;42237:9;:15::i;:::-;:19;;:27::i;:::-;42234:109;;-1:-1:-1;;;;;42293:14:0;;42322:1;42293:14;;;:8;:14;;;;;:26;;:30;42234:109;42362:21;;;;;;-1:-1:-1;;;;;42362:21:0;;;;;;;;;;;;;;;;;;;41466:1389;;;-1:-1:-1;;;;;42423:25:0;;;;;;:19;:25;;;;;;;;42422:26;:54;;;;-1:-1:-1;;;;;;42453:23:0;;;;;;:19;:23;;;;;;;;42452:24;42422:54;42418:437;;;42513:13;;-1:-1:-1;;;42513:13:0;;;;:21;;42530:4;42513:21;42510:119;;;42581:32;42602:2;42606:6;42581:20;:32::i;:::-;-1:-1:-1;;;;;42554:12:0;;;;;;:8;:12;;;;;:24;;:59;42510:119;42664:27;42684:6;42664:15;42674:4;42664:9;:15::i;:27::-;42661:109;;-1:-1:-1;;;;;42720:14:0;;42749:1;42720:14;;;:8;:14;;;;;:26;;:30;42661:109;42807:32;;;-1:-1:-1;;;;;42807:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42418:437;42880:12;42895:30;42921:3;42895:21;42906:9;;42895:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;42940:29:0;;;;;;:25;:29;;;;;;42880:45;;-1:-1:-1;42940:29:0;;42937:92;;;42994:22;43012:3;42994:13;:6;43005:1;42994:10;:13::i;:22::-;42986:30;42937:92;43089:15;;43051:23;;-1:-1:-1;;;43089:15:0;;;;:23;;43108:4;43089:23;:53;;;;-1:-1:-1;;;;;;43117:25:0;;;;;;:19;:25;;;;;;;;43116:26;43089:53;:86;;;;-1:-1:-1;;;;;;43146:29:0;;;;;;:25;:29;;;;;;;;43089:86;43086:470;;;43192:9;43231:4;43220:15;;;;43217:151;;;43283:17;;43260:20;:40;:90;;43349:1;43260:90;;;43328:17;;43303:43;;:20;;:24;:43::i;:::-;43256:94;;43217:151;-1:-1:-1;;;;;43420:14:0;;;;;;:8;:14;;;;;:26;;;43401:57;;43448:6;43456:1;43401:18;:57::i;:::-;43383:75;;43510:4;43492:15;:22;:51;;43542:1;43492:51;;;43535:4;43517:15;:22;43492:51;43474:69;;43086:470;;43587:34;:6;43598:22;;;43587:10;:34::i;:::-;43578:43;;43638:60;43654:4;43668;43682:15;43675:4;:22;43638:15;:60::i;:::-;40550:3160;;;43722:33;43738:4;43744:2;43748:6;43722:15;:33::i;:::-;38961:4802;;;;;;;;:::o;15481:192::-;15567:7;15603:12;15595:6;;;;15587:29;;;;-1:-1:-1;;;15587:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15639:5:0;;;15481:192::o;30344:113::-;30427:22;30433:7;30442:6;30427:5;:22::i;38137:313::-;-1:-1:-1;;;;;38228:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;38220:116;;;;-1:-1:-1;;;38220:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38347:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38347:39:0;;;;;;;;;;38402:40;;38347:39;;:31;38402:40;;;38137:313;;:::o;29914:418::-;-1:-1:-1;;;;;29998:21:0;;29990:67;;;;-1:-1:-1;;;29990:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30070:49;30091:7;30108:1;30112:6;30070:20;:49::i;:::-;30153:68;30176:6;30153:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30153:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;30132:18:0;;:9;:18;;;;;;;;;;:89;30247:12;;:24;;30264:6;30247:16;:24::i;:::-;30232:12;:39;30287:37;;;;;;;;30313:1;;-1:-1:-1;;;;;30287:37:0;;;;;;;;;;;;29914:418;;:::o;17507:278::-;17593:7;17628:12;17621:5;17613:28;;;;-1:-1:-1;;;17613:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17652:9;17668:1;17664;:5;;;;;;;17507:278;-1:-1:-1;;;;;17507:278:0:o;28345:571::-;-1:-1:-1;;;;;28485:20:0;;28477:70;;;;-1:-1:-1;;;28477:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28566:23:0;;28558:71;;;;-1:-1:-1;;;28558:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28640:47;28661:6;28669:9;28680:6;28640:20;:47::i;:::-;28720:71;28742:6;28720:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28720:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;28700:17:0;;;:9;:17;;;;;;;;;;;:91;;;;28825:20;;;;;;;:32;;28850:6;28825:24;:32::i;:::-;-1:-1:-1;;;;;28802:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;28873:35;;;;;;;28802:20;;28873:35;;;;;;;;;;;;;28345:571;;;:::o;45882:178::-;45956:24;45973:6;45956:16;:24::i;:::-;45999:18;;45991:59;;-1:-1:-1;;;;;45999:18:0;;;;46028:21;45991:59;;;;;45999:18;45991:59;45999:18;45991:59;46028:21;45999:18;45991:59;;;;;;;;;;;;;;;;;;;46068:922;46177:12;46192:13;:6;46203:1;46192:10;:13::i;:::-;46177:28;-1:-1:-1;46216:17:0;46236:16;:6;46177:28;46236:10;:16::i;:::-;46216:36;-1:-1:-1;46555:21:0;46621:22;46638:4;46621:16;:22::i;:::-;46774:18;46795:41;:21;46821:14;46795:25;:41::i;:::-;46774:62;;46886:35;46899:9;46910:10;46886:12;:35::i;:::-;46939:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46068:922;;;;;:::o;45334:540::-;45423:13;45448:20;45471:17;:15;:17::i;:::-;-1:-1:-1;;;;;45512:15:0;;45499:10;45512:15;;;:8;:15;;;;;:27;;;45448:40;;-1:-1:-1;45573:16:0;45521:5;45573:9;:16::i;:::-;45550:39;-1:-1:-1;45603:7:0;;;:28;;-1:-1:-1;45614:17:0;;45603:28;45600:267;;;45655:12;45647:20;;45600:267;;;45687:17;45684:183;;45728:2;45720:10;;45684:183;;;45769:86;45771:17;;;45793:27;;;45770:51;45827:27;;;45769:57;:86::i;:::-;45761:94;;45684:183;45334:540;;;;;;;:::o;15042:136::-;15100:7;15127:43;15131:1;15134;15127:43;;;;;;;;;;;;;;;;;:3;:43::i;44432:890::-;44555:17;44584:20;44607:17;:15;:17::i;:::-;44584:40;-1:-1:-1;44635:21:0;44670:16;;;:39;;;44706:3;44690:13;:19;44670:39;44667:648;;;44737:1;44725:13;;44667:648;;;44787:12;44768:11;44782:2;44768:16;:31;44765:550;;;44827:3;44861:62;44868:53;44885:35;44886:26;;;44918:1;44885:32;:35::i;:::-;44868:12;;:16;:53::i;:::-;44861:1;;:5;:62::i;:::-;44845:78;;44950:19;44941:6;;:28;44938:322;;;45031:19;45022:6;;:28;45005:13;:45;;:92;;45084:13;45005:92;;;45062:19;45053:6;;:28;45005:92;44989:108;;45145:1;45129:13;:17;:63;;45191:1;45129:63;;;45149:39;45186:1;45149:32;:13;45167;45149:17;:32::i;:39::-;45117:75;;44938:322;;;45243:1;45231:13;;44938:322;44765:550;;;;45302:1;45290:13;;44765:550;44432:890;;;;;;;:::o;29203:378::-;-1:-1:-1;;;;;29287:21:0;;29279:65;;;;;-1:-1:-1;;;29279:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29357:49;29386:1;29390:7;29399:6;29357:20;:49::i;:::-;29434:12;;:24;;29451:6;29434:16;:24::i;:::-;29419:12;:39;-1:-1:-1;;;;;29490:18:0;;:9;:18;;;;;;;;;;;:30;;29513:6;29490:22;:30::i;:::-;-1:-1:-1;;;;;29469:18:0;;:9;:18;;;;;;;;;;;:51;;;;29536:37;;;;;;;29469:18;;:9;;29536:37;;;;;;;;;;29203:378;;:::o;46998:595::-;47152:16;;;47166:1;47152:16;;;;;;;;47128:21;;47152:16;;;;;;;;;;-1:-1:-1;47152:16:0;47128:40;;47197:4;47179;47184:1;47179:7;;;;;;;;-1:-1:-1;;;;;47179:23:0;;;:7;;;;;;;;;;:23;;;;47223:15;;:22;;;-1:-1:-1;;;47223:22:0;;;;:15;;;;;:20;;:22;;;;;47179:7;;47223:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47223:22:0;47213:7;;:4;;47218:1;;47213:7;;;;;;-1:-1:-1;;;;;47213:32:0;;;:7;;;;;;;;;:32;47290:15;;47258:62;;47275:4;;47290:15;47308:11;47258:8;:62::i;:::-;47359:15;;:224;;-1:-1:-1;;;47359:224:0;;;;;;;;:15;:224;;;;;;47537:4;47359:224;;;;;;47557:15;47359:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47359:15:0;;;;:66;;47440:11;;47510:4;;47537;47557:15;47359:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46998:595;;:::o;47601:536::-;47783:15;;47751:62;;47768:4;;-1:-1:-1;;;;;47783:15:0;47801:11;47751:8;:62::i;:::-;47856:15;;48068:17;;47856:271;;;-1:-1:-1;;;47856:271:0;;47928:4;47856:271;;;;;;;;;;:15;:271;;;;;;;;;;-1:-1:-1;;;;;48068:17:0;;;47856:271;;;;48101:15;47856:271;;;;;;:15;;;;;:31;;47895:9;;47856:271;;;;;;;;;;;;;;;47895:9;47856:15;:271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;47601:536:0:o
Swarm Source
ipfs://63579bd8f2464b72ed5b488c7b012a9678c6db4774857ad6e0f6bd6a117717e2
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.