ERC-20
Overview
Max Total Supply
100,000,000 RevSo
Holders
73
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
732,799.113487010251750206 RevSoValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Revso
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-12 */ // SPDX-License-Identifier: MIT /* Revso : Social Revenue Made Easy Telegram: https://t.me/PortalRevso Twitter : https://twitter.com/RevsoAPP */ pragma solidity 0.8.20; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Revso 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 AppDevWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyAppDevFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellAppDevFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForAppDev; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event AppDevWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Revso APP", "RevSo") { 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 _buyAppDevFee = 5; uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 0; uint256 _sellAppDevFee = 5; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 0; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = 1500_000 * 1e18; // 1.5% maxWallet = 1500_000 * 1e18; // 1.5% swapTokensAtAmount = (totalSupply * 3) / 1000; // 0.3% buyAppDevFee = _buyAppDevFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyAppDevFee + buyLiquidityFee + buyTeamFee; sellAppDevFee = _sellAppDevFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellAppDevFee + sellLiquidityFee + sellTeamFee; AppDevWallet = address(0xD927F872feFc638C089aF3769957AeCbfa7B8cE9); // set as AppDev wallet teamWallet = owner(); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _AppDevFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyAppDevFee = _AppDevFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyAppDevFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 30, "Buy fees must be <= 30"); } function updateSellFees( uint256 _AppDevFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellAppDevFee = _AppDevFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellAppDevFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 30, "Sell fees must be <= 30"); } 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 updateAppDevWallet(address newAppDevWallet) external onlyOwner { emit AppDevWalletUpdated(newAppDevWallet, AppDevWallet); AppDevWallet = newAppDevWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForAppDev += (fees * sellAppDevFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForAppDev += (fees * buyAppDevFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForAppDev + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForAppDev = ethBalance.mul(tokensForAppDev).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForAppDev - ethForTeam; tokensForLiquidity = 0; tokensForAppDev = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(AppDevWallet).call{value: address(this).balance}(""); } function withdrawStuckUnibot() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"AppDevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"AppDevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAppDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellAppDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForAppDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAppDevWallet","type":"address"}],"name":"updateAppDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_AppDevFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_AppDevFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805463ffffffff19166201010117905534801562000022575f80fd5b50604051806040016040528060098152602001680526576736f204150560bc1b81525060405180604001604052806005815260200164526576536f60d81b815250816003908162000074919062000700565b50600462000083828262000700565b505050620000a06200009a620003b260201b60201c565b620003b6565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c281600162000407565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001319190620007c8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a39190620007c8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002149190620007c8565b6001600160a01b031660a08190526200022f90600162000407565b60a0516200023f9060016200047f565b6a013da329b63364718000006008819055600a5560055f808281806a52b7d2dcc80cd2e40000006103e8620002768260036200080b565b6200028291906200082b565b600955600e879055600f869055601085905584620002a187896200084b565b620002ad91906200084b565b600d5560128490556013839055601482905581620002cc84866200084b565b620002d891906200084b565b601155600680546001600160a01b03191673d927f872fefc638c089af3769957aecbfa7b8ce9179055620003146005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200034191166001620004d2565b6200034e306001620004d2565b6200035d61dead6001620004d2565b6200037c620003746005546001600160a01b031690565b600162000407565b6200038930600162000407565b6200039861dead600162000407565b620003a433826200057a565b505050505050505062000861565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004555760405162461bcd60e51b815260206004820181905260248201525f80516020620037a783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200051c5760405162461bcd60e51b815260206004820181905260248201525f80516020620037a783398151915260448201526064016200044c565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044c565b8060025f828254620005e591906200084b565b90915550506001600160a01b0382165f9081526020819052604081208054839290620006139084906200084b565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200068a57607f821691505b602082108103620006a957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200065c575f81815260208120601f850160051c81016020861015620006d75750805b601f850160051c820191505b81811015620006f857828155600101620006e3565b505050505050565b81516001600160401b038111156200071c576200071c62000661565b62000734816200072d845462000675565b84620006af565b602080601f8311600181146200076a575f8415620007525750858301515b5f19600386901b1c1916600185901b178555620006f8565b5f85815260208120601f198616915b828110156200079a5788860151825594840194600190910190840162000779565b5085821015620007b857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007d9575f80fd5b81516001600160a01b0381168114620007f0575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008255762000825620007f7565b92915050565b5f826200084657634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008255762000825620007f7565b60805160a051612ef3620008b45f395f818161058f015281816112b0015261194201525f81816104380152818161284c015281816129030152818161293f015281816129b301526129da0152612ef35ff3fe608060405260043610610395575f3560e01c80638095d564116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a83578063f9f92be414610a06578063fde83a3414610a98578063fe575a8714610aad575f80fd5b8063e2f4560514610a25578063f11a24d314610a3a578063f2fde38b14610a4f578063f637434214610a6e575f80fd5b8063d729715f116100d8578063d729715f14610998578063d85ba063146109ad578063dd62ed3e146109c2578063e19b282314610a06575f80fd5b8063c17b5b8c14610926578063c18bc19514610945578063c8c8ebe414610964578063d257b34f14610979575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f51461089c578063bbc0c742146108ca578063bc205ad3146108e8578063c024666814610907575f80fd5b80639c2e4ac614610834578063a457c2d714610849578063a9059cbb14610868578063ac56c6f514610887575f80fd5b8063924de9b7116101b9578063924de9b7146107c357806395d89b41146107e257806396a638fe146107f65780639a7a23d614610815575f80fd5b80638095d564146107735780638a8c523c146107925780638da5cb5b146107a6575f80fd5b80634a62bb65116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f757806375e3661e146107165780637ca8448a146107355780637cb332bb14610754575f80fd5b80636ddd17131461067c57806370a082311461069b578063715018a6146106cf578063751039fc146106e3575f80fd5b80635ea92ddd1161029a5780635ea92ddd146106205780635f189361146106345780636a486a8e146106485780636dc11b131461065d575f80fd5b80634a62bb65146105b15780634fbee193146105ca5780635992704414610601575f80fd5b806323b872dd11610335578063379c700c11610305578063379c700c1461052a578063395093511461053f5780633dc599ff1461055e57806349bd5a5e1461057e575f80fd5b806323b872dd146104c6578063244e284f146104e557806327c8f835146104fa578063313ce5671461050f575f80fd5b80631694505e116103705780631694505e1461042757806318160ddd146104725780631a8145bb14610490578063203e727e146104a5575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae4565b6040516103c19190612ab0565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b0f565b610b74565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b39565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b34801561047d575f80fd5b506002545b6040519081526020016103c1565b34801561049b575f80fd5b5061048260165481565b3480156104b0575f80fd5b506104c46104bf366004612b54565b610b8a565b005b3480156104d1575f80fd5b506103e96104e0366004612b6b565b610c70565b3480156104f0575f80fd5b5061048260155481565b348015610505575f80fd5b5061045a61dead81565b34801561051a575f80fd5b50604051601281526020016103c1565b348015610535575f80fd5b5061048260125481565b34801561054a575f80fd5b506103e9610559366004612b0f565b610d18565b348015610569575f80fd5b50600b546103e9906301000000900460ff1681565b348015610589575f80fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105bc575f80fd5b50600b546103e99060ff1681565b3480156105d5575f80fd5b506103e96105e4366004612b39565b6001600160a01b03165f9081526018602052604090205460ff1690565b34801561060c575f80fd5b5060075461045a906001600160a01b031681565b34801561062b575f80fd5b506104c4610d53565b34801561063f575f80fd5b506104c4610e72565b348015610653575f80fd5b5061048260115481565b348015610668575f80fd5b5060065461045a906001600160a01b031681565b348015610687575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a6575f80fd5b506104826106b5366004612b39565b6001600160a01b03165f9081526020819052604090205490565b3480156106da575f80fd5b506104c4610eb1565b3480156106ee575f80fd5b506103e9610ee6565b348015610702575f80fd5b506104c4610711366004612bb6565b610f22565b348015610721575f80fd5b506104c4610730366004612b39565b610f76565b348015610740575f80fd5b506104c461074f366004612b39565b610fc0565b34801561075f575f80fd5b506104c461076e366004612b39565b611045565b34801561077e575f80fd5b506104c461078d366004612bed565b6110cb565b34801561079d575f80fd5b506104c461116c565b3480156107b1575f80fd5b506005546001600160a01b031661045a565b3480156107ce575f80fd5b506104c46107dd366004612c16565b6111a9565b3480156107ed575f80fd5b506103b46111ef565b348015610801575f80fd5b506104c4610810366004612b39565b6111fe565b348015610820575f80fd5b506104c461082f366004612bb6565b611284565b34801561083f575f80fd5b5061048260105481565b348015610854575f80fd5b506103e9610863366004612b0f565b61135f565b348015610873575f80fd5b506103e9610882366004612b0f565b6113f7565b348015610892575f80fd5b50610482600e5481565b3480156108a7575f80fd5b506103e96108b6366004612b39565b601a6020525f908152604090205460ff1681565b3480156108d5575f80fd5b50600b546103e990610100900460ff1681565b3480156108f3575f80fd5b506104c4610902366004612c31565b611403565b348015610912575f80fd5b506104c4610921366004612bb6565b611565565b348015610931575f80fd5b506104c4610940366004612bed565b6115ed565b348015610950575f80fd5b506104c461095f366004612b54565b611690565b34801561096f575f80fd5b5061048260085481565b348015610984575f80fd5b506103e9610993366004612b54565b611761565b3480156109a3575f80fd5b5061048260145481565b3480156109b8575f80fd5b50610482600d5481565b3480156109cd575f80fd5b506104826109dc366004612c31565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a11575f80fd5b506104c4610a20366004612b39565b6118b2565b348015610a30575f80fd5b5061048260095481565b348015610a45575f80fd5b50610482600f5481565b348015610a5a575f80fd5b506104c4610a69366004612b39565b611a25565b348015610a79575f80fd5b5061048260135481565b348015610a8e575f80fd5b50610482600a5481565b348015610aa3575f80fd5b5061048260175481565b348015610ab8575f80fd5b506103e9610ac7366004612b39565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af390612c5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90612c5d565b8015610b6a5780601f10610b4157610100808354040283529160200191610b6a565b820191905f5260205f20905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b5f610b80338484611ac0565b5060015b92915050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610bb490612c95565b60405180910390fd5b670de0b6b3a76400006103e8610bd260025490565b610bdd906005612cde565b610be79190612cf5565b610bf19190612cf5565b811015610c585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb4565b610c6a81670de0b6b3a7640000612cde565b60085550565b5f610c7c848484611be3565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb4565b610d0d8533858403611ac0565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b80918590610d4e908690612d14565b611ac0565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b8152600401610bb490612c95565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610db8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ddc9190612d27565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e449190612d3e565b5060405133904780156108fc02915f818181858888f19350505050158015610e6e573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610e9c5760405162461bcd60e51b8152600401610bb490612c95565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edb5760405162461bcd60e51b8152600401610bb490612c95565b610ee45f61238d565b565b6005545f906001600160a01b03163314610f125760405162461bcd60e51b8152600401610bb490612c95565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f4c5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa05760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fea5760405162461bcd60e51b8152600401610bb490612c95565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611033576040519150601f19603f3d011682016040523d82523d5f602084013e611038565b606091505b5050905080610e6e575f80fd5b6005546001600160a01b0316331461106f5760405162461bcd60e51b8152600401610bb490612c95565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f55760405162461bcd60e51b8152600401610bb490612c95565b600e839055600f82905560108190558061110f8385612d14565b6111199190612d14565b600d819055601e10156111675760405162461bcd60e51b815260206004820152601660248201527504275792066656573206d757374206265203c3d2033360541b6044820152606401610bb4565b505050565b6005546001600160a01b031633146111965760405162461bcd60e51b8152600401610bb490612c95565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111d35760405162461bcd60e51b8152600401610bb490612c95565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af390612c5d565b6005546001600160a01b031633146112285760405162461bcd60e51b8152600401610bb490612c95565b6006546040516001600160a01b03918216918316907f66ed84e0f24afc7d75bd66c1c96248ed1e9716ac988011e64bf28a3375caeafc905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112ae5760405162461bcd60e51b8152600401610bb490612c95565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036113555760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb4565b610e6e82826123de565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb4565b6113ed3385858403611ac0565b5060019392505050565b5f610b80338484611be3565b6005546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b0382166114835760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb4565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114eb9190612d27565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561153b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061155f9190612d3e565b50505050565b6005546001600160a01b0316331461158f5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116175760405162461bcd60e51b8152600401610bb490612c95565b601283905560138290556014819055806116318385612d14565b61163b9190612d14565b6011819055601e10156111675760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d2033300000000000000000006044820152606401610bb4565b6005546001600160a01b031633146116ba5760405162461bcd60e51b8152600401610bb490612c95565b670de0b6b3a76400006103e86116cf60025490565b6116da90600a612cde565b6116e49190612cf5565b6116ee9190612cf5565b8110156117495760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb4565b61175b81670de0b6b3a7640000612cde565b600a5550565b6005545f906001600160a01b0316331461178d5760405162461bcd60e51b8152600401610bb490612c95565b620186a061179a60025490565b6117a5906001612cde565b6117af9190612cf5565b82101561181c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb4565b6103e861182860025490565b611833906005612cde565b61183d9190612cf5565b8211156118a95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb4565b50600955600190565b6005546001600160a01b031633146118dc5760405162461bcd60e51b8152600401610bb490612c95565b600b546301000000900460ff16156119405760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561199f57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a025760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb4565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a4f5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b038116611ab45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b611abd8161238d565b50565b6001600160a01b038316611b225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb4565b6001600160a01b038216611b835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c095760405162461bcd60e51b8152600401610bb490612d59565b6001600160a01b038216611c2f5760405162461bcd60e51b8152600401610bb490612d9e565b6001600160a01b0383165f908152600c602052604090205460ff1615611c8c5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb4565b6001600160a01b0382165f908152600c602052604090205460ff1615611ceb5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb4565b805f03611cfd5761116783835f612431565b600b5460ff161561206a576005546001600160a01b03848116911614801590611d3457506005546001600160a01b03838116911614155b8015611d4857506001600160a01b03821615155b8015611d5f57506001600160a01b03821661dead14155b8015611d755750600554600160a01b900460ff16155b1561206a57600b54610100900460ff16611e0b576001600160a01b0383165f9081526018602052604090205460ff1680611dc657506001600160a01b0382165f9081526018602052604090205460ff165b611e0b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb4565b6001600160a01b0383165f908152601a602052604090205460ff168015611e4a57506001600160a01b0382165f9081526019602052604090205460ff16155b15611f2d57600854811115611ebf5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb4565b600a546001600160a01b0383165f90815260208190526040902054611ee49083612d14565b1115611f285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b61206a565b6001600160a01b0382165f908152601a602052604090205460ff168015611f6c57506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe257600854811115611f285760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb4565b6001600160a01b0382165f9081526019602052604090205460ff1661206a57600a546001600160a01b0383165f908152602081905260409020546120269083612d14565b111561206a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b305f90815260208190526040902054600954811080159081906120955750600b5462010000900460ff165b80156120ab5750600554600160a01b900460ff16155b80156120cf57506001600160a01b0385165f908152601a602052604090205460ff16155b80156120f357506001600160a01b0385165f9081526018602052604090205460ff16155b801561211757506001600160a01b0384165f9081526018602052604090205460ff16155b15612145576005805460ff60a01b1916600160a01b179055612137612583565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219157506001600160a01b0385165f9081526018602052604090205460ff165b1561219957505f5b5f8115612379576001600160a01b0386165f908152601a602052604090205460ff1680156121c857505f601154115b15612283576121ed60646121e7601154886127cf90919063ffffffff16565b906127e1565b9050601154601354826122009190612cde565b61220a9190612cf5565b60165f82825461221a9190612d14565b909155505060115460145461222f9083612cde565b6122399190612cf5565b60175f8282546122499190612d14565b909155505060115460125461225e9083612cde565b6122689190612cf5565b60155f8282546122789190612d14565b9091555061235b9050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122ab57505f600d54115b1561235b576122ca60646121e7600d54886127cf90919063ffffffff16565b9050600d54600f54826122dd9190612cde565b6122e79190612cf5565b60165f8282546122f79190612d14565b9091555050600d5460105461230c9083612cde565b6123169190612cf5565b60175f8282546123269190612d14565b9091555050600d54600e5461233b9083612cde565b6123459190612cf5565b60155f8282546123559190612d14565b90915550505b801561236c5761236c873083612431565b6123768186612de1565b94505b612384878787612431565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124575760405162461bcd60e51b8152600401610bb490612d59565b6001600160a01b03821661247d5760405162461bcd60e51b8152600401610bb490612d9e565b6001600160a01b0383165f90815260208190526040902054818110156124f45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb4565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061252a908490612d14565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257691815260200190565b60405180910390a361155f565b305f9081526020819052604081205490505f6017546015546016546125a89190612d14565b6125b29190612d14565b90505f8215806125c0575081155b156125ca57505050565b6009546125d8906014612cde565b8311156125f0576009546125ed906014612cde565b92505b5f600283601654866126029190612cde565b61260c9190612cf5565b6126169190612cf5565b90505f61262385836127ec565b90504761262f826127f7565b5f61263a47836127ec565b90505f612667600260165461264f9190612cf5565b6126599089612de1565b6015546121e79085906127cf565b90505f612694600260165461267c9190612cf5565b612686908a612de1565b6017546121e79086906127cf565b90505f816126a28486612de1565b6126ac9190612de1565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612706576040519150601f19603f3d011682016040523d82523d5f602084013e61270b565b606091505b5090985050861580159061271e57505f81115b156127715761272d87826129ad565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127bb576040519150601f19603f3d011682016040523d82523d5f602084013e6127c0565b606091505b50505050505050505050505050565b5f6127da8284612cde565b9392505050565b5f6127da8284612cf5565b5f6127da8284612de1565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061282a5761282a612df4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ca9190612e08565b816001815181106128dd576128dd612df4565b60200260200101906001600160a01b031690816001600160a01b031681525050612928307f000000000000000000000000000000000000000000000000000000000000000084611ac0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061297c9085905f90869030904290600401612e23565b5f604051808303815f87803b158015612993575f80fd5b505af11580156129a5573d5f803e3d5ffd5b505050505050565b6129d8307f000000000000000000000000000000000000000000000000000000000000000084611ac0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a1e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a84573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612aa99190612e92565b5050505050565b5f6020808352835180828501525f5b81811015612adb57858101830151858201604001528201612abf565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611abd575f80fd5b5f8060408385031215612b20575f80fd5b8235612b2b81612afb565b946020939093013593505050565b5f60208284031215612b49575f80fd5b81356127da81612afb565b5f60208284031215612b64575f80fd5b5035919050565b5f805f60608486031215612b7d575f80fd5b8335612b8881612afb565b92506020840135612b9881612afb565b929592945050506040919091013590565b8015158114611abd575f80fd5b5f8060408385031215612bc7575f80fd5b8235612bd281612afb565b91506020830135612be281612ba9565b809150509250929050565b5f805f60608486031215612bff575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c26575f80fd5b81356127da81612ba9565b5f8060408385031215612c42575f80fd5b8235612c4d81612afb565b91506020830135612be281612afb565b600181811c90821680612c7157607f821691505b602082108103612c8f57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8457610b84612cca565b5f82612d0f57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8457610b84612cca565b5f60208284031215612d37575f80fd5b5051919050565b5f60208284031215612d4e575f80fd5b81516127da81612ba9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8457610b84612cca565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e18575f80fd5b81516127da81612afb565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e715784516001600160a01b031683529383019391830191600101612e4c565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612ea4575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122087e2ecb282c0ccfefce89d4504ea55262d4c458f83119721db6c8c6f8bdcd6b664736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610395575f3560e01c80638095d564116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a83578063f9f92be414610a06578063fde83a3414610a98578063fe575a8714610aad575f80fd5b8063e2f4560514610a25578063f11a24d314610a3a578063f2fde38b14610a4f578063f637434214610a6e575f80fd5b8063d729715f116100d8578063d729715f14610998578063d85ba063146109ad578063dd62ed3e146109c2578063e19b282314610a06575f80fd5b8063c17b5b8c14610926578063c18bc19514610945578063c8c8ebe414610964578063d257b34f14610979575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f51461089c578063bbc0c742146108ca578063bc205ad3146108e8578063c024666814610907575f80fd5b80639c2e4ac614610834578063a457c2d714610849578063a9059cbb14610868578063ac56c6f514610887575f80fd5b8063924de9b7116101b9578063924de9b7146107c357806395d89b41146107e257806396a638fe146107f65780639a7a23d614610815575f80fd5b80638095d564146107735780638a8c523c146107925780638da5cb5b146107a6575f80fd5b80634a62bb65116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f757806375e3661e146107165780637ca8448a146107355780637cb332bb14610754575f80fd5b80636ddd17131461067c57806370a082311461069b578063715018a6146106cf578063751039fc146106e3575f80fd5b80635ea92ddd1161029a5780635ea92ddd146106205780635f189361146106345780636a486a8e146106485780636dc11b131461065d575f80fd5b80634a62bb65146105b15780634fbee193146105ca5780635992704414610601575f80fd5b806323b872dd11610335578063379c700c11610305578063379c700c1461052a578063395093511461053f5780633dc599ff1461055e57806349bd5a5e1461057e575f80fd5b806323b872dd146104c6578063244e284f146104e557806327c8f835146104fa578063313ce5671461050f575f80fd5b80631694505e116103705780631694505e1461042757806318160ddd146104725780631a8145bb14610490578063203e727e146104a5575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae4565b6040516103c19190612ab0565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b0f565b610b74565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b39565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061045a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b34801561047d575f80fd5b506002545b6040519081526020016103c1565b34801561049b575f80fd5b5061048260165481565b3480156104b0575f80fd5b506104c46104bf366004612b54565b610b8a565b005b3480156104d1575f80fd5b506103e96104e0366004612b6b565b610c70565b3480156104f0575f80fd5b5061048260155481565b348015610505575f80fd5b5061045a61dead81565b34801561051a575f80fd5b50604051601281526020016103c1565b348015610535575f80fd5b5061048260125481565b34801561054a575f80fd5b506103e9610559366004612b0f565b610d18565b348015610569575f80fd5b50600b546103e9906301000000900460ff1681565b348015610589575f80fd5b5061045a7f0000000000000000000000000eb0a9c5b7fb48fd686e31ddbd786794491101c281565b3480156105bc575f80fd5b50600b546103e99060ff1681565b3480156105d5575f80fd5b506103e96105e4366004612b39565b6001600160a01b03165f9081526018602052604090205460ff1690565b34801561060c575f80fd5b5060075461045a906001600160a01b031681565b34801561062b575f80fd5b506104c4610d53565b34801561063f575f80fd5b506104c4610e72565b348015610653575f80fd5b5061048260115481565b348015610668575f80fd5b5060065461045a906001600160a01b031681565b348015610687575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a6575f80fd5b506104826106b5366004612b39565b6001600160a01b03165f9081526020819052604090205490565b3480156106da575f80fd5b506104c4610eb1565b3480156106ee575f80fd5b506103e9610ee6565b348015610702575f80fd5b506104c4610711366004612bb6565b610f22565b348015610721575f80fd5b506104c4610730366004612b39565b610f76565b348015610740575f80fd5b506104c461074f366004612b39565b610fc0565b34801561075f575f80fd5b506104c461076e366004612b39565b611045565b34801561077e575f80fd5b506104c461078d366004612bed565b6110cb565b34801561079d575f80fd5b506104c461116c565b3480156107b1575f80fd5b506005546001600160a01b031661045a565b3480156107ce575f80fd5b506104c46107dd366004612c16565b6111a9565b3480156107ed575f80fd5b506103b46111ef565b348015610801575f80fd5b506104c4610810366004612b39565b6111fe565b348015610820575f80fd5b506104c461082f366004612bb6565b611284565b34801561083f575f80fd5b5061048260105481565b348015610854575f80fd5b506103e9610863366004612b0f565b61135f565b348015610873575f80fd5b506103e9610882366004612b0f565b6113f7565b348015610892575f80fd5b50610482600e5481565b3480156108a7575f80fd5b506103e96108b6366004612b39565b601a6020525f908152604090205460ff1681565b3480156108d5575f80fd5b50600b546103e990610100900460ff1681565b3480156108f3575f80fd5b506104c4610902366004612c31565b611403565b348015610912575f80fd5b506104c4610921366004612bb6565b611565565b348015610931575f80fd5b506104c4610940366004612bed565b6115ed565b348015610950575f80fd5b506104c461095f366004612b54565b611690565b34801561096f575f80fd5b5061048260085481565b348015610984575f80fd5b506103e9610993366004612b54565b611761565b3480156109a3575f80fd5b5061048260145481565b3480156109b8575f80fd5b50610482600d5481565b3480156109cd575f80fd5b506104826109dc366004612c31565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a11575f80fd5b506104c4610a20366004612b39565b6118b2565b348015610a30575f80fd5b5061048260095481565b348015610a45575f80fd5b50610482600f5481565b348015610a5a575f80fd5b506104c4610a69366004612b39565b611a25565b348015610a79575f80fd5b5061048260135481565b348015610a8e575f80fd5b50610482600a5481565b348015610aa3575f80fd5b5061048260175481565b348015610ab8575f80fd5b506103e9610ac7366004612b39565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af390612c5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90612c5d565b8015610b6a5780601f10610b4157610100808354040283529160200191610b6a565b820191905f5260205f20905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b5f610b80338484611ac0565b5060015b92915050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610bb490612c95565b60405180910390fd5b670de0b6b3a76400006103e8610bd260025490565b610bdd906005612cde565b610be79190612cf5565b610bf19190612cf5565b811015610c585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb4565b610c6a81670de0b6b3a7640000612cde565b60085550565b5f610c7c848484611be3565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb4565b610d0d8533858403611ac0565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b80918590610d4e908690612d14565b611ac0565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b8152600401610bb490612c95565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610db8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ddc9190612d27565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e449190612d3e565b5060405133904780156108fc02915f818181858888f19350505050158015610e6e573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610e9c5760405162461bcd60e51b8152600401610bb490612c95565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edb5760405162461bcd60e51b8152600401610bb490612c95565b610ee45f61238d565b565b6005545f906001600160a01b03163314610f125760405162461bcd60e51b8152600401610bb490612c95565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f4c5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa05760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fea5760405162461bcd60e51b8152600401610bb490612c95565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611033576040519150601f19603f3d011682016040523d82523d5f602084013e611038565b606091505b5050905080610e6e575f80fd5b6005546001600160a01b0316331461106f5760405162461bcd60e51b8152600401610bb490612c95565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f55760405162461bcd60e51b8152600401610bb490612c95565b600e839055600f82905560108190558061110f8385612d14565b6111199190612d14565b600d819055601e10156111675760405162461bcd60e51b815260206004820152601660248201527504275792066656573206d757374206265203c3d2033360541b6044820152606401610bb4565b505050565b6005546001600160a01b031633146111965760405162461bcd60e51b8152600401610bb490612c95565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111d35760405162461bcd60e51b8152600401610bb490612c95565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af390612c5d565b6005546001600160a01b031633146112285760405162461bcd60e51b8152600401610bb490612c95565b6006546040516001600160a01b03918216918316907f66ed84e0f24afc7d75bd66c1c96248ed1e9716ac988011e64bf28a3375caeafc905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112ae5760405162461bcd60e51b8152600401610bb490612c95565b7f0000000000000000000000000eb0a9c5b7fb48fd686e31ddbd786794491101c26001600160a01b0316826001600160a01b0316036113555760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb4565b610e6e82826123de565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113e05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb4565b6113ed3385858403611ac0565b5060019392505050565b5f610b80338484611be3565b6005546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b0382166114835760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb4565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114eb9190612d27565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561153b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061155f9190612d3e565b50505050565b6005546001600160a01b0316331461158f5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116175760405162461bcd60e51b8152600401610bb490612c95565b601283905560138290556014819055806116318385612d14565b61163b9190612d14565b6011819055601e10156111675760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d2033300000000000000000006044820152606401610bb4565b6005546001600160a01b031633146116ba5760405162461bcd60e51b8152600401610bb490612c95565b670de0b6b3a76400006103e86116cf60025490565b6116da90600a612cde565b6116e49190612cf5565b6116ee9190612cf5565b8110156117495760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb4565b61175b81670de0b6b3a7640000612cde565b600a5550565b6005545f906001600160a01b0316331461178d5760405162461bcd60e51b8152600401610bb490612c95565b620186a061179a60025490565b6117a5906001612cde565b6117af9190612cf5565b82101561181c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb4565b6103e861182860025490565b611833906005612cde565b61183d9190612cf5565b8211156118a95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb4565b50600955600190565b6005546001600160a01b031633146118dc5760405162461bcd60e51b8152600401610bb490612c95565b600b546301000000900460ff16156119405760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb4565b7f0000000000000000000000000eb0a9c5b7fb48fd686e31ddbd786794491101c26001600160a01b0316816001600160a01b03161415801561199f57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a025760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb4565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a4f5760405162461bcd60e51b8152600401610bb490612c95565b6001600160a01b038116611ab45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b611abd8161238d565b50565b6001600160a01b038316611b225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb4565b6001600160a01b038216611b835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c095760405162461bcd60e51b8152600401610bb490612d59565b6001600160a01b038216611c2f5760405162461bcd60e51b8152600401610bb490612d9e565b6001600160a01b0383165f908152600c602052604090205460ff1615611c8c5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb4565b6001600160a01b0382165f908152600c602052604090205460ff1615611ceb5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb4565b805f03611cfd5761116783835f612431565b600b5460ff161561206a576005546001600160a01b03848116911614801590611d3457506005546001600160a01b03838116911614155b8015611d4857506001600160a01b03821615155b8015611d5f57506001600160a01b03821661dead14155b8015611d755750600554600160a01b900460ff16155b1561206a57600b54610100900460ff16611e0b576001600160a01b0383165f9081526018602052604090205460ff1680611dc657506001600160a01b0382165f9081526018602052604090205460ff165b611e0b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb4565b6001600160a01b0383165f908152601a602052604090205460ff168015611e4a57506001600160a01b0382165f9081526019602052604090205460ff16155b15611f2d57600854811115611ebf5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb4565b600a546001600160a01b0383165f90815260208190526040902054611ee49083612d14565b1115611f285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b61206a565b6001600160a01b0382165f908152601a602052604090205460ff168015611f6c57506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe257600854811115611f285760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb4565b6001600160a01b0382165f9081526019602052604090205460ff1661206a57600a546001600160a01b0383165f908152602081905260409020546120269083612d14565b111561206a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b305f90815260208190526040902054600954811080159081906120955750600b5462010000900460ff165b80156120ab5750600554600160a01b900460ff16155b80156120cf57506001600160a01b0385165f908152601a602052604090205460ff16155b80156120f357506001600160a01b0385165f9081526018602052604090205460ff16155b801561211757506001600160a01b0384165f9081526018602052604090205460ff16155b15612145576005805460ff60a01b1916600160a01b179055612137612583565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219157506001600160a01b0385165f9081526018602052604090205460ff165b1561219957505f5b5f8115612379576001600160a01b0386165f908152601a602052604090205460ff1680156121c857505f601154115b15612283576121ed60646121e7601154886127cf90919063ffffffff16565b906127e1565b9050601154601354826122009190612cde565b61220a9190612cf5565b60165f82825461221a9190612d14565b909155505060115460145461222f9083612cde565b6122399190612cf5565b60175f8282546122499190612d14565b909155505060115460125461225e9083612cde565b6122689190612cf5565b60155f8282546122789190612d14565b9091555061235b9050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122ab57505f600d54115b1561235b576122ca60646121e7600d54886127cf90919063ffffffff16565b9050600d54600f54826122dd9190612cde565b6122e79190612cf5565b60165f8282546122f79190612d14565b9091555050600d5460105461230c9083612cde565b6123169190612cf5565b60175f8282546123269190612d14565b9091555050600d54600e5461233b9083612cde565b6123459190612cf5565b60155f8282546123559190612d14565b90915550505b801561236c5761236c873083612431565b6123768186612de1565b94505b612384878787612431565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124575760405162461bcd60e51b8152600401610bb490612d59565b6001600160a01b03821661247d5760405162461bcd60e51b8152600401610bb490612d9e565b6001600160a01b0383165f90815260208190526040902054818110156124f45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb4565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061252a908490612d14565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257691815260200190565b60405180910390a361155f565b305f9081526020819052604081205490505f6017546015546016546125a89190612d14565b6125b29190612d14565b90505f8215806125c0575081155b156125ca57505050565b6009546125d8906014612cde565b8311156125f0576009546125ed906014612cde565b92505b5f600283601654866126029190612cde565b61260c9190612cf5565b6126169190612cf5565b90505f61262385836127ec565b90504761262f826127f7565b5f61263a47836127ec565b90505f612667600260165461264f9190612cf5565b6126599089612de1565b6015546121e79085906127cf565b90505f612694600260165461267c9190612cf5565b612686908a612de1565b6017546121e79086906127cf565b90505f816126a28486612de1565b6126ac9190612de1565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612706576040519150601f19603f3d011682016040523d82523d5f602084013e61270b565b606091505b5090985050861580159061271e57505f81115b156127715761272d87826129ad565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127bb576040519150601f19603f3d011682016040523d82523d5f602084013e6127c0565b606091505b50505050505050505050505050565b5f6127da8284612cde565b9392505050565b5f6127da8284612cf5565b5f6127da8284612de1565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061282a5761282a612df4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ca9190612e08565b816001815181106128dd576128dd612df4565b60200260200101906001600160a01b031690816001600160a01b031681525050612928307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061297c9085905f90869030904290600401612e23565b5f604051808303815f87803b158015612993575f80fd5b505af11580156129a5573d5f803e3d5ffd5b505050505050565b6129d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a1e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a84573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612aa99190612e92565b5050505050565b5f6020808352835180828501525f5b81811015612adb57858101830151858201604001528201612abf565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611abd575f80fd5b5f8060408385031215612b20575f80fd5b8235612b2b81612afb565b946020939093013593505050565b5f60208284031215612b49575f80fd5b81356127da81612afb565b5f60208284031215612b64575f80fd5b5035919050565b5f805f60608486031215612b7d575f80fd5b8335612b8881612afb565b92506020840135612b9881612afb565b929592945050506040919091013590565b8015158114611abd575f80fd5b5f8060408385031215612bc7575f80fd5b8235612bd281612afb565b91506020830135612be281612ba9565b809150509250929050565b5f805f60608486031215612bff575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c26575f80fd5b81356127da81612ba9565b5f8060408385031215612c42575f80fd5b8235612c4d81612afb565b91506020830135612be281612afb565b600181811c90821680612c7157607f821691505b602082108103612c8f57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8457610b84612cca565b5f82612d0f57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8457610b84612cca565b5f60208284031215612d37575f80fd5b5051919050565b5f60208284031215612d4e575f80fd5b81516127da81612ba9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8457610b84612cca565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e18575f80fd5b81516127da81612afb565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e715784516001600160a01b031683529383019391830191600101612e4c565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612ea4575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122087e2ecb282c0ccfefce89d4504ea55262d4c458f83119721db6c8c6f8bdcd6b664736f6c63430008140033
Deployed Bytecode Sourcemap
31069:17296:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9028:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11195:169;;;;;;;;;;-1:-1:-1;11195:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11195:169:0;1023:187:1;32323:63:0;;;;;;;;;;-1:-1:-1;32323:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31144:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;31144:51:0;1467:230:1;10148:108:0;;;;;;;;;;-1:-1:-1;10236:12:0;;10148:108;;;1848:25:1;;;1836:2;1821:18;10148:108:0;1702:177:1;32106:33:0;;;;;;;;;;;;;;;;36353:275;;;;;;;;;;-1:-1:-1;36353:275:0;;;;;:::i;:::-;;:::i;:::-;;11846:492;;;;;;;;;;-1:-1:-1;11846:492:0;;;;;:::i;:::-;;:::i;32069:30::-;;;;;;;;;;;;;;;;31247:53;;;;;;;;;;;;31293:6;31247:53;;9990:93;;;;;;;;;;-1:-1:-1;9990:93:0;;10073:2;2880:36:1;;2868:2;2853:18;9990:93:0;2738:184:1;31961:28:0;;;;;;;;;;;;;;;;12747:215;;;;;;;;;;-1:-1:-1;12747:215:0;;;;;:::i;:::-;;:::i;31640:38::-;;;;;;;;;;-1:-1:-1;31640:38:0;;;;;;;;;;;31202;;;;;;;;;;;;;;;31522:33;;;;;;;;;;-1:-1:-1;31522:33:0;;;;;;;;39136:126;;;;;;;;;;-1:-1:-1;39136:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39226:28:0;39202:4;39226:28;;;:19;:28;;;;;;;;;39136:126;31373:25;;;;;;;;;;-1:-1:-1;31373:25:0;;;;-1:-1:-1;;;;;31373:25:0;;;46342:257;;;;;;;;;;;;;:::i;47153:90::-;;;;;;;;;;;;;:::i;31926:28::-;;;;;;;;;;;;;;;;31339:27;;;;;;;;;;-1:-1:-1;31339:27:0;;;;-1:-1:-1;;;;;31339:27:0;;;31601:30;;;;;;;;;;-1:-1:-1;31601:30:0;;;;;;;;;;;10319:127;;;;;;;;;;-1:-1:-1;10319:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10420:18:0;10393:7;10420:18;;;;;;;;;;;;10319:127;2545:103;;;;;;;;;;;;;:::i;35657:121::-;;;;;;;;;;;;;:::i;36901:167::-;;;;;;;;;;-1:-1:-1;36901:167:0;;;;;:::i;:::-;;:::i;48264:98::-;;;;;;;;;;-1:-1:-1;48264:98:0;;;;;:::i;:::-;;:::i;46903:196::-;;;;;;;;;;-1:-1:-1;46903:196:0;;;;;:::i;:::-;;:::i;38967:161::-;;;;;;;;;;-1:-1:-1;38967:161:0;;;;;:::i;:::-;;:::i;37272:388::-;;;;;;;;;;-1:-1:-1;37272:388:0;;;;;:::i;:::-;;:::i;35485:120::-;;;;;;;;;;;;;:::i;1894:87::-;;;;;;;;;;-1:-1:-1;1967:6:0;;-1:-1:-1;;;;;1967:6:0;1894:87;;37164:100;;;;;;;;;;-1:-1:-1;37164:100:0;;;;;:::i;:::-;;:::i;9247:104::-;;;;;;;;;;;;;:::i;38772:187::-;;;;;;;;;;-1:-1:-1;38772:187:0;;;;;:::i;:::-;;:::i;38264:304::-;;;;;;;;;;-1:-1:-1;38264:304:0;;;;;:::i;:::-;;:::i;31892:25::-;;;;;;;;;;;;;;;;13465:413;;;;;;;;;;-1:-1:-1;13465:413:0;;;;;:::i;:::-;;:::i;10659:175::-;;;;;;;;;;-1:-1:-1;10659:175:0;;;;;:::i;:::-;;:::i;31821:27::-;;;;;;;;;;;;;;;;32544:57;;;;;;;;;;-1:-1:-1;32544:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31562:32;;;;;;;;;;-1:-1:-1;31562:32:0;;;;;;;;;;;46607:288;;;;;;;;;;-1:-1:-1;46607:288:0;;;;;:::i;:::-;;:::i;38074:182::-;;;;;;;;;;-1:-1:-1;38074:182:0;;;;;:::i;:::-;;:::i;37668:398::-;;;;;;;;;;-1:-1:-1;37668:398:0;;;;;:::i;:::-;;:::i;36636:257::-;;;;;;;;;;-1:-1:-1;36636:257:0;;;;;:::i;:::-;;:::i;31407:35::-;;;;;;;;;;;;;;;;35848:497;;;;;;;;;;-1:-1:-1;35848:497:0;;;;;:::i;:::-;;:::i;32034:26::-;;;;;;;;;;;;;;;;31787:27;;;;;;;;;;;;;;;;10897:151;;;;;;;;;;-1:-1:-1;10897:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11013:18:0;;;10986:7;11013:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10897:151;47728:403;;;;;;;;;;-1:-1:-1;47728:403:0;;;;;:::i;:::-;;:::i;31449:33::-;;;;;;;;;;;;;;;;31855:30;;;;;;;;;;;;;;;;2803:201;;;;;;;;;;-1:-1:-1;2803:201:0;;;;;:::i;:::-;;:::i;31996:31::-;;;;;;;;;;;;;;;;31489:24;;;;;;;;;;;;;;;;32146:28;;;;;;;;;;;;;;;;39270:113;;;;;;;;;;-1:-1:-1;39270:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39355:20:0;39331:4;39355:20;;;:11;:20;;;;;;;;;39270:113;9028:100;9082:13;9115:5;9108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9028:100;:::o;11195:169::-;11278:4;11295:39;841:10;11318:7;11327:6;11295:8;:39::i;:::-;-1:-1:-1;11352:4:0;11195:169;;;;;:::o;36353:275::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;;;;;;;;;36490:4:::1;36482;36461:13;10236:12:::0;;;10148:108;36461:13:::1;:17;::::0;36477:1:::1;36461:17;:::i;:::-;36460:26;;;;:::i;:::-;36459:35;;;;:::i;:::-;36449:6;:45;;36427:142;;;::::0;-1:-1:-1;;;36427:142:0;;5872:2:1;36427:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;36427:142:0::1;5670:411:1::0;36427:142:0::1;36603:17;:6:::0;36613::::1;36603:17;:::i;:::-;36580:20;:40:::0;-1:-1:-1;36353:275:0:o;11846:492::-;11986:4;12003:36;12013:6;12021:9;12032:6;12003:9;:36::i;:::-;-1:-1:-1;;;;;12079:19:0;;12052:24;12079:19;;;:11;:19;;;;;;;;841:10;12079:33;;;;;;;;12131:26;;;;12123:79;;;;-1:-1:-1;;;12123:79:0;;6288:2:1;12123:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;12123:79:0;6086:404:1;12123:79:0;12238:57;12247:6;841:10;12288:6;12269:16;:25;12238:8;:57::i;:::-;-1:-1:-1;12326:4:0;;11846:492;-1:-1:-1;;;;11846:492:0:o;12747:215::-;841:10;12835:4;12884:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12884:34:0;;;;;;;;;;12835:4;;12852:80;;12875:7;;12884:47;;12921:10;;12884:47;:::i;:::-;12852:8;:80::i;46342:257::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;46421:46:::1;::::0;-1:-1:-1;;;46421:46:0;;46436:4:::1;46421:46;::::0;::::1;1640:51:1::0;;;46403:15:0::1;::::0;46421:31:::1;::::0;1613:18:1;;46421:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46478:51;::::0;-1:-1:-1;;;46478:51:0;;46509:10:::1;46478:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;46403:64:0;;-1:-1:-1;46493:4:0::1;::::0;46478:30:::1;::::0;6961:18:1;;46478:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;46540:51:0::1;::::0;46548:10:::1;::::0;46569:21:::1;46540:51:::0;::::1;;;::::0;::::1;::::0;;;46569:21;46548:10;46540:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46392:207;46342:257::o:0;47153:90::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;47210:18:::1;:25:::0;;-1:-1:-1;;47210:25:0::1;::::0;::::1;::::0;;47153:90::o;2545:103::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;2610:30:::1;2637:1;2610:18;:30::i;:::-;2545:103::o:0;35657:121::-;1967:6;;35709:4;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;35726:14:0::1;:22:::0;;-1:-1:-1;;35726:22:0::1;::::0;;;35657:121;:::o;36901:167::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37014:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37014:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36901:167::o;48264:98::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48328:18:0::1;48349:5;48328:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48328:26:0::1;::::0;;48264:98::o;46903:196::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;46976:12:::1;46994:6;-1:-1:-1::0;;;;;46994:11:0::1;47027:21;46994:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46975:89;;;47083:7;47075:16;;;::::0;::::1;38967:161:::0;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;39076:10:::1;::::0;39047:40:::1;::::0;-1:-1:-1;;;;;39076:10:0;;::::1;::::0;39047:40;::::1;::::0;::::1;::::0;39076:10:::1;::::0;39047:40:::1;39098:10;:22:::0;;-1:-1:-1;;;;;;39098:22:0::1;-1:-1:-1::0;;;;;39098:22:0;;;::::1;::::0;;;::::1;::::0;;38967:161::o;37272:388::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;37420:12:::1;:25:::0;;;37456:15:::1;:31:::0;;;37498:10:::1;:21:::0;;;37511:8;37545:30:::1;37474:13:::0;37435:10;37545:30:::1;:::i;:::-;:43;;;;:::i;:::-;37530:12;:58:::0;;;37623:2:::1;-1:-1:-1::0;37607:18:0::1;37599:53;;;::::0;-1:-1:-1;;;37599:53:0;;7755:2:1;37599:53:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;-1:-1:-1;;;7813:18:1;;;7806:52;7875:18;;37599:53:0::1;7553:346:1::0;37599:53:0::1;37272:388:::0;;;:::o;35485:120::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;35540:13:::1;:20:::0;;-1:-1:-1;;35571:18:0;;;;;35485:120::o;37164:100::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;37235:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37235:21:0;;::::1;::::0;;;::::1;::::0;;37164:100::o;9247:104::-;9303:13;9336:7;9329:14;;;;;:::i;38772:187::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;38897:12:::1;::::0;38860:50:::1;::::0;-1:-1:-1;;;;;38897:12:0;;::::1;::::0;38860:50;::::1;::::0;::::1;::::0;38897:12:::1;::::0;38860:50:::1;38921:12;:30:::0;;-1:-1:-1;;;;;;38921:30:0::1;-1:-1:-1::0;;;;;38921:30:0;;;::::1;::::0;;;::::1;::::0;;38772:187::o;38264:304::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;38408:13:::1;-1:-1:-1::0;;;;;38400:21:0::1;:4;-1:-1:-1::0;;;;;38400:21:0::1;::::0;38378:128:::1;;;::::0;-1:-1:-1;;;38378:128:0;;8106:2:1;38378:128:0::1;::::0;::::1;8088:21:1::0;8145:2;8125:18;;;8118:30;8184:34;8164:18;;;8157:62;8255:27;8235:18;;;8228:55;8300:19;;38378:128:0::1;7904:421:1::0;38378:128:0::1;38519:41;38548:4;38554:5;38519:28;:41::i;13465:413::-:0;841:10;13558:4;13602:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13602:34:0;;;;;;;;;;13655:35;;;;13647:85;;;;-1:-1:-1;;;13647:85:0;;8532:2:1;13647:85:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:35;8706:19;;13647:85:0;8330:401:1;13647:85:0;13768:67;841:10;13791:7;13819:15;13800:16;:34;13768:8;:67::i;:::-;-1:-1:-1;13866:4:0;;13465:413;-1:-1:-1;;;13465:413:0:o;10659:175::-;10745:4;10762:42;841:10;10786:9;10797:6;10762:9;:42::i;46607:288::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46702:20:0;::::1;46694:59;;;::::0;-1:-1:-1;;;46694:59:0;;8938:2:1;46694:59:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:28;8996:18;;;8989:56;9062:18;;46694:59:0::1;8736:350:1::0;46694:59:0::1;46791:39;::::0;-1:-1:-1;;;46791:39:0;;46824:4:::1;46791:39;::::0;::::1;1640:51:1::0;46764:24:0::1;::::0;-1:-1:-1;;;;;46791:24:0;::::1;::::0;::::1;::::0;1613:18:1;;46791:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46841:46;::::0;-1:-1:-1;;;46841:46:0;;-1:-1:-1;;;;;7006:32:1;;;46841:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;46764:66:0;;-1:-1:-1;46841:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;46841:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46683:212;46607:288:::0;;:::o;38074:182::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38159:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38159:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38214:34;;1163:41:1;;;38214:34:0::1;::::0;1136:18:1;38214:34:0::1;;;;;;;38074:182:::0;;:::o;37668:398::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;37817:13:::1;:26:::0;;;37854:16:::1;:32:::0;;;37897:11:::1;:22:::0;;;37911:8;37946:32:::1;37873:13:::0;37833:10;37946:32:::1;:::i;:::-;:46;;;;:::i;:::-;37930:13;:62:::0;;;38028:2:::1;-1:-1:-1::0;38011:19:0::1;38003:55;;;::::0;-1:-1:-1;;;38003:55:0;;9293:2:1;38003:55:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:25;9351:18;;;9344:53;9414:18;;38003:55:0::1;9091:347:1::0;36636:257:0;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;36777:4:::1;36769;36747:13;10236:12:::0;;;10148:108;36747:13:::1;:18;::::0;36763:2:::1;36747:18;:::i;:::-;36746:27;;;;:::i;:::-;36745:36;;;;:::i;:::-;36735:6;:46;;36713:132;;;::::0;-1:-1:-1;;;36713:132:0;;9645:2:1;36713:132:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;36713:132:0::1;9443:400:1::0;36713:132:0::1;36868:17;:6:::0;36878::::1;36868:17;:::i;:::-;36856:9;:29:::0;-1:-1:-1;36636:257:0:o;35848:497::-;1967:6;;35956:4;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;36035:6:::1;36014:13;10236:12:::0;;;10148:108;36014:13:::1;:17;::::0;36030:1:::1;36014:17;:::i;:::-;36013:28;;;;:::i;:::-;36000:9;:41;;35978:144;;;::::0;-1:-1:-1;;;35978:144:0;;10050:2:1;35978:144:0::1;::::0;::::1;10032:21:1::0;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:51;10240:19;;35978:144:0::1;9848:417:1::0;35978:144:0::1;36190:4;36169:13;10236:12:::0;;;10148:108;36169:13:::1;:17;::::0;36185:1:::1;36169:17;:::i;:::-;36168:26;;;;:::i;:::-;36155:9;:39;;36133:141;;;::::0;-1:-1:-1;;;36133:141:0;;10472:2:1;36133:141:0::1;::::0;::::1;10454:21:1::0;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:50;10661:19;;36133:141:0::1;10270:416:1::0;36133:141:0::1;-1:-1:-1::0;36285:18:0::1;:30:::0;36333:4:::1;::::0;35848:497::o;47728:403::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;47816:18:::1;::::0;;;::::1;;;47815:19;47807:65;;;::::0;-1:-1:-1;;;47807:65:0;;10893:2:1;47807:65:0::1;::::0;::::1;10875:21:1::0;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;-1:-1:-1;;;11022:18:1;;;11015:31;11063:19;;47807:65:0::1;10691:397:1::0;47807:65:0::1;47926:13;-1:-1:-1::0;;;;;47905:35:0::1;:9;-1:-1:-1::0;;;;;47905:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;47944:64:0;::::1;47965:42;47944:64;;47905:103;47883:200;;;::::0;-1:-1:-1;;;47883:200:0;;11295:2:1;47883:200:0::1;::::0;::::1;11277:21:1::0;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:44;11478:19;;47883:200:0::1;11093:410:1::0;47883:200:0::1;-1:-1:-1::0;;;;;48094:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48094:29:0::1;48119:4;48094:29;::::0;;47728:403::o;2803:201::-;1967:6;;-1:-1:-1;;;;;1967:6:0;841:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2892:22:0;::::1;2884:73;;;::::0;-1:-1:-1;;;2884:73:0;;11710:2:1;2884:73:0::1;::::0;::::1;11692:21:1::0;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:1;;;11832:36;11885:19;;2884:73:0::1;11508:402:1::0;2884:73:0::1;2968:28;2987:8;2968:18;:28::i;:::-;2803:201:::0;:::o;17149:380::-;-1:-1:-1;;;;;17285:19:0;;17277:68;;;;-1:-1:-1;;;17277:68:0;;12117:2:1;17277:68:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:34;12290:19;;17277:68:0;11915:400:1;17277:68:0;-1:-1:-1;;;;;17364:21:0;;17356:68;;;;-1:-1:-1;;;17356:68:0;;12522:2:1;17356:68:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:32;12693:19;;17356:68:0;12320:398:1;17356:68:0;-1:-1:-1;;;;;17437:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17489:32;;1848:25:1;;;17489:32:0;;1821:18:1;17489:32:0;;;;;;;17149:380;;;:::o;39391:4056::-;-1:-1:-1;;;;;39523:18:0;;39515:68;;;;-1:-1:-1;;;39515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39602:16:0;;39594:64;;;;-1:-1:-1;;;39594:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39678:17:0;;;;;;:11;:17;;;;;;;;39677:18;39669:48;;;;-1:-1:-1;;;39669:48:0;;13735:2:1;39669:48:0;;;13717:21:1;13774:2;13754:18;;;13747:30;-1:-1:-1;;;13793:18:1;;;13786:48;13851:18;;39669:48:0;13533:342:1;39669:48:0;-1:-1:-1;;;;;39737:15:0;;;;;;:11;:15;;;;;;;;39736:16;39728:48;;;;-1:-1:-1;;;39728:48:0;;14082:2:1;39728:48:0;;;14064:21:1;14121:2;14101:18;;;14094:30;-1:-1:-1;;;14140:18:1;;;14133:50;14200:18;;39728:48:0;13880:344:1;39728:48:0;39815:6;39825:1;39815:11;39811:93;;39843:28;39859:4;39865:2;39869:1;39843:15;:28::i;39811:93::-;39920:14;;;;39916:1694;;;1967:6;;-1:-1:-1;;;;;39973:15:0;;;1967:6;;39973:15;;;;:49;;-1:-1:-1;1967:6:0;;-1:-1:-1;;;;;40009:13:0;;;1967:6;;40009:13;;39973:49;:86;;;;-1:-1:-1;;;;;;40043:16:0;;;;39973:86;:128;;;;-1:-1:-1;;;;;;40080:21:0;;40094:6;40080:21;;39973:128;:158;;;;-1:-1:-1;40123:8:0;;-1:-1:-1;;;40123:8:0;;;;40122:9;39973:158;39951:1648;;;40171:13;;;;;;;40166:223;;-1:-1:-1;;;;;40243:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40272:23:0;;;;;;:19;:23;;;;;;;;40243:52;40209:160;;;;-1:-1:-1;;;40209:160:0;;14431:2:1;40209:160:0;;;14413:21:1;14470:2;14450:18;;;14443:30;-1:-1:-1;;;14489:18:1;;;14482:52;14551:18;;40209:160:0;14229:346:1;40209:160:0;-1:-1:-1;;;;;40463:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40520:35:0;;;;;;:31;:35;;;;;;;;40519:36;40463:92;40437:1147;;;40642:20;;40632:6;:30;;40598:169;;;;-1:-1:-1;;;40598:169:0;;14782:2:1;40598:169:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;-1:-1:-1;;;14911:18:1;;;14904:51;14972:19;;40598:169:0;14580:417:1;40598:169:0;40850:9;;-1:-1:-1;;;;;10420:18:0;;10393:7;10420:18;;;;;;;;;;;40824:22;;:6;:22;:::i;:::-;:35;;40790:140;;;;-1:-1:-1;;;40790:140:0;;15204:2:1;40790:140:0;;;15186:21:1;15243:2;15223:18;;;15216:30;-1:-1:-1;;;15262:18:1;;;15255:49;15321:18;;40790:140:0;15002:343:1;40790:140:0;40437:1147;;;-1:-1:-1;;;;;41028:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41083:37:0;;;;;;:31;:37;;;;;;;;41082:38;41028:92;41002:582;;;41207:20;;41197:6;:30;;41163:170;;;;-1:-1:-1;;;41163:170:0;;15552:2:1;41163:170:0;;;15534:21:1;15591:2;15571:18;;;15564:30;15630:34;15610:18;;;15603:62;-1:-1:-1;;;15681:18:1;;;15674:52;15743:19;;41163:170:0;15350:418:1;41002:582:0;-1:-1:-1;;;;;41364:35:0;;;;;;:31;:35;;;;;;;;41359:225;;41484:9;;-1:-1:-1;;;;;10420:18:0;;10393:7;10420:18;;;;;;;;;;;41458:22;;:6;:22;:::i;:::-;:35;;41424:140;;;;-1:-1:-1;;;41424:140:0;;15204:2:1;41424:140:0;;;15186:21:1;15243:2;15223:18;;;15216:30;-1:-1:-1;;;15262:18:1;;;15255:49;15321:18;;41424:140:0;15002:343:1;41424:140:0;41671:4;41622:28;10420:18;;;;;;;;;;;41729;;41705:42;;;;;;;41778:35;;-1:-1:-1;41802:11:0;;;;;;;41778:35;:61;;;;-1:-1:-1;41831:8:0;;-1:-1:-1;;;41831:8:0;;;;41830:9;41778:61;:110;;;;-1:-1:-1;;;;;;41857:31:0;;;;;;:25;:31;;;;;;;;41856:32;41778:110;:153;;;;-1:-1:-1;;;;;;41906:25:0;;;;;;:19;:25;;;;;;;;41905:26;41778:153;:194;;;;-1:-1:-1;;;;;;41949:23:0;;;;;;:19;:23;;;;;;;;41948:24;41778:194;41760:326;;;41999:8;:15;;-1:-1:-1;;;;41999:15:0;-1:-1:-1;;;41999:15:0;;;42031:10;:8;:10::i;:::-;42058:8;:16;;-1:-1:-1;;;;42058:16:0;;;41760:326;42114:8;;-1:-1:-1;;;;;42224:25:0;;42098:12;42224:25;;;:19;:25;;;;;;42114:8;-1:-1:-1;;;42114:8:0;;;;;42113:9;;42224:25;;:52;;-1:-1:-1;;;;;;42253:23:0;;;;;;:19;:23;;;;;;;;42224:52;42220:100;;;-1:-1:-1;42303:5:0;42220:100;42332:12;42437:7;42433:961;;;-1:-1:-1;;;;;42489:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42538:1;42522:13;;:17;42489:50;42485:760;;;42567:34;42597:3;42567:25;42578:13;;42567:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42560:41;;42670:13;;42650:16;;42643:4;:23;;;;:::i;:::-;42642:41;;;;:::i;:::-;42620:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42742:13:0;;42727:11;;42720:18;;:4;:18;:::i;:::-;42719:36;;;;:::i;:::-;42702:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;42818:13:0;;42801;;42794:20;;:4;:20;:::i;:::-;42793:38;;;;:::i;:::-;42774:15;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;42485:760:0;;-1:-1:-1;42485:760:0;;-1:-1:-1;;;;;42893:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42943:1;42928:12;;:16;42893:51;42889:356;;;42972:33;43001:3;42972:24;42983:12;;42972:6;:10;;:24;;;;:::i;:33::-;42965:40;;43073:12;;43054:15;;43047:4;:22;;;;:::i;:::-;43046:39;;;;:::i;:::-;43024:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43143:12:0;;43129:10;;43122:17;;:4;:17;:::i;:::-;43121:34;;;;:::i;:::-;43104:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43217:12:0;;43201;;43194:19;;:4;:19;:::i;:::-;43193:36;;;;:::i;:::-;43174:15;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;42889:356:0;43265:8;;43261:91;;43294:42;43310:4;43324;43331;43294:15;:42::i;:::-;43368:14;43378:4;43368:14;;:::i;:::-;;;42433:961;43406:33;43422:4;43428:2;43432:6;43406:15;:33::i;:::-;39504:3943;;;;39391:4056;;;:::o;3164:191::-;3257:6;;;-1:-1:-1;;;;;3274:17:0;;;-1:-1:-1;;;;;;3274:17:0;;;;;;;3307:40;;3257:6;;;3274:17;3257:6;;3307:40;;3238:16;;3307:40;3227:128;3164:191;:::o;38576:188::-;-1:-1:-1;;;;;38659:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38659:39:0;;;;;;;;;;38716:40;;38659:39;;:31;38716:40;;;38576:188;;:::o;14368:733::-;-1:-1:-1;;;;;14508:20:0;;14500:70;;;;-1:-1:-1;;;14500:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14589:23:0;;14581:71;;;;-1:-1:-1;;;14581:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14749:17:0;;14725:21;14749:17;;;;;;;;;;;14785:23;;;;14777:74;;;;-1:-1:-1;;;14777:74:0;;16108:2:1;14777:74:0;;;16090:21:1;16147:2;16127:18;;;16120:30;16186:34;16166:18;;;16159:62;-1:-1:-1;;;16237:18:1;;;16230:36;16283:19;;14777:74:0;15906:402:1;14777:74:0;-1:-1:-1;;;;;14887:17:0;;;:9;:17;;;;;;;;;;;14907:22;;;14887:42;;14951:20;;;;;;;;:30;;14923:6;;14887:9;14951:30;;14923:6;;14951:30;:::i;:::-;;;;;;;;15016:9;-1:-1:-1;;;;;14999:35:0;15008:6;-1:-1:-1;;;;;14999:35:0;;15027:6;14999:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;14999:35:0;;;;;;;;15047:46;37272:388;44573:1761;44656:4;44612:23;10420:18;;;;;;;;;;;44612:50;;44673:25;44766:13;;44735:15;;44701:18;;:49;;;;:::i;:::-;:78;;;;:::i;:::-;44673:106;-1:-1:-1;44790:12:0;44819:20;;;:46;;-1:-1:-1;44843:22:0;;44819:46;44815:85;;;44882:7;;;44573:1761::o;44815:85::-;44934:18;;:23;;44955:2;44934:23;:::i;:::-;44916:15;:41;44912:115;;;44992:18;;:23;;45013:2;44992:23;:::i;:::-;44974:41;;44912:115;45088:23;45201:1;45168:17;45133:18;;45115:15;:36;;;;:::i;:::-;45114:71;;;;:::i;:::-;:88;;;;:::i;:::-;45088:114;-1:-1:-1;45213:26:0;45242:36;:15;45088:114;45242:19;:36::i;:::-;45213:65;-1:-1:-1;45319:21:0;45353:36;45213:65;45353:16;:36::i;:::-;45402:18;45423:44;:21;45449:17;45423:25;:44::i;:::-;45402:65;;45480:20;45503:81;45581:1;45560:18;;:22;;;;:::i;:::-;45539:44;;:17;:44;:::i;:::-;45518:15;;45503:31;;:10;;:14;:31::i;:81::-;45480:104;;45605:18;45626:79;45702:1;45681:18;;:22;;;;:::i;:::-;45660:44;;:17;:44;:::i;:::-;45641:13;;45626:29;;:10;;:14;:29::i;:79::-;45605:100;-1:-1:-1;45718:23:0;45605:100;45744:25;45757:12;45744:10;:25;:::i;:::-;:38;;;;:::i;:::-;45816:1;45795:18;:22;;;45828:15;:19;;;45858:13;:17;;;45910:10;;45902:47;;45718:64;;-1:-1:-1;;;;;;45910:10:0;;45934;;45902:47;45816:1;45902:47;45934:10;45910;45902:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45888:61:0;;-1:-1:-1;;45966:19:0;;;;;:42;;;46007:1;45989:15;:19;45966:42;45962:278;;;46025:46;46038:15;46055;46025:12;:46::i;:::-;46195:18;;46091:137;;;16515:25:1;;;16571:2;16556:18;;16549:34;;;16599:18;;;16592:34;;;;46091:137:0;;;;;;16503:2:1;46091:137:0;;;45962:278;46274:12;;46266:60;;-1:-1:-1;;;;;46274:12:0;;;;46300:21;;46266:60;;;;46300:21;46274:12;46266:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44573:1761:0:o;22281:98::-;22339:7;22366:5;22370:1;22366;:5;:::i;:::-;22359:12;22281:98;-1:-1:-1;;;22281:98:0:o;22680:::-;22738:7;22765:5;22769:1;22765;:5;:::i;21924:98::-;21982:7;22009:5;22013:1;22009;:5;:::i;43455:589::-;43605:16;;;43619:1;43605:16;;;;;;;;43581:21;;43605:16;;;;;;;;;;-1:-1:-1;43605:16:0;43581:40;;43650:4;43632;43637:1;43632:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43632:23:0;;;-1:-1:-1;;;;;43632:23:0;;;;;43676:15;-1:-1:-1;;;;;43676:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43666:4;43671:1;43666:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43666:32:0;;;-1:-1:-1;;;;;43666:32:0;;;;;43711:62;43728:4;43743:15;43761:11;43711:8;:62::i;:::-;43812:224;;-1:-1:-1;;;43812:224:0;;-1:-1:-1;;;;;43812:15:0;:66;;;;:224;;43893:11;;43919:1;;43963:4;;43990;;44010:15;;43812:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43510:534;43455:589;:::o;44052:513::-;44200:62;44217:4;44232:15;44250:11;44200:8;:62::i;:::-;44305:15;-1:-1:-1;;;;;44305:31:0;;44344:9;44377:4;44397:11;44423:1;44466;44509:7;1967:6;;-1:-1:-1;;;;;1967:6:0;;1894:87;44509:7;44305:252;;;;;;-1:-1:-1;;;;;;44305:252:0;;;-1:-1:-1;;;;;18501:15:1;;;44305:252:0;;;18483:34:1;18533:18;;;18526:34;;;;18576:18;;;18569:34;;;;18619:18;;;18612:34;18683:15;;;18662:19;;;18655:44;44531:15:0;18715:19:1;;;18708:35;18417:19;;44305:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44052:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;12723:401::-;12925:2;12907:21;;;12964:2;12944:18;;;12937:30;13003:34;12998:2;12983:18;;12976:62;-1:-1:-1;;;13069:2:1;13054:18;;13047:35;13114:3;13099:19;;12723:401::o;13129:399::-;13331:2;13313:21;;;13370:2;13350:18;;;13343:30;13409:34;13404:2;13389:18;;13382:62;-1:-1:-1;;;13475:2:1;13460:18;;13453:33;13518:3;13503:19;;13129:399::o;15773:128::-;15840:9;;;15861:11;;;15858:37;;;15875:18;;:::i;16769:127::-;16830:10;16825:3;16821:20;16818:1;16811:31;16861:4;16858:1;16851:15;16885:4;16882:1;16875:15;16901:251;16971:6;17024:2;17012:9;17003:7;16999:23;16995:32;16992:52;;;17040:1;17037;17030:12;16992:52;17072:9;17066:16;17091:31;17116:5;17091:31;:::i;17157:980::-;17419:4;17467:3;17456:9;17452:19;17498:6;17487:9;17480:25;17524:2;17562:6;17557:2;17546:9;17542:18;17535:34;17605:3;17600:2;17589:9;17585:18;17578:31;17629:6;17664;17658:13;17695:6;17687;17680:22;17733:3;17722:9;17718:19;17711:26;;17772:2;17764:6;17760:15;17746:29;;17793:1;17803:195;17817:6;17814:1;17811:13;17803:195;;;17882:13;;-1:-1:-1;;;;;17878:39:1;17866:52;;17973:15;;;;17938:12;;;;17914:1;17832:9;17803:195;;;-1:-1:-1;;;;;;;18054:32:1;;;;18049:2;18034:18;;18027:60;-1:-1:-1;;;18118:3:1;18103:19;18096:35;18015:3;17157:980;-1:-1:-1;;;17157:980:1:o;18754:306::-;18842:6;18850;18858;18911:2;18899:9;18890:7;18886:23;18882:32;18879:52;;;18927:1;18924;18917:12;18879:52;18956:9;18950:16;18940:26;;19006:2;18995:9;18991:18;18985:25;18975:35;;19050:2;19039:9;19035:18;19029:25;19019:35;;18754:306;;;;;:::o
Swarm Source
ipfs://87e2ecb282c0ccfefce89d4504ea55262d4c458f83119721db6c8c6f8bdcd6b6
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.