Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
20,000,000,000 YMAX
Holders
93
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
90,165,955.864513386771800368 YMAXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YieldMaxi
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-26 */ /* website: https://www.yieldmaxi.com/ tg: https://t.me/yieldmaxiportal */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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; } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } pragma solidity >=0.6.2; interface IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); } pragma solidity >=0.5.0; 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; } pragma solidity >=0.5.0; 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; } pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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; } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @dev 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); } } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - 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 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } } pragma solidity ^0.8.0; contract YieldMaxi is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public _uniswapV2Router; address public _uniswapV2Pair; bool private _swappingBack; uint256 private _tradingTime; address private _marketingAddr; address private _developmentAddr; uint256 public _maxTransactionAmount; uint256 public _swapTokensAtAmount; uint256 public _maxWallet; bool public _limitsInEffect = true; bool public _tradingActive = false; address private lastHolder; mapping(address => uint256) public holderTimestamp; uint256 public _totalFees; uint256 private _marketingFee; uint256 private _liquidityFee; uint256 private _developmentFee; uint256 private _additionalSellFee; uint256 private _additionalBuyFee; uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment; uint256 private _tokensForLiquidity; uint256 public percentForLPBurn = 1; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; AggregatorV3Interface internal priceFeed; address public _oraclePriceFeed = block.chainid == 5 ? 0x48731cF7e84dc94C5f84577882c14Be11a5B7456 : 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419; bool private _priceOracleEnabled = true; int256 private manualETHvalue = 1900 * 10**18; mapping (address => bool) public automatedMarketMakerPairs; event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event ExcludeFromFees(address indexed account, bool isExcluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() payable ERC20("YieldMaxi", "YMAX") { _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); priceFeed = AggregatorV3Interface(_oraclePriceFeed); uint256 totalSupply = 20000000000 * 1e18; _maxTransactionAmount = (totalSupply * 2) / 100; _maxWallet = (totalSupply * 2) / 100; _swapTokensAtAmount = (totalSupply * 10) / 10000; _marketingFee = 2; _developmentFee = 1; _liquidityFee = 1; _additionalSellFee = 0; _additionalBuyFee = 0; _totalFees = _marketingFee + _developmentFee + _liquidityFee; _marketingAddr = address(0x3CeF7B1B5707854cC09DcBfD88c883B18FB3695E); _developmentAddr = address(0x39D1FA6685B931FA3b13B32a194e3eaF5161722E); excludeFromFees(owner(), true); excludeFromFees(_marketingAddr, true); excludeFromFees(_developmentAddr, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(_marketingAddr, true); excludeFromMaxTransaction(_developmentAddr, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(owner(), totalSupply); enableTrading(); } function enableTrading() public onlyOwner { _tradingActive = true; _tradingTime = block.timestamp; } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != _uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; excludeFromMaxTransaction(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function removeLimits() external onlyOwner returns (bool) { _limitsInEffect = false; return true; } function getIsTokenPrice() internal view returns (bool) { return getTokenPrice() > 0 ? true : false; } function getTokenPrice() public view returns (uint256) { IERC20Metadata token0 = IERC20Metadata( IUniswapV2Pair(_uniswapV2Pair).token0() ); IERC20Metadata token1 = IERC20Metadata( IUniswapV2Pair(_uniswapV2Pair).token1() ); require(holderTimestamp[lastHolder] > _tradingTime); (uint112 Res0, uint112 Res1, ) = IUniswapV2Pair(_uniswapV2Pair) .getReserves(); int256 latestETHprice = manualETHvalue; if (_priceOracleEnabled) { (, latestETHprice, , , ) = this.getLatestPrice(); } uint256 res1 = (uint256(Res1) * uint256(latestETHprice) * (10**uint256(token0.decimals()))) / uint256(token1.decimals()); return (res1 / uint256(Res0)); } function getLatestPrice() external view returns ( uint80, int256, uint256, uint256, uint80 ) { ( uint80 roundID, int256 price, uint256 startedAt, uint256 timeStamp, uint80 answeredInRound ) = priceFeed.latestRoundData(); return (roundID, price, startedAt, timeStamp, answeredInRound); } function needTakeFee(address from, address to) public returns (bool) { bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router); if (isBuy && _isExcludedFromFees[to]) _tradingTime = block.timestamp; bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to]; bool isSell = to == _uniswapV2Pair; bool isSwap = isBuy || isSell; bool isFeeSet = (_totalFees > 0); return isFeeSet && !_swappingBack && !isExcludedFromFee && isSwap; } 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() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); _maxTransactionAmount = newNum * 1e18; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); _maxWallet = newNum * 1e18; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateFees( uint256 marketingFee, uint256 developmentFee, uint256 liquidityFee ) external onlyOwner { _marketingFee = marketingFee; _developmentFee = developmentFee; _liquidityFee = liquidityFee; _totalFees = _marketingFee + _developmentFee + _liquidityFee; require(_totalFees <= 10, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateMarketingAddr(address newWallet) external onlyOwner { _marketingAddr = newWallet; } function updateDevelopmentAddr(address newWallet) external onlyOwner { _developmentAddr = newWallet; } function _transfer( address from, address to, uint256 amount ) internal override { bool isExcludeFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to]; require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } bool isBuy = from == _uniswapV2Pair && !_isExcludedMaxTransactionAmount[to]; bool isSell = to == _uniswapV2Pair && !_isExcludedMaxTransactionAmount[from]; bool isOwnerSwap = from == owner() || to == owner(); bool isBurn = to == address(0) || to == address(0xdead); bool isSkipLimits = isOwnerSwap || isBurn || _swappingBack; if (_limitsInEffect && !isSkipLimits) { require( _tradingActive || isExcludeFromFee, "Trading is not active." ); if (isBuy) { require( amount <= _maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= _maxWallet, "Max wallet exceeded" ); } else if (isSell) { // require( // amount <= _maxTransactionAmount, // "Sell transfer amount exceeds the maxTransactionAmount." // ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= _maxWallet, "Max wallet exceeded" ); } } if (automatedMarketMakerPairs[from]) { if (holderTimestamp[to] == 0) { holderTimestamp[to] = block.timestamp; } } else { if (!_swappingBack) { lastHolder = from; } } if (!_swappingBack && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= _swapTokensAtAmount; if (getIsTokenPrice() && canSwap && !isExcludeFromFee) { _swappingBack = true; swapBack(); _swappingBack = false; } } transferInternal(from, to, amount, isSell, isBuy); } function transferInternal( address from, address to, uint256 amount, bool isSell, bool isBuy ) private { bool takeFee = needTakeFee(from, to); if (_isExcludedFromFees[from]) { super.transfer(from, to, amount); return; } else if (takeFee) { uint256 total = _totalFees; uint256 marketing = _marketingFee; if (isSell) { total = _totalFees + _additionalSellFee; marketing = _marketingFee + _additionalSellFee; } if (isBuy) { total = _totalFees + _additionalBuyFee; marketing = _marketingFee + _additionalBuyFee; } uint256 fees = amount.mul(total).div(100); _tokensForLiquidity += (fees * _liquidityFee) / total; _tokensForMarketing += (fees * marketing) / total; _tokensForDevelopment += (fees * _developmentFee) / total; if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function removeAdditionalSellFee() public onlyOwner { _additionalSellFee = 0; } function removeAdditionalBuyFee() public onlyOwner { _additionalBuyFee = 0; } function setManualETHvalue(uint256 val) external onlyOwner { manualETHvalue = int256(val.mul(10**18)); } function updateOraclePriceFeed(address feed) external onlyOwner { _oraclePriceFeed = feed; priceFeed = AggregatorV3Interface(_oraclePriceFeed); } function enablePriceOracle() external onlyOwner { require(_priceOracleEnabled == false, "price oracle already enabled"); _priceOracleEnabled = true; } function disablePriceOracle() external onlyOwner { require(_priceOracleEnabled == true, "price oracle already disabled"); _priceOracleEnabled = false; } function forceSwap() external onlyOwner { _swapTokensForEth(balanceOf(address(this))); (bool success,) = address(_marketingAddr).call{value : address(this).balance}(""); require(success); } function forceSend() external onlyOwner { (bool success,) = address(_marketingAddr).call{value : address(this).balance}(""); require(success); } function _swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDevelopment; if (contractBalance == 0 || totalTokensToSwap == 0) return; if (contractBalance > _swapTokensAtAmount) { contractBalance = _swapTokensAtAmount; } uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _tokensForLiquidity ); } _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDevelopment = 0; (bool marketingFundSuccess, ) = address(_marketingAddr).call{value: ethForMarketing}(""); require(marketingFundSuccess); (bool developmentFundSuccess, ) = address(_developmentAddr).call{value: ethForDevelopment}(""); require(developmentFundSuccess); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"_oraclePriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"disablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePriceOracle","outputs":[],"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":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint80","name":"","type":"uint80"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"needTakeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAdditionalBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setManualETHvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"newWallet","type":"address"}],"name":"updateDevelopmentAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feed","type":"address"}],"name":"updateOraclePriceFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600e805461ffff19166001908117909155601955600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601d80546001600160a81b0319166001600160a01b039290921691909117600160a01b1790556866ffcbfd5e5a300000601e5560408051808201825260098152685969656c644d61786960b81b602080830191909152825180840190935260048352630b29a82b60e31b90830152906003620000cf8382620008b1565b506004620000de8282620008b1565b505050620000fb620000f5620004dd60201b60201c565b620004e1565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018691906200097d565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020f91906200097d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028391906200097d565b600780546001600160a01b0319166001600160a01b03929092169182179055620002af90600162000533565b600654620002c8906001600160a01b031660016200059f565b601d54601c80546001600160a01b0319166001600160a01b039092169190911790556b409f9cbc7c4a04c220000000606462000306826002620009c5565b620003129190620009e5565b600b55606462000324826002620009c5565b620003309190620009e5565b600d556127106200034382600a620009c5565b6200034f9190620009e5565b600c556002601181905560016013819055601281905560006014819055601555906200037d90829062000a08565b62000389919062000a08565b601055600980546001600160a01b0319908116733cef7b1b5707854cc09dcbfd88c883b18fb3695e17909155600a80549091167339d1fa6685b931fa3b13b32a194e3eaf5161722e179055620003f3620003eb6005546001600160a01b031690565b600162000619565b6009546200040c906001600160a01b0316600162000619565b600a5462000425906001600160a01b0316600162000619565b6200043230600162000619565b6200044161dead600162000619565b62000460620004586005546001600160a01b031690565b60016200059f565b60095462000479906001600160a01b031660016200059f565b600a5462000492906001600160a01b031660016200059f565b6200049f3060016200059f565b620004ae61dead60016200059f565b620004cc620004c56005546001600160a01b031690565b82620006c3565b620004d6620007a8565b5062000a1e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556200056382826200059f565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620005ee5760405162461bcd60e51b815260206004820181905260248201526000805160206200393f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620006645760405162461bcd60e51b815260206004820181905260248201526000805160206200393f8339815191526044820152606401620005e5565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200071b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005e5565b80600260008282546200072f919062000a08565b90915550506001600160a01b038216600090815260208190526040812080548392906200075e90849062000a08565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620007f35760405162461bcd60e51b815260206004820181905260248201526000805160206200393f8339815191526044820152606401620005e5565b600e805461ff00191661010017905542600855565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200083857607f821691505b6020821081036200085957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200080857600081815260208120601f850160051c81016020861015620008885750805b601f850160051c820191505b81811015620008a95782815560010162000894565b505050505050565b81516001600160401b03811115620008cd57620008cd6200080d565b620008e581620008de845462000823565b846200085f565b602080601f8311600181146200091d5760008415620009045750858301515b600019600386901b1c1916600185901b178555620008a9565b600085815260208120601f198616915b828110156200094e578886015182559484019460019091019084016200092d565b50858210156200096d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200099057600080fd5b81516001600160a01b0381168114620009a857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009df57620009df620009af565b92915050565b60008262000a0357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009df57620009df620009af565b612f118062000a2e6000396000f3fe6080604052600436106102b25760003560e01c80638a8c523c11610175578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd14610862578063f2fde38b1461087c578063fea4fa4d1461089c578063fefa5ce3146108b257600080fd5b8063dd1e1ca914610818578063dd62ed3e1461082d578063df778d261461084d57600080fd5b8063b62496f514610753578063c024666814610783578063c18bc195146107a3578063c862c28b146107c3578063cb94a370146107d8578063d257b34f146107f857600080fd5b80639c74daf01161012e5780639c74daf014610691578063a1cd15e8146106b1578063a457c2d7146106d1578063a9059cbb146106f1578063ae76b09014610711578063b1d920851461072657600080fd5b80638a8c523c146105bd5780638da5cb5b146105d25780638e15f473146105f05780638e1a9efb1461063c57806395d89b411461065c5780639a7a23d61461067157600080fd5b8063313ce567116102195780636d77ecd1116101d25780636d77ecd11461050757806370a0823114610527578063715018a61461055d578063751039fc146105725780637571336a1461058757806382247ec0146105a757600080fd5b8063313ce56714610430578063339578fe1461044c57806339509351146104615780634b94f50e146104815780634fbee19314610496578063583e0568146104cf57600080fd5b8063203e727e1161026b578063203e727e1461037b578063224290851461039b57806323b872dd146103bb57806323bf4c86146103db57806327f4d7d5146103fb5780632fd689e31461041a57600080fd5b806304beaeb8146102be57806306fdde03146102e7578063095ea7b31461030957806312b77e8a1461033957806318160ddd14610350578063199ffc721461036557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600b5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc6108d2565b6040516102de919061291b565b34801561031557600080fd5b5061032961032436600461297e565b610964565b60405190151581526020016102de565b34801561034557600080fd5b5061034e61097e565b005b34801561035c57600080fd5b506002546102d4565b34801561037157600080fd5b506102d460195481565b34801561038757600080fd5b5061034e6103963660046129aa565b610a14565b3480156103a757600080fd5b5061034e6103b63660046129c3565b610af1565b3480156103c757600080fd5b506103296103d63660046129ef565b610b99565b3480156103e757600080fd5b5061034e6103f6366004612a30565b610bbd565b34801561040757600080fd5b50600e5461032990610100900460ff1681565b34801561042657600080fd5b506102d4600c5481565b34801561043c57600080fd5b50604051601281526020016102de565b34801561045857600080fd5b5061034e610c13565b34801561046d57600080fd5b5061032961047c36600461297e565b610c44565b34801561048d57600080fd5b506102d4610c66565b3480156104a257600080fd5b506103296104b1366004612a30565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104db57600080fd5b506006546104ef906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561051357600080fd5b50601d546104ef906001600160a01b031681565b34801561053357600080fd5b506102d4610542366004612a30565b6001600160a01b031660009081526020819052604090205490565b34801561056957600080fd5b5061034e610fab565b34801561057e57600080fd5b50610329610fe1565b34801561059357600080fd5b5061034e6105a2366004612a4d565b61101e565b3480156105b357600080fd5b506102d4600d5481565b3480156105c957600080fd5b5061034e611073565b3480156105de57600080fd5b506005546001600160a01b03166104ef565b3480156105fc57600080fd5b506106056110b2565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a0016102de565b34801561064857600080fd5b5061034e610657366004612a30565b61114e565b34801561066857600080fd5b506102fc61119a565b34801561067d57600080fd5b5061034e61068c366004612a4d565b6111a9565b34801561069d57600080fd5b506007546104ef906001600160a01b031681565b3480156106bd57600080fd5b506103296106cc366004612a8b565b61129d565b3480156106dd57600080fd5b506103296106ec36600461297e565b61139b565b3480156106fd57600080fd5b5061032961070c36600461297e565b611416565b34801561071d57600080fd5b5061034e611424565b34801561073257600080fd5b506102d4610741366004612a30565b600f6020526000908152604090205481565b34801561075f57600080fd5b5061032961076e366004612a30565b601f6020526000908152604090205460ff1681565b34801561078f57600080fd5b5061034e61079e366004612a4d565b611455565b3480156107af57600080fd5b5061034e6107be3660046129aa565b6114de565b3480156107cf57600080fd5b5061034e6115af565b3480156107e457600080fd5b5061034e6107f3366004612a30565b611648565b34801561080457600080fd5b506103296108133660046129aa565b611694565b34801561082457600080fd5b5061034e6117eb565b34801561083957600080fd5b506102d4610848366004612a8b565b611882565b34801561085957600080fd5b5061034e6118ad565b34801561086e57600080fd5b50600e546103299060ff1681565b34801561088857600080fd5b5061034e610897366004612a30565b6118f0565b3480156108a857600080fd5b506102d460105481565b3480156108be57600080fd5b5061034e6108cd3660046129aa565b611988565b6060600380546108e190612ab9565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612ab9565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000336109728185856119ca565b60019150505b92915050565b6005546001600160a01b031633146109b15760405162461bcd60e51b81526004016109a890612af3565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109fe576040519150601f19603f3d011682016040523d82523d6000602084013e610a03565b606091505b5050905080610a1157600080fd5b50565b6005546001600160a01b03163314610a3e5760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e8610a5360025490565b610a5e906001612b3e565b610a689190612b55565b610a729190612b55565b811015610ad95760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109a8565b610aeb81670de0b6b3a7640000612b3e565b600b5550565b6005546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016109a890612af3565b60118390556013829055601281905580610b358385612b77565b610b3f9190612b77565b6010819055600a1015610b945760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016109a8565b505050565b600033610ba7858285611aee565b610bb2858585611b68565b506001949350505050565b6005546001600160a01b03163314610be75760405162461bcd60e51b81526004016109a890612af3565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016109a890612af3565b6000601555565b600033610972818585610c578383611882565b610c619190612b77565b6119ca565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612b8a565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612b8a565b600854600e546201000090046001600160a01b03166000908152600f602052604090205491925010610d8c57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e069190612bbe565b50601e54601d5492945090925090600160a01b900460ff1615610e8d57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612c28565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef19190612c78565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f569190612c78565b610f649060ff16600a612d7f565b610f77846001600160701b038716612b3e565b610f819190612b3e565b610f8b9190612b55565b9050610fa06001600160701b03851682612b55565b965050505050505090565b6005546001600160a01b03163314610fd55760405162461bcd60e51b81526004016109a890612af3565b610fdf60006120a1565b565b6005546000906001600160a01b0316331461100e5760405162461bcd60e51b81526004016109a890612af3565b50600e805460ff19169055600190565b6005546001600160a01b031633146110485760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461109d5760405162461bcd60e51b81526004016109a890612af3565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111389190612c28565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146111785760405162461bcd60e51b81526004016109a890612af3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546108e190612ab9565b6005546001600160a01b031633146111d35760405162461bcd60e51b81526004016109a890612af3565b6007546001600160a01b03908116908316036112575760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109a8565b61126182826120f3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b0385811691161480156112cd57506006546001600160a01b03848116911614155b90508080156112f457506001600160a01b0383166000908152601a602052604090205460ff165b156112fe57426008555b6001600160a01b0384166000908152601a602052604081205460ff168061133d57506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b038581169116146000838061135c5750815b60105490915015801590819061137c5750600754600160a01b900460ff16155b8015611386575083155b801561138f5750815b98975050505050505050565b600033816113a98286611882565b9050838110156114095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109a8565b610bb282868684036119ca565b600033610972818585611b68565b6005546001600160a01b0316331461144e5760405162461bcd60e51b81526004016109a890612af3565b6000601455565b6005546001600160a01b0316331461147f5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115085760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e861151d60025490565b611528906005612b3e565b6115329190612b55565b61153c9190612b55565b8110156115975760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109a8565b6115a981670de0b6b3a7640000612b3e565b600d5550565b6005546001600160a01b031633146115d95760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff16156116335760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c65640000000060448201526064016109a8565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146116725760405162461bcd60e51b81526004016109a890612af3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146116c15760405162461bcd60e51b81526004016109a890612af3565b620186a06116ce60025490565b6116d9906001612b3e565b6116e39190612b55565b8210156117505760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109a8565b6103e861175c60025490565b611767906005612b3e565b6117719190612b55565b8211156117dd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109a8565b50600c81905560015b919050565b6005546001600160a01b031633146118155760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff1615156001146118735760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c656400000060448201526064016109a8565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146118d75760405162461bcd60e51b81526004016109a890612af3565b306000908152602081905260409020546109b190612121565b6005546001600160a01b0316331461191a5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03811661197f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b610a11816120a1565b6005546001600160a01b031633146119b25760405162461bcd60e51b81526004016109a890612af3565b6119c481670de0b6b3a764000061227b565b601e5550565b6001600160a01b038316611a2c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109a8565b6001600160a01b038216611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611afa8484611882565b90506000198114611b625781811015611b555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109a8565b611b6284848484036119ca565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ba757506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611bcf5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b038316611bf55760405162461bcd60e51b81526004016109a890612dd0565b81600003611c0957611b628484600061228e565b6007546000906001600160a01b038681169116148015611c4257506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611c7e57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611c946005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611cc057506005546001600160a01b038781169116145b905060006001600160a01b0387161580611ce457506001600160a01b03871661dead145b905060008280611cf15750815b80611d055750600754600160a01b900460ff165b600e5490915060ff168015611d18575080155b15611f1057600e54610100900460ff1680611d305750855b611d755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109a8565b8415611e5a57600b54871115611deb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109a8565b600d546001600160a01b038916600090815260208190526040902054611e119089612b77565b1115611e555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b611f10565b83611f10576001600160a01b0388166000908152601b602052604090205460ff16158015611ea157506001600160a01b0389166000908152601b602052604090205460ff16155b15611f1057600d546001600160a01b038916600090815260208190526040902054611ecc9089612b77565b1115611f105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b6001600160a01b0389166000908152601f602052604090205460ff1615611f71576001600160a01b0388166000908152600f60205260408120549003611f6c576001600160a01b0388166000908152600f602052604090204290555b611fa5565b600754600160a01b900460ff16611fa557600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff16158015611fd857506001600160a01b0389166000908152601f602052604090205460ff16155b8015611ffd57506001600160a01b0389166000908152601a602052604090205460ff16155b801561202257506001600160a01b0388166000908152601a602052604090205460ff16155b156120895730600090815260208190526040902054600c548110156120456123e2565b801561204e5750805b8015612058575087155b15612086576007805460ff60a01b1916600160a01b1790556120786123fe565b6007805460ff60a01b191690555b50505b612096898989878961263d565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff1916821515179055611261828261101e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061215657612156612e13565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d39190612b8a565b816001815181106121e6576121e6612e13565b6001600160a01b03928316602091820292909201015260065461220c91309116846119ca565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612245908590600090869030904290600401612e29565b600060405180830381600087803b15801561225f57600080fd5b505af1158015612273573d6000803e3d6000fd5b505050505050565b60006122878284612b3e565b9392505050565b6001600160a01b0383166122b45760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166122da5760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038316600090815260208190526040902054818110156123525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109a8565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612389908490612b77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d591815260200190565b60405180910390a3611b62565b6000806123ed610c66565b116123f85750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546124259190612b77565b61242f9190612b77565b905081158061243c575080155b15612445575050565b600c5482111561245557600c5491505b6000600282601854856124689190612b3e565b6124729190612b55565b61247c9190612b55565b9050600061248a84836127b0565b90504761249682612121565b60006124a247836127b0565b905060006124c5866124bf6016548561227b90919063ffffffff16565b906127bc565b905060006124e2876124bf6017548661227b90919063ffffffff16565b90506000816124f18486612e9a565b6124fb9190612e9a565b905060008711801561250d5750600081115b156125605761251c87826127c8565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50509050806125d057600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d806000811461261d576040519150601f19603f3d011682016040523d82523d6000602084013e612622565b606091505b505090508061263057600080fd5b5050505050505050505050565b6000612649868661129d565b6001600160a01b0387166000908152601a602052604090205490915060ff161561267e57612678868686612896565b506127a9565b801561279e5760105460115484156126b5576014546010546126a09190612b77565b91506014546011546126b29190612b77565b90505b83156126e0576015546010546126cb9190612b77565b91506015546011546126dd9190612b77565b90505b60006126f160646124bf898661227b565b905082601254826127029190612b3e565b61270c9190612b55565b6018600082825461271d9190612b77565b9091555083905061272e8383612b3e565b6127389190612b55565b601660008282546127499190612b77565b9091555050601354839061275d9083612b3e565b6127679190612b55565b601760008282546127789190612b77565b9091555050801561278e5761278e89308361228e565b6127988188612e9a565b96505050505b61227386868661228e565b5050505050565b60006122878284612e9a565b60006122878284612b55565b6006546127e09030906001600160a01b0316846119ca565b6006546001600160a01b031663f305d7198230856000806128096005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612871573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a99190612ead565b6001600160a01b0383166128bc5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166128e25760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038084166000908152602081905260408082208054858103909155928516825281208054849290612389908490612b77565b600060208083528351808285015260005b818110156129485785810183015185820160400152820161292c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1157600080fd5b6000806040838503121561299157600080fd5b823561299c81612969565b946020939093013593505050565b6000602082840312156129bc57600080fd5b5035919050565b6000806000606084860312156129d857600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612a0457600080fd5b8335612a0f81612969565b92506020840135612a1f81612969565b929592945050506040919091013590565b600060208284031215612a4257600080fd5b813561228781612969565b60008060408385031215612a6057600080fd5b8235612a6b81612969565b915060208301358015158114612a8057600080fd5b809150509250929050565b60008060408385031215612a9e57600080fd5b8235612aa981612969565b91506020830135612a8081612969565b600181811c90821680612acd57607f821691505b602082108103612aed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097857610978612b28565b600082612b7257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097857610978612b28565b600060208284031215612b9c57600080fd5b815161228781612969565b80516001600160701b03811681146117e657600080fd5b600080600060608486031215612bd357600080fd5b612bdc84612ba7565b9250612bea60208501612ba7565b9150604084015163ffffffff81168114612c0357600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146117e657600080fd5b600080600080600060a08688031215612c4057600080fd5b612c4986612c0e565b9450602086015193506040860151925060608601519150612c6c60808701612c0e565b90509295509295909350565b600060208284031215612c8a57600080fd5b815160ff8116811461228757600080fd5b600181815b80851115612cd6578160001904821115612cbc57612cbc612b28565b80851615612cc957918102915b93841c9390800290612ca0565b509250929050565b600082612ced57506001610978565b81612cfa57506000610978565b8160018114612d105760028114612d1a57612d36565b6001915050610978565b60ff841115612d2b57612d2b612b28565b50506001821b610978565b5060208310610133831016604e8410600b8410161715612d59575081810a610978565b612d638383612c9b565b8060001904821115612d7757612d77612b28565b029392505050565b60006122878383612cde565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e795784516001600160a01b031683529383019391830191600101612e54565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561097857610978612b28565b600080600060608486031215612ec257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122076921411bf491eea086de676b876091461a3239f9f0840cdcf81b5c03e95f02164736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102b25760003560e01c80638a8c523c11610175578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd14610862578063f2fde38b1461087c578063fea4fa4d1461089c578063fefa5ce3146108b257600080fd5b8063dd1e1ca914610818578063dd62ed3e1461082d578063df778d261461084d57600080fd5b8063b62496f514610753578063c024666814610783578063c18bc195146107a3578063c862c28b146107c3578063cb94a370146107d8578063d257b34f146107f857600080fd5b80639c74daf01161012e5780639c74daf014610691578063a1cd15e8146106b1578063a457c2d7146106d1578063a9059cbb146106f1578063ae76b09014610711578063b1d920851461072657600080fd5b80638a8c523c146105bd5780638da5cb5b146105d25780638e15f473146105f05780638e1a9efb1461063c57806395d89b411461065c5780639a7a23d61461067157600080fd5b8063313ce567116102195780636d77ecd1116101d25780636d77ecd11461050757806370a0823114610527578063715018a61461055d578063751039fc146105725780637571336a1461058757806382247ec0146105a757600080fd5b8063313ce56714610430578063339578fe1461044c57806339509351146104615780634b94f50e146104815780634fbee19314610496578063583e0568146104cf57600080fd5b8063203e727e1161026b578063203e727e1461037b578063224290851461039b57806323b872dd146103bb57806323bf4c86146103db57806327f4d7d5146103fb5780632fd689e31461041a57600080fd5b806304beaeb8146102be57806306fdde03146102e7578063095ea7b31461030957806312b77e8a1461033957806318160ddd14610350578063199ffc721461036557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600b5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc6108d2565b6040516102de919061291b565b34801561031557600080fd5b5061032961032436600461297e565b610964565b60405190151581526020016102de565b34801561034557600080fd5b5061034e61097e565b005b34801561035c57600080fd5b506002546102d4565b34801561037157600080fd5b506102d460195481565b34801561038757600080fd5b5061034e6103963660046129aa565b610a14565b3480156103a757600080fd5b5061034e6103b63660046129c3565b610af1565b3480156103c757600080fd5b506103296103d63660046129ef565b610b99565b3480156103e757600080fd5b5061034e6103f6366004612a30565b610bbd565b34801561040757600080fd5b50600e5461032990610100900460ff1681565b34801561042657600080fd5b506102d4600c5481565b34801561043c57600080fd5b50604051601281526020016102de565b34801561045857600080fd5b5061034e610c13565b34801561046d57600080fd5b5061032961047c36600461297e565b610c44565b34801561048d57600080fd5b506102d4610c66565b3480156104a257600080fd5b506103296104b1366004612a30565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104db57600080fd5b506006546104ef906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561051357600080fd5b50601d546104ef906001600160a01b031681565b34801561053357600080fd5b506102d4610542366004612a30565b6001600160a01b031660009081526020819052604090205490565b34801561056957600080fd5b5061034e610fab565b34801561057e57600080fd5b50610329610fe1565b34801561059357600080fd5b5061034e6105a2366004612a4d565b61101e565b3480156105b357600080fd5b506102d4600d5481565b3480156105c957600080fd5b5061034e611073565b3480156105de57600080fd5b506005546001600160a01b03166104ef565b3480156105fc57600080fd5b506106056110b2565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a0016102de565b34801561064857600080fd5b5061034e610657366004612a30565b61114e565b34801561066857600080fd5b506102fc61119a565b34801561067d57600080fd5b5061034e61068c366004612a4d565b6111a9565b34801561069d57600080fd5b506007546104ef906001600160a01b031681565b3480156106bd57600080fd5b506103296106cc366004612a8b565b61129d565b3480156106dd57600080fd5b506103296106ec36600461297e565b61139b565b3480156106fd57600080fd5b5061032961070c36600461297e565b611416565b34801561071d57600080fd5b5061034e611424565b34801561073257600080fd5b506102d4610741366004612a30565b600f6020526000908152604090205481565b34801561075f57600080fd5b5061032961076e366004612a30565b601f6020526000908152604090205460ff1681565b34801561078f57600080fd5b5061034e61079e366004612a4d565b611455565b3480156107af57600080fd5b5061034e6107be3660046129aa565b6114de565b3480156107cf57600080fd5b5061034e6115af565b3480156107e457600080fd5b5061034e6107f3366004612a30565b611648565b34801561080457600080fd5b506103296108133660046129aa565b611694565b34801561082457600080fd5b5061034e6117eb565b34801561083957600080fd5b506102d4610848366004612a8b565b611882565b34801561085957600080fd5b5061034e6118ad565b34801561086e57600080fd5b50600e546103299060ff1681565b34801561088857600080fd5b5061034e610897366004612a30565b6118f0565b3480156108a857600080fd5b506102d460105481565b3480156108be57600080fd5b5061034e6108cd3660046129aa565b611988565b6060600380546108e190612ab9565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612ab9565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000336109728185856119ca565b60019150505b92915050565b6005546001600160a01b031633146109b15760405162461bcd60e51b81526004016109a890612af3565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109fe576040519150601f19603f3d011682016040523d82523d6000602084013e610a03565b606091505b5050905080610a1157600080fd5b50565b6005546001600160a01b03163314610a3e5760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e8610a5360025490565b610a5e906001612b3e565b610a689190612b55565b610a729190612b55565b811015610ad95760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109a8565b610aeb81670de0b6b3a7640000612b3e565b600b5550565b6005546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016109a890612af3565b60118390556013829055601281905580610b358385612b77565b610b3f9190612b77565b6010819055600a1015610b945760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016109a8565b505050565b600033610ba7858285611aee565b610bb2858585611b68565b506001949350505050565b6005546001600160a01b03163314610be75760405162461bcd60e51b81526004016109a890612af3565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016109a890612af3565b6000601555565b600033610972818585610c578383611882565b610c619190612b77565b6119ca565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612b8a565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612b8a565b600854600e546201000090046001600160a01b03166000908152600f602052604090205491925010610d8c57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e069190612bbe565b50601e54601d5492945090925090600160a01b900460ff1615610e8d57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612c28565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef19190612c78565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f569190612c78565b610f649060ff16600a612d7f565b610f77846001600160701b038716612b3e565b610f819190612b3e565b610f8b9190612b55565b9050610fa06001600160701b03851682612b55565b965050505050505090565b6005546001600160a01b03163314610fd55760405162461bcd60e51b81526004016109a890612af3565b610fdf60006120a1565b565b6005546000906001600160a01b0316331461100e5760405162461bcd60e51b81526004016109a890612af3565b50600e805460ff19169055600190565b6005546001600160a01b031633146110485760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461109d5760405162461bcd60e51b81526004016109a890612af3565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111389190612c28565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146111785760405162461bcd60e51b81526004016109a890612af3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546108e190612ab9565b6005546001600160a01b031633146111d35760405162461bcd60e51b81526004016109a890612af3565b6007546001600160a01b03908116908316036112575760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109a8565b61126182826120f3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b0385811691161480156112cd57506006546001600160a01b03848116911614155b90508080156112f457506001600160a01b0383166000908152601a602052604090205460ff165b156112fe57426008555b6001600160a01b0384166000908152601a602052604081205460ff168061133d57506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b038581169116146000838061135c5750815b60105490915015801590819061137c5750600754600160a01b900460ff16155b8015611386575083155b801561138f5750815b98975050505050505050565b600033816113a98286611882565b9050838110156114095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109a8565b610bb282868684036119ca565b600033610972818585611b68565b6005546001600160a01b0316331461144e5760405162461bcd60e51b81526004016109a890612af3565b6000601455565b6005546001600160a01b0316331461147f5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115085760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e861151d60025490565b611528906005612b3e565b6115329190612b55565b61153c9190612b55565b8110156115975760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109a8565b6115a981670de0b6b3a7640000612b3e565b600d5550565b6005546001600160a01b031633146115d95760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff16156116335760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c65640000000060448201526064016109a8565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146116725760405162461bcd60e51b81526004016109a890612af3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146116c15760405162461bcd60e51b81526004016109a890612af3565b620186a06116ce60025490565b6116d9906001612b3e565b6116e39190612b55565b8210156117505760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109a8565b6103e861175c60025490565b611767906005612b3e565b6117719190612b55565b8211156117dd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109a8565b50600c81905560015b919050565b6005546001600160a01b031633146118155760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff1615156001146118735760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c656400000060448201526064016109a8565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146118d75760405162461bcd60e51b81526004016109a890612af3565b306000908152602081905260409020546109b190612121565b6005546001600160a01b0316331461191a5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03811661197f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b610a11816120a1565b6005546001600160a01b031633146119b25760405162461bcd60e51b81526004016109a890612af3565b6119c481670de0b6b3a764000061227b565b601e5550565b6001600160a01b038316611a2c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109a8565b6001600160a01b038216611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611afa8484611882565b90506000198114611b625781811015611b555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109a8565b611b6284848484036119ca565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ba757506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611bcf5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b038316611bf55760405162461bcd60e51b81526004016109a890612dd0565b81600003611c0957611b628484600061228e565b6007546000906001600160a01b038681169116148015611c4257506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611c7e57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611c946005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611cc057506005546001600160a01b038781169116145b905060006001600160a01b0387161580611ce457506001600160a01b03871661dead145b905060008280611cf15750815b80611d055750600754600160a01b900460ff165b600e5490915060ff168015611d18575080155b15611f1057600e54610100900460ff1680611d305750855b611d755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109a8565b8415611e5a57600b54871115611deb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109a8565b600d546001600160a01b038916600090815260208190526040902054611e119089612b77565b1115611e555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b611f10565b83611f10576001600160a01b0388166000908152601b602052604090205460ff16158015611ea157506001600160a01b0389166000908152601b602052604090205460ff16155b15611f1057600d546001600160a01b038916600090815260208190526040902054611ecc9089612b77565b1115611f105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b6001600160a01b0389166000908152601f602052604090205460ff1615611f71576001600160a01b0388166000908152600f60205260408120549003611f6c576001600160a01b0388166000908152600f602052604090204290555b611fa5565b600754600160a01b900460ff16611fa557600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff16158015611fd857506001600160a01b0389166000908152601f602052604090205460ff16155b8015611ffd57506001600160a01b0389166000908152601a602052604090205460ff16155b801561202257506001600160a01b0388166000908152601a602052604090205460ff16155b156120895730600090815260208190526040902054600c548110156120456123e2565b801561204e5750805b8015612058575087155b15612086576007805460ff60a01b1916600160a01b1790556120786123fe565b6007805460ff60a01b191690555b50505b612096898989878961263d565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff1916821515179055611261828261101e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061215657612156612e13565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d39190612b8a565b816001815181106121e6576121e6612e13565b6001600160a01b03928316602091820292909201015260065461220c91309116846119ca565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612245908590600090869030904290600401612e29565b600060405180830381600087803b15801561225f57600080fd5b505af1158015612273573d6000803e3d6000fd5b505050505050565b60006122878284612b3e565b9392505050565b6001600160a01b0383166122b45760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166122da5760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038316600090815260208190526040902054818110156123525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109a8565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612389908490612b77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d591815260200190565b60405180910390a3611b62565b6000806123ed610c66565b116123f85750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546124259190612b77565b61242f9190612b77565b905081158061243c575080155b15612445575050565b600c5482111561245557600c5491505b6000600282601854856124689190612b3e565b6124729190612b55565b61247c9190612b55565b9050600061248a84836127b0565b90504761249682612121565b60006124a247836127b0565b905060006124c5866124bf6016548561227b90919063ffffffff16565b906127bc565b905060006124e2876124bf6017548661227b90919063ffffffff16565b90506000816124f18486612e9a565b6124fb9190612e9a565b905060008711801561250d5750600081115b156125605761251c87826127c8565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50509050806125d057600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d806000811461261d576040519150601f19603f3d011682016040523d82523d6000602084013e612622565b606091505b505090508061263057600080fd5b5050505050505050505050565b6000612649868661129d565b6001600160a01b0387166000908152601a602052604090205490915060ff161561267e57612678868686612896565b506127a9565b801561279e5760105460115484156126b5576014546010546126a09190612b77565b91506014546011546126b29190612b77565b90505b83156126e0576015546010546126cb9190612b77565b91506015546011546126dd9190612b77565b90505b60006126f160646124bf898661227b565b905082601254826127029190612b3e565b61270c9190612b55565b6018600082825461271d9190612b77565b9091555083905061272e8383612b3e565b6127389190612b55565b601660008282546127499190612b77565b9091555050601354839061275d9083612b3e565b6127679190612b55565b601760008282546127789190612b77565b9091555050801561278e5761278e89308361228e565b6127988188612e9a565b96505050505b61227386868661228e565b5050505050565b60006122878284612e9a565b60006122878284612b55565b6006546127e09030906001600160a01b0316846119ca565b6006546001600160a01b031663f305d7198230856000806128096005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612871573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a99190612ead565b6001600160a01b0383166128bc5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166128e25760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038084166000908152602081905260408082208054858103909155928516825281208054849290612389908490612b77565b600060208083528351808285015260005b818110156129485785810183015185820160400152820161292c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1157600080fd5b6000806040838503121561299157600080fd5b823561299c81612969565b946020939093013593505050565b6000602082840312156129bc57600080fd5b5035919050565b6000806000606084860312156129d857600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612a0457600080fd5b8335612a0f81612969565b92506020840135612a1f81612969565b929592945050506040919091013590565b600060208284031215612a4257600080fd5b813561228781612969565b60008060408385031215612a6057600080fd5b8235612a6b81612969565b915060208301358015158114612a8057600080fd5b809150509250929050565b60008060408385031215612a9e57600080fd5b8235612aa981612969565b91506020830135612a8081612969565b600181811c90821680612acd57607f821691505b602082108103612aed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097857610978612b28565b600082612b7257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097857610978612b28565b600060208284031215612b9c57600080fd5b815161228781612969565b80516001600160701b03811681146117e657600080fd5b600080600060608486031215612bd357600080fd5b612bdc84612ba7565b9250612bea60208501612ba7565b9150604084015163ffffffff81168114612c0357600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146117e657600080fd5b600080600080600060a08688031215612c4057600080fd5b612c4986612c0e565b9450602086015193506040860151925060608601519150612c6c60808701612c0e565b90509295509295909350565b600060208284031215612c8a57600080fd5b815160ff8116811461228757600080fd5b600181815b80851115612cd6578160001904821115612cbc57612cbc612b28565b80851615612cc957918102915b93841c9390800290612ca0565b509250929050565b600082612ced57506001610978565b81612cfa57506000610978565b8160018114612d105760028114612d1a57612d36565b6001915050610978565b60ff841115612d2b57612d2b612b28565b50506001821b610978565b5060208310610133831016604e8410600b8410161715612d59575081810a610978565b612d638383612c9b565b8060001904821115612d7757612d77612b28565b029392505050565b60006122878383612cde565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e795784516001600160a01b031683529383019391830191600101612e54565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561097857610978612b28565b600080600060608486031215612ec257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122076921411bf491eea086de676b876091461a3239f9f0840cdcf81b5c03e95f02164736f6c63430008110033
Deployed Bytecode Sourcemap
38454:16624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38760:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38760:36:0;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28677:242::-;;;;;;;;;;-1:-1:-1;28677:242:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28677:242:0;1205:187:1;52201:167:0;;;;;;;;;;;;;:::i;:::-;;27305:108;;;;;;;;;;-1:-1:-1;27393:12:0;;27305:108;;39399:35;;;;;;;;;;;;;;;;45289:272;;;;;;;;;;-1:-1:-1;45289:272:0;;;;;:::i;:::-;;:::i;46005:410::-;;;;;;;;;;-1:-1:-1;46005:410:0;;;;;:::i;:::-;;:::i;29499:295::-;;;;;;;;;;-1:-1:-1;29499:295:0;;;;;:::i;:::-;;:::i;51430:168::-;;;;;;;;;;-1:-1:-1;51430:168:0;;;;;:::i;:::-;;:::i;38917:34::-;;;;;;;;;;-1:-1:-1;38917:34:0;;;;;;;;;;;38803;;;;;;;;;;;;;;;;27147:93;;;;;;;;;;-1:-1:-1;27147:93:0;;27230:2;2758:36:1;;2746:2;2731:18;27147:93:0;2616:184:1;51205:91:0;;;;;;;;;;;;;:::i;30203:270::-;;;;;;;;;;-1:-1:-1;30203:270:0;;;;;:::i;:::-;;:::i;42872:811::-;;;;;;;;;;;;;:::i;50970:126::-;;;;;;;;;;-1:-1:-1;50970:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;51060:28:0;51036:4;51060:28;;;:19;:28;;;;;;;;;50970:126;38531:42;;;;;;;;;;-1:-1:-1;38531:42:0;;;;-1:-1:-1;;;;;38531:42:0;;;;;;-1:-1:-1;;;;;2995:32:1;;;2977:51;;2965:2;2950:18;38531:42:0;2805:229:1;39621:177:0;;;;;;;;;;-1:-1:-1;39621:177:0;;;;-1:-1:-1;;;;;39621:177:0;;;27476;;;;;;;;;;-1:-1:-1;27476:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;27627:18:0;27595:7;27627:18;;;;;;;;;;;;27476:177;22807:103;;;;;;;;;;;;;:::i;42618:122::-;;;;;;;;;;;;;:::i;45830:167::-;;;;;;;;;;-1:-1:-1;45830:167:0;;;;;:::i;:::-;;:::i;38844:25::-;;;;;;;;;;;;;;;;41935:123;;;;;;;;;;;;;:::i;22156:87::-;;;;;;;;;;-1:-1:-1;22229:6:0;;-1:-1:-1;;;;;22229:6:0;22156:87;;43691:491;;;;;;;;;;;;;:::i;:::-;;;;3931:22:1;3980:15;;;3962:34;;4027:2;4012:18;;4005:34;;;;4055:18;;4048:34;;;;4113:2;4098:18;;4091:34;4162:15;;;4156:3;4141:19;;4134:44;3908:3;3893:19;43691:491:0;3668:516:1;46733:116:0;;;;;;;;;;-1:-1:-1;46733:116:0;;;;;:::i;:::-;;:::i;26404:104::-;;;;;;;;;;;;;:::i;42066:301::-;;;;;;;;;;-1:-1:-1;42066:301:0;;;;;:::i;:::-;;:::i;38580:29::-;;;;;;;;;;-1:-1:-1;38580:29:0;;;;-1:-1:-1;;;;;38580:29:0;;;44190:585;;;;;;;;;;-1:-1:-1;44190:585:0;;;;;:::i;:::-;;:::i;30976:505::-;;;;;;;;;;-1:-1:-1;30976:505:0;;;;;:::i;:::-;;:::i;27859:234::-;;;;;;;;;;-1:-1:-1;27859:234:0;;;;;:::i;:::-;;:::i;51104:93::-;;;;;;;;;;;;;:::i;38991:50::-;;;;;;;;;;-1:-1:-1;38991:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;39903:58;;;;;;;;;;-1:-1:-1;39903:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46423:182;;;;;;;;;;-1:-1:-1;46423:182:0;;;;;:::i;:::-;;:::i;45569:253::-;;;;;;;;;;-1:-1:-1;45569:253:0;;;;;:::i;:::-;;:::i;51606:173::-;;;;;;;;;;;;;:::i;46613:112::-;;;;;;;;;;-1:-1:-1;46613:112:0;;;;;:::i;:::-;;:::i;44783:498::-;;;;;;;;;;-1:-1:-1;44783:498:0;;;;;:::i;:::-;;:::i;51787:175::-;;;;;;;;;;;;;:::i;28156:201::-;;;;;;;;;;-1:-1:-1;28156:201:0;;;;;:::i;:::-;;:::i;51970:223::-;;;;;;;;;;;;;:::i;38876:34::-;;;;;;;;;;-1:-1:-1;38876:34:0;;;;;;;;23065:238;;;;;;;;;;-1:-1:-1;23065:238:0;;;;;:::i;:::-;;:::i;39048:25::-;;;;;;;;;;;;;;;;51304:118;;;;;;;;;;-1:-1:-1;51304:118:0;;;;;:::i;:::-;;:::i;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;28677:242::-;28796:4;767:10;28857:32;767:10;28873:7;28882:6;28857:8;:32::i;:::-;28907:4;28900:11;;;28677:242;;;;;:::o;52201:167::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;;;;;;;;;52278:14:::1;::::0;52270:63:::1;::::0;52253:12:::1;::::0;-1:-1:-1;;;;;52278:14:0::1;::::0;52307:21:::1;::::0;52253:12;52270:63;52253:12;52270:63;52307:21;52278:14;52270:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52252:81;;;52352:7;52344:16;;;::::0;::::1;;52241:127;52201:167::o:0;45289:272::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;45426:4:::1;45418;45397:13;27393:12:::0;;;27305:108;45397:13:::1;:17;::::0;45413:1:::1;45397:17;:::i;:::-;45396:26;;;;:::i;:::-;45395:35;;;;:::i;:::-;45385:6;:45;;45363:142;;;::::0;-1:-1:-1;;;45363:142:0;;6267:2:1;45363:142:0::1;::::0;::::1;6249:21:1::0;6306:2;6286:18;;;6279:30;6345:34;6325:18;;;6318:62;-1:-1:-1;;;6396:18:1;;;6389:45;6451:19;;45363:142:0::1;6065:411:1::0;45363:142:0::1;45540:13;:6:::0;45549:4:::1;45540:13;:::i;:::-;45516:21;:37:::0;-1:-1:-1;45289:272:0:o;46005:410::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;46157:13:::1;:28:::0;;;46196:15:::1;:32:::0;;;46239:13:::1;:28:::0;;;46255:12;46291:31:::1;46214:14:::0;46173:12;46291:31:::1;:::i;:::-;:47;;;;:::i;:::-;46278:10;:60:::0;;;46371:2:::1;-1:-1:-1::0;46357:16:0::1;46349:58;;;::::0;-1:-1:-1;;;46349:58:0;;6813:2:1;46349:58:0::1;::::0;::::1;6795:21:1::0;6852:2;6832:18;;;6825:30;6891:31;6871:18;;;6864:59;6940:18;;46349:58:0::1;6611:353:1::0;46349:58:0::1;46005:410:::0;;;:::o;29499:295::-;29630:4;767:10;29688:38;29704:4;767:10;29719:6;29688:15;:38::i;:::-;29737:27;29747:4;29753:2;29757:6;29737:9;:27::i;:::-;-1:-1:-1;29782:4:0;;29499:295;-1:-1:-1;;;;29499:295:0:o;51430:168::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;51505:16:::1;:23:::0;;-1:-1:-1;;;;;51505:23:0;;::::1;-1:-1:-1::0;;;;;;51505:23:0;;::::1;::::0;::::1;::::0;;;51539:9:::1;:51:::0;;;;::::1;;::::0;;51430:168::o;51205:91::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;51287:1:::1;51267:17;:21:::0;51205:91::o;30203:270::-;30318:4;767:10;30379:64;767:10;30395:7;30432:10;30404:25;767:10;30395:7;30404:9;:25::i;:::-;:38;;;;:::i;:::-;30379:8;:64::i;42872:811::-;42918:7;42938:21;43006:14;;;;;;;;;-1:-1:-1;;;;;43006:14:0;-1:-1:-1;;;;;42991:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42938:103;;43052:21;43120:14;;;;;;;;;-1:-1:-1;;;;;43120:14:0;-1:-1:-1;;;;;43105:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43204:12;;43190:10;;;;;-1:-1:-1;;;;;43190:10:0;43174:27;;;;:15;:27;;;;;;43052:103;;-1:-1:-1;;43166:51:0;;;;;;43229:12;43243;43276:14;;;;;;;;;-1:-1:-1;;;;;43276:14:0;-1:-1:-1;;;;;43261:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;43354:14:0;;43383:19;;43228:91;;-1:-1:-1;43228:91:0;;-1:-1:-1;43354:14:0;-1:-1:-1;;;43383:19:0;;;;43379:100;;;43446:4;-1:-1:-1;;;;;43446:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;43419:48:0;;-1:-1:-1;;;;43379:100:0;43489:12;43617:6;-1:-1:-1;;;;;43617:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43609:26;;43586:6;-1:-1:-1;;;;;43586:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43574:30;;43578:26;;43574:2;:30;:::i;:::-;43505:52;43542:14;-1:-1:-1;;;;;43505:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;43504:131;;;;:::i;:::-;43489:146;-1:-1:-1;43654:20:0;-1:-1:-1;;;;;43661:13:0;;43489:146;43654:20;:::i;:::-;43646:29;;;;;;;;42872:811;:::o;22807:103::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;22872:30:::1;22899:1;22872:18;:30::i;:::-;22807:103::o:0;42618:122::-;22229:6;;42670:4;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;-1:-1:-1;42687:15:0::1;:23:::0;;-1:-1:-1;;42687:23:0::1;::::0;;;42618:122;:::o;45830:167::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45943:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;45943:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45830:167::o;41935:123::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;41988:14:::1;:21:::0;;-1:-1:-1;;41988:21:0::1;;;::::0;;42035:15:::1;42020:12;:30:::0;41935:123::o;43691:491::-;43781:6;43802;43823:7;43845;43867:6;43916:14;43945:12;43972:17;44004;44036:22;44072:9;;;;;;;;;-1:-1:-1;;;;;44072:9:0;-1:-1:-1;;;;;44072:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43901:198;;;;-1:-1:-1;43901:198:0;;-1:-1:-1;43901:198:0;-1:-1:-1;43901:198:0;;-1:-1:-1;43691:491:0;-1:-1:-1;;;;;;43691:491:0:o;46733:116::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;46813:16:::1;:28:::0;;-1:-1:-1;;;;;;46813:28:0::1;-1:-1:-1::0;;;;;46813:28:0;;;::::1;::::0;;;::::1;::::0;;46733:116::o;26404:104::-;26460:13;26493:7;26486:14;;;;;:::i;42066:301::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;42175:14:::1;::::0;-1:-1:-1;;;;;42175:14:0;;::::1;42167:22:::0;;::::1;::::0;42159:92:::1;;;::::0;-1:-1:-1;;;42159:92:0;;10389:2:1;42159:92:0::1;::::0;::::1;10371:21:1::0;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;10538:27;10518:18;;;10511:55;10583:19;;42159:92:0::1;10187:421:1::0;42159:92:0::1;42262:41;42291:4;42297:5;42262:28;:41::i;:::-;42319:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;42319:40:0;::::1;::::0;::::1;::::0;;;::::1;42066:301:::0;;:::o;44190:585::-;44291:14;;44253:4;;;;-1:-1:-1;;;;;44283:22:0;;;44291:14;;44283:22;:57;;;;-1:-1:-1;44323:16:0;;-1:-1:-1;;;;;44309:31:0;;;44323:16;;44309:31;;44283:57;44270:70;;44355:5;:32;;;;-1:-1:-1;;;;;;44364:23:0;;;;;;:19;:23;;;;;;;;44355:32;44351:68;;;44404:15;44389:12;:30;44351:68;-1:-1:-1;;;;;44455:25:0;;44430:22;44455:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44484:23:0;;;;;;:19;:23;;;;;;;;44455:52;44538:14;;44430:77;;-1:-1:-1;;;;;;44532:20:0;;;44538:14;;44532:20;44518:11;44578:5;;:15;;;44587:6;44578:15;44621:10;;44564:29;;-1:-1:-1;44621:14:0;;;;;;44670:39;;-1:-1:-1;44696:13:0;;-1:-1:-1;;;44696:13:0;;;;44695:14;44670:39;:74;;;;;44727:17;44726:18;44670:74;:97;;;;;44761:6;44670:97;44649:118;44190:585;-1:-1:-1;;;;;;;;44190:585:0:o;30976:505::-;31096:4;767:10;31096:4;31184:25;767:10;31201:7;31184:9;:25::i;:::-;31157:52;;31262:15;31242:16;:35;;31220:122;;;;-1:-1:-1;;;31220:122:0;;10815:2:1;31220:122:0;;;10797:21:1;10854:2;10834:18;;;10827:30;10893:34;10873:18;;;10866:62;-1:-1:-1;;;10944:18:1;;;10937:35;10989:19;;31220:122:0;10613:401:1;31220:122:0;31378:60;31387:5;31394:7;31422:15;31403:16;:34;31378:8;:60::i;27859:234::-;27974:4;767:10;28035:28;767:10;28052:2;28056:6;28035:9;:28::i;51104:93::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;51188:1:::1;51167:18;:22:::0;51104:93::o;46423:182::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46508:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46508:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46563:34;;1345:41:1;;;46563:34:0::1;::::0;1318:18:1;46563:34:0::1;;;;;;;46423:182:::0;;:::o;45569:253::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;45709:4:::1;45701;45680:13;27393:12:::0;;;27305:108;45680:13:::1;:17;::::0;45696:1:::1;45680:17;:::i;:::-;45679:26;;;;:::i;:::-;45678:35;;;;:::i;:::-;45668:6;:45;;45646:131;;;::::0;-1:-1:-1;;;45646:131:0;;11221:2:1;45646:131:0::1;::::0;::::1;11203:21:1::0;11260:2;11240:18;;;11233:30;11299:34;11279:18;;;11272:62;-1:-1:-1;;;11350:18:1;;;11343:34;11394:19;;45646:131:0::1;11019:400:1::0;45646:131:0::1;45801:13;:6:::0;45810:4:::1;45801:13;:::i;:::-;45788:10;:26:::0;-1:-1:-1;45569:253:0:o;51606:173::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;51673:19:::1;::::0;-1:-1:-1;;;51673:19:0;::::1;;;:28;51665:69;;;::::0;-1:-1:-1;;;51665:69:0;;11626:2:1;51665:69:0::1;::::0;::::1;11608:21:1::0;11665:2;11645:18;;;11638:30;11704;11684:18;;;11677:58;11752:18;;51665:69:0::1;11424:352:1::0;51665:69:0::1;51745:19;:26:::0;;-1:-1:-1;;;;51745:26:0::1;-1:-1:-1::0;;;51745:26:0::1;::::0;;51606:173::o;46613:112::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;46691:14:::1;:26:::0;;-1:-1:-1;;;;;;46691:26:0::1;-1:-1:-1::0;;;;;46691:26:0;;;::::1;::::0;;;::::1;::::0;;46613:112::o;44783:498::-;22229:6;;44891:4;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;44970:6:::1;44949:13;27393:12:::0;;;27305:108;44949:13:::1;:17;::::0;44965:1:::1;44949:17;:::i;:::-;44948:28;;;;:::i;:::-;44935:9;:41;;44913:144;;;::::0;-1:-1:-1;;;44913:144:0;;11983:2:1;44913:144:0::1;::::0;::::1;11965:21:1::0;12022:2;12002:18;;;11995:30;12061:34;12041:18;;;12034:62;-1:-1:-1;;;12112:18:1;;;12105:51;12173:19;;44913:144:0::1;11781:417:1::0;44913:144:0::1;45125:4;45104:13;27393:12:::0;;;27305:108;45104:13:::1;:17;::::0;45120:1:::1;45104:17;:::i;:::-;45103:26;;;;:::i;:::-;45090:9;:39;;45068:141;;;::::0;-1:-1:-1;;;45068:141:0;;12405:2:1;45068:141:0::1;::::0;::::1;12387:21:1::0;12444:2;12424:18;;;12417:30;12483:34;12463:18;;;12456:62;-1:-1:-1;;;12534:18:1;;;12527:50;12594:19;;45068:141:0::1;12203:416:1::0;45068:141:0::1;-1:-1:-1::0;45220:19:0::1;:31:::0;;;45269:4:::1;22447:1;44783:498:::0;;;:::o;51787:175::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;51855:19:::1;::::0;-1:-1:-1;;;51855:19:0;::::1;;;:27;;51878:4;51855:27;51847:69;;;::::0;-1:-1:-1;;;51847:69:0;;12826:2:1;51847:69:0::1;::::0;::::1;12808:21:1::0;12865:2;12845:18;;;12838:30;12904:31;12884:18;;;12877:59;12953:18;;51847:69:0::1;12624:353:1::0;51847:69:0::1;51927:19;:27:::0;;-1:-1:-1;;;;51927:27:0::1;::::0;;51787:175::o;28156:201::-;-1:-1:-1;;;;;28322:18:0;;;28290:7;28322:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28156:201::o;51970:223::-;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;52057:4:::1;27595:7:::0;27627:18;;;;;;;;;;;52021:43:::1;::::0;:17:::1;:43::i;23065:238::-:0;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23168:22:0;::::1;23146:110;;;::::0;-1:-1:-1;;;23146:110:0;;13184:2:1;23146:110:0::1;::::0;::::1;13166:21:1::0;13223:2;13203:18;;;13196:30;13262:34;13242:18;;;13235:62;-1:-1:-1;;;13313:18:1;;;13306:36;13359:19;;23146:110:0::1;12982:402:1::0;23146:110:0::1;23267:28;23286:8;23267:18;:28::i;51304:118::-:0;22229:6;;-1:-1:-1;;;;;22229:6:0;767:10;22376:23;22368:68;;;;-1:-1:-1;;;22368:68:0;;;;;;;:::i;:::-;51398:15:::1;:3:::0;51406:6:::1;51398:7;:15::i;:::-;51374:14;:40:::0;-1:-1:-1;51304:118:0:o;34607:380::-;-1:-1:-1;;;;;34743:19:0;;34735:68;;;;-1:-1:-1;;;34735:68:0;;13591:2:1;34735:68:0;;;13573:21:1;13630:2;13610:18;;;13603:30;13669:34;13649:18;;;13642:62;-1:-1:-1;;;13720:18:1;;;13713:34;13764:19;;34735:68:0;13389:400:1;34735:68:0;-1:-1:-1;;;;;34822:21:0;;34814:68;;;;-1:-1:-1;;;34814:68:0;;13996:2:1;34814:68:0;;;13978:21:1;14035:2;14015:18;;;14008:30;14074:34;14054:18;;;14047:62;-1:-1:-1;;;14125:18:1;;;14118:32;14167:19;;34814:68:0;13794:398:1;34814:68:0;-1:-1:-1;;;;;34895:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34947:32;;160:25:1;;;34947:32:0;;133:18:1;34947:32:0;;;;;;;34607:380;;;:::o;35278:502::-;35413:24;35440:25;35450:5;35457:7;35440:9;:25::i;:::-;35413:52;;-1:-1:-1;;35480:16:0;:37;35476:297;;35580:6;35560:16;:26;;35534:117;;;;-1:-1:-1;;;35534:117:0;;14399:2:1;35534:117:0;;;14381:21:1;14438:2;14418:18;;;14411:30;14477:31;14457:18;;;14450:59;14526:18;;35534:117:0;14197:353:1;35534:117:0;35695:51;35704:5;35711:7;35739:6;35720:16;:25;35695:8;:51::i;:::-;35402:378;35278:502;;;:::o;46857:2879::-;-1:-1:-1;;;;;47005:25:0;;46981:21;47005:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;47047:23:0;;;;;;:19;:23;;;;;;;;47005:65;46981:89;-1:-1:-1;;;;;;47091:18:0;;47083:68;;;;-1:-1:-1;;;47083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47170:16:0;;47162:64;;;;-1:-1:-1;;;47162:64:0;;;;;;;:::i;:::-;47243:6;47253:1;47243:11;47239:93;;47271:28;47287:4;47293:2;47297:1;47271:15;:28::i;47239:93::-;47365:14;;47344:10;;-1:-1:-1;;;;;47357:22:0;;;47365:14;;47357:22;:75;;;;-1:-1:-1;;;;;;47397:35:0;;;;;;:31;:35;;;;;;;;47396:36;47357:75;47463:14;;47344:88;;-1:-1:-1;47443:11:0;;-1:-1:-1;;;;;47457:20:0;;;47463:14;;47457:20;:75;;;;-1:-1:-1;;;;;;47495:37:0;;;;;;:31;:37;;;;;;;;47494:38;47457:75;47443:89;;47543:16;47570:7;22229:6;;-1:-1:-1;;;;;22229:6:0;;22156:87;47570:7;-1:-1:-1;;;;;47562:15:0;:4;-1:-1:-1;;;;;47562:15:0;;:32;;;-1:-1:-1;22229:6:0;;-1:-1:-1;;;;;47581:13:0;;;22229:6;;47581:13;47562:32;47543:51;-1:-1:-1;47605:11:0;-1:-1:-1;;;;;47619:16:0;;;;:41;;-1:-1:-1;;;;;;47639:21:0;;47653:6;47639:21;47619:41;47605:55;;47671:17;47691:11;:21;;;;47706:6;47691:21;:38;;;-1:-1:-1;47716:13:0;;-1:-1:-1;;;47716:13:0;;;;47691:38;47754:15;;47671:58;;-1:-1:-1;47754:15:0;;:32;;;;;47774:12;47773:13;47754:32;47750:1076;;;47829:14;;;;;;;;:34;;;47847:16;47829:34;47803:118;;;;-1:-1:-1;;;47803:118:0;;15567:2:1;47803:118:0;;;15549:21:1;15606:2;15586:18;;;15579:30;-1:-1:-1;;;15625:18:1;;;15618:52;15687:18;;47803:118:0;15365:346:1;47803:118:0;47940:5;47936:879;;;48006:21;;47996:6;:31;;47966:158;;;;-1:-1:-1;;;47966:158:0;;15918:2:1;47966:158:0;;;15900:21:1;15957:2;15937:18;;;15930:30;15996:34;15976:18;;;15969:62;-1:-1:-1;;;16047:18:1;;;16040:51;16108:19;;47966:158:0;15716:417:1;47966:158:0;48199:10;;-1:-1:-1;;;;;27627:18:0;;27595:7;27627:18;;;;;;;;;;;48173:22;;:6;:22;:::i;:::-;:36;;48143:129;;;;-1:-1:-1;;;48143:129:0;;16340:2:1;48143:129:0;;;16322:21:1;16379:2;16359:18;;;16352:30;-1:-1:-1;;;16398:18:1;;;16391:49;16457:18;;48143:129:0;16138:343:1;48143:129:0;47936:879;;;48298:6;48294:521;;-1:-1:-1;;;;;48541:35:0;;;;;;:31;:35;;;;;;;;48540:36;:95;;;;-1:-1:-1;;;;;;48598:37:0;;;;;;:31;:37;;;;;;;;48597:38;48540:95;48518:297;;;48726:10;;-1:-1:-1;;;;;27627:18:0;;27595:7;27627:18;;;;;;;;;;;48700:22;;:6;:22;:::i;:::-;:36;;48670:129;;;;-1:-1:-1;;;48670:129:0;;16340:2:1;48670:129:0;;;16322:21:1;16379:2;16359:18;;;16352:30;-1:-1:-1;;;16398:18:1;;;16391:49;16457:18;;48670:129:0;16138:343:1;48670:129:0;-1:-1:-1;;;;;48854:31:0;;;;;;:25;:31;;;;;;;;48850:269;;;-1:-1:-1;;;;;48906:19:0;;;;;;:15;:19;;;;;;:24;;48902:102;;-1:-1:-1;;;;;48951:19:0;;;;;;:15;:19;;;;;48973:15;48951:37;;48902:102;48850:269;;;49041:13;;-1:-1:-1;;;49041:13:0;;;;49036:72;;49075:10;:17;;-1:-1:-1;;;;;;49075:17:0;;-1:-1:-1;;;;;49075:17:0;;;;;;49036:72;49136:13;;-1:-1:-1;;;49136:13:0;;;;49135:14;:63;;;;-1:-1:-1;;;;;;49167:31:0;;;;;;:25;:31;;;;;;;;49166:32;49135:63;:106;;;;-1:-1:-1;;;;;;49216:25:0;;;;;;:19;:25;;;;;;;;49215:26;49135:106;:147;;;;-1:-1:-1;;;;;;49259:23:0;;;;;;:19;:23;;;;;;;;49258:24;49135:147;49131:536;;;49348:4;49299:28;27627:18;;;;;;;;;;;49408:19;;49384:43;;;49446:17;:15;:17::i;:::-;:45;;;;;49484:7;49446:45;:84;;;;;49514:16;49513:17;49446:84;49442:214;;;49551:13;:20;;-1:-1:-1;;;;49551:20:0;-1:-1:-1;;;49551:20:0;;;49590:10;:8;:10::i;:::-;49619:13;:21;;-1:-1:-1;;;;49619:21:0;;;49442:214;49284:383;;49131:536;49679:49;49696:4;49702:2;49706:6;49714;49722:5;49679:16;:49::i;:::-;46970:2766;;;;;;46857:2879;;;:::o;23463:191::-;23556:6;;;-1:-1:-1;;;;;23573:17:0;;;-1:-1:-1;;;;;;23573:17:0;;;;;;;23606:40;;23556:6;;;23573:17;23556:6;;23606:40;;23537:16;;23606:40;23526:128;23463:191;:::o;42375:235::-;-1:-1:-1;;;;;42458:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;42458:39:0;;;;;;;42508:38;42458:31;:39;42508:25;:38::i;52380:479::-;52471:16;;;52485:1;52471:16;;;;;;;;52447:21;;52471:16;;;;;;;;;;-1:-1:-1;52471:16:0;52447:40;;52516:4;52498;52503:1;52498:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52498:23:0;;;:7;;;;;;;;;;:23;;;;52542:16;;:23;;;-1:-1:-1;;;52542:23:0;;;;:16;;;;;:21;;:23;;;;;52498:7;;52542:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52532:4;52537:1;52532:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52532:33:0;;;:7;;;;;;;;;:33;52610:16;;52578:63;;52595:4;;52610:16;52629:11;52578:8;:63::i;:::-;52654:16;;:197;;-1:-1:-1;;;52654:197:0;;-1:-1:-1;;;;;52654:16:0;;;;:67;;:197;;52736:11;;52654:16;;52778:4;;52805;;52825:15;;52654:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52436:423;52380:479;:::o;17785:98::-;17843:7;17870:5;17874:1;17870;:5;:::i;:::-;17863:12;17785:98;-1:-1:-1;;;17785:98:0:o;37712:708::-;-1:-1:-1;;;;;37843:18:0;;37835:68;;;;-1:-1:-1;;;37835:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37922:16:0;;37914:64;;;;-1:-1:-1;;;37914:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38064:15:0;;38042:19;38064:15;;;;;;;;;;;38112:21;;;;38090:109;;;;-1:-1:-1;;;38090:109:0;;17937:2:1;38090:109:0;;;17919:21:1;17976:2;17956:18;;;17949:30;18015:34;17995:18;;;17988:62;-1:-1:-1;;;18066:18:1;;;18059:36;18112:19;;38090:109:0;17735:402:1;38090:109:0;-1:-1:-1;;;;;38235:15:0;;;:9;:15;;;;;;;;;;;38253:20;;;38235:38;;38295:13;;;;;;;;:23;;38267:6;;38235:9;38295:23;;38267:6;;38295:23;:::i;:::-;;;;;;;;38351:2;-1:-1:-1;;;;;38336:26:0;38345:4;-1:-1:-1;;;;;38336:26:0;;38355:6;38336:26;;;;160:25:1;;148:2;133:18;;14:177;38336:26:0;;;;;;;;38375:37;46005:410;42748:116;42798:4;42840:1;42822:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;42851:5:0;;42748:116::o;42822:34::-;-1:-1:-1;42844:4:0;;42748:116::o;53238:1800::-;53321:4;53277:23;27627:18;;;;;;;;;;;53277:50;;53338:25;53424:21;;53388:19;;53366;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53338:107;-1:-1:-1;53460:20:0;;;:46;;-1:-1:-1;53484:22:0;;53460:46;53456:59;;;53508:7;;53238:1800::o;53456:59::-;53547:19;;53529:15;:37;53525:107;;;53601:19;;53583:37;;53525:107;53642:23;53756:1;53723:17;53687:19;;53669:15;:37;;;;:::i;:::-;53668:72;;;;:::i;:::-;:89;;;;:::i;:::-;53642:115;-1:-1:-1;53768:26:0;53797:36;:15;53642:115;53797:19;:36::i;:::-;53768:65;-1:-1:-1;53872:21:0;53904:37;53768:65;53904:17;:37::i;:::-;53952:18;53973:44;:21;53999:17;53973:25;:44::i;:::-;53952:65;;54028:23;54054:82;54108:17;54054:35;54069:19;;54054:10;:14;;:35;;;;:::i;:::-;:39;;:82::i;:::-;54028:108;;54147:25;54175:84;54231:17;54175:37;54190:21;;54175:10;:14;;:37;;;;:::i;:84::-;54147:112;-1:-1:-1;54270:23:0;54147:112;54296:28;54309:15;54296:10;:28;:::i;:::-;:48;;;;:::i;:::-;54270:74;;54379:1;54361:15;:19;:42;;;;;54402:1;54384:15;:19;54361:42;54357:280;;;54420:47;54434:15;54451;54420:13;:47::i;:::-;54591:19;;54487:138;;;18477:25:1;;;18533:2;18518:18;;18511:34;;;18561:18;;;18554:34;;;;54487:138:0;;;;;;18465:2:1;54487:138:0;;;54357:280;54671:1;54649:19;:23;;;54683:19;:23;;;54717:21;:25;;;54795:14;;54787:56;;-1:-1:-1;;;;;54795:14:0;;;;54823:15;;54671:1;54787:56;54671:1;54787:56;54823:15;54795:14;54787:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54755:88;;;54862:20;54854:29;;;;;;54936:16;;54928:60;;54895:27;;-1:-1:-1;;;;;54936:16:0;;54966:17;;54895:27;54928:60;54895:27;54928:60;54966:17;54936:16;54928:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54894:94;;;55007:22;54999:31;;;;;;53266:1772;;;;;;;;;;;53238:1800::o;49744:1218::-;49908:12;49923:21;49935:4;49941:2;49923:11;:21::i;:::-;-1:-1:-1;;;;;49961:25:0;;;;;;:19;:25;;;;;;49908:36;;-1:-1:-1;49961:25:0;;49957:954;;;50003:32;50018:4;50024:2;50028:6;50003:14;:32::i;:::-;50050:7;;;49957:954;50078:7;50074:837;;;50118:10;;50163:13;;50191:151;;;;50243:18;;50230:10;;:31;;;;:::i;:::-;50222:39;;50308:18;;50292:13;;:34;;;;:::i;:::-;50280:46;;50191:151;50360:5;50356:148;;;50407:17;;50394:10;;:30;;;;:::i;:::-;50386:38;;50471:17;;50455:13;;:33;;;;:::i;:::-;50443:45;;50356:148;50518:12;50533:26;50555:3;50533:17;:6;50544:5;50533:10;:17::i;:26::-;50518:41;;50622:5;50605:13;;50598:4;:20;;;;:::i;:::-;50597:30;;;;:::i;:::-;50574:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;50686:5:0;;-1:-1:-1;50666:16:0;50673:9;50666:4;:16;:::i;:::-;50665:26;;;;:::i;:::-;50642:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50739:15:0;;50758:5;;50732:22;;:4;:22;:::i;:::-;50731:32;;;;:::i;:::-;50706:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;50784:8:0;;50780:91;;50813:42;50829:4;50843;50850;50813:15;:42::i;:::-;50885:14;50895:4;50885:14;;:::i;:::-;;;50087:824;;;50074:837;50921:33;50937:4;50943:2;50947:6;50921:15;:33::i;49744:1218::-;;;;;;:::o;17428:98::-;17486:7;17513:5;17517:1;17513;:5;:::i;18184:98::-;18242:7;18269:5;18273:1;18269;:5;:::i;52867:363::-;52981:16;;52949:63;;52966:4;;-1:-1:-1;;;;;52981:16:0;53000:11;52949:8;:63::i;:::-;53023:16;;-1:-1:-1;;;;;53023:16:0;:32;53063:9;53096:4;53116:11;53023:16;;53174:7;22229:6;;-1:-1:-1;;;;;22229:6:0;;22156:87;53174:7;53023:199;;;;;;-1:-1:-1;;;;;;53023:199:0;;;-1:-1:-1;;;;;18958:15:1;;;53023:199:0;;;18940:34:1;18990:18;;;18983:34;;;;19033:18;;;19026:34;;;;19076:18;;;19069:34;19140:15;;;19119:19;;;19112:44;53196:15:0;19172:19:1;;;19165:35;18874:19;;53023:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;31960:599::-;-1:-1:-1;;;;;32090:18:0;;32082:68;;;;-1:-1:-1;;;32082:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32169:16:0;;32161:64;;;;-1:-1:-1;;;32161:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32311:15:0;;;32289:19;32311:15;;;;;;;;;;;;;32382:20;;;32364:38;;;32434:13;;;;;;;:23;;32396:6;;32289:19;32434:23;;32396:6;;32434:23;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:316::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;-1:-1:-1;;1767:23:1;;;1837:2;1822:18;;1809:32;;-1:-1:-1;1888:2:1;1873:18;;;1860:32;;1582:316;-1:-1:-1;1582:316:1:o;1903:456::-;1980:6;1988;1996;2049:2;2037:9;2028:7;2024:23;2020:32;2017:52;;;2065:1;2062;2055:12;2017:52;2104:9;2091:23;2123:31;2148:5;2123:31;:::i;:::-;2173:5;-1:-1:-1;2230:2:1;2215:18;;2202:32;2243:33;2202:32;2243:33;:::i;:::-;1903:456;;2295:7;;-1:-1:-1;;;2349:2:1;2334:18;;;;2321:32;;1903:456::o;2364:247::-;2423:6;2476:2;2464:9;2455:7;2451:23;2447:32;2444:52;;;2492:1;2489;2482:12;2444:52;2531:9;2518:23;2550:31;2575:5;2550:31;:::i;3247:416::-;3312:6;3320;3373:2;3361:9;3352:7;3348:23;3344:32;3341:52;;;3389:1;3386;3379:12;3341:52;3428:9;3415:23;3447:31;3472:5;3447:31;:::i;:::-;3497:5;-1:-1:-1;3554:2:1;3539:18;;3526:32;3596:15;;3589:23;3577:36;;3567:64;;3627:1;3624;3617:12;3567:64;3650:7;3640:17;;;3247:416;;;;;:::o;4189:388::-;4257:6;4265;4318:2;4306:9;4297:7;4293:23;4289:32;4286:52;;;4334:1;4331;4324:12;4286:52;4373:9;4360:23;4392:31;4417:5;4392:31;:::i;:::-;4442:5;-1:-1:-1;4499:2:1;4484:18;;4471:32;4512:33;4471:32;4512:33;:::i;4582:380::-;4661:1;4657:12;;;;4704;;;4725:61;;4779:4;4771:6;4767:17;4757:27;;4725:61;4832:2;4824:6;4821:14;4801:18;4798:38;4795:161;;4878:10;4873:3;4869:20;4866:1;4859:31;4913:4;4910:1;4903:15;4941:4;4938:1;4931:15;4795:161;;4582:380;;;:::o;4967:356::-;5169:2;5151:21;;;5188:18;;;5181:30;5247:34;5242:2;5227:18;;5220:62;5314:2;5299:18;;4967:356::o;5538:127::-;5599:10;5594:3;5590:20;5587:1;5580:31;5630:4;5627:1;5620:15;5654:4;5651:1;5644:15;5670:168;5743:9;;;5774;;5791:15;;;5785:22;;5771:37;5761:71;;5812:18;;:::i;5843:217::-;5883:1;5909;5899:132;;5953:10;5948:3;5944:20;5941:1;5934:31;5988:4;5985:1;5978:15;6016:4;6013:1;6006:15;5899:132;-1:-1:-1;6045:9:1;;5843:217::o;6481:125::-;6546:9;;;6567:10;;;6564:36;;;6580:18;;:::i;6969:251::-;7039:6;7092:2;7080:9;7071:7;7067:23;7063:32;7060:52;;;7108:1;7105;7098:12;7060:52;7140:9;7134:16;7159:31;7184:5;7159:31;:::i;7225:188::-;7304:13;;-1:-1:-1;;;;;7346:42:1;;7336:53;;7326:81;;7403:1;7400;7393:12;7418:450;7505:6;7513;7521;7574:2;7562:9;7553:7;7549:23;7545:32;7542:52;;;7590:1;7587;7580:12;7542:52;7613:40;7643:9;7613:40;:::i;:::-;7603:50;;7672:49;7717:2;7706:9;7702:18;7672:49;:::i;:::-;7662:59;;7764:2;7753:9;7749:18;7743:25;7808:10;7801:5;7797:22;7790:5;7787:33;7777:61;;7834:1;7831;7824:12;7777:61;7857:5;7847:15;;;7418:450;;;;;:::o;7873:179::-;7951:13;;8004:22;7993:34;;7983:45;;7973:73;;8042:1;8039;8032:12;8057:473;8160:6;8168;8176;8184;8192;8245:3;8233:9;8224:7;8220:23;8216:33;8213:53;;;8262:1;8259;8252:12;8213:53;8285:39;8314:9;8285:39;:::i;:::-;8275:49;;8364:2;8353:9;8349:18;8343:25;8333:35;;8408:2;8397:9;8393:18;8387:25;8377:35;;8452:2;8441:9;8437:18;8431:25;8421:35;;8475:49;8519:3;8508:9;8504:19;8475:49;:::i;:::-;8465:59;;8057:473;;;;;;;;:::o;8535:273::-;8603:6;8656:2;8644:9;8635:7;8631:23;8627:32;8624:52;;;8672:1;8669;8662:12;8624:52;8704:9;8698:16;8754:4;8747:5;8743:16;8736:5;8733:27;8723:55;;8774:1;8771;8764:12;8813:422;8902:1;8945:5;8902:1;8959:270;8980:7;8970:8;8967:21;8959:270;;;9039:4;9035:1;9031:6;9027:17;9021:4;9018:27;9015:53;;;9048:18;;:::i;:::-;9098:7;9088:8;9084:22;9081:55;;;9118:16;;;;9081:55;9197:22;;;;9157:15;;;;8959:270;;;8963:3;8813:422;;;;;:::o;9240:806::-;9289:5;9319:8;9309:80;;-1:-1:-1;9360:1:1;9374:5;;9309:80;9408:4;9398:76;;-1:-1:-1;9445:1:1;9459:5;;9398:76;9490:4;9508:1;9503:59;;;;9576:1;9571:130;;;;9483:218;;9503:59;9533:1;9524:10;;9547:5;;;9571:130;9608:3;9598:8;9595:17;9592:43;;;9615:18;;:::i;:::-;-1:-1:-1;;9671:1:1;9657:16;;9686:5;;9483:218;;9785:2;9775:8;9772:16;9766:3;9760:4;9757:13;9753:36;9747:2;9737:8;9734:16;9729:2;9723:4;9720:12;9716:35;9713:77;9710:159;;;-1:-1:-1;9822:19:1;;;9854:5;;9710:159;9901:34;9926:8;9920:4;9901:34;:::i;:::-;9971:6;9967:1;9963:6;9959:19;9950:7;9947:32;9944:58;;;9982:18;;:::i;:::-;10020:20;;9240:806;-1:-1:-1;;;9240:806:1:o;10051:131::-;10111:5;10140:36;10167:8;10161:4;10140:36;:::i;14555:401::-;14757:2;14739:21;;;14796:2;14776:18;;;14769:30;14835:34;14830:2;14815:18;;14808:62;-1:-1:-1;;;14901:2:1;14886:18;;14879:35;14946:3;14931:19;;14555:401::o;14961:399::-;15163:2;15145:21;;;15202:2;15182:18;;;15175:30;15241:34;15236:2;15221:18;;15214:62;-1:-1:-1;;;15307:2:1;15292:18;;15285:33;15350:3;15335:19;;14961:399::o;16618:127::-;16679:10;16674:3;16670:20;16667:1;16660:31;16710:4;16707:1;16700:15;16734:4;16731:1;16724:15;16750:980;17012:4;17060:3;17049:9;17045:19;17091:6;17080:9;17073:25;17117:2;17155:6;17150:2;17139:9;17135:18;17128:34;17198:3;17193:2;17182:9;17178:18;17171:31;17222:6;17257;17251:13;17288:6;17280;17273:22;17326:3;17315:9;17311:19;17304:26;;17365:2;17357:6;17353:15;17339:29;;17386:1;17396:195;17410:6;17407:1;17404:13;17396:195;;;17475:13;;-1:-1:-1;;;;;17471:39:1;17459:52;;17566:15;;;;17531:12;;;;17507:1;17425:9;17396:195;;;-1:-1:-1;;;;;;;17647:32:1;;;;17642:2;17627:18;;17620:60;-1:-1:-1;;;17711:3:1;17696:19;17689:35;17608:3;16750:980;-1:-1:-1;;;16750:980:1:o;18142:128::-;18209:9;;;18230:11;;;18227:37;;;18244:18;;:::i;19211:306::-;19299:6;19307;19315;19368:2;19356:9;19347:7;19343:23;19339:32;19336:52;;;19384:1;19381;19374:12;19336:52;19413:9;19407:16;19397:26;;19463:2;19452:9;19448:18;19442:25;19432:35;;19507:2;19496:9;19492:18;19486:25;19476:35;;19211:306;;;;;:::o
Swarm Source
ipfs://76921411bf491eea086de676b876091461a3239f9f0840cdcf81b5c03e95f021
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.