ERC-20
Overview
Max Total Supply
500,000,000 XFBOT
Holders
232
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
108,063.20455995482052551 XFBOTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XFatherBot
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-16 */ /* $$\ $$\ $$$$$$$$\ $$\ $$\ $$$$$$$\ $$\ $$ | $$ |$$ _____| $$ | $$ | $$ __$$\ $$ | \$$\ $$ |$$ | $$$$$$\ $$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$ | $$ | $$$$$$\ $$$$$$\ \$$$$ / $$$$$\ \____$$\\_$$ _| $$ __$$\ $$ __$$\ $$ __$$\ $$$$$$$\ |$$ __$$\\_$$ _| $$ $$< $$ __|$$$$$$$ | $$ | $$ | $$ |$$$$$$$$ |$$ | \__| $$ __$$\ $$ / $$ | $$ | $$ /\$$\ $$ | $$ __$$ | $$ |$$\ $$ | $$ |$$ ____|$$ | $$ | $$ |$$ | $$ | $$ |$$\ $$ / $$ |$$ | \$$$$$$$ | \$$$$ |$$ | $$ |\$$$$$$$\ $$ | $$$$$$$ |\$$$$$$ | \$$$$ | \__| \__|\__| \_______| \____/ \__| \__| \_______|\__| \_______/ \______/ \____/ Website: https://xfatherbot.app Telegram: https://t.me/XFatherBotPortal Twitter: https://twitter.com/Xfather_bot Revenue Share: https://revenueshare.xfatherbot.app */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract XFatherBot is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public revShareWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor( address _addressOne ) ERC20("XFather Bot", "XFBOT") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 2; uint256 _buyLiquidityFee = 1; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellTeamFee = 2; uint256 totalSupply = 500_000_000 * 1e18; maxTransactionAmount = 5_000_000 * 1e18; // 1% maxWallet = 5_000_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0xFD236a7fc2C15F5eD9CAAD99c2C70494e6424fd3); // set as revShare wallet teamWallet = _addressOne; // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; buyRevShareFee = 2; buyLiquidityFee = 3; buyTeamFee = 10; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = 2; sellLiquidityFee = 3; sellTeamFee = 10; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; } function removeLimitsFee() external onlyOwner { buyRevShareFee = 2; buyLiquidityFee = 1; buyTeamFee = 2; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = 2; sellLiquidityFee = 1; sellTeamFee = 2; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet( address newRevShareWallet ) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (preMigrationPhase) { require( preMigrationTransferrable[from], "Not authorized to transfer pre-migration." ); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } 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 owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div( totalTokensToSwap - (tokensForLiquidity / 2) ); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div( totalTokensToSwap - (tokensForLiquidity / 2) ); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{ value: address(this).balance }(""); } function withdrawStuckXFather() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable( address _addr, bool isAuthorized ) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_addressOne","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimitsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckXFather","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805463ffffffff19166001908117909155601b805460ff191690911790553480156200003157600080fd5b5060405162003bac38038062003bac8339810160408190526200005491620006de565b6040518060400160405280600b81526020016a1611985d1a195c88109bdd60aa1b8152506040518060400160405280600581526020016416119093d560da1b8152508160039081620000a79190620007b4565b506004620000b68282620007b4565b505050620000d3620000cd6200042660201b60201c565b6200042a565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f58160016200047c565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000140573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001669190620006de565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001da9190620006de565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000228573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024e9190620006de565b6001600160a01b031660a0819052620002699060016200047c565b60a05162000279906001620004f6565b6a0422ca8b0a00a4250000006008819055600a5560026001818082816b019d971e4fe8401e74000000612710620002b282600562000896565b620002be9190620008b6565b600955600e879055600f869055601085905584620002dd8789620008d9565b620002e99190620008d9565b600d5560128490556013839055601482905581620003088486620008d9565b620003149190620008d9565b6011556006805473fd236a7fc2c15f5ed9caad99c2c70494e6424fd36001600160a01b031991821617909155600780549091166001600160a01b038b16179055620003736200036b6005546001600160a01b031690565b60016200054a565b620003803060016200054a565b6200038f61dead60016200054a565b620003ae620003a66005546001600160a01b031690565b60016200047c565b620003bb3060016200047c565b620003ca61dead60016200047c565b6001601c6000620003e36005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620004173382620005f4565b505050505050505050620008ef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004cb5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b8c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005955760405162461bcd60e51b8152602060048201819052602482015260008051602062003b8c8339815191526044820152606401620004c2565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200064c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c2565b8060026000828254620006609190620008d9565b90915550506001600160a01b038216600090815260208190526040812080548392906200068f908490620008d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b600060208284031215620006f157600080fd5b81516001600160a01b03811681146200070957600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200073b57607f821691505b6020821081036200075c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006d957600081815260208120601f850160051c810160208610156200078b5750805b601f850160051c820191505b81811015620007ac5782815560010162000797565b505050505050565b81516001600160401b03811115620007d057620007d062000710565b620007e881620007e1845462000726565b8462000762565b602080601f831160018114620008205760008415620008075750858301515b600019600386901b1c1916600185901b178555620007ac565b600085815260208120601f198616915b82811015620008515788860151825594840194600190910190840162000830565b5085821015620008705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008b057620008b062000880565b92915050565b600082620008d457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008b057620008b062000880565b60805160a0516132466200094660003960008181610626015281816112f70152611ba00152600081816104b901528181612b6901528181612c2201528181612c5e01528181612cd80152612cff01526132466000f3fe6080604052600436106103d25760003560e01c80637cb332bb116101fd578063c024666811610118578063e19b2823116100ab578063f63743421161007a578063f637434214610b6c578063f8b45b0514610b82578063f9f92be414610b00578063fde83a3414610b98578063fe575a8714610bae57600080fd5b8063e19b282314610b00578063e2f4560514610b20578063f11a24d314610b36578063f2fde38b14610b4c57600080fd5b8063d257b34f116100e7578063d257b34f14610a6e578063d729715f14610a8e578063d85ba06314610aa4578063dd62ed3e14610aba57600080fd5b8063c0246668146109f8578063c17b5b8c14610a18578063c18bc19514610a38578063c8c8ebe414610a5857600080fd5b8063a41a48f611610190578063adee28ff1161015f578063adee28ff14610969578063b62496f514610989578063bbc0c742146109b9578063bc205ad3146109d857600080fd5b8063a41a48f6146108f4578063a457c2d714610909578063a9059cbb14610929578063aa0e43881461094957600080fd5b8063924de9b7116101cc578063924de9b71461088957806395d89b41146108a95780639a7a23d6146108be5780639c2e4ac6146108de57600080fd5b80637cb332bb146108165780638095d564146108365780638a8c523c146108565780638da5cb5b1461086b57600080fd5b80633dc599ff116102ed5780636ddd1713116102805780637571336a1161024f5780637571336a1461079657806375e3661e146107b6578063782c4e99146107d65780637ca8448a146107f657600080fd5b80636ddd17131461071657806370a0823114610736578063715018a61461076c578063751039fc1461078157600080fd5b80634fbee193116102bc5780634fbee1931461069257806359927044146106cb5780635f189361146106eb5780636a486a8e1461070057600080fd5b80633dc599ff146105f357806349bd5a5e146106145780634a62bb65146106485780634e29e5231461066257600080fd5b80631a8145bb1161036557806324b9f3c11161033457806324b9f3c11461058b57806327c8f835146105a1578063313ce567146105b757806339509351146105d357600080fd5b80631a8145bb1461051e5780631d0f654714610534578063203e727e1461054b57806323b872dd1461056b57600080fd5b8063156c2f35116103a1578063156c2f35146104835780631694505e146104a757806318160ddd146104f357806319eab0421461050857600080fd5b806306fdde03146103de578063095ea7b3146104095780630e922ca71461043957806310d5de531461045357600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610be7565b6040516104009190612dd8565b60405180910390f35b34801561041557600080fd5b50610429610424366004612e3b565b610c79565b6040519015158152602001610400565b34801561044557600080fd5b50601b546104299060ff1681565b34801561045f57600080fd5b5061042961046e366004612e67565b60196020526000908152604090205460ff1681565b34801561048f57600080fd5b50610499600e5481565b604051908152602001610400565b3480156104b357600080fd5b506104db7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610400565b3480156104ff57600080fd5b50600254610499565b34801561051457600080fd5b5061049960125481565b34801561052a57600080fd5b5061049960165481565b34801561054057600080fd5b50610549610c90565b005b34801561055757600080fd5b50610549610566366004612e84565b610d19565b34801561057757600080fd5b50610429610586366004612e9d565b610df6565b34801561059757600080fd5b5061049960155481565b3480156105ad57600080fd5b506104db61dead81565b3480156105c357600080fd5b5060405160128152602001610400565b3480156105df57600080fd5b506104296105ee366004612e3b565b610ea0565b3480156105ff57600080fd5b50600b54610429906301000000900460ff1681565b34801561062057600080fd5b506104db7f000000000000000000000000000000000000000000000000000000000000000081565b34801561065457600080fd5b50600b546104299060ff1681565b34801561066e57600080fd5b5061042961067d366004612e67565b601c6020526000908152604090205460ff1681565b34801561069e57600080fd5b506104296106ad366004612e67565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156106d757600080fd5b506007546104db906001600160a01b031681565b3480156106f757600080fd5b50610549610edc565b34801561070c57600080fd5b5061049960115481565b34801561072257600080fd5b50600b546104299062010000900460ff1681565b34801561074257600080fd5b50610499610751366004612e67565b6001600160a01b031660009081526020819052604090205490565b34801561077857600080fd5b50610549610f1b565b34801561078d57600080fd5b50610429610f51565b3480156107a257600080fd5b506105496107b1366004612eec565b610f8e565b3480156107c257600080fd5b506105496107d1366004612e67565b610fe3565b3480156107e257600080fd5b506006546104db906001600160a01b031681565b34801561080257600080fd5b50610549610811366004612e67565b61102e565b34801561082257600080fd5b50610549610831366004612e67565b6110bc565b34801561084257600080fd5b50610549610851366004612f25565b611143565b34801561086257600080fd5b506105496111e4565b34801561087757600080fd5b506005546001600160a01b03166104db565b34801561089557600080fd5b506105496108a4366004612f51565b611276565b3480156108b557600080fd5b506103f36112bc565b3480156108ca57600080fd5b506105496108d9366004612eec565b6112cb565b3480156108ea57600080fd5b5061049960105481565b34801561090057600080fd5b506105496113a6565b34801561091557600080fd5b50610429610924366004612e3b565b6114ca565b34801561093557600080fd5b50610429610944366004612e3b565b611563565b34801561095557600080fd5b50610549610964366004612eec565b611570565b34801561097557600080fd5b50610549610984366004612e67565b6115d2565b34801561099557600080fd5b506104296109a4366004612e67565b601a6020526000908152604090205460ff1681565b3480156109c557600080fd5b50600b5461042990610100900460ff1681565b3480156109e457600080fd5b506105496109f3366004612f6e565b611659565b348015610a0457600080fd5b50610549610a13366004612eec565b6117c1565b348015610a2457600080fd5b50610549610a33366004612f25565b61184a565b348015610a4457600080fd5b50610549610a53366004612e84565b6118ed565b348015610a6457600080fd5b5061049960085481565b348015610a7a57600080fd5b50610429610a89366004612e84565b6119be565b348015610a9a57600080fd5b5061049960145481565b348015610ab057600080fd5b50610499600d5481565b348015610ac657600080fd5b50610499610ad5366004612f6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b0c57600080fd5b50610549610b1b366004612e67565b611b10565b348015610b2c57600080fd5b5061049960095481565b348015610b4257600080fd5b50610499600f5481565b348015610b5857600080fd5b50610549610b67366004612e67565b611c84565b348015610b7857600080fd5b5061049960135481565b348015610b8e57600080fd5b50610499600a5481565b348015610ba457600080fd5b5061049960175481565b348015610bba57600080fd5b50610429610bc9366004612e67565b6001600160a01b03166000908152600c602052604090205460ff1690565b606060038054610bf690612f9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2290612f9c565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000610c86338484611d1f565b5060015b92915050565b6005546001600160a01b03163314610cc35760405162461bcd60e51b8152600401610cba90612fd6565b60405180910390fd5b6002600e8190556001600f8190556010829055610ce09082613021565b610cea9190613021565b600d5560026012819055600160138190556014829055610d0a9082613021565b610d149190613021565b601155565b6005546001600160a01b03163314610d435760405162461bcd60e51b8152600401610cba90612fd6565b670de0b6b3a76400006103e8610d5860025490565b610d63906005613034565b610d6d919061304b565b610d77919061304b565b811015610dde5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610cba565b610df081670de0b6b3a7640000613034565b60085550565b6000610e03848484611e43565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e885760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610cba565b610e958533858403611d1f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c86918590610ed7908690613021565b611d1f565b6005546001600160a01b03163314610f065760405162461bcd60e51b8152600401610cba90612fd6565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610f455760405162461bcd60e51b8152600401610cba90612fd6565b610f4f6000612691565b565b6005546000906001600160a01b03163314610f7e5760405162461bcd60e51b8152600401610cba90612fd6565b50600b805460ff19169055600190565b6005546001600160a01b03163314610fb85760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461100d5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146110585760405162461bcd60e51b8152600401610cba90612fd6565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146110a5576040519150601f19603f3d011682016040523d82523d6000602084013e6110aa565b606091505b50509050806110b857600080fd5b5050565b6005546001600160a01b031633146110e65760405162461bcd60e51b8152600401610cba90612fd6565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610cba90612fd6565b600e839055600f8290556010819055806111878385613021565b6111919190613021565b600d819055600510156111df5760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610cba565b505050565b6005546001600160a01b0316331461120e5760405162461bcd60e51b8152600401610cba90612fd6565b600b805462ffff00191662010100179055601b805460ff191690556002600e8190556003600f819055600a6010819055916112499190613021565b6112539190613021565b600d556002601281905560036013819055600a601481905591610d0a9190613021565b6005546001600160a01b031633146112a05760405162461bcd60e51b8152600401610cba90612fd6565b600b8054911515620100000262ff000019909216919091179055565b606060048054610bf690612f9c565b6005546001600160a01b031633146112f55760405162461bcd60e51b8152600401610cba90612fd6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361139c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cba565b6110b882826126e3565b6005546001600160a01b031633146113d05760405162461bcd60e51b8152600401610cba90612fd6565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa15801561140e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611432919061306d565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611479573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149d9190613086565b5060405133904780156108fc02916000818181858888f193505050501580156110b8573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561154c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cba565b6115593385858403611d1f565b5060019392505050565b6000610c86338484611e43565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b0382166000908152601c60205260409020805460ff19168215151790556115c882826117c1565b6110b88282610f8e565b6005546001600160a01b031633146115fc5760405162461bcd60e51b8152600401610cba90612fd6565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116835760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b0382166116d95760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cba565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611720573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611744919061306d565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117bb9190613086565b50505050565b6005546001600160a01b031633146117eb5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118745760405162461bcd60e51b8152600401610cba90612fd6565b6012839055601382905560148190558061188e8385613021565b6118989190613021565b6011819055600510156111df5760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610cba565b6005546001600160a01b031633146119175760405162461bcd60e51b8152600401610cba90612fd6565b670de0b6b3a76400006103e861192c60025490565b61193790600a613034565b611941919061304b565b61194b919061304b565b8110156119a65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610cba565b6119b881670de0b6b3a7640000613034565b600a5550565b6005546000906001600160a01b031633146119eb5760405162461bcd60e51b8152600401610cba90612fd6565b620186a06119f860025490565b611a03906001613034565b611a0d919061304b565b821015611a7a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cba565b6103e8611a8660025490565b611a91906005613034565b611a9b919061304b565b821115611b075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610cba565b50600955600190565b6005546001600160a01b03163314611b3a5760405162461bcd60e51b8152600401610cba90612fd6565b600b546301000000900460ff1615611b9e5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610cba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614158015611bfd57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611c605760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610cba565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611cae5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b038116611d135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cba565b611d1c81612691565b50565b6001600160a01b038316611d815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cba565b6001600160a01b038216611de25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cba565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e695760405162461bcd60e51b8152600401610cba906130a3565b6001600160a01b038216611e8f5760405162461bcd60e51b8152600401610cba906130e8565b6001600160a01b0383166000908152600c602052604090205460ff1615611eed5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610cba565b6001600160a01b0382166000908152600c602052604090205460ff1615611f4d5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610cba565b601b5460ff1615611fd2576001600160a01b0383166000908152601c602052604090205460ff16611fd25760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610cba565b80600003611fe6576111df83836000612737565b600b5460ff161561235c576005546001600160a01b0384811691161480159061201d57506005546001600160a01b03838116911614155b801561203157506001600160a01b03821615155b801561204857506001600160a01b03821661dead14155b801561205e5750600554600160a01b900460ff16155b1561235c57600b54610100900460ff166120f6576001600160a01b03831660009081526018602052604090205460ff16806120b157506001600160a01b03821660009081526018602052604090205460ff165b6120f65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cba565b6001600160a01b0383166000908152601a602052604090205460ff16801561213757506001600160a01b03821660009081526019602052604090205460ff16155b1561221b576008548111156121ac5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cba565b600a546001600160a01b0383166000908152602081905260409020546121d29083613021565b11156122165760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cba565b61235c565b6001600160a01b0382166000908152601a602052604090205460ff16801561225c57506001600160a01b03831660009081526019602052604090205460ff16155b156122d2576008548111156122165760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cba565b6001600160a01b03821660009081526019602052604090205460ff1661235c57600a546001600160a01b0383166000908152602081905260409020546123189083613021565b111561235c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cba565b30600090815260208190526040902054600954811080159081906123885750600b5462010000900460ff165b801561239e5750600554600160a01b900460ff16155b80156123c357506001600160a01b0385166000908152601a602052604090205460ff16155b80156123e857506001600160a01b03851660009081526018602052604090205460ff16155b801561240d57506001600160a01b03841660009081526018602052604090205460ff16155b1561243b576005805460ff60a01b1916600160a01b17905561242d61288b565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061248957506001600160a01b03851660009081526018602052604090205460ff165b15612492575060005b6000811561267d576001600160a01b0386166000908152601a602052604090205460ff1680156124c457506000601154115b15612582576124e960646124e360115488612ae790919063ffffffff16565b90612afa565b9050601154601354826124fc9190613034565b612506919061304b565b601660008282546125179190613021565b909155505060115460145461252c9083613034565b612536919061304b565b601760008282546125479190613021565b909155505060115460125461255c9083613034565b612566919061304b565b601560008282546125779190613021565b9091555061265f9050565b6001600160a01b0387166000908152601a602052604090205460ff1680156125ac57506000600d54115b1561265f576125cb60646124e3600d5488612ae790919063ffffffff16565b9050600d54600f54826125de9190613034565b6125e8919061304b565b601660008282546125f99190613021565b9091555050600d5460105461260e9083613034565b612618919061304b565b601760008282546126299190613021565b9091555050600d54600e5461263e9083613034565b612648919061304b565b601560008282546126599190613021565b90915550505b801561267057612670873083612737565b61267a818661312b565b94505b612688878787612737565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661275d5760405162461bcd60e51b8152600401610cba906130a3565b6001600160a01b0382166127835760405162461bcd60e51b8152600401610cba906130e8565b6001600160a01b038316600090815260208190526040902054818110156127fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cba565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612832908490613021565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161287e91815260200190565b60405180910390a36117bb565b30600090815260208190526040812054905060006017546015546016546128b29190613021565b6128bc9190613021565b905060008215806128cb575081155b156128d557505050565b6009546128e3906014613034565b8311156128fb576009546128f8906014613034565b92505b60006002836016548661290e9190613034565b612918919061304b565b612922919061304b565b905060006129308583612b06565b90504761293c82612b12565b60006129484783612b06565b90506000612976600260165461295e919061304b565b612968908961312b565b6015546124e3908590612ae7565b905060006129a4600260165461298c919061304b565b612996908a61312b565b6017546124e3908690612ae7565b90506000816129b3848661312b565b6129bd919061312b565b60006016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612a1a576040519150601f19603f3d011682016040523d82523d6000602084013e612a1f565b606091505b50909850508615801590612a335750600081115b15612a8657612a428782612cd2565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612ad3576040519150601f19603f3d011682016040523d82523d6000602084013e612ad8565b606091505b50505050505050505050505050565b6000612af38284613034565b9392505050565b6000612af3828461304b565b6000612af3828461312b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b4757612b4761313e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be99190613154565b81600181518110612bfc57612bfc61313e565b60200260200101906001600160a01b031690816001600160a01b031681525050612c47307f000000000000000000000000000000000000000000000000000000000000000084611d1f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612c9c908590600090869030904290600401613171565b600060405180830381600087803b158015612cb657600080fd5b505af1158015612cca573d6000803e3d6000fd5b505050505050565b612cfd307f000000000000000000000000000000000000000000000000000000000000000084611d1f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612d446005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612dac573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612dd191906131e2565b5050505050565b600060208083528351808285015260005b81811015612e0557858101830151858201604001528201612de9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611d1c57600080fd5b60008060408385031215612e4e57600080fd5b8235612e5981612e26565b946020939093013593505050565b600060208284031215612e7957600080fd5b8135612af381612e26565b600060208284031215612e9657600080fd5b5035919050565b600080600060608486031215612eb257600080fd5b8335612ebd81612e26565b92506020840135612ecd81612e26565b929592945050506040919091013590565b8015158114611d1c57600080fd5b60008060408385031215612eff57600080fd5b8235612f0a81612e26565b91506020830135612f1a81612ede565b809150509250929050565b600080600060608486031215612f3a57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612f6357600080fd5b8135612af381612ede565b60008060408385031215612f8157600080fd5b8235612f8c81612e26565b91506020830135612f1a81612e26565b600181811c90821680612fb057607f821691505b602082108103612fd057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c8a57610c8a61300b565b8082028115828204841417610c8a57610c8a61300b565b60008261306857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561307f57600080fd5b5051919050565b60006020828403121561309857600080fd5b8151612af381612ede565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c8a57610c8a61300b565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561316657600080fd5b8151612af381612e26565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c15784516001600160a01b03168352938301939183019160010161319c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131f757600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204dbd3635358704650967379e48f631c293d054d56eec4e132b75680d3799f2e864736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000008ee6249d4e82c97b4ebab5b999eee1aa73b7abea
Deployed Bytecode
0x6080604052600436106103d25760003560e01c80637cb332bb116101fd578063c024666811610118578063e19b2823116100ab578063f63743421161007a578063f637434214610b6c578063f8b45b0514610b82578063f9f92be414610b00578063fde83a3414610b98578063fe575a8714610bae57600080fd5b8063e19b282314610b00578063e2f4560514610b20578063f11a24d314610b36578063f2fde38b14610b4c57600080fd5b8063d257b34f116100e7578063d257b34f14610a6e578063d729715f14610a8e578063d85ba06314610aa4578063dd62ed3e14610aba57600080fd5b8063c0246668146109f8578063c17b5b8c14610a18578063c18bc19514610a38578063c8c8ebe414610a5857600080fd5b8063a41a48f611610190578063adee28ff1161015f578063adee28ff14610969578063b62496f514610989578063bbc0c742146109b9578063bc205ad3146109d857600080fd5b8063a41a48f6146108f4578063a457c2d714610909578063a9059cbb14610929578063aa0e43881461094957600080fd5b8063924de9b7116101cc578063924de9b71461088957806395d89b41146108a95780639a7a23d6146108be5780639c2e4ac6146108de57600080fd5b80637cb332bb146108165780638095d564146108365780638a8c523c146108565780638da5cb5b1461086b57600080fd5b80633dc599ff116102ed5780636ddd1713116102805780637571336a1161024f5780637571336a1461079657806375e3661e146107b6578063782c4e99146107d65780637ca8448a146107f657600080fd5b80636ddd17131461071657806370a0823114610736578063715018a61461076c578063751039fc1461078157600080fd5b80634fbee193116102bc5780634fbee1931461069257806359927044146106cb5780635f189361146106eb5780636a486a8e1461070057600080fd5b80633dc599ff146105f357806349bd5a5e146106145780634a62bb65146106485780634e29e5231461066257600080fd5b80631a8145bb1161036557806324b9f3c11161033457806324b9f3c11461058b57806327c8f835146105a1578063313ce567146105b757806339509351146105d357600080fd5b80631a8145bb1461051e5780631d0f654714610534578063203e727e1461054b57806323b872dd1461056b57600080fd5b8063156c2f35116103a1578063156c2f35146104835780631694505e146104a757806318160ddd146104f357806319eab0421461050857600080fd5b806306fdde03146103de578063095ea7b3146104095780630e922ca71461043957806310d5de531461045357600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610be7565b6040516104009190612dd8565b60405180910390f35b34801561041557600080fd5b50610429610424366004612e3b565b610c79565b6040519015158152602001610400565b34801561044557600080fd5b50601b546104299060ff1681565b34801561045f57600080fd5b5061042961046e366004612e67565b60196020526000908152604090205460ff1681565b34801561048f57600080fd5b50610499600e5481565b604051908152602001610400565b3480156104b357600080fd5b506104db7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610400565b3480156104ff57600080fd5b50600254610499565b34801561051457600080fd5b5061049960125481565b34801561052a57600080fd5b5061049960165481565b34801561054057600080fd5b50610549610c90565b005b34801561055757600080fd5b50610549610566366004612e84565b610d19565b34801561057757600080fd5b50610429610586366004612e9d565b610df6565b34801561059757600080fd5b5061049960155481565b3480156105ad57600080fd5b506104db61dead81565b3480156105c357600080fd5b5060405160128152602001610400565b3480156105df57600080fd5b506104296105ee366004612e3b565b610ea0565b3480156105ff57600080fd5b50600b54610429906301000000900460ff1681565b34801561062057600080fd5b506104db7f000000000000000000000000a649e19cdff8ef929a07f76384d8173b2921985b81565b34801561065457600080fd5b50600b546104299060ff1681565b34801561066e57600080fd5b5061042961067d366004612e67565b601c6020526000908152604090205460ff1681565b34801561069e57600080fd5b506104296106ad366004612e67565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156106d757600080fd5b506007546104db906001600160a01b031681565b3480156106f757600080fd5b50610549610edc565b34801561070c57600080fd5b5061049960115481565b34801561072257600080fd5b50600b546104299062010000900460ff1681565b34801561074257600080fd5b50610499610751366004612e67565b6001600160a01b031660009081526020819052604090205490565b34801561077857600080fd5b50610549610f1b565b34801561078d57600080fd5b50610429610f51565b3480156107a257600080fd5b506105496107b1366004612eec565b610f8e565b3480156107c257600080fd5b506105496107d1366004612e67565b610fe3565b3480156107e257600080fd5b506006546104db906001600160a01b031681565b34801561080257600080fd5b50610549610811366004612e67565b61102e565b34801561082257600080fd5b50610549610831366004612e67565b6110bc565b34801561084257600080fd5b50610549610851366004612f25565b611143565b34801561086257600080fd5b506105496111e4565b34801561087757600080fd5b506005546001600160a01b03166104db565b34801561089557600080fd5b506105496108a4366004612f51565b611276565b3480156108b557600080fd5b506103f36112bc565b3480156108ca57600080fd5b506105496108d9366004612eec565b6112cb565b3480156108ea57600080fd5b5061049960105481565b34801561090057600080fd5b506105496113a6565b34801561091557600080fd5b50610429610924366004612e3b565b6114ca565b34801561093557600080fd5b50610429610944366004612e3b565b611563565b34801561095557600080fd5b50610549610964366004612eec565b611570565b34801561097557600080fd5b50610549610984366004612e67565b6115d2565b34801561099557600080fd5b506104296109a4366004612e67565b601a6020526000908152604090205460ff1681565b3480156109c557600080fd5b50600b5461042990610100900460ff1681565b3480156109e457600080fd5b506105496109f3366004612f6e565b611659565b348015610a0457600080fd5b50610549610a13366004612eec565b6117c1565b348015610a2457600080fd5b50610549610a33366004612f25565b61184a565b348015610a4457600080fd5b50610549610a53366004612e84565b6118ed565b348015610a6457600080fd5b5061049960085481565b348015610a7a57600080fd5b50610429610a89366004612e84565b6119be565b348015610a9a57600080fd5b5061049960145481565b348015610ab057600080fd5b50610499600d5481565b348015610ac657600080fd5b50610499610ad5366004612f6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b0c57600080fd5b50610549610b1b366004612e67565b611b10565b348015610b2c57600080fd5b5061049960095481565b348015610b4257600080fd5b50610499600f5481565b348015610b5857600080fd5b50610549610b67366004612e67565b611c84565b348015610b7857600080fd5b5061049960135481565b348015610b8e57600080fd5b50610499600a5481565b348015610ba457600080fd5b5061049960175481565b348015610bba57600080fd5b50610429610bc9366004612e67565b6001600160a01b03166000908152600c602052604090205460ff1690565b606060038054610bf690612f9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2290612f9c565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000610c86338484611d1f565b5060015b92915050565b6005546001600160a01b03163314610cc35760405162461bcd60e51b8152600401610cba90612fd6565b60405180910390fd5b6002600e8190556001600f8190556010829055610ce09082613021565b610cea9190613021565b600d5560026012819055600160138190556014829055610d0a9082613021565b610d149190613021565b601155565b6005546001600160a01b03163314610d435760405162461bcd60e51b8152600401610cba90612fd6565b670de0b6b3a76400006103e8610d5860025490565b610d63906005613034565b610d6d919061304b565b610d77919061304b565b811015610dde5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610cba565b610df081670de0b6b3a7640000613034565b60085550565b6000610e03848484611e43565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e885760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610cba565b610e958533858403611d1f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c86918590610ed7908690613021565b611d1f565b6005546001600160a01b03163314610f065760405162461bcd60e51b8152600401610cba90612fd6565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610f455760405162461bcd60e51b8152600401610cba90612fd6565b610f4f6000612691565b565b6005546000906001600160a01b03163314610f7e5760405162461bcd60e51b8152600401610cba90612fd6565b50600b805460ff19169055600190565b6005546001600160a01b03163314610fb85760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461100d5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146110585760405162461bcd60e51b8152600401610cba90612fd6565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146110a5576040519150601f19603f3d011682016040523d82523d6000602084013e6110aa565b606091505b50509050806110b857600080fd5b5050565b6005546001600160a01b031633146110e65760405162461bcd60e51b8152600401610cba90612fd6565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610cba90612fd6565b600e839055600f8290556010819055806111878385613021565b6111919190613021565b600d819055600510156111df5760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610cba565b505050565b6005546001600160a01b0316331461120e5760405162461bcd60e51b8152600401610cba90612fd6565b600b805462ffff00191662010100179055601b805460ff191690556002600e8190556003600f819055600a6010819055916112499190613021565b6112539190613021565b600d556002601281905560036013819055600a601481905591610d0a9190613021565b6005546001600160a01b031633146112a05760405162461bcd60e51b8152600401610cba90612fd6565b600b8054911515620100000262ff000019909216919091179055565b606060048054610bf690612f9c565b6005546001600160a01b031633146112f55760405162461bcd60e51b8152600401610cba90612fd6565b7f000000000000000000000000a649e19cdff8ef929a07f76384d8173b2921985b6001600160a01b0316826001600160a01b03160361139c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cba565b6110b882826126e3565b6005546001600160a01b031633146113d05760405162461bcd60e51b8152600401610cba90612fd6565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa15801561140e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611432919061306d565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611479573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149d9190613086565b5060405133904780156108fc02916000818181858888f193505050501580156110b8573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561154c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cba565b6115593385858403611d1f565b5060019392505050565b6000610c86338484611e43565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b0382166000908152601c60205260409020805460ff19168215151790556115c882826117c1565b6110b88282610f8e565b6005546001600160a01b031633146115fc5760405162461bcd60e51b8152600401610cba90612fd6565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116835760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b0382166116d95760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cba565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611720573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611744919061306d565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117bb9190613086565b50505050565b6005546001600160a01b031633146117eb5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118745760405162461bcd60e51b8152600401610cba90612fd6565b6012839055601382905560148190558061188e8385613021565b6118989190613021565b6011819055600510156111df5760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610cba565b6005546001600160a01b031633146119175760405162461bcd60e51b8152600401610cba90612fd6565b670de0b6b3a76400006103e861192c60025490565b61193790600a613034565b611941919061304b565b61194b919061304b565b8110156119a65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610cba565b6119b881670de0b6b3a7640000613034565b600a5550565b6005546000906001600160a01b031633146119eb5760405162461bcd60e51b8152600401610cba90612fd6565b620186a06119f860025490565b611a03906001613034565b611a0d919061304b565b821015611a7a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cba565b6103e8611a8660025490565b611a91906005613034565b611a9b919061304b565b821115611b075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610cba565b50600955600190565b6005546001600160a01b03163314611b3a5760405162461bcd60e51b8152600401610cba90612fd6565b600b546301000000900460ff1615611b9e5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610cba565b7f000000000000000000000000a649e19cdff8ef929a07f76384d8173b2921985b6001600160a01b0316816001600160a01b031614158015611bfd57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611c605760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610cba565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611cae5760405162461bcd60e51b8152600401610cba90612fd6565b6001600160a01b038116611d135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cba565b611d1c81612691565b50565b6001600160a01b038316611d815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cba565b6001600160a01b038216611de25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cba565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e695760405162461bcd60e51b8152600401610cba906130a3565b6001600160a01b038216611e8f5760405162461bcd60e51b8152600401610cba906130e8565b6001600160a01b0383166000908152600c602052604090205460ff1615611eed5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610cba565b6001600160a01b0382166000908152600c602052604090205460ff1615611f4d5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610cba565b601b5460ff1615611fd2576001600160a01b0383166000908152601c602052604090205460ff16611fd25760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610cba565b80600003611fe6576111df83836000612737565b600b5460ff161561235c576005546001600160a01b0384811691161480159061201d57506005546001600160a01b03838116911614155b801561203157506001600160a01b03821615155b801561204857506001600160a01b03821661dead14155b801561205e5750600554600160a01b900460ff16155b1561235c57600b54610100900460ff166120f6576001600160a01b03831660009081526018602052604090205460ff16806120b157506001600160a01b03821660009081526018602052604090205460ff165b6120f65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cba565b6001600160a01b0383166000908152601a602052604090205460ff16801561213757506001600160a01b03821660009081526019602052604090205460ff16155b1561221b576008548111156121ac5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cba565b600a546001600160a01b0383166000908152602081905260409020546121d29083613021565b11156122165760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cba565b61235c565b6001600160a01b0382166000908152601a602052604090205460ff16801561225c57506001600160a01b03831660009081526019602052604090205460ff16155b156122d2576008548111156122165760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cba565b6001600160a01b03821660009081526019602052604090205460ff1661235c57600a546001600160a01b0383166000908152602081905260409020546123189083613021565b111561235c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cba565b30600090815260208190526040902054600954811080159081906123885750600b5462010000900460ff165b801561239e5750600554600160a01b900460ff16155b80156123c357506001600160a01b0385166000908152601a602052604090205460ff16155b80156123e857506001600160a01b03851660009081526018602052604090205460ff16155b801561240d57506001600160a01b03841660009081526018602052604090205460ff16155b1561243b576005805460ff60a01b1916600160a01b17905561242d61288b565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061248957506001600160a01b03851660009081526018602052604090205460ff165b15612492575060005b6000811561267d576001600160a01b0386166000908152601a602052604090205460ff1680156124c457506000601154115b15612582576124e960646124e360115488612ae790919063ffffffff16565b90612afa565b9050601154601354826124fc9190613034565b612506919061304b565b601660008282546125179190613021565b909155505060115460145461252c9083613034565b612536919061304b565b601760008282546125479190613021565b909155505060115460125461255c9083613034565b612566919061304b565b601560008282546125779190613021565b9091555061265f9050565b6001600160a01b0387166000908152601a602052604090205460ff1680156125ac57506000600d54115b1561265f576125cb60646124e3600d5488612ae790919063ffffffff16565b9050600d54600f54826125de9190613034565b6125e8919061304b565b601660008282546125f99190613021565b9091555050600d5460105461260e9083613034565b612618919061304b565b601760008282546126299190613021565b9091555050600d54600e5461263e9083613034565b612648919061304b565b601560008282546126599190613021565b90915550505b801561267057612670873083612737565b61267a818661312b565b94505b612688878787612737565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661275d5760405162461bcd60e51b8152600401610cba906130a3565b6001600160a01b0382166127835760405162461bcd60e51b8152600401610cba906130e8565b6001600160a01b038316600090815260208190526040902054818110156127fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cba565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612832908490613021565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161287e91815260200190565b60405180910390a36117bb565b30600090815260208190526040812054905060006017546015546016546128b29190613021565b6128bc9190613021565b905060008215806128cb575081155b156128d557505050565b6009546128e3906014613034565b8311156128fb576009546128f8906014613034565b92505b60006002836016548661290e9190613034565b612918919061304b565b612922919061304b565b905060006129308583612b06565b90504761293c82612b12565b60006129484783612b06565b90506000612976600260165461295e919061304b565b612968908961312b565b6015546124e3908590612ae7565b905060006129a4600260165461298c919061304b565b612996908a61312b565b6017546124e3908690612ae7565b90506000816129b3848661312b565b6129bd919061312b565b60006016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612a1a576040519150601f19603f3d011682016040523d82523d6000602084013e612a1f565b606091505b50909850508615801590612a335750600081115b15612a8657612a428782612cd2565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612ad3576040519150601f19603f3d011682016040523d82523d6000602084013e612ad8565b606091505b50505050505050505050505050565b6000612af38284613034565b9392505050565b6000612af3828461304b565b6000612af3828461312b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b4757612b4761313e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be99190613154565b81600181518110612bfc57612bfc61313e565b60200260200101906001600160a01b031690816001600160a01b031681525050612c47307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d1f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612c9c908590600090869030904290600401613171565b600060405180830381600087803b158015612cb657600080fd5b505af1158015612cca573d6000803e3d6000fd5b505050505050565b612cfd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d1f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612d446005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612dac573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612dd191906131e2565b5050505050565b600060208083528351808285015260005b81811015612e0557858101830151858201604001528201612de9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611d1c57600080fd5b60008060408385031215612e4e57600080fd5b8235612e5981612e26565b946020939093013593505050565b600060208284031215612e7957600080fd5b8135612af381612e26565b600060208284031215612e9657600080fd5b5035919050565b600080600060608486031215612eb257600080fd5b8335612ebd81612e26565b92506020840135612ecd81612e26565b929592945050506040919091013590565b8015158114611d1c57600080fd5b60008060408385031215612eff57600080fd5b8235612f0a81612e26565b91506020830135612f1a81612ede565b809150509250929050565b600080600060608486031215612f3a57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612f6357600080fd5b8135612af381612ede565b60008060408385031215612f8157600080fd5b8235612f8c81612e26565b91506020830135612f1a81612e26565b600181811c90821680612fb057607f821691505b602082108103612fd057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c8a57610c8a61300b565b8082028115828204841417610c8a57610c8a61300b565b60008261306857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561307f57600080fd5b5051919050565b60006020828403121561309857600080fd5b8151612af381612ede565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c8a57610c8a61300b565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561316657600080fd5b8151612af381612e26565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c15784516001600160a01b03168352938301939183019160010161319c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131f757600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204dbd3635358704650967379e48f631c293d054d56eec4e132b75680d3799f2e864736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008ee6249d4e82c97b4ebab5b999eee1aa73b7abea
-----Decoded View---------------
Arg [0] : _addressOne (address): 0x8ee6249d4e82c97b4EBAb5B999Eee1aa73B7aBEa
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008ee6249d4e82c97b4ebab5b999eee1aa73b7abea
Deployed Bytecode Sourcemap
32648:18895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10347:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12580:194;;;;;;;;;;-1:-1:-1;12580:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12580:194:0;1023:187:1;34204:36:0;;;;;;;;;;-1:-1:-1;34204:36:0;;;;;;;;33917:63;;;;;;;;;;-1:-1:-1;33917:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33409:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;33409:29:0;1467:177:1;32728:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;32728:51:0;1649:230:1;11467:108:0;;;;;;;;;;-1:-1:-1;11555:12:0;;11467:108;;33551:30;;;;;;;;;;;;;;;;33700:33;;;;;;;;;;;;;;;;37773:373;;;;;;;;;;;;;:::i;:::-;;38878:277;;;;;;;;;;-1:-1:-1;38878:277:0;;;;;:::i;:::-;;:::i;13256:529::-;;;;;;;;;;-1:-1:-1;13256:529:0;;;;;:::i;:::-;;:::i;33661:32::-;;;;;;;;;;;;;;;;32831:53;;;;;;;;;;;;32877:6;32831:53;;11309:93;;;;;;;;;;-1:-1:-1;11309:93:0;;11392:2;2880:36:1;;2868:2;2853:18;11309:93:0;2738:184:1;14194:290:0;;;;;;;;;;-1:-1:-1;14194:290:0;;;;;:::i;:::-;;:::i;33228:38::-;;;;;;;;;;-1:-1:-1;33228:38:0;;;;;;;;;;;32786;;;;;;;;;;;;;;;33108:33;;;;;;;;;;-1:-1:-1;33108:33:0;;;;;;;;34247:57;;;;;;;;;;-1:-1:-1;34247:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41713:126;;;;;;;;;;-1:-1:-1;41713:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41803:28:0;41779:4;41803:28;;;:19;:28;;;;;;;;;41713:126;32959:25;;;;;;;;;;-1:-1:-1;32959:25:0;;;;-1:-1:-1;;;;;32959:25:0;;;49991:90;;;;;;;;;;;;;:::i;33516:28::-;;;;;;;;;;;;;;;;33188:31;;;;;;;;;;-1:-1:-1;33188:31:0;;;;;;;;;;;11638:143;;;;;;;;;;-1:-1:-1;11638:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11755:18:0;11728:7;11755:18;;;;;;;;;;;;11638:143;3743:103;;;;;;;;;;;;;:::i;38198:121::-;;;;;;;;;;;;;:::i;39430:169::-;;;;;;;;;;-1:-1:-1;39430:169:0;;;;;:::i;:::-;;:::i;51151:98::-;;;;;;;;;;-1:-1:-1;51151:98:0;;;;;:::i;:::-;;:::i;32923:29::-;;;;;;;;;;-1:-1:-1;32923:29:0;;;;-1:-1:-1;;;;;32923:29:0;;;49766:171;;;;;;;;;;-1:-1:-1;49766:171:0;;;;;:::i;:::-;;:::i;41544:161::-;;;;;;;;;;-1:-1:-1;41544:161:0;;;;;:::i;:::-;;:::i;39803:395::-;;;;;;;;;;-1:-1:-1;39803:395:0;;;;;:::i;:::-;;:::i;37294:471::-;;;;;;;;;;;;;:::i;3092:87::-;;;;;;;;;;-1:-1:-1;3165:6:0;;-1:-1:-1;;;;;3165:6:0;3092:87;;39695:100;;;;;;;;;;-1:-1:-1;39695:100:0;;;;;:::i;:::-;;:::i;10566:104::-;;;;;;;;;;;;;:::i;40809:306::-;;;;;;;;;;-1:-1:-1;40809:306:0;;;;;:::i;:::-;;:::i;33482:25::-;;;;;;;;;;;;;;;;49179:258;;;;;;;;;;;;;:::i;14987:475::-;;;;;;;;;;-1:-1:-1;14987:475:0;;;;;:::i;:::-;;:::i;11994:200::-;;;;;;;;;;-1:-1:-1;11994:200:0;;;;;:::i;:::-;;:::i;51257:283::-;;;;;;;;;;-1:-1:-1;51257:283:0;;;;;:::i;:::-;;:::i;41319:217::-;;;;;;;;;;-1:-1:-1;41319:217:0;;;;;:::i;:::-;;:::i;34138:57::-;;;;;;;;;;-1:-1:-1;34138:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33148:33;;;;;;;;;;-1:-1:-1;33148:33:0;;;;;;;;;;;49445:313;;;;;;;;;;-1:-1:-1;49445:313:0;;;;;:::i;:::-;;:::i;40619:182::-;;;;;;;;;;-1:-1:-1;40619:182:0;;;;;:::i;:::-;;:::i;40206:405::-;;;;;;;;;;-1:-1:-1;40206:405:0;;;;;:::i;:::-;;:::i;39163:259::-;;;;;;;;;;-1:-1:-1;39163:259:0;;;;;:::i;:::-;;:::i;32993:35::-;;;;;;;;;;;;;;;;38389:481;;;;;;;;;;-1:-1:-1;38389:481:0;;;;;:::i;:::-;;:::i;33626:26::-;;;;;;;;;;;;;;;;33375:27;;;;;;;;;;;;;;;;12257:176;;;;;;;;;;-1:-1:-1;12257:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;12398:18:0;;;12371:7;12398:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12257:176;50582:436;;;;;;;;;;-1:-1:-1;50582:436:0;;;;;:::i;:::-;;:::i;33035:33::-;;;;;;;;;;;;;;;;33445:30;;;;;;;;;;;;;;;;4001:238;;;;;;;;;;-1:-1:-1;4001:238:0;;;;;:::i;:::-;;:::i;33588:31::-;;;;;;;;;;;;;;;;33075:24;;;;;;;;;;;;;;;;33740:28;;;;;;;;;;;;;;;;41847:113;;;;;;;;;;-1:-1:-1;41847:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;41932:20:0;41908:4;41932:20;;;:11;:20;;;;;;;;;41847:113;10347:100;10401:13;10434:5;10427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10347:100;:::o;12580:194::-;12688:4;12705:39;2014:10;12728:7;12737:6;12705:8;:39::i;:::-;-1:-1:-1;12762:4:0;12580:194;;;;;:::o;37773:373::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;;;;;;;;;37847:1:::1;37830:14;:18:::0;;;37877:1:::1;37859:15;:19:::0;;;37889:10:::1;:14:::0;;;37929:32:::1;::::0;37847:1;37929:32:::1;:::i;:::-;:45;;;;:::i;:::-;37914:12;:60:::0;38005:1:::1;37987:15;:19:::0;;;38036:1:::1;38017:16;:20:::0;;;38048:11:::1;:15:::0;;;38090:34:::1;::::0;38005:1;38090:34:::1;:::i;:::-;:48;;;;:::i;:::-;38074:13;:64:::0;37773:373::o;38878:277::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;39015:4:::1;39007;38986:13;11555:12:::0;;;11467:108;38986:13:::1;:17;::::0;39002:1:::1;38986:17;:::i;:::-;38985:26;;;;:::i;:::-;38984:35;;;;:::i;:::-;38974:6;:45;;38952:142;;;::::0;-1:-1:-1;;;38952:142:0;;6002:2:1;38952:142:0::1;::::0;::::1;5984:21:1::0;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:45;6186:19;;38952:142:0::1;5800:411:1::0;38952:142:0::1;39128:19;:6:::0;39138:8:::1;39128:19;:::i;:::-;39105:20;:42:::0;-1:-1:-1;38878:277:0:o;13256:529::-;13396:4;13413:36;13423:6;13431:9;13442:6;13413:9;:36::i;:::-;-1:-1:-1;;;;;13489:19:0;;13462:24;13489:19;;;:11;:19;;;;;;;;2014:10;13489:33;;;;;;;;13555:26;;;;13533:116;;;;-1:-1:-1;;;13533:116:0;;6418:2:1;13533:116:0;;;6400:21:1;6457:2;6437:18;;;6430:30;6496:34;6476:18;;;6469:62;-1:-1:-1;;;6547:18:1;;;6540:38;6595:19;;13533:116:0;6216:404:1;13533:116:0;13685:57;13694:6;2014:10;13735:6;13716:16;:25;13685:8;:57::i;:::-;-1:-1:-1;13773:4:0;;13256:529;-1:-1:-1;;;;13256:529:0:o;14194:290::-;2014:10;14307:4;14396:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14396:34:0;;;;;;;;;;14307:4;;14324:130;;14374:7;;14396:47;;14433:10;;14396:47;:::i;:::-;14324:8;:130::i;49991:90::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;50048:18:::1;:25:::0;;-1:-1:-1;;50048:25:0::1;::::0;::::1;::::0;;49991:90::o;3743:103::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;3808:30:::1;3835:1;3808:18;:30::i;:::-;3743:103::o:0;38198:121::-;3165:6;;38250:4;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;38267:14:0::1;:22:::0;;-1:-1:-1;;38267:22:0::1;::::0;;;38198:121;:::o;39430:169::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39545:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39545:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39430:169::o;51151:98::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51215:18:0::1;51236:5;51215:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;51215:26:0::1;::::0;;51151:98::o;49766:171::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;49839:12:::1;49857:6;-1:-1:-1::0;;;;;49857:11:0::1;49876:21;49857:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49838:64;;;49921:7;49913:16;;;::::0;::::1;;49827:110;49766:171:::0;:::o;41544:161::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;41653:10:::1;::::0;41624:40:::1;::::0;-1:-1:-1;;;;;41653:10:0;;::::1;::::0;41624:40;::::1;::::0;::::1;::::0;41653:10:::1;::::0;41624:40:::1;41675:10;:22:::0;;-1:-1:-1;;;;;;41675:22:0::1;-1:-1:-1::0;;;;;41675:22:0;;;::::1;::::0;;;::::1;::::0;;41544:161::o;39803:395::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;39953:14:::1;:29:::0;;;39993:15:::1;:31:::0;;;40035:10:::1;:21:::0;;;40048:8;40082:32:::1;40011:13:::0;39970:12;40082:32:::1;:::i;:::-;:45;;;;:::i;:::-;40067:12;:60:::0;;;40162:1:::1;-1:-1:-1::0;40146:17:0::1;40138:52;;;::::0;-1:-1:-1;;;40138:52:0;;7037:2:1;40138:52:0::1;::::0;::::1;7019:21:1::0;7076:2;7056:18;;;7049:30;-1:-1:-1;;;7095:18:1;;;7088:52;7157:18;;40138:52:0::1;6835:346:1::0;40138:52:0::1;39803:395:::0;;;:::o;37294:471::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;37349:13:::1;:20:::0;;-1:-1:-1;;37380:18:0;;;;;37409:17:::1;:25:::0;;-1:-1:-1;;37409:25:0::1;::::0;;37380:11:::1;37447:14;:18:::0;;;37494:1:::1;37476:15;:19:::0;;;37519:2:::1;37506:10;:15:::0;;;37519:2;37547:32:::1;::::0;37494:1;37547:32:::1;:::i;:::-;:45;;;;:::i;:::-;37532:12;:60:::0;37623:1:::1;37605:15;:19:::0;;;37654:1:::1;37635:16;:20:::0;;;37680:2:::1;37666:11;:16:::0;;;37680:2;37709:34:::1;::::0;37654:1;37709:34:::1;:::i;39695:100::-:0;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;39766:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39766:21:0;;::::1;::::0;;;::::1;::::0;;39695:100::o;10566:104::-;10622:13;10655:7;10648:14;;;;;:::i;40809:306::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;40955:13:::1;-1:-1:-1::0;;;;;40947:21:0::1;:4;-1:-1:-1::0;;;;;40947:21:0::1;::::0;40925:128:::1;;;::::0;-1:-1:-1;;;40925:128:0;;7388:2:1;40925:128:0::1;::::0;::::1;7370:21:1::0;7427:2;7407:18;;;7400:30;7466:34;7446:18;;;7439:62;7537:27;7517:18;;;7510:55;7582:19;;40925:128:0::1;7186:421:1::0;40925:128:0::1;41066:41;41095:4;41101:5;41066:28;:41::i;49179:258::-:0;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;49259:46:::1;::::0;-1:-1:-1;;;49259:46:0;;49274:4:::1;49259:46;::::0;::::1;1822:51:1::0;;;49241:15:0::1;::::0;49259:31:::1;::::0;1795:18:1;;49259:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49316:51;::::0;-1:-1:-1;;;49316:51:0;;49347:10:::1;49316:51;::::0;::::1;7975::1::0;8042:18;;;8035:34;;;49241:64:0;;-1:-1:-1;49331:4:0::1;::::0;49316:30:::1;::::0;7948:18:1;;49316:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;49378:51:0::1;::::0;49386:10:::1;::::0;49407:21:::1;49378:51:::0;::::1;;;::::0;::::1;::::0;;;49407:21;49386:10;49378:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;14987:475:::0;2014:10;15105:4;15149:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15149:34:0;;;;;;;;;;15216:35;;;;15194:122;;;;-1:-1:-1;;;15194:122:0;;8532:2:1;15194:122:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:35;8706:19;;15194:122:0;8330:401:1;15194:122:0;15352:67;2014:10;15375:7;15403:15;15384:16;:34;15352:8;:67::i;:::-;-1:-1:-1;15450:4:0;;14987:475;-1:-1:-1;;;14987:475:0:o;11994:200::-;12105:4;12122:42;2014:10;12146:9;12157:6;12122:9;:42::i;51257:283::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51381:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;-1:-1:-1;;51381:47:0::1;::::0;::::1;;;::::0;;51439:36:::1;51381:32:::0;:47;51439:15:::1;:36::i;:::-;51486:46;51512:5;51519:12;51486:25;:46::i;41319:217::-:0;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;41468:14:::1;::::0;41427:56:::1;::::0;-1:-1:-1;;;;;41468:14:0;;::::1;::::0;41427:56;::::1;::::0;::::1;::::0;41468:14:::1;::::0;41427:56:::1;41494:14;:34:::0;;-1:-1:-1;;;;;;41494:34:0::1;-1:-1:-1::0;;;;;41494:34:0;;;::::1;::::0;;;::::1;::::0;;41319:217::o;49445:313::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49565:20:0;::::1;49557:59;;;::::0;-1:-1:-1;;;49557:59:0;;8938:2:1;49557:59:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:28;8996:18;;;8989:56;9062:18;;49557:59:0::1;8736:350:1::0;49557:59:0::1;49654:39;::::0;-1:-1:-1;;;49654:39:0;;49687:4:::1;49654:39;::::0;::::1;1822:51:1::0;49627:24:0::1;::::0;-1:-1:-1;;;;;49654:24:0;::::1;::::0;::::1;::::0;1795:18:1;;49654:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49704:46;::::0;-1:-1:-1;;;49704:46:0;;-1:-1:-1;;;;;7993:32:1;;;49704:46:0::1;::::0;::::1;7975:51:1::0;8042:18;;;8035:34;;;49627:66:0;;-1:-1:-1;49704:23:0;;::::1;::::0;::::1;::::0;7948:18:1;;49704:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49546:212;49445:313:::0;;:::o;40619:182::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40704:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40704:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40759:34;;1163:41:1;;;40759:34:0::1;::::0;1136:18:1;40759:34:0::1;;;;;;;40619:182:::0;;:::o;40206:405::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;40357:15:::1;:30:::0;;;40398:16:::1;:32:::0;;;40441:11:::1;:22:::0;;;40455:8;40490:34:::1;40417:13:::0;40375:12;40490:34:::1;:::i;:::-;:48;;;;:::i;:::-;40474:13;:64:::0;;;40574:1:::1;-1:-1:-1::0;40557:18:0::1;40549:54;;;::::0;-1:-1:-1;;;40549:54:0;;9293:2:1;40549:54:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:25;9351:18;;;9344:53;9414:18;;40549:54:0::1;9091:347:1::0;39163:259:0;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;39304:4:::1;39296;39274:13;11555:12:::0;;;11467:108;39274:13:::1;:18;::::0;39290:2:::1;39274:18;:::i;:::-;39273:27;;;;:::i;:::-;39272:36;;;;:::i;:::-;39262:6;:46;;39240:132;;;::::0;-1:-1:-1;;;39240:132:0;;9645:2:1;39240:132:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;39240:132:0::1;9443:400:1::0;39240:132:0::1;39395:19;:6:::0;39405:8:::1;39395:19;:::i;:::-;39383:9;:31:::0;-1:-1:-1;39163:259:0:o;38389:481::-;3165:6;;38486:4;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;38560:6:::1;38539:13;11555:12:::0;;;11467:108;38539:13:::1;:17;::::0;38555:1:::1;38539:17;:::i;:::-;38538:28;;;;:::i;:::-;38525:9;:41;;38503:144;;;::::0;-1:-1:-1;;;38503:144:0;;10050:2:1;38503:144:0::1;::::0;::::1;10032:21:1::0;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:51;10240:19;;38503:144:0::1;9848:417:1::0;38503:144:0::1;38715:4;38694:13;11555:12:::0;;;11467:108;38694:13:::1;:17;::::0;38710:1:::1;38694:17;:::i;:::-;38693:26;;;;:::i;:::-;38680:9;:39;;38658:141;;;::::0;-1:-1:-1;;;38658:141:0;;10472:2:1;38658:141:0::1;::::0;::::1;10454:21:1::0;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:50;10661:19;;38658:141:0::1;10270:416:1::0;38658:141:0::1;-1:-1:-1::0;38810:18:0::1;:30:::0;38858:4:::1;::::0;38389:481::o;50582:436::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;50670:18:::1;::::0;;;::::1;;;50669:19;50661:65;;;::::0;-1:-1:-1;;;50661:65:0;;10893:2:1;50661:65:0::1;::::0;::::1;10875:21:1::0;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;-1:-1:-1;;;11022:18:1;;;11015:31;11063:19;;50661:65:0::1;10691:397:1::0;50661:65:0::1;50780:13;-1:-1:-1::0;;;;;50759:35:0::1;:9;-1:-1:-1::0;;;;;50759:35:0::1;;;:137;;;;-1:-1:-1::0;;;;;;50815:81:0;::::1;50853:42;50815:81;;50759:137;50737:233;;;::::0;-1:-1:-1;;;50737:233:0;;11295:2:1;50737:233:0::1;::::0;::::1;11277:21:1::0;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:44;11478:19;;50737:233:0::1;11093:410:1::0;50737:233:0::1;-1:-1:-1::0;;;;;50981:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;50981:29:0::1;51006:4;50981:29;::::0;;50582:436::o;4001:238::-;3165:6;;-1:-1:-1;;;;;3165:6:0;2014:10;3312:23;3304:68;;;;-1:-1:-1;;;3304:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4104:22:0;::::1;4082:110;;;::::0;-1:-1:-1;;;4082:110:0;;11710:2:1;4082:110:0::1;::::0;::::1;11692:21:1::0;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:1;;;11832:36;11885:19;;4082:110:0::1;11508:402:1::0;4082:110:0::1;4203:28;4222:8;4203:18;:28::i;:::-;4001:238:::0;:::o;18770:380::-;-1:-1:-1;;;;;18906:19:0;;18898:68;;;;-1:-1:-1;;;18898:68:0;;12117:2:1;18898:68:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:34;12290:19;;18898:68:0;11915:400:1;18898:68:0;-1:-1:-1;;;;;18985:21:0;;18977:68;;;;-1:-1:-1;;;18977:68:0;;12522:2:1;18977:68:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:32;12693:19;;18977:68:0;12320:398:1;18977:68:0;-1:-1:-1;;;;;19058:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19110:32;;1613:25:1;;;19110:32:0;;1586:18:1;19110:32:0;;;;;;;18770:380;;;:::o;41968:4240::-;-1:-1:-1;;;;;42100:18:0;;42092:68;;;;-1:-1:-1;;;42092:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42179:16:0;;42171:64;;;;-1:-1:-1;;;42171:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42255:17:0;;;;;;:11;:17;;;;;;;;42254:18;42246:49;;;;-1:-1:-1;;;42246:49:0;;13735:2:1;42246:49:0;;;13717:21:1;13774:2;13754:18;;;13747:30;-1:-1:-1;;;13793:18:1;;;13786:48;13851:18;;42246:49:0;13533:342:1;42246:49:0;-1:-1:-1;;;;;42315:15:0;;;;;;:11;:15;;;;;;;;42314:16;42306:49;;;;-1:-1:-1;;;42306:49:0;;14082:2:1;42306:49:0;;;14064:21:1;14121:2;14101:18;;;14094:30;-1:-1:-1;;;14140:18:1;;;14133:50;14200:18;;42306:49:0;13880:344:1;42306:49:0;42372:17;;;;42368:184;;;-1:-1:-1;;;;;42432:31:0;;;;;;:25;:31;;;;;;;;42406:134;;;;-1:-1:-1;;;42406:134:0;;14431:2:1;42406:134:0;;;14413:21:1;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;-1:-1:-1;;;14560:18:1;;;14553:39;14609:19;;42406:134:0;14229:405:1;42406:134:0;42568:6;42578:1;42568:11;42564:93;;42596:28;42612:4;42618:2;42622:1;42596:15;:28::i;42564:93::-;42673:14;;;;42669:1694;;;3165:6;;-1:-1:-1;;;;;42726:15:0;;;3165:6;;42726:15;;;;:49;;-1:-1:-1;3165:6:0;;-1:-1:-1;;;;;42762:13:0;;;3165:6;;42762:13;;42726:49;:86;;;;-1:-1:-1;;;;;;42796:16:0;;;;42726:86;:128;;;;-1:-1:-1;;;;;;42833:21:0;;42847:6;42833:21;;42726:128;:158;;;;-1:-1:-1;42876:8:0;;-1:-1:-1;;;42876:8:0;;;;42875:9;42726:158;42704:1648;;;42924:13;;;;;;;42919:223;;-1:-1:-1;;;;;42996:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43025:23:0;;;;;;:19;:23;;;;;;;;42996:52;42962:160;;;;-1:-1:-1;;;42962:160:0;;14841:2:1;42962:160:0;;;14823:21:1;14880:2;14860:18;;;14853:30;-1:-1:-1;;;14899:18:1;;;14892:52;14961:18;;42962:160:0;14639:346:1;42962:160:0;-1:-1:-1;;;;;43216:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43273:35:0;;;;;;:31;:35;;;;;;;;43272:36;43216:92;43190:1147;;;43395:20;;43385:6;:30;;43351:169;;;;-1:-1:-1;;;43351:169:0;;15192:2:1;43351:169:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;-1:-1:-1;;;15321:18:1;;;15314:51;15382:19;;43351:169:0;14990:417:1;43351:169:0;43603:9;;-1:-1:-1;;;;;11755:18:0;;11728:7;11755:18;;;;;;;;;;;43577:22;;:6;:22;:::i;:::-;:35;;43543:140;;;;-1:-1:-1;;;43543:140:0;;15614:2:1;43543:140:0;;;15596:21:1;15653:2;15633:18;;;15626:30;-1:-1:-1;;;15672:18:1;;;15665:49;15731:18;;43543:140:0;15412:343:1;43543:140:0;43190:1147;;;-1:-1:-1;;;;;43781:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43836:37:0;;;;;;:31;:37;;;;;;;;43835:38;43781:92;43755:582;;;43960:20;;43950:6;:30;;43916:170;;;;-1:-1:-1;;;43916:170:0;;15962:2:1;43916:170:0;;;15944:21:1;16001:2;15981:18;;;15974:30;16040:34;16020:18;;;16013:62;-1:-1:-1;;;16091:18:1;;;16084:52;16153:19;;43916:170:0;15760:418:1;43755:582:0;-1:-1:-1;;;;;44117:35:0;;;;;;:31;:35;;;;;;;;44112:225;;44237:9;;-1:-1:-1;;;;;11755:18:0;;11728:7;11755:18;;;;;;;;;;;44211:22;;:6;:22;:::i;:::-;:35;;44177:140;;;;-1:-1:-1;;;44177:140:0;;15614:2:1;44177:140:0;;;15596:21:1;15653:2;15633:18;;;15626:30;-1:-1:-1;;;15672:18:1;;;15665:49;15731:18;;44177:140:0;15412:343:1;44177:140:0;44424:4;44375:28;11755:18;;;;;;;;;;;44482;;44458:42;;;;;;;44531:35;;-1:-1:-1;44555:11:0;;;;;;;44531:35;:61;;;;-1:-1:-1;44584:8:0;;-1:-1:-1;;;44584:8:0;;;;44583:9;44531:61;:110;;;;-1:-1:-1;;;;;;44610:31:0;;;;;;:25;:31;;;;;;;;44609:32;44531:110;:153;;;;-1:-1:-1;;;;;;44659:25:0;;;;;;:19;:25;;;;;;;;44658:26;44531:153;:194;;;;-1:-1:-1;;;;;;44702:23:0;;;;;;:19;:23;;;;;;;;44701:24;44531:194;44513:326;;;44752:8;:15;;-1:-1:-1;;;;44752:15:0;-1:-1:-1;;;44752:15:0;;;44784:10;:8;:10::i;:::-;44811:8;:16;;-1:-1:-1;;;;44811:16:0;;;44513:326;44867:8;;-1:-1:-1;;;;;44977:25:0;;44851:12;44977:25;;;:19;:25;;;;;;44867:8;-1:-1:-1;;;44867:8:0;;;;;44866:9;;44977:25;;:52;;-1:-1:-1;;;;;;45006:23:0;;;;;;:19;:23;;;;;;;;44977:52;44973:100;;;-1:-1:-1;45056:5:0;44973:100;45085:12;45190:7;45186:969;;;-1:-1:-1;;;;;45242:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45291:1;45275:13;;:17;45242:50;45238:768;;;45320:34;45350:3;45320:25;45331:13;;45320:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45313:41;;45423:13;;45403:16;;45396:4;:23;;;;:::i;:::-;45395:41;;;;:::i;:::-;45373:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45495:13:0;;45480:11;;45473:18;;:4;:18;:::i;:::-;45472:36;;;;:::i;:::-;45455:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;45575:13:0;;45556:15;;45549:22;;:4;:22;:::i;:::-;45548:40;;;;:::i;:::-;45527:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;45238:768:0;;-1:-1:-1;45238:768:0;;-1:-1:-1;;;;;45650:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45700:1;45685:12;;:16;45650:51;45646:360;;;45729:33;45758:3;45729:24;45740:12;;45729:6;:10;;:24;;;;:::i;:33::-;45722:40;;45830:12;;45811:15;;45804:4;:22;;;;:::i;:::-;45803:39;;;;:::i;:::-;45781:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45900:12:0;;45886:10;;45879:17;;:4;:17;:::i;:::-;45878:34;;;;:::i;:::-;45861:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45978:12:0;;45960:14;;45953:21;;:4;:21;:::i;:::-;45952:38;;;;:::i;:::-;45931:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45646:360:0;46026:8;;46022:91;;46055:42;46071:4;46085;46092;46055:15;:42::i;:::-;46129:14;46139:4;46129:14;;:::i;:::-;;;45186:969;46167:33;46183:4;46189:2;46193:6;46167:15;:33::i;:::-;42081:4127;;;;41968:4240;;;:::o;4399:191::-;4492:6;;;-1:-1:-1;;;;;4509:17:0;;;-1:-1:-1;;;;;;4509:17:0;;;;;;;4542:40;;4492:6;;;4509:17;4492:6;;4542:40;;4473:16;;4542:40;4462:128;4399:191;:::o;41123:188::-;-1:-1:-1;;;;;41206:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41206:39:0;;;;;;;;;;41263:40;;41206:39;;:31;41263:40;;;41123:188;;:::o;15952:770::-;-1:-1:-1;;;;;16092:20:0;;16084:70;;;;-1:-1:-1;;;16084:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16173:23:0;;16165:71;;;;-1:-1:-1;;;16165:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16333:17:0;;16309:21;16333:17;;;;;;;;;;;16383:23;;;;16361:111;;;;-1:-1:-1;;;16361:111:0;;16518:2:1;16361:111:0;;;16500:21:1;16557:2;16537:18;;;16530:30;16596:34;16576:18;;;16569:62;-1:-1:-1;;;16647:18:1;;;16640:36;16693:19;;16361:111:0;16316:402:1;16361:111:0;-1:-1:-1;;;;;16508:17:0;;;:9;:17;;;;;;;;;;;16528:22;;;16508:42;;16572:20;;;;;;;;:30;;16544:6;;16508:9;16572:30;;16544:6;;16572:30;:::i;:::-;;;;;;;;16637:9;-1:-1:-1;;;;;16620:35:0;16629:6;-1:-1:-1;;;;;16620:35:0;;16648:6;16620:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;16620:35:0;;;;;;;;16668:46;39803:395;47334:1837;47417:4;47373:23;11755:18;;;;;;;;;;;47373:50;;47434:25;47529:13;;47496:17;;47462:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;47434:108;-1:-1:-1;47553:12:0;47582:20;;;:46;;-1:-1:-1;47606:22:0;;47582:46;47578:85;;;47645:7;;;47334:1837::o;47578:85::-;47697:18;;:23;;47718:2;47697:23;:::i;:::-;47679:15;:41;47675:115;;;47755:18;;:23;;47776:2;47755:23;:::i;:::-;47737:41;;47675:115;47851:23;47964:1;47931:17;47896:18;;47878:15;:36;;;;:::i;:::-;47877:71;;;;:::i;:::-;:88;;;;:::i;:::-;47851:114;-1:-1:-1;47976:26:0;48005:36;:15;47851:114;48005:19;:36::i;:::-;47976:65;-1:-1:-1;48082:21:0;48116:36;47976:65;48116:16;:36::i;:::-;48165:18;48186:44;:21;48212:17;48186:25;:44::i;:::-;48165:65;;48243:22;48268:107;48362:1;48341:18;;:22;;;;:::i;:::-;48320:44;;:17;:44;:::i;:::-;48283:17;;48268:33;;:10;;:14;:33::i;:107::-;48243:132;;48388:18;48409:103;48499:1;48478:18;;:22;;;;:::i;:::-;48457:44;;:17;:44;:::i;:::-;48424:13;;48409:29;;:10;;:14;:29::i;:103::-;48388:124;-1:-1:-1;48525:23:0;48388:124;48551:27;48564:14;48551:10;:27;:::i;:::-;:40;;;;:::i;:::-;48625:1;48604:18;:22;;;48637:17;:21;;;48669:13;:17;;;48721:10;;48713:47;;48525:66;;-1:-1:-1;;;;;;48721:10:0;;48745;;48713:47;48625:1;48713:47;48745:10;48721;48713:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48699:61:0;;-1:-1:-1;;48777:19:0;;;;;:42;;;48818:1;48800:15;:19;48777:42;48773:278;;;48836:46;48849:15;48866;48836:12;:46::i;:::-;49006:18;;48902:137;;;16925:25:1;;;16981:2;16966:18;;16959:34;;;17009:18;;;17002:34;;;;48902:137:0;;;;;;16913:2:1;48902:137:0;;;48773:278;49085:14;;49077:86;;-1:-1:-1;;;;;49085:14:0;;;;49127:21;;49077:86;;;;49127:21;49085:14;49077:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47334:1837:0:o;24027:98::-;24085:7;24112:5;24116:1;24112;:5;:::i;:::-;24105:12;24027:98;-1:-1:-1;;;24027:98:0:o;24426:::-;24484:7;24511:5;24515:1;24511;:5;:::i;23670:98::-;23728:7;23755:5;23759:1;23755;:5;:::i;46216:589::-;46366:16;;;46380:1;46366:16;;;;;;;;46342:21;;46366:16;;;;;;;;;;-1:-1:-1;46366:16:0;46342:40;;46411:4;46393;46398:1;46393:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46393:23:0;;;-1:-1:-1;;;;;46393:23:0;;;;;46437:15;-1:-1:-1;;;;;46437:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46427:4;46432:1;46427:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46427:32:0;;;-1:-1:-1;;;;;46427:32:0;;;;;46472:62;46489:4;46504:15;46522:11;46472:8;:62::i;:::-;46573:224;;-1:-1:-1;;;46573:224:0;;-1:-1:-1;;;;;46573:15:0;:66;;;;:224;;46654:11;;46680:1;;46724:4;;46751;;46771:15;;46573:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46271:534;46216:589;:::o;46813:513::-;46961:62;46978:4;46993:15;47011:11;46961:8;:62::i;:::-;47066:15;-1:-1:-1;;;;;47066:31:0;;47105:9;47138:4;47158:11;47184:1;47227;47270:7;3165:6;;-1:-1:-1;;;;;3165:6:0;;3092:87;47270:7;47066:252;;;;;;-1:-1:-1;;;;;;47066:252:0;;;-1:-1:-1;;;;;18911:15:1;;;47066:252:0;;;18893:34:1;18943:18;;;18936:34;;;;18986:18;;;18979:34;;;;19029:18;;;19022:34;19093:15;;;19072:19;;;19065:44;47292:15:0;19125:19:1;;;19118:35;18827:19;;47066:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46813:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:125;5340:9;;;5361:10;;;5358:36;;;5374:18;;:::i;5405:168::-;5478:9;;;5509;;5526:15;;;5520:22;;5506:37;5496:71;;5547:18;;:::i;5578:217::-;5618:1;5644;5634:132;;5688:10;5683:3;5679:20;5676:1;5669:31;5723:4;5720:1;5713:15;5751:4;5748:1;5741:15;5634:132;-1:-1:-1;5780:9:1;;5578:217::o;7612:184::-;7682:6;7735:2;7723:9;7714:7;7710:23;7706:32;7703:52;;;7751:1;7748;7741:12;7703:52;-1:-1:-1;7774:16:1;;7612:184;-1:-1:-1;7612:184:1:o;8080:245::-;8147:6;8200:2;8188:9;8179:7;8175:23;8171:32;8168:52;;;8216:1;8213;8206:12;8168:52;8248:9;8242:16;8267:28;8289:5;8267:28;:::i;12723:401::-;12925:2;12907:21;;;12964:2;12944:18;;;12937:30;13003:34;12998:2;12983:18;;12976:62;-1:-1:-1;;;13069:2:1;13054:18;;13047:35;13114:3;13099:19;;12723:401::o;13129:399::-;13331:2;13313:21;;;13370:2;13350:18;;;13343:30;13409:34;13404:2;13389:18;;13382:62;-1:-1:-1;;;13475:2:1;13460:18;;13453:33;13518:3;13503:19;;13129:399::o;16183:128::-;16250:9;;;16271:11;;;16268:37;;;16285:18;;:::i;17179:127::-;17240:10;17235:3;17231:20;17228:1;17221:31;17271:4;17268:1;17261:15;17295:4;17292:1;17285:15;17311:251;17381:6;17434:2;17422:9;17413:7;17409:23;17405:32;17402:52;;;17450:1;17447;17440:12;17402:52;17482:9;17476:16;17501:31;17526:5;17501:31;:::i;17567:980::-;17829:4;17877:3;17866:9;17862:19;17908:6;17897:9;17890:25;17934:2;17972:6;17967:2;17956:9;17952:18;17945:34;18015:3;18010:2;17999:9;17995:18;17988:31;18039:6;18074;18068:13;18105:6;18097;18090:22;18143:3;18132:9;18128:19;18121:26;;18182:2;18174:6;18170:15;18156:29;;18203:1;18213:195;18227:6;18224:1;18221:13;18213:195;;;18292:13;;-1:-1:-1;;;;;18288:39:1;18276:52;;18383:15;;;;18348:12;;;;18324:1;18242:9;18213:195;;;-1:-1:-1;;;;;;;18464:32:1;;;;18459:2;18444:18;;18437:60;-1:-1:-1;;;18528:3:1;18513:19;18506:35;18425:3;17567:980;-1:-1:-1;;;17567:980:1:o;19164:306::-;19252:6;19260;19268;19321:2;19309:9;19300:7;19296:23;19292:32;19289:52;;;19337:1;19334;19327:12;19289:52;19366:9;19360:16;19350:26;;19416:2;19405:9;19401:18;19395:25;19385:35;;19460:2;19449:9;19445:18;19439:25;19429:35;;19164:306;;;;;:::o
Swarm Source
ipfs://4dbd3635358704650967379e48f631c293d054d56eec4e132b75680d3799f2e8
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.