Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000 1/(N+1)
Holders
51
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
956,943,335.622413413125 1/(N+1)Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Probability
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-15 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @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. */ 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 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. */ 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"); _; } 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the 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; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } 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; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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 Probability 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 marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 0; // 25 = .25% bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public startTrade = false; bool public swapActivate = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude 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; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Probability", "1/(N+1)") { 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 _buyMarketingFee = 4; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 4; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 100_000_000_000 * 1e18; maxTransactionAmount = 1_000_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 2_000_000_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xb95cd22FaC1c533BD7635f3383B701eC3E41474f); // set as marketing wallet devWallet = address(0xb95cd22FaC1c533BD7635f3383B701eC3E41474f); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint 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 activateTrade() external onlyOwner { swapActivate = true; startTrade = true; lastLpBurnTime = block.timestamp; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = 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 updateMaxTxn(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 15, "Must keep fees at 11% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 15, "Must keep fees at 11% or less"); } 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 updateMWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!startTrade) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //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 && swapActivate && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } 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; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / 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 deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapActivate","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff191660011790556013805490911690553480156200004757600080fd5b50604080518082018252600b81526a50726f626162696c69747960a81b602080830191825283518085019094526007845266312f284e2b312960c81b9084015281519192916200009a9160039162000696565b508051620000b090600490602084019062000696565b505050620000cd620000c7620003e460201b60201c565b620003e8565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ef8160016200043a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016091906200073c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d491906200073c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000222573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024891906200073c565b6001600160a01b031660a0819052620002639060016200043a565b60a05162000273906001620004b3565b6b033b2e3c9fd0803ce80000006008556b06765c793fa10079d0000000600a5560046000808281806c01431e0fae6d7217caa0000000612710620002b982600562000784565b620002c59190620007a6565b60095560158790556016869055601785905584620002e48789620007c9565b620002f09190620007c9565b6014556019849055601a839055601b829055816200030f8486620007c9565b6200031b9190620007c9565b6018556006805473b95cd22fac1c533bd7635f3383b701ec3e41474f6001600160a01b03199182168117909255600780549091169091179055620003736200036b6005546001600160a01b031690565b600162000507565b6200038030600162000507565b6200038f61dead600162000507565b620003ae620003a66005546001600160a01b031690565b60016200043a565b620003bb3060016200043a565b620003ca61dead60016200043a565b620003d63382620005b1565b505050505050505062000821565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004895760405162461bcd60e51b81526020600482018190526024820152600080516020620038fd83398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005525760405162461bcd60e51b81526020600482018190526024820152600080516020620038fd833981519152604482015260640162000480565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000480565b80600260008282546200061d9190620007c9565b90915550506001600160a01b038216600090815260208190526040812080548392906200064c908490620007c9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006a490620007e4565b90600052602060002090601f016020900481019282620006c8576000855562000713565b82601f10620006e357805160ff191683800117855562000713565b8280016001018555821562000713579182015b8281111562000713578251825591602001919060010190620006f6565b506200072192915062000725565b5090565b5b8082111562000721576000815560010162000726565b6000602082840312156200074f57600080fd5b81516001600160a01b03811681146200076757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007a157620007a16200076e565b500290565b600082620007c457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007df57620007df6200076e565b500190565b600181811c90821680620007f957607f821691505b602082108114156200081b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613054620008a9600039600081816105ca01528181610ff0015281816117d00152818161186b0152818161189701528181611c34015281816127a701528181612849015261287501526000818161044301528181611bf60152818161297f01528181612a3801528181612a7401528181612aee0152612b4b01526130546000f3fe60806040526004361061039b5760003560e01c806392136913116101dc578063c18bc19511610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f637434214610a9e578063f8b45b0514610ab4578063fe72b27a14610aca57600080fd5b8063dd62ed3e146109f7578063e2f4560514610a3d578063e884f26014610a53578063f11a24d314610a6857600080fd5b8063ca770092116100dc578063ca7700921461098c578063cfb50515146109a1578063d257b34f146109c1578063d85ba063146109e157600080fd5b8063c18bc1951461093c578063c876d0b91461095c578063c8c8ebe41461097657600080fd5b8063a457c2d71161017a578063bd98f29f11610149578063bd98f29f146108bc578063be2409a6146108dc578063c0246668146108fc578063c17b5b8c1461091c57600080fd5b8063a457c2d714610836578063a4c82a0014610856578063a9059cbb1461086c578063b62496f51461088c57600080fd5b80639c3b4fdc116101b65780639c3b4fdc146107de5780639ec22c0e146107f45780639fccce321461080a578063a0d82dc51461082057600080fd5b8063921369131461079357806395d89b41146107a95780639a7a23d6146107be57600080fd5b806339509351116102c1578063715018a61161025f5780637bce5a041161022e5780637bce5a041461071f5780638095d564146107355780638da5cb5b146107555780638ea5220f1461077357600080fd5b8063715018a6146106aa578063730c1888146106bf5780637571336a146106df57806375f0a874146106ff57600080fd5b80634fbee1931161029b5780634fbee193146106065780636a486a8e1461063f5780636c5808011461065557806370a082311461067457600080fd5b8063395093511461059857806349bd5a5e146105b85780634a62bb65146105ec57600080fd5b80631a8145bb116103395780632bc4d48b116103085780632bc4d48b1461052a5780632c3e486c1461054c5780632e82f1a014610562578063313ce5671461057c57600080fd5b80631a8145bb146104c85780631f3fed8f146104de57806323b872dd146104f457806327c8f8351461051457600080fd5b80631694505e116103755780631694505e1461043157806318160ddd1461047d578063184c16c51461049c578063199ffc72146104b257600080fd5b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610aea565b6040516103c99190612bc9565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612c33565b610b7c565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612c5f565b602080526000908152604090205460ff1681565b34801561043d57600080fd5b506104657f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c9565b34801561048957600080fd5b506002545b6040519081526020016103c9565b3480156104a857600080fd5b5061048e600f5481565b3480156104be57600080fd5b5061048e600b5481565b3480156104d457600080fd5b5061048e601d5481565b3480156104ea57600080fd5b5061048e601c5481565b34801561050057600080fd5b506103f261050f366004612c7c565b610b92565b34801561052057600080fd5b5061046561dead81565b34801561053657600080fd5b5061054a610545366004612cbd565b610c41565b005b34801561055857600080fd5b5061048e600d5481565b34801561056e57600080fd5b50600c546103f29060ff1681565b34801561058857600080fd5b50604051601281526020016103c9565b3480156105a457600080fd5b506103f26105b3366004612c33565b610d1e565b3480156105c457600080fd5b506104657f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f857600080fd5b506011546103f29060ff1681565b34801561061257600080fd5b506103f2610621366004612c5f565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561064b57600080fd5b5061048e60185481565b34801561066157600080fd5b506011546103f290610100900460ff1681565b34801561068057600080fd5b5061048e61068f366004612c5f565b6001600160a01b031660009081526020819052604090205490565b3480156106b657600080fd5b5061054a610d5a565b3480156106cb57600080fd5b5061054a6106da366004612ce6565b610d90565b3480156106eb57600080fd5b5061054a6106fa366004612d1b565b610eb9565b34801561070b57600080fd5b50600654610465906001600160a01b031681565b34801561072b57600080fd5b5061048e60155481565b34801561074157600080fd5b5061054a610750366004612d50565b610f0d565b34801561076157600080fd5b506005546001600160a01b0316610465565b34801561077f57600080fd5b50600754610465906001600160a01b031681565b34801561079f57600080fd5b5061048e60195481565b3480156107b557600080fd5b506103bc610fb5565b3480156107ca57600080fd5b5061054a6107d9366004612d1b565b610fc4565b3480156107ea57600080fd5b5061048e60175481565b34801561080057600080fd5b5061048e60105481565b34801561081657600080fd5b5061048e601e5481565b34801561082c57600080fd5b5061048e601b5481565b34801561084257600080fd5b506103f2610851366004612c33565b6110a4565b34801561086257600080fd5b5061048e600e5481565b34801561087857600080fd5b506103f2610887366004612c33565b61113d565b34801561089857600080fd5b506103f26108a7366004612c5f565b60216020526000908152604090205460ff1681565b3480156108c857600080fd5b506011546103f29062010000900460ff1681565b3480156108e857600080fd5b5061054a6108f7366004612c5f565b61114a565b34801561090857600080fd5b5061054a610917366004612d1b565b6111d1565b34801561092857600080fd5b5061054a610937366004612d50565b61125a565b34801561094857600080fd5b5061054a610957366004612cbd565b6112fd565b34801561096857600080fd5b506013546103f29060ff1681565b34801561098257600080fd5b5061048e60085481565b34801561099857600080fd5b5061054a6113ce565b3480156109ad57600080fd5b5061054a6109bc366004612c5f565b61140f565b3480156109cd57600080fd5b506103f26109dc366004612cbd565b611496565b3480156109ed57600080fd5b5061048e60145481565b348015610a0357600080fd5b5061048e610a12366004612d7c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b5061048e60095481565b348015610a5f57600080fd5b506103f26115ed565b348015610a7457600080fd5b5061048e60165481565b348015610a8a57600080fd5b5061054a610a99366004612c5f565b61162a565b348015610aaa57600080fd5b5061048e601a5481565b348015610ac057600080fd5b5061048e600a5481565b348015610ad657600080fd5b506103f2610ae5366004612cbd565b6116c5565b606060038054610af990612db5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2590612db5565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b6000610b8933848461193f565b50600192915050565b6000610b9f848484611a63565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c36853385840361193f565b506001949350505050565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b8152600401610c2090612df0565b670de0b6b3a76400006103e8610c8060025490565b610c8b906001612e3b565b610c959190612e5a565b610c9f9190612e5a565b811015610d065760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c20565b610d1881670de0b6b3a7640000612e3b565b60085550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b89918590610d55908690612e7c565b61193f565b6005546001600160a01b03163314610d845760405162461bcd60e51b8152600401610c2090612df0565b610d8e6000612338565b565b6005546001600160a01b03163314610dba5760405162461bcd60e51b8152600401610c2090612df0565b610258831015610e285760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c20565b6103e88211158015610e38575060015b610e9d5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c20565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610ee35760405162461bcd60e51b8152600401610c2090612df0565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f375760405162461bcd60e51b8152600401610c2090612df0565b60158390556016829055601781905580610f518385612e7c565b610f5b9190612e7c565b6014819055600f1015610fb05760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c20565b505050565b606060048054610af990612db5565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610c2090612df0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110965760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c20565b6110a0828261238a565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c20565b611133338585840361193f565b5060019392505050565b6000610b89338484611a63565b6005546001600160a01b031633146111745760405162461bcd60e51b8152600401610c2090612df0565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610c2090612df0565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112845760405162461bcd60e51b8152600401610c2090612df0565b6019839055601a829055601b8190558061129e8385612e7c565b6112a89190612e7c565b6018819055600f1015610fb05760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c20565b6005546001600160a01b031633146113275760405162461bcd60e51b8152600401610c2090612df0565b670de0b6b3a76400006103e861133c60025490565b611347906005612e3b565b6113519190612e5a565b61135b9190612e5a565b8110156113b65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c20565b6113c881670de0b6b3a7640000612e3b565b600a5550565b6005546001600160a01b031633146113f85760405162461bcd60e51b8152600401610c2090612df0565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146114395760405162461bcd60e51b8152600401610c2090612df0565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146114c35760405162461bcd60e51b8152600401610c2090612df0565b620186a06114d060025490565b6114db906001612e3b565b6114e59190612e5a565b8210156115525760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c20565b6103e861155e60025490565b611569906005612e3b565b6115739190612e5a565b8211156115df5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c20565b50600981905560015b919050565b6005546000906001600160a01b0316331461161a5760405162461bcd60e51b8152600401610c2090612df0565b506013805460ff19169055600190565b6005546001600160a01b031633146116545760405162461bcd60e51b8152600401610c2090612df0565b6001600160a01b0381166116b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b6116c281612338565b50565b6005546000906001600160a01b031633146116f25760405162461bcd60e51b8152600401610c2090612df0565b600f546010546117029190612e7c565b42116117505760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c20565b6103e88211156117b55760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c20565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118449190612e94565b9050600061185e61271061185884876123de565b906123f1565b90508015611893576118937f000000000000000000000000000000000000000000000000000000000000000061dead836123fd565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156118f357600080fd5b505af1158015611907573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119a15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b6001600160a01b038216611a025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a895760405162461bcd60e51b8152600401610c2090612ead565b6001600160a01b038216611aaf5760405162461bcd60e51b8152600401610c2090612ef2565b80611ac057610fb0838360006123fd565b60115460ff1615611f7a576005546001600160a01b03848116911614801590611af757506005546001600160a01b03838116911614155b8015611b0b57506001600160a01b03821615155b8015611b2257506001600160a01b03821661dead14155b8015611b385750600554600160a01b900460ff16155b15611f7a57601154610100900460ff16611bd0576001600160a01b0383166000908152601f602052604090205460ff1680611b8b57506001600160a01b0382166000908152601f602052604090205460ff165b611bd05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c20565b60135460ff1615611d17576005546001600160a01b03838116911614801590611c2b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611c6957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611d1757326000908152601260205260409020544311611d045760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c20565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611d5757506001600160a01b038216600090815260208052604090205460ff16155b15611e3b57600854811115611dcc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c20565b600a546001600160a01b038316600090815260208190526040902054611df29083612e7c565b1115611e365760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b611f7a565b6001600160a01b03821660009081526021602052604090205460ff168015611e7b57506001600160a01b038316600090815260208052604090205460ff16155b15611ef157600854811115611e365760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c20565b6001600160a01b038216600090815260208052604090205460ff16611f7a57600a546001600160a01b038316600090815260208190526040902054611f369083612e7c565b1115611f7a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b3060009081526020819052604090205460095481108015908190611fa6575060115462010000900460ff165b8015611fbc5750600554600160a01b900460ff16155b8015611fe157506001600160a01b03851660009081526021602052604090205460ff16155b801561200657506001600160a01b0385166000908152601f602052604090205460ff16155b801561202b57506001600160a01b0384166000908152601f602052604090205460ff16155b15612059576005805460ff60a01b1916600160a01b17905561204b612552565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561208b57506001600160a01b03841660009081526021602052604090205460ff165b80156120995750600c5460ff165b80156120b45750600d54600e546120b09190612e7c565b4210155b80156120d957506001600160a01b0385166000908152601f602052604090205460ff16155b156120e8576120e661278c565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061213657506001600160a01b0385166000908152601f602052604090205460ff165b1561213f575060005b60008115612324576001600160a01b03861660009081526021602052604090205460ff16801561217157506000601854115b15612229576121906064611858601854886123de90919063ffffffff16565b9050601854601a54826121a39190612e3b565b6121ad9190612e5a565b601d60008282546121be9190612e7c565b9091555050601854601b546121d39083612e3b565b6121dd9190612e5a565b601e60008282546121ee9190612e7c565b90915550506018546019546122039083612e3b565b61220d9190612e5a565b601c600082825461221e9190612e7c565b909155506123069050565b6001600160a01b03871660009081526021602052604090205460ff16801561225357506000601454115b15612306576122726064611858601454886123de90919063ffffffff16565b9050601454601654826122859190612e3b565b61228f9190612e5a565b601d60008282546122a09190612e7c565b90915550506014546017546122b59083612e3b565b6122bf9190612e5a565b601e60008282546122d09190612e7c565b90915550506014546015546122e59083612e3b565b6122ef9190612e5a565b601c60008282546123009190612e7c565b90915550505b8015612317576123178730836123fd565b6123218186612f35565b94505b61232f8787876123fd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123ea8284612e3b565b9392505050565b60006123ea8284612e5a565b6001600160a01b0383166124235760405162461bcd60e51b8152600401610c2090612ead565b6001600160a01b0382166124495760405162461bcd60e51b8152600401610c2090612ef2565b6001600160a01b038316600090815260208190526040902054818110156124c15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c20565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906124f8908490612e7c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125799190612e7c565b6125839190612e7c565b90506000821580612592575081155b1561259c57505050565b6009546125aa906014612e3b565b8311156125c2576009546125bf906014612e3b565b92505b6000600283601d54866125d59190612e3b565b6125df9190612e5a565b6125e99190612e5a565b905060006125f7858361291c565b90504761260382612928565b600061260f478361291c565b9050600061262c87611858601c54856123de90919063ffffffff16565b9050600061264988611858601e54866123de90919063ffffffff16565b90506000816126588486612f35565b6126629190612f35565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146126bf576040519150601f19603f3d011682016040523d82523d6000602084013e6126c4565b606091505b509098505086158015906126d85750600081115b1561272b576126e78782612ae8565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612778576040519150601f19603f3d011682016040523d82523d6000602084013e61277d565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156127f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281d9190612e94565b9050600061283c612710611858600b54856123de90919063ffffffff16565b90508015612871576128717f000000000000000000000000000000000000000000000000000000000000000061dead836123fd565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128d157600080fd5b505af11580156128e5573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123ea8284612f35565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061295d5761295d612f4c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ff9190612f62565b81600181518110612a1257612a12612f4c565b60200260200101906001600160a01b031690816001600160a01b031681525050612a5d307f00000000000000000000000000000000000000000000000000000000000000008461193f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612ab2908590600090869030904290600401612f7f565b600060405180830381600087803b158015612acc57600080fd5b505af1158015612ae0573d6000803e3d6000fd5b505050505050565b612b13307f00000000000000000000000000000000000000000000000000000000000000008461193f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612b9d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612bc29190612ff0565b5050505050565b600060208083528351808285015260005b81811015612bf657858101830151858201604001528201612bda565b81811115612c08576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116c257600080fd5b60008060408385031215612c4657600080fd5b8235612c5181612c1e565b946020939093013593505050565b600060208284031215612c7157600080fd5b81356123ea81612c1e565b600080600060608486031215612c9157600080fd5b8335612c9c81612c1e565b92506020840135612cac81612c1e565b929592945050506040919091013590565b600060208284031215612ccf57600080fd5b5035919050565b803580151581146115e857600080fd5b600080600060608486031215612cfb57600080fd5b8335925060208401359150612d1260408501612cd6565b90509250925092565b60008060408385031215612d2e57600080fd5b8235612d3981612c1e565b9150612d4760208401612cd6565b90509250929050565b600080600060608486031215612d6557600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612d8f57600080fd5b8235612d9a81612c1e565b91506020830135612daa81612c1e565b809150509250929050565b600181811c90821680612dc957607f821691505b60208210811415612dea57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612e5557612e55612e25565b500290565b600082612e7757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e8f57612e8f612e25565b500190565b600060208284031215612ea657600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f4757612f47612e25565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f7457600080fd5b81516123ea81612c1e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fcf5784516001600160a01b031683529383019391830191600101612faa565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561300557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200ec6f8f73275c547def4b5d5108fa90a3de9414dab84164f6779ededad35cf7864736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061039b5760003560e01c806392136913116101dc578063c18bc19511610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f637434214610a9e578063f8b45b0514610ab4578063fe72b27a14610aca57600080fd5b8063dd62ed3e146109f7578063e2f4560514610a3d578063e884f26014610a53578063f11a24d314610a6857600080fd5b8063ca770092116100dc578063ca7700921461098c578063cfb50515146109a1578063d257b34f146109c1578063d85ba063146109e157600080fd5b8063c18bc1951461093c578063c876d0b91461095c578063c8c8ebe41461097657600080fd5b8063a457c2d71161017a578063bd98f29f11610149578063bd98f29f146108bc578063be2409a6146108dc578063c0246668146108fc578063c17b5b8c1461091c57600080fd5b8063a457c2d714610836578063a4c82a0014610856578063a9059cbb1461086c578063b62496f51461088c57600080fd5b80639c3b4fdc116101b65780639c3b4fdc146107de5780639ec22c0e146107f45780639fccce321461080a578063a0d82dc51461082057600080fd5b8063921369131461079357806395d89b41146107a95780639a7a23d6146107be57600080fd5b806339509351116102c1578063715018a61161025f5780637bce5a041161022e5780637bce5a041461071f5780638095d564146107355780638da5cb5b146107555780638ea5220f1461077357600080fd5b8063715018a6146106aa578063730c1888146106bf5780637571336a146106df57806375f0a874146106ff57600080fd5b80634fbee1931161029b5780634fbee193146106065780636a486a8e1461063f5780636c5808011461065557806370a082311461067457600080fd5b8063395093511461059857806349bd5a5e146105b85780634a62bb65146105ec57600080fd5b80631a8145bb116103395780632bc4d48b116103085780632bc4d48b1461052a5780632c3e486c1461054c5780632e82f1a014610562578063313ce5671461057c57600080fd5b80631a8145bb146104c85780631f3fed8f146104de57806323b872dd146104f457806327c8f8351461051457600080fd5b80631694505e116103755780631694505e1461043157806318160ddd1461047d578063184c16c51461049c578063199ffc72146104b257600080fd5b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040257600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610aea565b6040516103c99190612bc9565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612c33565b610b7c565b60405190151581526020016103c9565b34801561040e57600080fd5b506103f261041d366004612c5f565b602080526000908152604090205460ff1681565b34801561043d57600080fd5b506104657f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c9565b34801561048957600080fd5b506002545b6040519081526020016103c9565b3480156104a857600080fd5b5061048e600f5481565b3480156104be57600080fd5b5061048e600b5481565b3480156104d457600080fd5b5061048e601d5481565b3480156104ea57600080fd5b5061048e601c5481565b34801561050057600080fd5b506103f261050f366004612c7c565b610b92565b34801561052057600080fd5b5061046561dead81565b34801561053657600080fd5b5061054a610545366004612cbd565b610c41565b005b34801561055857600080fd5b5061048e600d5481565b34801561056e57600080fd5b50600c546103f29060ff1681565b34801561058857600080fd5b50604051601281526020016103c9565b3480156105a457600080fd5b506103f26105b3366004612c33565b610d1e565b3480156105c457600080fd5b506104657f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b50981565b3480156105f857600080fd5b506011546103f29060ff1681565b34801561061257600080fd5b506103f2610621366004612c5f565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561064b57600080fd5b5061048e60185481565b34801561066157600080fd5b506011546103f290610100900460ff1681565b34801561068057600080fd5b5061048e61068f366004612c5f565b6001600160a01b031660009081526020819052604090205490565b3480156106b657600080fd5b5061054a610d5a565b3480156106cb57600080fd5b5061054a6106da366004612ce6565b610d90565b3480156106eb57600080fd5b5061054a6106fa366004612d1b565b610eb9565b34801561070b57600080fd5b50600654610465906001600160a01b031681565b34801561072b57600080fd5b5061048e60155481565b34801561074157600080fd5b5061054a610750366004612d50565b610f0d565b34801561076157600080fd5b506005546001600160a01b0316610465565b34801561077f57600080fd5b50600754610465906001600160a01b031681565b34801561079f57600080fd5b5061048e60195481565b3480156107b557600080fd5b506103bc610fb5565b3480156107ca57600080fd5b5061054a6107d9366004612d1b565b610fc4565b3480156107ea57600080fd5b5061048e60175481565b34801561080057600080fd5b5061048e60105481565b34801561081657600080fd5b5061048e601e5481565b34801561082c57600080fd5b5061048e601b5481565b34801561084257600080fd5b506103f2610851366004612c33565b6110a4565b34801561086257600080fd5b5061048e600e5481565b34801561087857600080fd5b506103f2610887366004612c33565b61113d565b34801561089857600080fd5b506103f26108a7366004612c5f565b60216020526000908152604090205460ff1681565b3480156108c857600080fd5b506011546103f29062010000900460ff1681565b3480156108e857600080fd5b5061054a6108f7366004612c5f565b61114a565b34801561090857600080fd5b5061054a610917366004612d1b565b6111d1565b34801561092857600080fd5b5061054a610937366004612d50565b61125a565b34801561094857600080fd5b5061054a610957366004612cbd565b6112fd565b34801561096857600080fd5b506013546103f29060ff1681565b34801561098257600080fd5b5061048e60085481565b34801561099857600080fd5b5061054a6113ce565b3480156109ad57600080fd5b5061054a6109bc366004612c5f565b61140f565b3480156109cd57600080fd5b506103f26109dc366004612cbd565b611496565b3480156109ed57600080fd5b5061048e60145481565b348015610a0357600080fd5b5061048e610a12366004612d7c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b5061048e60095481565b348015610a5f57600080fd5b506103f26115ed565b348015610a7457600080fd5b5061048e60165481565b348015610a8a57600080fd5b5061054a610a99366004612c5f565b61162a565b348015610aaa57600080fd5b5061048e601a5481565b348015610ac057600080fd5b5061048e600a5481565b348015610ad657600080fd5b506103f2610ae5366004612cbd565b6116c5565b606060038054610af990612db5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2590612db5565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b5050505050905090565b6000610b8933848461193f565b50600192915050565b6000610b9f848484611a63565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c36853385840361193f565b506001949350505050565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b8152600401610c2090612df0565b670de0b6b3a76400006103e8610c8060025490565b610c8b906001612e3b565b610c959190612e5a565b610c9f9190612e5a565b811015610d065760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c20565b610d1881670de0b6b3a7640000612e3b565b60085550565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b89918590610d55908690612e7c565b61193f565b6005546001600160a01b03163314610d845760405162461bcd60e51b8152600401610c2090612df0565b610d8e6000612338565b565b6005546001600160a01b03163314610dba5760405162461bcd60e51b8152600401610c2090612df0565b610258831015610e285760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c20565b6103e88211158015610e38575060015b610e9d5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c20565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610ee35760405162461bcd60e51b8152600401610c2090612df0565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f375760405162461bcd60e51b8152600401610c2090612df0565b60158390556016829055601781905580610f518385612e7c565b610f5b9190612e7c565b6014819055600f1015610fb05760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c20565b505050565b606060048054610af990612db5565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610c2090612df0565b7f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b5096001600160a01b0316826001600160a01b031614156110965760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c20565b6110a0828261238a565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c20565b611133338585840361193f565b5060019392505050565b6000610b89338484611a63565b6005546001600160a01b031633146111745760405162461bcd60e51b8152600401610c2090612df0565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610c2090612df0565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112845760405162461bcd60e51b8152600401610c2090612df0565b6019839055601a829055601b8190558061129e8385612e7c565b6112a89190612e7c565b6018819055600f1015610fb05760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c20565b6005546001600160a01b031633146113275760405162461bcd60e51b8152600401610c2090612df0565b670de0b6b3a76400006103e861133c60025490565b611347906005612e3b565b6113519190612e5a565b61135b9190612e5a565b8110156113b65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c20565b6113c881670de0b6b3a7640000612e3b565b600a5550565b6005546001600160a01b031633146113f85760405162461bcd60e51b8152600401610c2090612df0565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146114395760405162461bcd60e51b8152600401610c2090612df0565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146114c35760405162461bcd60e51b8152600401610c2090612df0565b620186a06114d060025490565b6114db906001612e3b565b6114e59190612e5a565b8210156115525760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c20565b6103e861155e60025490565b611569906005612e3b565b6115739190612e5a565b8211156115df5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c20565b50600981905560015b919050565b6005546000906001600160a01b0316331461161a5760405162461bcd60e51b8152600401610c2090612df0565b506013805460ff19169055600190565b6005546001600160a01b031633146116545760405162461bcd60e51b8152600401610c2090612df0565b6001600160a01b0381166116b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b6116c281612338565b50565b6005546000906001600160a01b031633146116f25760405162461bcd60e51b8152600401610c2090612df0565b600f546010546117029190612e7c565b42116117505760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c20565b6103e88211156117b55760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c20565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b50916600482015260009030906370a0823190602401602060405180830381865afa158015611820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118449190612e94565b9050600061185e61271061185884876123de565b906123f1565b90508015611893576118937f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b50961dead836123fd565b60007f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b5099050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156118f357600080fd5b505af1158015611907573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119a15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b6001600160a01b038216611a025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a895760405162461bcd60e51b8152600401610c2090612ead565b6001600160a01b038216611aaf5760405162461bcd60e51b8152600401610c2090612ef2565b80611ac057610fb0838360006123fd565b60115460ff1615611f7a576005546001600160a01b03848116911614801590611af757506005546001600160a01b03838116911614155b8015611b0b57506001600160a01b03821615155b8015611b2257506001600160a01b03821661dead14155b8015611b385750600554600160a01b900460ff16155b15611f7a57601154610100900460ff16611bd0576001600160a01b0383166000908152601f602052604090205460ff1680611b8b57506001600160a01b0382166000908152601f602052604090205460ff165b611bd05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c20565b60135460ff1615611d17576005546001600160a01b03838116911614801590611c2b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611c6957507f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b5096001600160a01b0316826001600160a01b031614155b15611d1757326000908152601260205260409020544311611d045760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c20565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611d5757506001600160a01b038216600090815260208052604090205460ff16155b15611e3b57600854811115611dcc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c20565b600a546001600160a01b038316600090815260208190526040902054611df29083612e7c565b1115611e365760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b611f7a565b6001600160a01b03821660009081526021602052604090205460ff168015611e7b57506001600160a01b038316600090815260208052604090205460ff16155b15611ef157600854811115611e365760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c20565b6001600160a01b038216600090815260208052604090205460ff16611f7a57600a546001600160a01b038316600090815260208190526040902054611f369083612e7c565b1115611f7a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c20565b3060009081526020819052604090205460095481108015908190611fa6575060115462010000900460ff165b8015611fbc5750600554600160a01b900460ff16155b8015611fe157506001600160a01b03851660009081526021602052604090205460ff16155b801561200657506001600160a01b0385166000908152601f602052604090205460ff16155b801561202b57506001600160a01b0384166000908152601f602052604090205460ff16155b15612059576005805460ff60a01b1916600160a01b17905561204b612552565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561208b57506001600160a01b03841660009081526021602052604090205460ff165b80156120995750600c5460ff165b80156120b45750600d54600e546120b09190612e7c565b4210155b80156120d957506001600160a01b0385166000908152601f602052604090205460ff16155b156120e8576120e661278c565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061213657506001600160a01b0385166000908152601f602052604090205460ff165b1561213f575060005b60008115612324576001600160a01b03861660009081526021602052604090205460ff16801561217157506000601854115b15612229576121906064611858601854886123de90919063ffffffff16565b9050601854601a54826121a39190612e3b565b6121ad9190612e5a565b601d60008282546121be9190612e7c565b9091555050601854601b546121d39083612e3b565b6121dd9190612e5a565b601e60008282546121ee9190612e7c565b90915550506018546019546122039083612e3b565b61220d9190612e5a565b601c600082825461221e9190612e7c565b909155506123069050565b6001600160a01b03871660009081526021602052604090205460ff16801561225357506000601454115b15612306576122726064611858601454886123de90919063ffffffff16565b9050601454601654826122859190612e3b565b61228f9190612e5a565b601d60008282546122a09190612e7c565b90915550506014546017546122b59083612e3b565b6122bf9190612e5a565b601e60008282546122d09190612e7c565b90915550506014546015546122e59083612e3b565b6122ef9190612e5a565b601c60008282546123009190612e7c565b90915550505b8015612317576123178730836123fd565b6123218186612f35565b94505b61232f8787876123fd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123ea8284612e3b565b9392505050565b60006123ea8284612e5a565b6001600160a01b0383166124235760405162461bcd60e51b8152600401610c2090612ead565b6001600160a01b0382166124495760405162461bcd60e51b8152600401610c2090612ef2565b6001600160a01b038316600090815260208190526040902054818110156124c15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c20565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906124f8908490612e7c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125799190612e7c565b6125839190612e7c565b90506000821580612592575081155b1561259c57505050565b6009546125aa906014612e3b565b8311156125c2576009546125bf906014612e3b565b92505b6000600283601d54866125d59190612e3b565b6125df9190612e5a565b6125e99190612e5a565b905060006125f7858361291c565b90504761260382612928565b600061260f478361291c565b9050600061262c87611858601c54856123de90919063ffffffff16565b9050600061264988611858601e54866123de90919063ffffffff16565b90506000816126588486612f35565b6126629190612f35565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146126bf576040519150601f19603f3d011682016040523d82523d6000602084013e6126c4565b606091505b509098505086158015906126d85750600081115b1561272b576126e78782612ae8565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612778576040519150601f19603f3d011682016040523d82523d6000602084013e61277d565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b509166004820152600090819030906370a0823190602401602060405180830381865afa1580156127f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281d9190612e94565b9050600061283c612710611858600b54856123de90919063ffffffff16565b90508015612871576128717f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b50961dead836123fd565b60007f0000000000000000000000001d7d19adaf505c54767d880eec69efdff170b5099050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128d157600080fd5b505af11580156128e5573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123ea8284612f35565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061295d5761295d612f4c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ff9190612f62565b81600181518110612a1257612a12612f4c565b60200260200101906001600160a01b031690816001600160a01b031681525050612a5d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461193f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612ab2908590600090869030904290600401612f7f565b600060405180830381600087803b158015612acc57600080fd5b505af1158015612ae0573d6000803e3d6000fd5b505050505050565b612b13307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461193f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612b9d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612bc29190612ff0565b5050505050565b600060208083528351808285015260005b81811015612bf657858101830151858201604001528201612bda565b81811115612c08576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116c257600080fd5b60008060408385031215612c4657600080fd5b8235612c5181612c1e565b946020939093013593505050565b600060208284031215612c7157600080fd5b81356123ea81612c1e565b600080600060608486031215612c9157600080fd5b8335612c9c81612c1e565b92506020840135612cac81612c1e565b929592945050506040919091013590565b600060208284031215612ccf57600080fd5b5035919050565b803580151581146115e857600080fd5b600080600060608486031215612cfb57600080fd5b8335925060208401359150612d1260408501612cd6565b90509250925092565b60008060408385031215612d2e57600080fd5b8235612d3981612c1e565b9150612d4760208401612cd6565b90509250929050565b600080600060608486031215612d6557600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612d8f57600080fd5b8235612d9a81612c1e565b91506020830135612daa81612c1e565b809150509250929050565b600181811c90821680612dc957607f821691505b60208210811415612dea57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612e5557612e55612e25565b500290565b600082612e7757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e8f57612e8f612e25565b500190565b600060208284031215612ea657600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612f4757612f47612e25565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f7457600080fd5b81516123ea81612c1e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fcf5784516001600160a01b031683529383019391830191600101612faa565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561300557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200ec6f8f73275c547def4b5d5108fa90a3de9414dab84164f6779ededad35cf7864736f6c634300080a0033
Deployed Bytecode Sourcemap
29583:19072:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9178:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11345:169;;;;;;;;;;-1:-1:-1;11345:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11345:169:0;1072:187:1;31214:63:0;;;;;;;;;;-1:-1:-1;31214:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29664:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;29664:51:0;1516:230:1;10298:108:0;;;;;;;;;;-1:-1:-1;10386:12:0;;10298:108;;;1897:25:1;;;1885:2;1870:18;10298:108:0;1751:177:1;30229:47:0;;;;;;;;;;;;;;;;30044:35;;;;;;;;;;;;;;;;30998:33;;;;;;;;;;;;;;;;30958;;;;;;;;;;;;;;;;11996:492;;;;;;;;;;-1:-1:-1;11996:492:0;;;;;:::i;:::-;;:::i;29767:53::-;;;;;;;;;;;;29813:6;29767:53;;35511:269;;;;;;;;;;-1:-1:-1;35511:269:0;;;;;:::i;:::-;;:::i;:::-;;30139:45;;;;;;;;;;;;;;;;30099:33;;;;;;;;;;-1:-1:-1;30099:33:0;;;;;;;;10140:93;;;;;;;;;;-1:-1:-1;10140:93:0;;10223:2;2929:36:1;;2917:2;2902:18;10140:93:0;2787:184:1;12897:215:0;;;;;;;;;;-1:-1:-1;12897:215:0;;;;;:::i;:::-;;:::i;29722:38::-;;;;;;;;;;;;;;;30327:33;;;;;;;;;;-1:-1:-1;30327:33:0;;;;;;;;38150:126;;;;;;;;;;-1:-1:-1;38150:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38240:28:0;38216:4;38240:28;;;:19;:28;;;;;;;;;38150:126;30813:28;;;;;;;;;;;;;;;;30367:30;;;;;;;;;;-1:-1:-1;30367:30:0;;;;;;;;;;;10469:127;;;;;;;;;;-1:-1:-1;10469:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10570:18:0;10543:7;10570:18;;;;;;;;;;;;10469:127;2413:103;;;;;;;;;;;;;:::i;46237:555::-;;;;;;;;;;-1:-1:-1;46237:555:0;;;;;:::i;:::-;;:::i;36052:167::-;;;;;;;;;;-1:-1:-1;36052:167:0;;;;;:::i;:::-;;:::i;29859:30::-;;;;;;;;;;-1:-1:-1;29859:30:0;;;;-1:-1:-1;;;;;29859:30:0;;;30706;;;;;;;;;;;;;;;;36227:403;;;;;;;;;;-1:-1:-1;36227:403:0;;;;;:::i;:::-;;:::i;2105:87::-;;;;;;;;;;-1:-1:-1;2178:6:0;;-1:-1:-1;;;;;2178:6:0;2105:87;;29896:24;;;;;;;;;;-1:-1:-1;29896:24:0;;;;-1:-1:-1;;;;;29896:24:0;;;30848:31;;;;;;;;;;;;;;;;9397:104;;;;;;;;;;;;;:::i;37248:304::-;;;;;;;;;;-1:-1:-1;37248:304:0;;;;;:::i;:::-;;:::i;30780:24::-;;;;;;;;;;;;;;;;30283:35;;;;;;;;;;;;;;;;31038:27;;;;;;;;;;;;;;;;30924:25;;;;;;;;;;;;;;;;13615:413;;;;;;;;;;-1:-1:-1;13615:413:0;;;;;:::i;:::-;;:::i;30191:29::-;;;;;;;;;;;;;;;;10809:175;;;;;;;;;;-1:-1:-1;10809:175:0;;;;;:::i;:::-;;:::i;31435:57::-;;;;;;;;;;-1:-1:-1;31435:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30404:32;;;;;;;;;;-1:-1:-1;30404:32:0;;;;;;;;;;;37987:155;;;;;;;;;;-1:-1:-1;37987:155:0;;;;;:::i;:::-;;:::i;37058:182::-;;;;;;;;;;-1:-1:-1;37058:182:0;;;;;:::i;:::-;;:::i;36638:412::-;;;;;;;;;;-1:-1:-1;36638:412:0;;;;;:::i;:::-;;:::i;35788:256::-;;;;;;;;;;-1:-1:-1;35788:256:0;;;;;:::i;:::-;;:::i;30623:40::-;;;;;;;;;;-1:-1:-1;30623:40:0;;;;;;;;29929:35;;;;;;;;;;;;;;;;34587:153;;;;;;;;;;;;;:::i;37756:223::-;;;;;;;;;;-1:-1:-1;37756:223:0;;;;;:::i;:::-;;:::i;35006:497::-;;;;;;;;;;-1:-1:-1;35006:497:0;;;;;:::i;:::-;;:::i;30672:27::-;;;;;;;;;;;;;;;;11047:151;;;;;;;;;;-1:-1:-1;11047:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11163:18:0;;;11136:7;11163:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11047:151;29971:33;;;;;;;;;;;;;;;;34801:135;;;;;;;;;;;;;:::i;30743:30::-;;;;;;;;;;;;;;;;2671:201;;;;;;;;;;-1:-1:-1;2671:201:0;;;;;:::i;:::-;;:::i;30886:31::-;;;;;;;;;;;;;;;;30011:24;;;;;;;;;;;;;;;;47596:1056;;;;;;;;;;-1:-1:-1;47596:1056:0;;;;;:::i;:::-;;:::i;9178:100::-;9232:13;9265:5;9258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9178:100;:::o;11345:169::-;11428:4;11445:39;896:10;11468:7;11477:6;11445:8;:39::i;:::-;-1:-1:-1;11502:4:0;11345:169;;;;:::o;11996:492::-;12136:4;12153:36;12163:6;12171:9;12182:6;12153:9;:36::i;:::-;-1:-1:-1;;;;;12229:19:0;;12202:24;12229:19;;;:11;:19;;;;;;;;896:10;12229:33;;;;;;;;12281:26;;;;12273:79;;;;-1:-1:-1;;;12273:79:0;;5083:2:1;12273:79:0;;;5065:21:1;5122:2;5102:18;;;5095:30;5161:34;5141:18;;;5134:62;-1:-1:-1;;;5212:18:1;;;5205:38;5260:19;;12273:79:0;;;;;;;;;12388:57;12397:6;896:10;12438:6;12419:16;:25;12388:8;:57::i;:::-;-1:-1:-1;12476:4:0;;11996:492;-1:-1:-1;;;;11996:492:0:o;35511:269::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;35642:4:::1;35634;35613:13;10386:12:::0;;;10298:108;35613:13:::1;:17;::::0;35629:1:::1;35613:17;:::i;:::-;35612:26;;;;:::i;:::-;35611:35;;;;:::i;:::-;35601:6;:45;;35579:142;;;::::0;-1:-1:-1;;;35579:142:0;;6380:2:1;35579:142:0::1;::::0;::::1;6362:21:1::0;6419:2;6399:18;;;6392:30;6458:34;6438:18;;;6431:62;-1:-1:-1;;;6509:18:1;;;6502:45;6564:19;;35579:142:0::1;6178:411:1::0;35579:142:0::1;35755:17;:6:::0;35765::::1;35755:17;:::i;:::-;35732:20;:40:::0;-1:-1:-1;35511:269:0:o;12897:215::-;896:10;12985:4;13034:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13034:34:0;;;;;;;;;;12985:4;;13002:80;;13025:7;;13034:47;;13071:10;;13034:47;:::i;:::-;13002:8;:80::i;2413:103::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;2478:30:::1;2505:1;2478:18;:30::i;:::-;2413:103::o:0;46237:555::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;46439:3:::1;46416:19;:26;;46394:127;;;::::0;-1:-1:-1;;;46394:127:0;;6929:2:1;46394:127:0::1;::::0;::::1;6911:21:1::0;6968:2;6948:18;;;6941:30;7007:34;6987:18;;;6980:62;-1:-1:-1;;;7058:18:1;;;7051:49;7117:19;;46394:127:0::1;6727:415:1::0;46394:127:0::1;46566:4;46554:8;:16;;:33;;;;-1:-1:-1::0;46574:13:0;46554:33:::1;46532:131;;;::::0;-1:-1:-1;;;46532:131:0;;7349:2:1;46532:131:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:46;7534:19;;46532:131:0::1;7147:412:1::0;46532:131:0::1;46674:15;:37:::0;;;;46722:16:::1;:27:::0;46760:13:::1;:24:::0;;-1:-1:-1;;46760:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46237:555::o;36052:167::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36165:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;36165:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36052:167::o;36227:403::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;36377:15:::1;:31:::0;;;36419:15:::1;:31:::0;;;36461:9:::1;:19:::0;;;36473:7;36506:33:::1;36437:13:::0;36395;36506:33:::1;:::i;:::-;:45;;;;:::i;:::-;36491:12;:60:::0;;;36586:2:::1;-1:-1:-1::0;36570:18:0::1;36562:60;;;::::0;-1:-1:-1;;;36562:60:0;;7766:2:1;36562:60:0::1;::::0;::::1;7748:21:1::0;7805:2;7785:18;;;7778:30;7844:31;7824:18;;;7817:59;7893:18;;36562:60:0::1;7564:353:1::0;36562:60:0::1;36227:403:::0;;;:::o;9397:104::-;9453:13;9486:7;9479:14;;;;;:::i;37248:304::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;37392:13:::1;-1:-1:-1::0;;;;;37384:21:0::1;:4;-1:-1:-1::0;;;;;37384:21:0::1;;;37362:128;;;::::0;-1:-1:-1;;;37362:128:0;;8124:2:1;37362:128:0::1;::::0;::::1;8106:21:1::0;8163:2;8143:18;;;8136:30;8202:34;8182:18;;;8175:62;8273:27;8253:18;;;8246:55;8318:19;;37362:128:0::1;7922:421:1::0;37362:128:0::1;37503:41;37532:4;37538:5;37503:28;:41::i;:::-;37248:304:::0;;:::o;13615:413::-;896:10;13708:4;13752:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13752:34:0;;;;;;;;;;13805:35;;;;13797:85;;;;-1:-1:-1;;;13797:85:0;;8550:2:1;13797:85:0;;;8532:21:1;8589:2;8569:18;;;8562:30;8628:34;8608:18;;;8601:62;-1:-1:-1;;;8679:18:1;;;8672:35;8724:19;;13797:85:0;8348:401:1;13797:85:0;13918:67;896:10;13941:7;13969:15;13950:16;:34;13918:8;:67::i;:::-;-1:-1:-1;14016:4:0;;13615:413;-1:-1:-1;;;13615:413:0:o;10809:175::-;10895:4;10912:42;896:10;10936:9;10947:6;10912:9;:42::i;37987:155::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;38092:9:::1;::::0;38064:38:::1;::::0;-1:-1:-1;;;;;38092:9:0;;::::1;::::0;38064:38;::::1;::::0;::::1;::::0;38092:9:::1;::::0;38064:38:::1;38113:9;:21:::0;;-1:-1:-1;;;;;;38113:21:0::1;-1:-1:-1::0;;;;;38113:21:0;;;::::1;::::0;;;::::1;::::0;;37987:155::o;37058:182::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37143:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37143:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37198:34;;1212:41:1;;;37198:34:0::1;::::0;1185:18:1;37198:34:0::1;;;;;;;37058:182:::0;;:::o;36638:412::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;36789:16:::1;:32:::0;;;36832:16:::1;:32:::0;;;36875:10:::1;:20:::0;;;36888:7;36922:35:::1;36851:13:::0;36808;36922:35:::1;:::i;:::-;:48;;;;:::i;:::-;36906:13;:64:::0;;;37006:2:::1;-1:-1:-1::0;36989:19:0::1;36981:61;;;::::0;-1:-1:-1;;;36981:61:0;;7766:2:1;36981:61:0::1;::::0;::::1;7748:21:1::0;7805:2;7785:18;;;7778:30;7844:31;7824:18;;;7817:59;7893:18;;36981:61:0::1;7564:353:1::0;35788:256:0;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;35928:4:::1;35920;35899:13;10386:12:::0;;;10298:108;35899:13:::1;:17;::::0;35915:1:::1;35899:17;:::i;:::-;35898:26;;;;:::i;:::-;35897:35;;;;:::i;:::-;35887:6;:45;;35865:131;;;::::0;-1:-1:-1;;;35865:131:0;;8956:2:1;35865:131:0::1;::::0;::::1;8938:21:1::0;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:1;;;9078:34;9129:19;;35865:131:0::1;8754:400:1::0;35865:131:0::1;36019:17;:6:::0;36029::::1;36019:17;:::i;:::-;36007:9;:29:::0;-1:-1:-1;35788:256:0:o;34587:153::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;34642:12:::1;:19:::0;;-1:-1:-1;;34672:17:0;;;;;34717:15:::1;34700:14;:32:::0;34587:153::o;37756:223::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;37908:15:::1;::::0;37865:59:::1;::::0;-1:-1:-1;;;;;37908:15:0;;::::1;::::0;37865:59;::::1;::::0;::::1;::::0;37908:15:::1;::::0;37865:59:::1;37935:15;:36:::0;;-1:-1:-1;;;;;;37935:36:0::1;-1:-1:-1::0;;;;;37935:36:0;;;::::1;::::0;;;::::1;::::0;;37756:223::o;35006:497::-;2178:6;;35114:4;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;35193:6:::1;35172:13;10386:12:::0;;;10298:108;35172:13:::1;:17;::::0;35188:1:::1;35172:17;:::i;:::-;35171:28;;;;:::i;:::-;35158:9;:41;;35136:144;;;::::0;-1:-1:-1;;;35136:144:0;;9361:2:1;35136:144:0::1;::::0;::::1;9343:21:1::0;9400:2;9380:18;;;9373:30;9439:34;9419:18;;;9412:62;-1:-1:-1;;;9490:18:1;;;9483:51;9551:19;;35136:144:0::1;9159:417:1::0;35136:144:0::1;35348:4;35327:13;10386:12:::0;;;10298:108;35327:13:::1;:17;::::0;35343:1:::1;35327:17;:::i;:::-;35326:26;;;;:::i;:::-;35313:9;:39;;35291:141;;;::::0;-1:-1:-1;;;35291:141:0;;9783:2:1;35291:141:0::1;::::0;::::1;9765:21:1::0;9822:2;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;-1:-1:-1;;;9912:18:1;;;9905:50;9972:19;;35291:141:0::1;9581:416:1::0;35291:141:0::1;-1:-1:-1::0;35443:18:0::1;:30:::0;;;35491:4:::1;2396:1;35006:497:::0;;;:::o;34801:135::-;2178:6;;34861:4;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;34878:20:0::1;:28:::0;;-1:-1:-1;;34878:28:0::1;::::0;;;34801:135;:::o;2671:201::-;2178:6;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2760:22:0;::::1;2752:73;;;::::0;-1:-1:-1;;;2752:73:0;;10204:2:1;2752:73:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:36;10379:19;;2752:73:0::1;10002:402:1::0;2752:73:0::1;2836:28;2855:8;2836:18;:28::i;:::-;2671:201:::0;:::o;47596:1056::-;2178:6;;47707:4;;-1:-1:-1;;;;;2178:6:0;896:10;2325:23;2317:68;;;;-1:-1:-1;;;2317:68:0;;;;;;;:::i;:::-;47792:19:::1;;47769:20;;:42;;;;:::i;:::-;47751:15;:60;47729:142;;;::::0;-1:-1:-1;;;47729:142:0;;10611:2:1;47729:142:0::1;::::0;::::1;10593:21:1::0;;;10630:18;;;10623:30;10689:34;10669:18;;;10662:62;10741:18;;47729:142:0::1;10409:356:1::0;47729:142:0::1;47901:4;47890:7;:15;;47882:70;;;::::0;-1:-1:-1;;;47882:70:0;;10972:2:1;47882:70:0::1;::::0;::::1;10954:21:1::0;11011:2;10991:18;;;10984:30;11050:34;11030:18;;;11023:62;-1:-1:-1;;;11101:18:1;;;11094:40;11151:19;;47882:70:0::1;10770:406:1::0;47882:70:0::1;47986:15;47963:20;:38:::0;48087:29:::1;::::0;-1:-1:-1;;;48087:29:0;;-1:-1:-1;;;;;48102:13:0::1;1707:32:1::0;48087:29:0::1;::::0;::::1;1689:51:1::0;48056:28:0::1;::::0;48087:4:::1;::::0;:14:::1;::::0;1662:18:1;;48087:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48056:60:::0;-1:-1:-1;48166:20:0::1;48189:44;48227:5;48189:33;48056:60:::0;48214:7;48189:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;48166:67:::0;-1:-1:-1;48338:16:0;;48334:110:::1;;48371:61;48387:13;48410:6;48419:12;48371:15;:61::i;:::-;48519:19;48556:13;48519:51;;48581:4;-1:-1:-1::0;;;;;48581:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48608:14:0::1;::::0;::::1;::::0;-1:-1:-1;48608:14:0;;-1:-1:-1;48608:14:0::1;-1:-1:-1::0;48640:4:0::1;::::0;47596:1056;-1:-1:-1;;;;47596:1056:0:o;17299:380::-;-1:-1:-1;;;;;17435:19:0;;17427:68;;;;-1:-1:-1;;;17427:68:0;;11572:2:1;17427:68:0;;;11554:21:1;11611:2;11591:18;;;11584:30;11650:34;11630:18;;;11623:62;-1:-1:-1;;;11701:18:1;;;11694:34;11745:19;;17427:68:0;11370:400:1;17427:68:0;-1:-1:-1;;;;;17514:21:0;;17506:68;;;;-1:-1:-1;;;17506:68:0;;11977:2:1;17506:68:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:32;12148:19;;17506:68:0;11775:398:1;17506:68:0;-1:-1:-1;;;;;17587:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17639:32;;1897:25:1;;;17639:32:0;;1870:18:1;17639:32:0;;;;;;;17299:380;;;:::o;38334:5009::-;-1:-1:-1;;;;;38466:18:0;;38458:68;;;;-1:-1:-1;;;38458:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38545:16:0;;38537:64;;;;-1:-1:-1;;;38537:64:0;;;;;;;:::i;:::-;38618:11;38614:93;;38646:28;38662:4;38668:2;38672:1;38646:15;:28::i;38614:93::-;38723:14;;;;38719:2484;;;2178:6;;-1:-1:-1;;;;;38776:15:0;;;2178:6;;38776:15;;;;:49;;-1:-1:-1;2178:6:0;;-1:-1:-1;;;;;38812:13:0;;;2178:6;;38812:13;;38776:49;:86;;;;-1:-1:-1;;;;;;38846:16:0;;;;38776:86;:128;;;;-1:-1:-1;;;;;;38883:21:0;;38897:6;38883:21;;38776:128;:158;;;;-1:-1:-1;38926:8:0;;-1:-1:-1;;;38926:8:0;;;;38925:9;38776:158;38754:2438;;;38974:10;;;;;;;38969:220;;-1:-1:-1;;;;;39043:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39072:23:0;;;;;;:19;:23;;;;;;;;39043:52;39009:160;;;;-1:-1:-1;;;39009:160:0;;13190:2:1;39009:160:0;;;13172:21:1;13229:2;13209:18;;;13202:30;-1:-1:-1;;;13248:18:1;;;13241:52;13310:18;;39009:160:0;12988:346:1;39009:160:0;39345:20;;;;39341:641;;;2178:6;;-1:-1:-1;;;;;39420:13:0;;;2178:6;;39420:13;;;;:72;;;39476:15;-1:-1:-1;;;;;39462:30:0;:2;-1:-1:-1;;;;;39462:30:0;;;39420:72;:129;;;;;39535:13;-1:-1:-1;;;;;39521:28:0;:2;-1:-1:-1;;;;;39521:28:0;;;39420:129;39390:573;;;39667:9;39638:39;;;;:28;:39;;;;;;39713:12;-1:-1:-1;39600:258:0;;;;-1:-1:-1;;;39600:258:0;;13541:2:1;39600:258:0;;;13523:21:1;13580:2;13560:18;;;13553:30;13619:34;13599:18;;;13592:62;13690:34;13670:18;;;13663:62;-1:-1:-1;;;13741:19:1;;;13734:40;13791:19;;39600:258:0;13339:477:1;39600:258:0;39914:9;39885:39;;;;:28;:39;;;;;39927:12;39885:54;;39390:573;-1:-1:-1;;;;;40056:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40113:35:0;;;;;;:31;:35;;;;;;;;40112:36;40056:92;40030:1147;;;40235:20;;40225:6;:30;;40191:169;;;;-1:-1:-1;;;40191:169:0;;14023:2:1;40191:169:0;;;14005:21:1;14062:2;14042:18;;;14035:30;14101:34;14081:18;;;14074:62;-1:-1:-1;;;14152:18:1;;;14145:51;14213:19;;40191:169:0;13821:417:1;40191:169:0;40443:9;;-1:-1:-1;;;;;10570:18:0;;10543:7;10570:18;;;;;;;;;;;40417:22;;:6;:22;:::i;:::-;:35;;40383:140;;;;-1:-1:-1;;;40383:140:0;;14445:2:1;40383:140:0;;;14427:21:1;14484:2;14464:18;;;14457:30;-1:-1:-1;;;14503:18:1;;;14496:49;14562:18;;40383:140:0;14243:343:1;40383:140:0;40030:1147;;;-1:-1:-1;;;;;40621:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40676:37:0;;;;;;:31;:37;;;;;;;;40675:38;40621:92;40595:582;;;40800:20;;40790:6;:30;;40756:170;;;;-1:-1:-1;;;40756:170:0;;14793:2:1;40756:170:0;;;14775:21:1;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:1;;;14915:52;14984:19;;40756:170:0;14591:418:1;40595:582:0;-1:-1:-1;;;;;40957:35:0;;;;;;:31;:35;;;;;;;;40952:225;;41077:9;;-1:-1:-1;;;;;10570:18:0;;10543:7;10570:18;;;;;;;;;;;41051:22;;:6;:22;:::i;:::-;:35;;41017:140;;;;-1:-1:-1;;;41017:140:0;;14445:2:1;41017:140:0;;;14427:21:1;14484:2;14464:18;;;14457:30;-1:-1:-1;;;14503:18:1;;;14496:49;14562:18;;41017:140:0;14243:343:1;41017:140:0;41264:4;41215:28;10570:18;;;;;;;;;;;41322;;41298:42;;;;;;;41371:36;;-1:-1:-1;41395:12:0;;;;;;;41371:36;:62;;;;-1:-1:-1;41425:8:0;;-1:-1:-1;;;41425:8:0;;;;41424:9;41371:62;:111;;;;-1:-1:-1;;;;;;41451:31:0;;;;;;:25;:31;;;;;;;;41450:32;41371:111;:154;;;;-1:-1:-1;;;;;;41500:25:0;;;;;;:19;:25;;;;;;;;41499:26;41371:154;:195;;;;-1:-1:-1;;;;;;41543:23:0;;;;;;:19;:23;;;;;;;;41542:24;41371:195;41353:327;;;41593:8;:15;;-1:-1:-1;;;;41593:15:0;-1:-1:-1;;;41593:15:0;;;41625:10;:8;:10::i;:::-;41652:8;:16;;-1:-1:-1;;;;41652:16:0;;;41353:327;41711:8;;-1:-1:-1;;;41711:8:0;;;;41710:9;:55;;;;-1:-1:-1;;;;;;41736:29:0;;;;;;:25;:29;;;;;;;;41710:55;:85;;;;-1:-1:-1;41782:13:0;;;;41710:85;:153;;;;;41848:15;;41831:14;;:32;;;;:::i;:::-;41812:15;:51;;41710:153;:196;;;;-1:-1:-1;;;;;;41881:25:0;;;;;;:19;:25;;;;;;;;41880:26;41710:196;41692:282;;;41933:29;:27;:29::i;:::-;;41692:282;42002:8;;-1:-1:-1;;;;;42112:25:0;;41986:12;42112:25;;;:19;:25;;;;;;42002:8;-1:-1:-1;;;42002:8:0;;;;;42001:9;;42112:25;;:52;;-1:-1:-1;;;;;;42141:23:0;;;;;;:19;:23;;;;;;;;42112:52;42108:100;;;-1:-1:-1;42191:5:0;42108:100;42220:12;42325:7;42321:969;;;-1:-1:-1;;;;;42377:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42426:1;42410:13;;:17;42377:50;42373:768;;;42455:34;42485:3;42455:25;42466:13;;42455:6;:10;;:25;;;;:::i;:34::-;42448:41;;42558:13;;42538:16;;42531:4;:23;;;;:::i;:::-;42530:41;;;;:::i;:::-;42508:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42628:13:0;;42614:10;;42607:17;;:4;:17;:::i;:::-;42606:35;;;;:::i;:::-;42590:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42710:13:0;;42690:16;;42683:23;;:4;:23;:::i;:::-;42682:41;;;;:::i;:::-;42660:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42373:768:0;;-1:-1:-1;42373:768:0;;-1:-1:-1;;;;;42785:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42835:1;42820:12;;:16;42785:51;42781:360;;;42864:33;42893:3;42864:24;42875:12;;42864:6;:10;;:24;;;;:::i;:33::-;42857:40;;42965:12;;42946:15;;42939:4;:22;;;;:::i;:::-;42938:39;;;;:::i;:::-;42916:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43033:12:0;;43020:9;;43013:16;;:4;:16;:::i;:::-;43012:33;;;;:::i;:::-;42996:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43113:12:0;;43094:15;;43087:22;;:4;:22;:::i;:::-;43086:39;;;;:::i;:::-;43064:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42781:360:0;43161:8;;43157:91;;43190:42;43206:4;43220;43227;43190:15;:42::i;:::-;43264:14;43274:4;43264:14;;:::i;:::-;;;42321:969;43302:33;43318:4;43324:2;43328:6;43302:15;:33::i;:::-;38447:4896;;;;38334:5009;;;:::o;3032:191::-;3125:6;;;-1:-1:-1;;;;;3142:17:0;;;-1:-1:-1;;;;;;3142:17:0;;;;;;;3175:40;;3125:6;;;3142:17;3125:6;;3175:40;;3106:16;;3175:40;3095:128;3032:191;:::o;37560:188::-;-1:-1:-1;;;;;37643:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37643:39:0;;;;;;;;;;37700:40;;37643:39;;:31;37700:40;;;37560:188;;:::o;22752:98::-;22810:7;22837:5;22841:1;22837;:5;:::i;:::-;22830:12;22752:98;-1:-1:-1;;;22752:98:0:o;23151:::-;23209:7;23236:5;23240:1;23236;:5;:::i;14518:733::-;-1:-1:-1;;;;;14658:20:0;;14650:70;;;;-1:-1:-1;;;14650:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14739:23:0;;14731:71;;;;-1:-1:-1;;;14731:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14899:17:0;;14875:21;14899:17;;;;;;;;;;;14935:23;;;;14927:74;;;;-1:-1:-1;;;14927:74:0;;15346:2:1;14927:74:0;;;15328:21:1;15385:2;15365:18;;;15358:30;15424:34;15404:18;;;15397:62;-1:-1:-1;;;15475:18:1;;;15468:36;15521:19;;14927:74:0;15144:402:1;14927:74:0;-1:-1:-1;;;;;15037:17:0;;;:9;:17;;;;;;;;;;;15057:22;;;15037:42;;15101:20;;;;;;;;:30;;15073:6;;15037:9;15101:30;;15073:6;;15101:30;:::i;:::-;;;;;;;;15166:9;-1:-1:-1;;;;;15149:35:0;15158:6;-1:-1:-1;;;;;15149:35:0;;15177:6;15149:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15149:35:0;;;;;;;;14639:612;14518:733;;;:::o;44473:1756::-;44556:4;44512:23;10570:18;;;;;;;;;;;44512:50;;44573:25;44669:12;;44635:18;;44601;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44573:108;-1:-1:-1;44692:12:0;44721:20;;;:46;;-1:-1:-1;44745:22:0;;44721:46;44717:85;;;44784:7;;;44473:1756::o;44717:85::-;44836:18;;:23;;44857:2;44836:23;:::i;:::-;44818:15;:41;44814:115;;;44894:18;;:23;;44915:2;44894:23;:::i;:::-;44876:41;;44814:115;44990:23;45103:1;45070:17;45035:18;;45017:15;:36;;;;:::i;:::-;45016:71;;;;:::i;:::-;:88;;;;:::i;:::-;44990:114;-1:-1:-1;45115:26:0;45144:36;:15;44990:114;45144:19;:36::i;:::-;45115:65;-1:-1:-1;45221:21:0;45255:36;45115:65;45255:16;:36::i;:::-;45304:18;45325:44;:21;45351:17;45325:25;:44::i;:::-;45304:65;;45382:23;45408:81;45461:17;45408:34;45423:18;;45408:10;:14;;:34;;;;:::i;:81::-;45382:107;;45500:17;45520:51;45553:17;45520:28;45535:12;;45520:10;:14;;:28;;;;:::i;:51::-;45500:71;-1:-1:-1;45584:23:0;45500:71;45610:28;45623:15;45610:10;:28;:::i;:::-;:40;;;;:::i;:::-;45684:1;45663:18;:22;;;45696:18;:22;;;45729:12;:16;;;45780:9;;45772:45;;45584:66;;-1:-1:-1;;;;;;45780:9:0;;45803;;45772:45;45684:1;45772:45;45803:9;45780;45772:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45758:59:0;;-1:-1:-1;;45834:19:0;;;;;:42;;;45875:1;45857:15;:19;45834:42;45830:278;;;45893:46;45906:15;45923;45893:12;:46::i;:::-;46063:18;;45959:137;;;15963:25:1;;;16019:2;16004:18;;15997:34;;;16047:18;;;16040:34;;;;45959:137:0;;;;;;15951:2:1;45959:137:0;;;45830:278;46142:15;;46134:87;;-1:-1:-1;;;;;46142:15:0;;;;46185:21;;46134:87;;;;46185:21;46142:15;46134:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44473:1756:0:o;46800:788::-;46891:15;46874:14;:32;46992:29;;-1:-1:-1;;;46992:29:0;;-1:-1:-1;;;;;47007:13:0;1707:32:1;46992:29:0;;;1689:51:1;46857:4:0;;;;46992;;:14;;1662:18:1;;46992:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46961:60;;47071:20;47094:77;47155:5;47094:42;47119:16;;47094:20;:24;;:42;;;;:::i;:77::-;47071:100;-1:-1:-1;47276:16:0;;47272:110;;47309:61;47325:13;47348:6;47357:12;47309:15;:61::i;:::-;47457:19;47494:13;47457:51;;47519:4;-1:-1:-1;;;;;47519:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47546:12:0;;;;-1:-1:-1;47546:12:0;;-1:-1:-1;47546:12:0;47576:4;47569:11;;;;;46800:788;:::o;22395:98::-;22453:7;22480:5;22484:1;22480;:5;:::i;43351:589::-;43501:16;;;43515:1;43501:16;;;;;;;;43477:21;;43501:16;;;;;;;;;;-1:-1:-1;43501:16:0;43477:40;;43546:4;43528;43533:1;43528:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43528:23:0;;;-1:-1:-1;;;;;43528:23:0;;;;;43572:15;-1:-1:-1;;;;;43572:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43562:4;43567:1;43562:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43562:32:0;;;-1:-1:-1;;;;;43562:32:0;;;;;43607:62;43624:4;43639:15;43657:11;43607:8;:62::i;:::-;43708:224;;-1:-1:-1;;;43708:224:0;;-1:-1:-1;;;;;43708:15:0;:66;;;;:224;;43789:11;;43815:1;;43859:4;;43886;;43906:15;;43708:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43406:534;43351:589;:::o;43948:517::-;44096:62;44113:4;44128:15;44146:11;44096:8;:62::i;:::-;44201:256;;-1:-1:-1;;;44201:256:0;;44273:4;44201:256;;;17931:34:1;17981:18;;;17974:34;;;44319:1:0;18024:18:1;;;18017:34;;;18067:18;;;18060:34;29813:6:0;18110:19:1;;;18103:44;44431:15:0;18163:19:1;;;18156:35;44201:15:0;-1:-1:-1;;;;;44201:31:0;;;;44240:9;;17865:19:1;;44201:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43948:517;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2602:180::-;2661:6;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;-1:-1:-1;2753:23:1;;2602:180;-1:-1:-1;2602:180:1:o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:388::-;4171:6;4179;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4287:9;4274:23;4306:31;4331:5;4306:31;:::i;:::-;4356:5;-1:-1:-1;4413:2:1;4398:18;;4385:32;4426:33;4385:32;4426:33;:::i;:::-;4478:7;4468:17;;;4103:388;;;;;:::o;4496:380::-;4575:1;4571:12;;;;4618;;;4639:61;;4693:4;4685:6;4681:17;4671:27;;4639:61;4746:2;4738:6;4735:14;4715:18;4712:38;4709:161;;;4792:10;4787:3;4783:20;4780:1;4773:31;4827:4;4824:1;4817:15;4855:4;4852:1;4845:15;4709:161;;4496:380;;;:::o;5290:356::-;5492:2;5474:21;;;5511:18;;;5504:30;5570:34;5565:2;5550:18;;5543:62;5637:2;5622:18;;5290:356::o;5651:127::-;5712:10;5707:3;5703:20;5700:1;5693:31;5743:4;5740:1;5733:15;5767:4;5764:1;5757:15;5783:168;5823:7;5889:1;5885;5881:6;5877:14;5874:1;5871:21;5866:1;5859:9;5852:17;5848:45;5845:71;;;5896:18;;:::i;:::-;-1:-1:-1;5936:9:1;;5783:168::o;5956:217::-;5996:1;6022;6012:132;;6066:10;6061:3;6057:20;6054:1;6047:31;6101:4;6098:1;6091:15;6129:4;6126:1;6119:15;6012:132;-1:-1:-1;6158:9:1;;5956:217::o;6594:128::-;6634:3;6665:1;6661:6;6658:1;6655:13;6652:39;;;6671:18;;:::i;:::-;-1:-1:-1;6707:9:1;;6594:128::o;11181:184::-;11251:6;11304:2;11292:9;11283:7;11279:23;11275:32;11272:52;;;11320:1;11317;11310:12;11272:52;-1:-1:-1;11343:16:1;;11181:184;-1:-1:-1;11181:184:1:o;12178:401::-;12380:2;12362:21;;;12419:2;12399:18;;;12392:30;12458:34;12453:2;12438:18;;12431:62;-1:-1:-1;;;12524:2:1;12509:18;;12502:35;12569:3;12554:19;;12178:401::o;12584:399::-;12786:2;12768:21;;;12825:2;12805:18;;;12798:30;12864:34;12859:2;12844:18;;12837:62;-1:-1:-1;;;12930:2:1;12915:18;;12908:33;12973:3;12958:19;;12584:399::o;15014:125::-;15054:4;15082:1;15079;15076:8;15073:34;;;15087:18;;:::i;:::-;-1:-1:-1;15124:9:1;;15014:125::o;16217:127::-;16278:10;16273:3;16269:20;16266:1;16259:31;16309:4;16306:1;16299:15;16333:4;16330:1;16323:15;16349:251;16419:6;16472:2;16460:9;16451:7;16447:23;16443:32;16440:52;;;16488:1;16485;16478:12;16440:52;16520:9;16514:16;16539:31;16564:5;16539:31;:::i;16605:980::-;16867:4;16915:3;16904:9;16900:19;16946:6;16935:9;16928:25;16972:2;17010:6;17005:2;16994:9;16990:18;16983:34;17053:3;17048:2;17037:9;17033:18;17026:31;17077:6;17112;17106:13;17143:6;17135;17128:22;17181:3;17170:9;17166:19;17159:26;;17220:2;17212:6;17208:15;17194:29;;17241:1;17251:195;17265:6;17262:1;17259:13;17251:195;;;17330:13;;-1:-1:-1;;;;;17326:39:1;17314:52;;17421:15;;;;17386:12;;;;17362:1;17280:9;17251:195;;;-1:-1:-1;;;;;;;17502:32:1;;;;17497:2;17482:18;;17475:60;-1:-1:-1;;;17566:3:1;17551:19;17544:35;17463:3;16605:980;-1:-1:-1;;;16605:980:1:o;18202:306::-;18290:6;18298;18306;18359:2;18347:9;18338:7;18334:23;18330:32;18327:52;;;18375:1;18372;18365:12;18327:52;18404:9;18398:16;18388:26;;18454:2;18443:9;18439:18;18433:25;18423:35;;18498:2;18487:9;18483:18;18477:25;18467:35;;18202:306;;;;;:::o
Swarm Source
ipfs://0ec6f8f73275c547def4b5d5108fa90a3de9414dab84164f6779ededad35cf78
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.