ERC-20
Overview
Max Total Supply
1,000,000,000 RING
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,476,801.139150082468403377 RINGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Call2Earn
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-01 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; /* 🌐 https://call2earn.app/ ✅ https://t.me/call2earnportal 🚀 https://x.com/CALL2EARN?s=20 🤖 https://t.me/calltoearnbot 📑 https://the-gift.gitbook.io/call2earn-bot */ 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; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/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 _name; string _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 `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} } pragma solidity ^0.8.19; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract Call2Earn is ERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private isSwapping; address public ringRevShareWallet; address public devWallet; uint256 public maxPerTransaction; uint256 public swapTokensAtAmount; uint256 public maxAllowedPerWallet; uint256 public percentForLPBurn = 20; bool public isLPBurningEnabled = false; uint256 public lpBurnFrequency = 7200 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 60 minutes; uint256 public lastManualLpBurnTime; bool public isLimitEnabled = true; bool public isTradingOpen; bool public isSwapEnabled = true; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 public buyTax; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTax; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; constructor() ERC20("Call2Earn", "RING") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 0; uint256 _buyLiquidityFee = 0; // launch high taxes uint256 _buyDevFee = 25; uint256 _sellRevShareFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 25; uint256 totalSupply = 1_000_000_000 * 1e18; // Whale prevention system (during first few blocks of launch) swapTokensAtAmount = (totalSupply * 50) / 10000; maxPerTransaction = (totalSupply * 200) / 10000; maxAllowedPerWallet = (totalSupply * 200) / 10000; buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTax = buyRevShareFee + buyLiquidityFee + buyDevFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTax = sellRevShareFee + sellLiquidityFee + sellDevFee; ringRevShareWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(_uniswapV2Router), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); _mint(msg.sender, totalSupply); } // once enabled, can never be turned off function beginTrading() external onlyOwner { isTradingOpen = true; isSwapEnabled = true; lastLpBurnTime = block.timestamp; } receive() external payable {} // remove limits after token is stable function removeAllLimits() external onlyOwner returns (bool) { isLimitEnabled = false; buyRevShareFee = 2; buyLiquidityFee = 1; buyDevFee = 2; sellRevShareFee = 2; sellLiquidityFee = 1; sellDevFee = 2; return true; } // disable Transfer delay - cannot be reenabled function removeTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 10) / 1000, "Swap amount cannot be higher than 1% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxBuy( uint256 maxPerTx, uint256 maxPerWallet ) external onlyOwner { require( maxPerTx >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxPerTransaction lower than 0.1%" ); maxPerTransaction = maxPerTx * (10 ** 18); require( maxPerWallet >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxAllowedPerWallet lower than 0.5%" ); maxAllowedPerWallet = maxPerWallet * (10 ** 18); } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxPerTransaction lower than 0.1%" ); maxPerTransaction = newNum * (10 ** 18); } function updatemaxPerWalletDuringInitialAmount( uint256 newNum ) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxAllowedPerWallet lower than 0.5%" ); maxAllowedPerWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTax = buyRevShareFee + buyLiquidityFee + buyDevFee; require(buyTax <= 25, "Must keep fees at 25% or less"); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTax = sellRevShareFee + sellLiquidityFee + sellDevFee; require(sellTax <= 99, "Must keep fees at 99% or less"); } function updateTaxes(uint256 buy, uint256 sell) external onlyOwner { sellDevFee = sell; buyDevFee = buy; sellTax = sellRevShareFee + sellLiquidityFee + sellDevFee; buyTax = buyRevShareFee + buyLiquidityFee + buyDevFee; require(buyTax <= 25, "Must keep fees at 25% or less"); require(sellTax <= 99, "Must keep fees at 99% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; } function updateRingRevShareWallet( address newringRevShareWallet ) external onlyOwner { ringRevShareWallet = newringRevShareWallet; } function updateDevWallet(address newWallet) external onlyOwner { devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { super._transfer(from, to, amount); return; } if (isLimitEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !isSwapping ) { if (!isTradingOpen) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active!" ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxPerTransaction, "Buy transfer amount exceeds the maxPerTransaction." ); require( amount + balanceOf(to) <= maxAllowedPerWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxPerTransaction, "Sell transfer amount exceeds the maxPerTransaction." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxAllowedPerWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && isSwapEnabled && !isSwapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { isSwapping = true; swapBack(); isSwapping = false; } if ( !isSwapping && automatedMarketMakerPairs[to] && isLPBurningEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !isSwapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTax > 0) { fees = amount.mul(sellTax).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTax; tokensForDev += (fees * sellDevFee) / sellTax; tokensForMarketing += (fees * sellRevShareFee) / sellTax; } // on buy else if (automatedMarketMakerPairs[from] && buyTax > 0) { fees = amount.mul(buyTax).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTax; tokensForDev += (fees * buyDevFee) / buyTax; tokensForMarketing += (fees * buyRevShareFee) / buyTax; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; isLPBurningEnabled = _Enabled; } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); } (success, ) = address(ringRevShareWallet).call{ value: address(this).balance }(""); } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLPBurningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ringRevShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newringRevShareWallet","type":"address"}],"name":"updateRingRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updatemaxPerWalletDuringInitialAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405260078054600160ff19918216179091556014600c55600d80549091169055611c20600e55610e106010556012805462ff00ff1916620100011790553480156200004b575f80fd5b506040518060400160405280600981526020016821b0b6361922b0b93760b91b8152506040518060400160405280600481526020016352494e4760e01b81525081600390816200009c919062000699565b506004620000ab828262000699565b505050620000c8620000c26200041560201b60201c565b62000419565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ea8160016200046a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000133573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000159919062000761565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001cb919062000761565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000216573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023c919062000761565b6001600160a01b031660a0819052620002579060016200046a565b60a0516001600160a01b03165f9081526020805260409020805460ff191660011790555f8060198180826b033b2e3c9fd0803ce80000006127106200029e826032620007a4565b620002aa9190620007c4565b600a55612710620002bd8260c8620007a4565b620002c99190620007c4565b600955612710620002dc8260c8620007a4565b620002e89190620007c4565b600b5560178790556018869055601985905584620003078789620007e4565b620003139190620007e4565b601655601b849055601c839055601d82905581620003328486620007e4565b6200033e9190620007e4565b601a5560055460078054620100006001600160a01b0390931692830262010000600160b01b0319909116179055600880546001600160a01b031916821790556200038a9060016200049e565b620003973060016200049e565b620003a661dead60016200049e565b620003b38860016200049e565b620003d2620003ca6005546001600160a01b031690565b60016200046a565b620003df3060016200046a565b620003ee61dead60016200046a565b620003fb8860016200046a565b620004073382620004d2565b5050505050505050620007fa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200047462000597565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b620004a862000597565b6001600160a01b03919091165f908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166200052e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620005419190620007e4565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000525565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062357607f821691505b6020821081036200064257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005f5575f81815260208120601f850160051c81016020861015620006705750805b601f850160051c820191505b8181101562000691578281556001016200067c565b505050505050565b81516001600160401b03811115620006b557620006b5620005fa565b620006cd81620006c684546200060e565b8462000648565b602080601f83116001811462000703575f8415620006eb5750858301515b5f19600386901b1c1916600185901b17855562000691565b5f85815260208120601f198616915b82811015620007335788860151825594840194600190910190840162000712565b50858210156200075157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000772575f80fd5b81516001600160a01b038116811462000789575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007be57620007be62000790565b92915050565b5f82620007df57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007be57620007be62000790565b60805160a051612acb620008625f395f8181610643015281816117b70152818161228801528181612326015261235101525f818161049b0152818161177901528181612447015281816124fe0152818161253a015281816125ae015261260a0152612acb5ff3fe608060405260043610610395575f3560e01c80637571336a116101de578063c024666811610108578063dd62ed3e1161009d578063f63743421161006d578063f637434214610a34578063f8686f0714610a49578063fa554d1f14610a5d578063fae514b014610a76575f80fd5b8063dd62ed3e146109cc578063e2f45605146109eb578063f11a24d314610a00578063f2fde38b14610a15575f80fd5b8063cc1776d3116100d8578063cc1776d31461096b578063d257b34f14610980578063daf4f66e1461099f578063db05e5cb146109b8575f80fd5b8063c024666814610900578063c17b5b8c1461091f578063c408c2451461093e578063c876d0b914610952575f80fd5b80639c3b4fdc1161017e578063a457c2d71161014e578063a457c2d714610880578063a4c82a001461089f578063a9059cbb146108b4578063b62496f5146108d3575f80fd5b80639c3b4fdc1461082c5780639ec22c0e146108415780639fccce3214610856578063a0d82dc51461086b575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bd5780638ea5220f146107da57806395c39f2d146107f957806395d89b4114610818575f80fd5b80637571336a146107605780637b3c10301461077f5780638095d5641461079e575f80fd5b806323b872dd116102bf5780634b980d671161025f57806369a926a81161022f57806369a926a8146106e457806370a08231146106f9578063715018a61461072d578063730c188814610741575f80fd5b80634b980d67146106655780634f7041a51461067a5780634fbee1931461068f57806356a060a2146106c6575f80fd5b8063313ce5671161029a578063313ce567146105d9578063351a964d146105f4578063395093511461061357806349bd5a5e14610632575f80fd5b806323b872dd1461059057806327c8f835146105af5780632c3e486c146105c4575f80fd5b806318160ddd1161033557806319eab0421161030557806319eab042146105325780631a8145bb146105475780631f3fed8f1461055c578063203e727e14610571575f80fd5b806318160ddd146104d55780631816467f146104e9578063184c16c514610508578063199ffc721461051d575f80fd5b80631006ee0c116103705780631006ee0c1461041a57806310d5de5314610439578063156c2f35146104675780631694505e1461048a575f80fd5b806306fdde03146103a0578063095ea7b3146103ca5780630eaee078146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610a9b565b6040516103c19190612686565b60405180910390f35b3480156103d5575f80fd5b506103e96103e43660046126e5565b610b2b565b60405190151581526020016103c1565b348015610404575f80fd5b5061041861041336600461270f565b610b44565b005b348015610425575f80fd5b5061041861043436600461272a565b610b76565b348015610444575f80fd5b506103e961045336600461270f565b601f6020525f908152604090205460ff1681565b348015610472575f80fd5b5061047c60175481565b6040519081526020016103c1565b348015610495575f80fd5b506104bd7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b3480156104e0575f80fd5b5060025461047c565b3480156104f4575f80fd5b5061041861050336600461270f565b610c74565b348015610513575f80fd5b5061047c60105481565b348015610528575f80fd5b5061047c600c5481565b34801561053d575f80fd5b5061047c601b5481565b348015610552575f80fd5b5061047c60145481565b348015610567575f80fd5b5061047c60135481565b34801561057c575f80fd5b5061041861058b36600461274a565b610c9e565b34801561059b575f80fd5b506103e96105aa366004612761565b610d11565b3480156105ba575f80fd5b506104bd61dead81565b3480156105cf575f80fd5b5061047c600e5481565b3480156105e4575f80fd5b50604051601281526020016103c1565b3480156105ff575f80fd5b506012546103e99062010000900460ff1681565b34801561061e575f80fd5b506103e961062d3660046126e5565b610d34565b34801561063d575f80fd5b506104bd7f000000000000000000000000000000000000000000000000000000000000000081565b348015610670575f80fd5b5061047c60095481565b348015610685575f80fd5b5061047c60165481565b34801561069a575f80fd5b506103e96106a936600461270f565b6001600160a01b03165f908152601e602052604090205460ff1690565b3480156106d1575f80fd5b506012546103e990610100900460ff1681565b3480156106ef575f80fd5b5061047c600b5481565b348015610704575f80fd5b5061047c61071336600461270f565b6001600160a01b03165f9081526020819052604090205490565b348015610738575f80fd5b50610418610d55565b34801561074c575f80fd5b5061041861075b3660046127ae565b610d68565b34801561076b575f80fd5b5061041861077a3660046127e0565b610e6f565b34801561078a575f80fd5b5061041861079936600461272a565b610ea1565b3480156107a9575f80fd5b506104186107b8366004612813565b610f7d565b3480156107c8575f80fd5b506005546001600160a01b03166104bd565b3480156107e5575f80fd5b506008546104bd906001600160a01b031681565b348015610804575f80fd5b5061041861081336600461274a565b611003565b348015610823575f80fd5b506103b4611076565b348015610837575f80fd5b5061047c60195481565b34801561084c575f80fd5b5061047c60115481565b348015610861575f80fd5b5061047c60155481565b348015610876575f80fd5b5061047c601d5481565b34801561088b575f80fd5b506103e961089a3660046126e5565b611085565b3480156108aa575f80fd5b5061047c600f5481565b3480156108bf575f80fd5b506103e96108ce3660046126e5565b6110ff565b3480156108de575f80fd5b506103e96108ed36600461270f565b602080525f908152604090205460ff1681565b34801561090b575f80fd5b5061041861091a3660046127e0565b61110c565b34801561092a575f80fd5b50610418610939366004612813565b61113e565b348015610949575f80fd5b506104186111bf565b34801561095d575f80fd5b506007546103e99060ff1681565b348015610976575f80fd5b5061047c601a5481565b34801561098b575f80fd5b506103e961099a36600461274a565b6111de565b3480156109aa575f80fd5b506012546103e99060ff1681565b3480156109c3575f80fd5b506103e961130f565b3480156109d7575f80fd5b5061047c6109e636600461283c565b611349565b3480156109f6575f80fd5b5061047c600a5481565b348015610a0b575f80fd5b5061047c60185481565b348015610a20575f80fd5b50610418610a2f36600461270f565b611373565b348015610a3f575f80fd5b5061047c601c5481565b348015610a54575f80fd5b506103e96113ec565b348015610a68575f80fd5b50600d546103e99060ff1681565b348015610a81575f80fd5b506007546104bd906201000090046001600160a01b031681565b606060038054610aaa90612873565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad690612873565b8015610b215780601f10610af857610100808354040283529160200191610b21565b820191905f5260205f20905b815481529060010190602001808311610b0457829003601f168201915b5050505050905090565b5f33610b38818585611405565b60019150505b92915050565b610b4c611528565b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610b7e611528565b601d8190556019829055601c54601b548291610b99916128bf565b610ba391906128bf565b601a55601954601854601754610bb991906128bf565b610bc391906128bf565b601681905560191015610c1d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c65737300000060448201526064015b60405180910390fd5b6063601a541115610c705760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c14565b5050565b610c7c611528565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610ca6611528565b670de0b6b3a76400006103e8610cbb60025490565b610cc69060016128d2565b610cd091906128e9565b610cda91906128e9565b811015610cf95760405162461bcd60e51b8152600401610c1490612908565b610d0b81670de0b6b3a76400006128d2565b60095550565b5f33610d1e858285611582565b610d298585856115fa565b506001949350505050565b5f33610b38818585610d468383611349565b610d5091906128bf565b611405565b610d5d611528565b610d665f611e8f565b565b610d70611528565b610258831015610dde5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c14565b6103e88211158015610dee575060015b610e535760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c14565b600e92909255600c55600d805460ff1916911515919091179055565b610e77611528565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b610ea9611528565b670de0b6b3a76400006103e8610ebe60025490565b610ec99060016128d2565b610ed391906128e9565b610edd91906128e9565b821015610efc5760405162461bcd60e51b8152600401610c1490612908565b610f0e82670de0b6b3a76400006128d2565b600955670de0b6b3a76400006103e8610f2660025490565b610f319060056128d2565b610f3b91906128e9565b610f4591906128e9565b811015610f645760405162461bcd60e51b8152600401610c1490612954565b610f7681670de0b6b3a76400006128d2565b600b555050565b610f85611528565b60178390556018829055601981905580610f9f83856128bf565b610fa991906128bf565b601681905560191015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c14565b505050565b61100b611528565b670de0b6b3a76400006103e861102060025490565b61102b9060056128d2565b61103591906128e9565b61103f91906128e9565b81101561105e5760405162461bcd60e51b8152600401610c1490612954565b61107081670de0b6b3a76400006128d2565b600b5550565b606060048054610aaa90612873565b5f33816110928286611349565b9050838110156110f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c14565b610d298286868403611405565b5f33610b388185856115fa565b611114611528565b6001600160a01b03919091165f908152601e60205260409020805460ff1916911515919091179055565b611146611528565b601b839055601c829055601d8190558061116083856128bf565b61116a91906128bf565b601a81905560631015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c14565b6111c7611528565b6012805462ffff0019166201010017905542600f55565b5f6111e7611528565b620186a06111f460025490565b6111ff9060016128d2565b61120991906128e9565b8210156112765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c14565b6103e861128260025490565b61128d90600a6128d2565b61129791906128e9565b8211156113015760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610c14565b50600a81905560015b919050565b5f611318611528565b506012805460ff1916905560026017819055600160188190556019829055601b829055601c819055601d9190915590565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61137b611528565b6001600160a01b0381166113e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c14565b6113e981611e8f565b50565b5f6113f5611528565b506007805460ff19169055600190565b6001600160a01b0383166114675760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c14565b6001600160a01b0382166114c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c14565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c14565b5f61158d8484611349565b90505f1981146115f457818110156115e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c14565b6115f48484848403611405565b50505050565b6001600160a01b0383165f908152601e602052604090205460ff168061163757506001600160a01b0382165f908152601e602052604090205460ff165b1561164757610ffe838383611ee0565b60125460ff1615611aef576005546001600160a01b0384811691161480159061167e57506005546001600160a01b03838116911614155b801561169257506001600160a01b03821615155b80156116a957506001600160a01b03821661dead14155b80156116bd5750600754610100900460ff16155b15611aef57601254610100900460ff16611753576001600160a01b0383165f908152601e602052604090205460ff168061170e57506001600160a01b0382165f908152601e602052604090205460ff165b6117535760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610c14565b60075460ff1615611898576005546001600160a01b038381169116148015906117ae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117ec57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561189857325f9081526006602052604090205443116118865760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c14565b325f9081526006602052604090204390555b6001600160a01b0383165f90815260208052604090205460ff1680156118d657506001600160a01b0382165f908152601f602052604090205460ff16155b156119b6576009548111156119485760405162461bcd60e51b815260206004820152603260248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527136b0bc2832b92a3930b739b0b1ba34b7b71760711b6064820152608401610c14565b600b546001600160a01b0383165f9081526020819052604090205461196d90836128bf565b11156119b15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c14565b611aef565b6001600160a01b0382165f90815260208052604090205460ff1680156119f457506001600160a01b0383165f908152601f602052604090205460ff16155b15611a67576009548111156119b15760405162461bcd60e51b815260206004820152603360248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152721036b0bc2832b92a3930b739b0b1ba34b7b71760691b6064820152608401610c14565b6001600160a01b0382165f908152601f602052604090205460ff16611aef57600b546001600160a01b0383165f90815260208190526040902054611aab90836128bf565b1115611aef5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c14565b305f90815260208190526040902054600a5481108015908190611b1a575060125462010000900460ff165b8015611b2e5750600754610100900460ff16155b8015611b5157506001600160a01b0385165f90815260208052604090205460ff16155b8015611b7557506001600160a01b0385165f908152601e602052604090205460ff16155b8015611b9957506001600160a01b0384165f908152601e602052604090205460ff16155b15611bc1576007805461ff001916610100179055611bb5612082565b6007805461ff00191690555b600754610100900460ff16158015611bef57506001600160a01b0384165f90815260208052604090205460ff165b8015611bfd5750600d5460ff165b8015611c185750600e54600f54611c1491906128bf565b4210155b8015611c3c57506001600160a01b0385165f908152601e602052604090205460ff16155b15611c4b57611c4961226d565b505b6007546001600160a01b0386165f908152601e602052604090205460ff610100909204821615911680611c9557506001600160a01b0385165f908152601e602052604090205460ff165b15611c9d57505f5b5f8115611e7b576001600160a01b0386165f90815260208052604090205460ff168015611ccb57505f601a54115b15611d8657611cf06064611cea601a54886123ca90919063ffffffff16565b906123dc565b9050601a54601c5482611d0391906128d2565b611d0d91906128e9565b60145f828254611d1d91906128bf565b9091555050601a54601d54611d3290836128d2565b611d3c91906128e9565b60155f828254611d4c91906128bf565b9091555050601a54601b54611d6190836128d2565b611d6b91906128e9565b60135f828254611d7b91906128bf565b90915550611e5d9050565b6001600160a01b0387165f90815260208052604090205460ff168015611dad57505f601654115b15611e5d57611dcc6064611cea601654886123ca90919063ffffffff16565b905060165460185482611ddf91906128d2565b611de991906128e9565b60145f828254611df991906128bf565b9091555050601654601954611e0e90836128d2565b611e1891906128e9565b60155f828254611e2891906128bf565b9091555050601654601754611e3d90836128d2565b611e4791906128e9565b60135f828254611e5791906128bf565b90915550505b8015611e6e57611e6e873083611ee0565b611e7881866129a2565b94505b611e86878787611ee0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611f445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c14565b6001600160a01b038216611fa65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c14565b6001600160a01b0383165f908152602081905260409020548181101561201d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c14565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115f4565b305f9081526020819052604081205490505f6015546013546014546120a791906128bf565b6120b191906128bf565b90505f8215806120bf575081155b156120c957505050565b600a546120d79060146128d2565b8311156120ef57600a546120ec9060146128d2565b92505b5f6002836014548661210191906128d2565b61210b91906128e9565b61211591906128e9565b90505f61212285836123e7565b90504761212e826123f2565b5f61213947836123e7565b90505f61215587611cea601354856123ca90919063ffffffff16565b90505f61217188611cea601554866123ca90919063ffffffff16565b90505f8161217f84866129a2565b61218991906129a2565b5f6014819055601381905560158190556008546040519293506001600160a01b031691849181818185875af1925050503d805f81146121e3576040519150601f19603f3d011682016040523d82523d5f602084013e6121e8565b606091505b509098505086158015906121fb57505f81115b1561220a5761220a87826125a8565b600754604051620100009091046001600160a01b03169047905f81818185875af1925050503d805f8114612259576040519150601f19603f3d011682016040523d82523d5f602084013e61225e565b606091505b50505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660048201525f90819030906370a0823190602401602060405180830381865afa1580156122d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fb91906129b5565b90505f612319612710611cea600c54856123ca90919063ffffffff16565b9050801561234e5761234e7f000000000000000000000000000000000000000000000000000000000000000061dead83611ee0565b5f7f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156123aa575f80fd5b505af11580156123bc573d5f803e3d5ffd5b505050506001935050505090565b5f6123d582846128d2565b9392505050565b5f6123d582846128e9565b5f6123d582846129a2565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612425576124256129cc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124c591906129e0565b816001815181106124d8576124d86129cc565b60200260200101906001600160a01b031690816001600160a01b031681525050612523307f000000000000000000000000000000000000000000000000000000000000000084611405565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125779085905f908690309042906004016129fb565b5f604051808303815f87803b15801561258e575f80fd5b505af11580156125a0573d5f803e3d5ffd5b505050505050565b6125d3307f000000000000000000000000000000000000000000000000000000000000000084611405565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561265a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061267f9190612a6a565b5050505050565b5f6020808352835180828501525f5b818110156126b157858101830151858201604001528201612695565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113e9575f80fd5b5f80604083850312156126f6575f80fd5b8235612701816126d1565b946020939093013593505050565b5f6020828403121561271f575f80fd5b81356123d5816126d1565b5f806040838503121561273b575f80fd5b50508035926020909101359150565b5f6020828403121561275a575f80fd5b5035919050565b5f805f60608486031215612773575f80fd5b833561277e816126d1565b9250602084013561278e816126d1565b929592945050506040919091013590565b8035801515811461130a575f80fd5b5f805f606084860312156127c0575f80fd5b83359250602084013591506127d76040850161279f565b90509250925092565b5f80604083850312156127f1575f80fd5b82356127fc816126d1565b915061280a6020840161279f565b90509250929050565b5f805f60608486031215612825575f80fd5b505081359360208301359350604090920135919050565b5f806040838503121561284d575f80fd5b8235612858816126d1565b91506020830135612868816126d1565b809150509250929050565b600181811c9082168061288757607f821691505b6020821081036128a557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610b3e57610b3e6128ab565b8082028115828204841417610b3e57610b3e6128ab565b5f8261290357634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602c908201527f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760408201526b6572207468616e20302e312560a01b606082015260800190565b6020808252602e908201527f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60408201526d6f776572207468616e20302e352560901b606082015260800190565b81810381811115610b3e57610b3e6128ab565b5f602082840312156129c5575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156129f0575f80fd5b81516123d5816126d1565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612a495784516001600160a01b031683529383019391830191600101612a24565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612a7c575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204c842b7ff93609385bc5217722c2af0081061b4c1b5c62a4ddeb6f67abb0e2eb64736f6c63430008150033
Deployed Bytecode
0x608060405260043610610395575f3560e01c80637571336a116101de578063c024666811610108578063dd62ed3e1161009d578063f63743421161006d578063f637434214610a34578063f8686f0714610a49578063fa554d1f14610a5d578063fae514b014610a76575f80fd5b8063dd62ed3e146109cc578063e2f45605146109eb578063f11a24d314610a00578063f2fde38b14610a15575f80fd5b8063cc1776d3116100d8578063cc1776d31461096b578063d257b34f14610980578063daf4f66e1461099f578063db05e5cb146109b8575f80fd5b8063c024666814610900578063c17b5b8c1461091f578063c408c2451461093e578063c876d0b914610952575f80fd5b80639c3b4fdc1161017e578063a457c2d71161014e578063a457c2d714610880578063a4c82a001461089f578063a9059cbb146108b4578063b62496f5146108d3575f80fd5b80639c3b4fdc1461082c5780639ec22c0e146108415780639fccce3214610856578063a0d82dc51461086b575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bd5780638ea5220f146107da57806395c39f2d146107f957806395d89b4114610818575f80fd5b80637571336a146107605780637b3c10301461077f5780638095d5641461079e575f80fd5b806323b872dd116102bf5780634b980d671161025f57806369a926a81161022f57806369a926a8146106e457806370a08231146106f9578063715018a61461072d578063730c188814610741575f80fd5b80634b980d67146106655780634f7041a51461067a5780634fbee1931461068f57806356a060a2146106c6575f80fd5b8063313ce5671161029a578063313ce567146105d9578063351a964d146105f4578063395093511461061357806349bd5a5e14610632575f80fd5b806323b872dd1461059057806327c8f835146105af5780632c3e486c146105c4575f80fd5b806318160ddd1161033557806319eab0421161030557806319eab042146105325780631a8145bb146105475780631f3fed8f1461055c578063203e727e14610571575f80fd5b806318160ddd146104d55780631816467f146104e9578063184c16c514610508578063199ffc721461051d575f80fd5b80631006ee0c116103705780631006ee0c1461041a57806310d5de5314610439578063156c2f35146104675780631694505e1461048a575f80fd5b806306fdde03146103a0578063095ea7b3146103ca5780630eaee078146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610a9b565b6040516103c19190612686565b60405180910390f35b3480156103d5575f80fd5b506103e96103e43660046126e5565b610b2b565b60405190151581526020016103c1565b348015610404575f80fd5b5061041861041336600461270f565b610b44565b005b348015610425575f80fd5b5061041861043436600461272a565b610b76565b348015610444575f80fd5b506103e961045336600461270f565b601f6020525f908152604090205460ff1681565b348015610472575f80fd5b5061047c60175481565b6040519081526020016103c1565b348015610495575f80fd5b506104bd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b3480156104e0575f80fd5b5060025461047c565b3480156104f4575f80fd5b5061041861050336600461270f565b610c74565b348015610513575f80fd5b5061047c60105481565b348015610528575f80fd5b5061047c600c5481565b34801561053d575f80fd5b5061047c601b5481565b348015610552575f80fd5b5061047c60145481565b348015610567575f80fd5b5061047c60135481565b34801561057c575f80fd5b5061041861058b36600461274a565b610c9e565b34801561059b575f80fd5b506103e96105aa366004612761565b610d11565b3480156105ba575f80fd5b506104bd61dead81565b3480156105cf575f80fd5b5061047c600e5481565b3480156105e4575f80fd5b50604051601281526020016103c1565b3480156105ff575f80fd5b506012546103e99062010000900460ff1681565b34801561061e575f80fd5b506103e961062d3660046126e5565b610d34565b34801561063d575f80fd5b506104bd7f000000000000000000000000d8b70597cf429a7df809136c8dfda9331110dc8881565b348015610670575f80fd5b5061047c60095481565b348015610685575f80fd5b5061047c60165481565b34801561069a575f80fd5b506103e96106a936600461270f565b6001600160a01b03165f908152601e602052604090205460ff1690565b3480156106d1575f80fd5b506012546103e990610100900460ff1681565b3480156106ef575f80fd5b5061047c600b5481565b348015610704575f80fd5b5061047c61071336600461270f565b6001600160a01b03165f9081526020819052604090205490565b348015610738575f80fd5b50610418610d55565b34801561074c575f80fd5b5061041861075b3660046127ae565b610d68565b34801561076b575f80fd5b5061041861077a3660046127e0565b610e6f565b34801561078a575f80fd5b5061041861079936600461272a565b610ea1565b3480156107a9575f80fd5b506104186107b8366004612813565b610f7d565b3480156107c8575f80fd5b506005546001600160a01b03166104bd565b3480156107e5575f80fd5b506008546104bd906001600160a01b031681565b348015610804575f80fd5b5061041861081336600461274a565b611003565b348015610823575f80fd5b506103b4611076565b348015610837575f80fd5b5061047c60195481565b34801561084c575f80fd5b5061047c60115481565b348015610861575f80fd5b5061047c60155481565b348015610876575f80fd5b5061047c601d5481565b34801561088b575f80fd5b506103e961089a3660046126e5565b611085565b3480156108aa575f80fd5b5061047c600f5481565b3480156108bf575f80fd5b506103e96108ce3660046126e5565b6110ff565b3480156108de575f80fd5b506103e96108ed36600461270f565b602080525f908152604090205460ff1681565b34801561090b575f80fd5b5061041861091a3660046127e0565b61110c565b34801561092a575f80fd5b50610418610939366004612813565b61113e565b348015610949575f80fd5b506104186111bf565b34801561095d575f80fd5b506007546103e99060ff1681565b348015610976575f80fd5b5061047c601a5481565b34801561098b575f80fd5b506103e961099a36600461274a565b6111de565b3480156109aa575f80fd5b506012546103e99060ff1681565b3480156109c3575f80fd5b506103e961130f565b3480156109d7575f80fd5b5061047c6109e636600461283c565b611349565b3480156109f6575f80fd5b5061047c600a5481565b348015610a0b575f80fd5b5061047c60185481565b348015610a20575f80fd5b50610418610a2f36600461270f565b611373565b348015610a3f575f80fd5b5061047c601c5481565b348015610a54575f80fd5b506103e96113ec565b348015610a68575f80fd5b50600d546103e99060ff1681565b348015610a81575f80fd5b506007546104bd906201000090046001600160a01b031681565b606060038054610aaa90612873565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad690612873565b8015610b215780601f10610af857610100808354040283529160200191610b21565b820191905f5260205f20905b815481529060010190602001808311610b0457829003601f168201915b5050505050905090565b5f33610b38818585611405565b60019150505b92915050565b610b4c611528565b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610b7e611528565b601d8190556019829055601c54601b548291610b99916128bf565b610ba391906128bf565b601a55601954601854601754610bb991906128bf565b610bc391906128bf565b601681905560191015610c1d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c65737300000060448201526064015b60405180910390fd5b6063601a541115610c705760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c14565b5050565b610c7c611528565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610ca6611528565b670de0b6b3a76400006103e8610cbb60025490565b610cc69060016128d2565b610cd091906128e9565b610cda91906128e9565b811015610cf95760405162461bcd60e51b8152600401610c1490612908565b610d0b81670de0b6b3a76400006128d2565b60095550565b5f33610d1e858285611582565b610d298585856115fa565b506001949350505050565b5f33610b38818585610d468383611349565b610d5091906128bf565b611405565b610d5d611528565b610d665f611e8f565b565b610d70611528565b610258831015610dde5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c14565b6103e88211158015610dee575060015b610e535760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c14565b600e92909255600c55600d805460ff1916911515919091179055565b610e77611528565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b610ea9611528565b670de0b6b3a76400006103e8610ebe60025490565b610ec99060016128d2565b610ed391906128e9565b610edd91906128e9565b821015610efc5760405162461bcd60e51b8152600401610c1490612908565b610f0e82670de0b6b3a76400006128d2565b600955670de0b6b3a76400006103e8610f2660025490565b610f319060056128d2565b610f3b91906128e9565b610f4591906128e9565b811015610f645760405162461bcd60e51b8152600401610c1490612954565b610f7681670de0b6b3a76400006128d2565b600b555050565b610f85611528565b60178390556018829055601981905580610f9f83856128bf565b610fa991906128bf565b601681905560191015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c14565b505050565b61100b611528565b670de0b6b3a76400006103e861102060025490565b61102b9060056128d2565b61103591906128e9565b61103f91906128e9565b81101561105e5760405162461bcd60e51b8152600401610c1490612954565b61107081670de0b6b3a76400006128d2565b600b5550565b606060048054610aaa90612873565b5f33816110928286611349565b9050838110156110f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c14565b610d298286868403611405565b5f33610b388185856115fa565b611114611528565b6001600160a01b03919091165f908152601e60205260409020805460ff1916911515919091179055565b611146611528565b601b839055601c829055601d8190558061116083856128bf565b61116a91906128bf565b601a81905560631015610ffe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c14565b6111c7611528565b6012805462ffff0019166201010017905542600f55565b5f6111e7611528565b620186a06111f460025490565b6111ff9060016128d2565b61120991906128e9565b8210156112765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c14565b6103e861128260025490565b61128d90600a6128d2565b61129791906128e9565b8211156113015760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610c14565b50600a81905560015b919050565b5f611318611528565b506012805460ff1916905560026017819055600160188190556019829055601b829055601c819055601d9190915590565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61137b611528565b6001600160a01b0381166113e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c14565b6113e981611e8f565b50565b5f6113f5611528565b506007805460ff19169055600190565b6001600160a01b0383166114675760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c14565b6001600160a01b0382166114c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c14565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c14565b5f61158d8484611349565b90505f1981146115f457818110156115e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c14565b6115f48484848403611405565b50505050565b6001600160a01b0383165f908152601e602052604090205460ff168061163757506001600160a01b0382165f908152601e602052604090205460ff165b1561164757610ffe838383611ee0565b60125460ff1615611aef576005546001600160a01b0384811691161480159061167e57506005546001600160a01b03838116911614155b801561169257506001600160a01b03821615155b80156116a957506001600160a01b03821661dead14155b80156116bd5750600754610100900460ff16155b15611aef57601254610100900460ff16611753576001600160a01b0383165f908152601e602052604090205460ff168061170e57506001600160a01b0382165f908152601e602052604090205460ff165b6117535760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610c14565b60075460ff1615611898576005546001600160a01b038381169116148015906117ae57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117ec57507f000000000000000000000000d8b70597cf429a7df809136c8dfda9331110dc886001600160a01b0316826001600160a01b031614155b1561189857325f9081526006602052604090205443116118865760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c14565b325f9081526006602052604090204390555b6001600160a01b0383165f90815260208052604090205460ff1680156118d657506001600160a01b0382165f908152601f602052604090205460ff16155b156119b6576009548111156119485760405162461bcd60e51b815260206004820152603260248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527136b0bc2832b92a3930b739b0b1ba34b7b71760711b6064820152608401610c14565b600b546001600160a01b0383165f9081526020819052604090205461196d90836128bf565b11156119b15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c14565b611aef565b6001600160a01b0382165f90815260208052604090205460ff1680156119f457506001600160a01b0383165f908152601f602052604090205460ff16155b15611a67576009548111156119b15760405162461bcd60e51b815260206004820152603360248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152721036b0bc2832b92a3930b739b0b1ba34b7b71760691b6064820152608401610c14565b6001600160a01b0382165f908152601f602052604090205460ff16611aef57600b546001600160a01b0383165f90815260208190526040902054611aab90836128bf565b1115611aef5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c14565b305f90815260208190526040902054600a5481108015908190611b1a575060125462010000900460ff165b8015611b2e5750600754610100900460ff16155b8015611b5157506001600160a01b0385165f90815260208052604090205460ff16155b8015611b7557506001600160a01b0385165f908152601e602052604090205460ff16155b8015611b9957506001600160a01b0384165f908152601e602052604090205460ff16155b15611bc1576007805461ff001916610100179055611bb5612082565b6007805461ff00191690555b600754610100900460ff16158015611bef57506001600160a01b0384165f90815260208052604090205460ff165b8015611bfd5750600d5460ff165b8015611c185750600e54600f54611c1491906128bf565b4210155b8015611c3c57506001600160a01b0385165f908152601e602052604090205460ff16155b15611c4b57611c4961226d565b505b6007546001600160a01b0386165f908152601e602052604090205460ff610100909204821615911680611c9557506001600160a01b0385165f908152601e602052604090205460ff165b15611c9d57505f5b5f8115611e7b576001600160a01b0386165f90815260208052604090205460ff168015611ccb57505f601a54115b15611d8657611cf06064611cea601a54886123ca90919063ffffffff16565b906123dc565b9050601a54601c5482611d0391906128d2565b611d0d91906128e9565b60145f828254611d1d91906128bf565b9091555050601a54601d54611d3290836128d2565b611d3c91906128e9565b60155f828254611d4c91906128bf565b9091555050601a54601b54611d6190836128d2565b611d6b91906128e9565b60135f828254611d7b91906128bf565b90915550611e5d9050565b6001600160a01b0387165f90815260208052604090205460ff168015611dad57505f601654115b15611e5d57611dcc6064611cea601654886123ca90919063ffffffff16565b905060165460185482611ddf91906128d2565b611de991906128e9565b60145f828254611df991906128bf565b9091555050601654601954611e0e90836128d2565b611e1891906128e9565b60155f828254611e2891906128bf565b9091555050601654601754611e3d90836128d2565b611e4791906128e9565b60135f828254611e5791906128bf565b90915550505b8015611e6e57611e6e873083611ee0565b611e7881866129a2565b94505b611e86878787611ee0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611f445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c14565b6001600160a01b038216611fa65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c14565b6001600160a01b0383165f908152602081905260409020548181101561201d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c14565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115f4565b305f9081526020819052604081205490505f6015546013546014546120a791906128bf565b6120b191906128bf565b90505f8215806120bf575081155b156120c957505050565b600a546120d79060146128d2565b8311156120ef57600a546120ec9060146128d2565b92505b5f6002836014548661210191906128d2565b61210b91906128e9565b61211591906128e9565b90505f61212285836123e7565b90504761212e826123f2565b5f61213947836123e7565b90505f61215587611cea601354856123ca90919063ffffffff16565b90505f61217188611cea601554866123ca90919063ffffffff16565b90505f8161217f84866129a2565b61218991906129a2565b5f6014819055601381905560158190556008546040519293506001600160a01b031691849181818185875af1925050503d805f81146121e3576040519150601f19603f3d011682016040523d82523d5f602084013e6121e8565b606091505b509098505086158015906121fb57505f81115b1561220a5761220a87826125a8565b600754604051620100009091046001600160a01b03169047905f81818185875af1925050503d805f8114612259576040519150601f19603f3d011682016040523d82523d5f602084013e61225e565b606091505b50505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f000000000000000000000000d8b70597cf429a7df809136c8dfda9331110dc881660048201525f90819030906370a0823190602401602060405180830381865afa1580156122d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fb91906129b5565b90505f612319612710611cea600c54856123ca90919063ffffffff16565b9050801561234e5761234e7f000000000000000000000000d8b70597cf429a7df809136c8dfda9331110dc8861dead83611ee0565b5f7f000000000000000000000000d8b70597cf429a7df809136c8dfda9331110dc889050806001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156123aa575f80fd5b505af11580156123bc573d5f803e3d5ffd5b505050506001935050505090565b5f6123d582846128d2565b9392505050565b5f6123d582846128e9565b5f6123d582846129a2565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612425576124256129cc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124c591906129e0565b816001815181106124d8576124d86129cc565b60200260200101906001600160a01b031690816001600160a01b031681525050612523307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611405565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125779085905f908690309042906004016129fb565b5f604051808303815f87803b15801561258e575f80fd5b505af11580156125a0573d5f803e3d5ffd5b505050505050565b6125d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611405565b60405163f305d71960e01b8152306004820152602481018390525f60448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561265a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061267f9190612a6a565b5050505050565b5f6020808352835180828501525f5b818110156126b157858101830151858201604001528201612695565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113e9575f80fd5b5f80604083850312156126f6575f80fd5b8235612701816126d1565b946020939093013593505050565b5f6020828403121561271f575f80fd5b81356123d5816126d1565b5f806040838503121561273b575f80fd5b50508035926020909101359150565b5f6020828403121561275a575f80fd5b5035919050565b5f805f60608486031215612773575f80fd5b833561277e816126d1565b9250602084013561278e816126d1565b929592945050506040919091013590565b8035801515811461130a575f80fd5b5f805f606084860312156127c0575f80fd5b83359250602084013591506127d76040850161279f565b90509250925092565b5f80604083850312156127f1575f80fd5b82356127fc816126d1565b915061280a6020840161279f565b90509250929050565b5f805f60608486031215612825575f80fd5b505081359360208301359350604090920135919050565b5f806040838503121561284d575f80fd5b8235612858816126d1565b91506020830135612868816126d1565b809150509250929050565b600181811c9082168061288757607f821691505b6020821081036128a557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610b3e57610b3e6128ab565b8082028115828204841417610b3e57610b3e6128ab565b5f8261290357634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602c908201527f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760408201526b6572207468616e20302e312560a01b606082015260800190565b6020808252602e908201527f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60408201526d6f776572207468616e20302e352560901b606082015260800190565b81810381811115610b3e57610b3e6128ab565b5f602082840312156129c5575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156129f0575f80fd5b81516123d5816126d1565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612a495784516001600160a01b031683529383019391830191600101612a24565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612a7c575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204c842b7ff93609385bc5217722c2af0081061b4c1b5c62a4ddeb6f67abb0e2eb64736f6c63430008150033
Deployed Bytecode Sourcemap
38537:17235:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16341:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18758:226;;;;;;;;;;-1:-1:-1;18758:226:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;18758:226:0;1023:187:1;46419:161:0;;;;;;;;;;-1:-1:-1;46419:161:0;;;;;:::i;:::-;;:::i;:::-;;45741:392;;;;;;;;;;-1:-1:-1;45741:392:0;;;;;:::i;:::-;;:::i;39957:63::-;;;;;;;;;;-1:-1:-1;39957:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39654:29;;;;;;;;;;;;;;;;;;;1866:25:1;;;1854:2;1839:18;39654:29:0;1720:177:1;38733:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2093:32:1;;;2075:51;;2063:2;2048:18;38733:51:0;1902:230:1;17461:108:0;;;;;;;;;;-1:-1:-1;17549:12:0;;17461:108;;46588:103;;;;;;;;;;-1:-1:-1;46588:103:0;;;;;:::i;:::-;;:::i;39299:47::-;;;;;;;;;;;;;;;;39121:36;;;;;;;;;;;;;;;;39789:30;;;;;;;;;;;;;;;;39550:33;;;;;;;;;;;;;;;;39510;;;;;;;;;;;;;;;;44168:271;;;;;;;;;;-1:-1:-1;44168:271:0;;;;;:::i;:::-;;:::i;19564:295::-;;;;;;;;;;-1:-1:-1;19564:295:0;;;;;:::i;:::-;;:::i;38836:53::-;;;;;;;;;;;;38882:6;38836:53;;39209:45;;;;;;;;;;;;;;;;17303:93;;;;;;;;;;-1:-1:-1;17303:93:0;;17386:2;3133:36:1;;3121:2;3106:18;17303:93:0;2991:184:1;39469:32:0;;;;;;;;;;-1:-1:-1;39469:32:0;;;;;;;;;;;20268:263;;;;;;;;;;-1:-1:-1;20268:263:0;;;;;:::i;:::-;;:::i;38791:38::-;;;;;;;;;;;;;;;38999:32;;;;;;;;;;;;;;;;39626:21;;;;;;;;;;;;;;;;46699:126;;;;;;;;;;-1:-1:-1;46699:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;46789:28:0;46765:4;46789:28;;;:19;:28;;;;;;;;;46699:126;39437:25;;;;;;;;;;-1:-1:-1;39437:25:0;;;;;;;;;;;39078:34;;;;;;;;;;;;;;;;17632:143;;;;;;;;;;-1:-1:-1;17632:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;17749:18:0;17722:7;17749:18;;;;;;;;;;;;17632:143;9700:103;;;;;;;;;;;;;:::i;52831:560::-;;;;;;;;;;-1:-1:-1;52831:560:0;;;;;:::i;:::-;;:::i;44765:169::-;;;;;;;;;;-1:-1:-1;44765:169:0;;;;;:::i;:::-;;:::i;43624:536::-;;;;;;;;;;-1:-1:-1;43624:536:0;;;;;:::i;:::-;;:::i;44942:387::-;;;;;;;;;;-1:-1:-1;44942:387:0;;;;;:::i;:::-;;:::i;9052:87::-;;;;;;;;;;-1:-1:-1;9125:6:0;;-1:-1:-1;;;;;9125:6:0;9052:87;;38966:24;;;;;;;;;;-1:-1:-1;38966:24:0;;;;-1:-1:-1;;;;;38966:24:0;;;44447:310;;;;;;;;;;-1:-1:-1;44447:310:0;;;;;:::i;:::-;;:::i;16560:104::-;;;;;;;;;;;;;:::i;39727:24::-;;;;;;;;;;;;;;;;39353:35;;;;;;;;;;;;;;;;39590:27;;;;;;;;;;;;;;;;39864:25;;;;;;;;;;;;;;;;21034:498;;;;;;;;;;-1:-1:-1;21034:498:0;;;;;:::i;:::-;;:::i;39261:29::-;;;;;;;;;;;;;;;;17981:218;;;;;;;;;;-1:-1:-1;17981:218:0;;;;;:::i;:::-;;:::i;40027:57::-;;;;;;;;;;-1:-1:-1;40027:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46141:132;;;;;;;;;;-1:-1:-1;46141:132:0;;;;;:::i;:::-;;:::i;45337:396::-;;;;;;;;;;-1:-1:-1;45337:396:0;;;;;:::i;:::-;;:::i;42333:156::-;;;;;;;;;;;;;:::i;38687:39::-;;;;;;;;;;-1:-1:-1;38687:39:0;;;;;;;;39760:22;;;;;;;;;;;;;;;;43136:480;;;;;;;;;;-1:-1:-1;43136:480:0;;;;;:::i;:::-;;:::i;39397:33::-;;;;;;;;;;-1:-1:-1;39397:33:0;;;;;;;;42578:293;;;;;;;;;;;;;:::i;18262:176::-;;;;;;;;;;-1:-1:-1;18262:176:0;;;;;:::i;:::-;;:::i;39038:33::-;;;;;;;;;;;;;;;;39690:30;;;;;;;;;;;;;;;;9958:238;;;;;;;;;;-1:-1:-1;9958:238:0;;;;;:::i;:::-;;:::i;39826:31::-;;;;;;;;;;;;;;;;42932:134;;;;;;;;;;;;;:::i;39164:38::-;;;;;;;;;;-1:-1:-1;39164:38:0;;;;;;;;38926:33;;;;;;;;;;-1:-1:-1;38926:33:0;;;;;;;-1:-1:-1;;;;;38926:33:0;;;16341:100;16395:13;16428:5;16421:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16341:100;:::o;18758:226::-;18866:4;7662:10;18922:32;7662:10;18938:7;18947:6;18922:8;:32::i;:::-;18972:4;18965:11;;;18758:226;;;;;:::o;46419:161::-;8938:13;:11;:13::i;:::-;46530:18:::1;:42:::0;;-1:-1:-1;;;;;46530:42:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;46530:42:0;;::::1;::::0;;;::::1;::::0;;46419:161::o;45741:392::-;8938:13;:11;:13::i;:::-;45819:10:::1;:17:::0;;;45847:9:::1;:15:::0;;;45901:16:::1;::::0;45883:15:::1;::::0;45832:4;;45883:34:::1;::::0;::::1;:::i;:::-;:47;;;;:::i;:::-;45873:7;:57:::0;45985:9:::1;::::0;45967:15:::1;::::0;45950:14:::1;::::0;:32:::1;::::0;45967:15;45950:32:::1;:::i;:::-;:44;;;;:::i;:::-;45941:6;:53:::0;;;46023:2:::1;-1:-1:-1::0;46013:12:0::1;46005:54;;;::::0;-1:-1:-1;;;46005:54:0;;5549:2:1;46005:54:0::1;::::0;::::1;5531:21:1::0;5588:2;5568:18;;;5561:30;5627:31;5607:18;;;5600:59;5676:18;;46005:54:0::1;;;;;;;;;46089:2;46078:7;;:13;;46070:55;;;::::0;-1:-1:-1;;;46070:55:0;;5907:2:1;46070:55:0::1;::::0;::::1;5889:21:1::0;5946:2;5926:18;;;5919:30;5985:31;5965:18;;;5958:59;6034:18;;46070:55:0::1;5705:353:1::0;46070:55:0::1;45741:392:::0;;:::o;46588:103::-;8938:13;:11;:13::i;:::-;46662:9:::1;:21:::0;;-1:-1:-1;;;;;;46662:21:0::1;-1:-1:-1::0;;;;;46662:21:0;;;::::1;::::0;;;::::1;::::0;;46588:103::o;44168:271::-;8938:13;:11;:13::i;:::-;44305:4:::1;44297;44276:13;17549:12:::0;;;17461:108;44276:13:::1;:17;::::0;44292:1:::1;44276:17;:::i;:::-;44275:26;;;;:::i;:::-;44274:35;;;;:::i;:::-;44264:6;:45;;44242:139;;;;-1:-1:-1::0;;;44242:139:0::1;;;;;;;:::i;:::-;44412:19;:6:::0;44422:8:::1;44412:19;:::i;:::-;44392:17;:39:::0;-1:-1:-1;44168:271:0:o;19564:295::-;19695:4;7662:10;19753:38;19769:4;7662:10;19784:6;19753:15;:38::i;:::-;19802:27;19812:4;19818:2;19822:6;19802:9;:27::i;:::-;-1:-1:-1;19847:4:0;;19564:295;-1:-1:-1;;;;19564:295:0:o;20268:263::-;20381:4;7662:10;20437:64;7662:10;20453:7;20490:10;20462:25;7662:10;20453:7;20462:9;:25::i;:::-;:38;;;;:::i;:::-;20437:8;:64::i;9700:103::-;8938:13;:11;:13::i;:::-;9765:30:::1;9792:1;9765:18;:30::i;:::-;9700:103::o:0;52831:560::-;8938:13;:11;:13::i;:::-;53033:3:::1;53010:19;:26;;52988:127;;;::::0;-1:-1:-1;;;52988:127:0;;7073:2:1;52988:127:0::1;::::0;::::1;7055:21:1::0;7112:2;7092:18;;;7085:30;7151:34;7131:18;;;7124:62;-1:-1:-1;;;7202:18:1;;;7195:49;7261:19;;52988:127:0::1;6871:415:1::0;52988:127:0::1;53160:4;53148:8;:16;;:33;;;;-1:-1:-1::0;53168:13:0;53148:33:::1;53126:131;;;::::0;-1:-1:-1;;;53126:131:0;;7493:2:1;53126:131:0::1;::::0;::::1;7475:21:1::0;7532:2;7512:18;;;7505:30;7571:34;7551:18;;;7544:62;-1:-1:-1;;;7622:18:1;;;7615:46;7678:19;;53126:131:0::1;7291:412:1::0;53126:131:0::1;53268:15;:37:::0;;;;53316:16:::1;:27:::0;53354:18:::1;:29:::0;;-1:-1:-1;;53354:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52831:560::o;44765:169::-;8938:13;:11;:13::i;:::-;-1:-1:-1;;;;;44880:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;44880:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44765:169::o;43624:536::-;8938:13;:11;:13::i;:::-;43806:4:::1;43798;43777:13;17549:12:::0;;;17461:108;43777:13:::1;:17;::::0;43793:1:::1;43777:17;:::i;:::-;43776:26;;;;:::i;:::-;43775:35;;;;:::i;:::-;43763:8;:47;;43741:141;;;;-1:-1:-1::0;;;43741:141:0::1;;;;;;;:::i;:::-;43913:21;:8:::0;43925::::1;43913:21;:::i;:::-;43893:17;:41:::0;44016:4:::1;44008;43987:13;17549:12:::0;;;17461:108;43987:13:::1;:17;::::0;44003:1:::1;43987:17;:::i;:::-;43986:26;;;;:::i;:::-;43985:35;;;;:::i;:::-;43969:12;:51;;43947:147;;;;-1:-1:-1::0;;;43947:147:0::1;;;;;;;:::i;:::-;44127:25;:12:::0;44143:8:::1;44127:25;:::i;:::-;44105:19;:47:::0;-1:-1:-1;;43624:536:0:o;44942:387::-;8938:13;:11;:13::i;:::-;45091:14:::1;:29:::0;;;45131:15:::1;:31:::0;;;45173:9:::1;:19:::0;;;45185:7;45212:32:::1;45149:13:::0;45108:12;45212:32:::1;:::i;:::-;:44;;;;:::i;:::-;45203:6;:53:::0;;;45285:2:::1;-1:-1:-1::0;45275:12:0::1;45267:54;;;::::0;-1:-1:-1;;;45267:54:0;;5549:2:1;45267:54:0::1;::::0;::::1;5531:21:1::0;5588:2;5568:18;;;5561:30;5627:31;5607:18;;;5600:59;5676:18;;45267:54:0::1;5347:353:1::0;45267:54:0::1;44942:387:::0;;;:::o;44447:310::-;8938:13;:11;:13::i;:::-;44619:4:::1;44611;44590:13;17549:12:::0;;;17461:108;44590:13:::1;:17;::::0;44606:1:::1;44590:17;:::i;:::-;44589:26;;;;:::i;:::-;44588:35;;;;:::i;:::-;44578:6;:45;;44556:141;;;;-1:-1:-1::0;;;44556:141:0::1;;;;;;;:::i;:::-;44730:19;:6:::0;44740:8:::1;44730:19;:::i;:::-;44708;:41:::0;-1:-1:-1;44447:310:0:o;16560:104::-;16616:13;16649:7;16642:14;;;;;:::i;21034:498::-;21152:4;7662:10;21152:4;21235:25;7662:10;21252:7;21235:9;:25::i;:::-;21208:52;;21313:15;21293:16;:35;;21271:122;;;;-1:-1:-1;;;21271:122:0;;8325:2:1;21271:122:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;-1:-1:-1;;;8454:18:1;;;8447:35;8499:19;;21271:122:0;8123:401:1;21271:122:0;21429:60;21438:5;21445:7;21473:15;21454:16;:34;21429:8;:60::i;17981:218::-;18085:4;7662:10;18141:28;7662:10;18158:2;18162:6;18141:9;:28::i;46141:132::-;8938:13;:11;:13::i;:::-;-1:-1:-1;;;;;46226:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;46226:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46141:132::o;45337:396::-;8938:13;:11;:13::i;:::-;45487:15:::1;:30:::0;;;45528:16:::1;:32:::0;;;45571:10:::1;:20:::0;;;45584:7;45612:34:::1;45547:13:::0;45505:12;45612:34:::1;:::i;:::-;:47;;;;:::i;:::-;45602:7;:57:::0;;;45689:2:::1;-1:-1:-1::0;45678:13:0::1;45670:55;;;::::0;-1:-1:-1;;;45670:55:0;;5907:2:1;45670:55:0::1;::::0;::::1;5889:21:1::0;5946:2;5926:18;;;5919:30;5985:31;5965:18;;;5958:59;6034:18;;45670:55:0::1;5705:353:1::0;42333:156:0;8938:13;:11;:13::i;:::-;42387::::1;:20:::0;;-1:-1:-1;;42418:20:0;;;;;42466:15:::1;42449:14;:32:::0;42333:156::o;43136:480::-;43233:4;8938:13;:11;:13::i;:::-;43307:6:::1;43286:13;17549:12:::0;;;17461:108;43286:13:::1;:17;::::0;43302:1:::1;43286:17;:::i;:::-;43285:28;;;;:::i;:::-;43272:9;:41;;43250:144;;;::::0;-1:-1:-1;;;43250:144:0;;8731:2:1;43250:144:0::1;::::0;::::1;8713:21:1::0;8770:2;8750:18;;;8743:30;8809:34;8789:18;;;8782:62;-1:-1:-1;;;8860:18:1;;;8853:51;8921:19;;43250:144:0::1;8529:417:1::0;43250:144:0::1;43463:4;43441:13;17549:12:::0;;;17461:108;43441:13:::1;:18;::::0;43457:2:::1;43441:18;:::i;:::-;43440:27;;;;:::i;:::-;43427:9;:40;;43405:140;;;::::0;-1:-1:-1;;;43405:140:0;;9153:2:1;43405:140:0::1;::::0;::::1;9135:21:1::0;9192:2;9172:18;;;9165:30;9231:34;9211:18;;;9204:62;-1:-1:-1;;;9282:18:1;;;9275:48;9340:19;;43405:140:0::1;8951:414:1::0;43405:140:0::1;-1:-1:-1::0;43556:18:0::1;:30:::0;;;43604:4:::1;8962:1;43136:480:::0;;;:::o;42578:293::-;42633:4;8938:13;:11;:13::i;:::-;-1:-1:-1;42650:14:0::1;:22:::0;;-1:-1:-1;;42650:22:0::1;::::0;;42700:1:::1;42683:14;:18:::0;;;42650:22;42712:15:::1;:19:::0;;;42742:9:::1;:13:::0;;;42766:15:::1;:19:::0;;;42796:16:::1;:20:::0;;;42827:10:::1;:14:::0;;;;42578:293;:::o;18262:176::-;-1:-1:-1;;;;;18403:18:0;;;18376:7;18403:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18262:176::o;9958:238::-;8938:13;:11;:13::i;:::-;-1:-1:-1;;;;;10061:22:0;::::1;10039:110;;;::::0;-1:-1:-1;;;10039:110:0;;9572:2:1;10039:110:0::1;::::0;::::1;9554:21:1::0;9611:2;9591:18;;;9584:30;9650:34;9630:18;;;9623:62;-1:-1:-1;;;9701:18:1;;;9694:36;9747:19;;10039:110:0::1;9370:402:1::0;10039:110:0::1;10160:28;10179:8;10160:18;:28::i;:::-;9958:238:::0;:::o;42932:134::-;42991:4;8938:13;:11;:13::i;:::-;-1:-1:-1;43008:20:0::1;:28:::0;;-1:-1:-1;;43008:28:0::1;::::0;;;42932:134;:::o;25160:380::-;-1:-1:-1;;;;;25296:19:0;;25288:68;;;;-1:-1:-1;;;25288:68:0;;9979:2:1;25288:68:0;;;9961:21:1;10018:2;9998:18;;;9991:30;10057:34;10037:18;;;10030:62;-1:-1:-1;;;10108:18:1;;;10101:34;10152:19;;25288:68:0;9777:400:1;25288:68:0;-1:-1:-1;;;;;25375:21:0;;25367:68;;;;-1:-1:-1;;;25367:68:0;;10384:2:1;25367:68:0;;;10366:21:1;10423:2;10403:18;;;10396:30;10462:34;10442:18;;;10435:62;-1:-1:-1;;;10513:18:1;;;10506:32;10555:19;;25367:68:0;10182:398:1;25367:68:0;-1:-1:-1;;;;;25448:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25500:32;;1866:25:1;;;25500:32:0;;1839:18:1;25500:32:0;;;;;;;25160:380;;;:::o;9217:132::-;9125:6;;-1:-1:-1;;;;;9125:6:0;7662:10;9281:23;9273:68;;;;-1:-1:-1;;;9273:68:0;;10787:2:1;9273:68:0;;;10769:21:1;;;10806:18;;;10799:30;10865:34;10845:18;;;10838:62;10917:18;;9273:68:0;10585:356:1;25831:502:0;25966:24;25993:25;26003:5;26010:7;25993:9;:25::i;:::-;25966:52;;-1:-1:-1;;26033:16:0;:37;26029:297;;26133:6;26113:16;:26;;26087:117;;;;-1:-1:-1;;;26087:117:0;;11148:2:1;26087:117:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226:31;11206:18;;;11199:59;11275:18;;26087:117:0;10946:353:1;26087:117:0;26248:51;26257:5;26264:7;26292:6;26273:16;:25;26248:8;:51::i;:::-;25955:378;25831:502;;;:::o;46833:4868::-;-1:-1:-1;;;;;46963:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46992:23:0;;;;;;:19;:23;;;;;;;;46963:52;46959:139;;;47032:33;47048:4;47054:2;47058:6;47032:15;:33::i;46959:139::-;47114:14;;;;47110:2497;;;9125:6;;-1:-1:-1;;;;;47167:15:0;;;9125:6;;47167:15;;;;:49;;-1:-1:-1;9125:6:0;;-1:-1:-1;;;;;47203:13:0;;;9125:6;;47203:13;;47167:49;:86;;;;-1:-1:-1;;;;;;47237:16:0;;;;47167:86;:128;;;;-1:-1:-1;;;;;;47274:21:0;;47288:6;47274:21;;47167:128;:160;;;;-1:-1:-1;47317:10:0;;;;;;;47316:11;47167:160;47145:2451;;;47367:13;;;;;;;47362:223;;-1:-1:-1;;;;;47439:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47468:23:0;;;;;;:19;:23;;;;;;;;47439:52;47405:160;;;;-1:-1:-1;;;47405:160:0;;11506:2:1;47405:160:0;;;11488:21:1;11545:2;11525:18;;;11518:30;-1:-1:-1;;;11564:18:1;;;11557:52;11626:18;;47405:160:0;11304:346:1;47405:160:0;47741:20;;;;47737:641;;;9125:6;;-1:-1:-1;;;;;47816:13:0;;;9125:6;;47816:13;;;;:72;;;47872:15;-1:-1:-1;;;;;47858:30:0;:2;-1:-1:-1;;;;;47858:30:0;;;47816:72;:129;;;;;47931:13;-1:-1:-1;;;;;47917:28:0;:2;-1:-1:-1;;;;;47917:28:0;;;47816:129;47786:573;;;48063:9;48034:39;;;;:28;:39;;;;;;48109:12;-1:-1:-1;47996:258:0;;;;-1:-1:-1;;;47996:258:0;;11857:2:1;47996:258:0;;;11839:21:1;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;12006:34;11986:18;;;11979:62;-1:-1:-1;;;12057:19:1;;;12050:40;12107:19;;47996:258:0;11655:477:1;47996:258:0;48310:9;48281:39;;;;:28;:39;;;;;48323:12;48281:54;;47786:573;-1:-1:-1;;;;;48452:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;48509:35:0;;;;;;:31;:35;;;;;;;;48508:36;48452:92;48426:1155;;;48631:17;;48621:6;:27;;48587:163;;;;-1:-1:-1;;;48587:163:0;;12339:2:1;48587:163:0;;;12321:21:1;12378:2;12358:18;;;12351:30;12417:34;12397:18;;;12390:62;-1:-1:-1;;;12468:18:1;;;12461:48;12526:19;;48587:163:0;12137:414:1;48587:163:0;48833:19;;-1:-1:-1;;;;;17749:18:0;;17722:7;17749:18;;;;;;;;;;;48807:22;;:6;:22;:::i;:::-;:45;;48773:150;;;;-1:-1:-1;;;48773:150:0;;12758:2:1;48773:150:0;;;12740:21:1;12797:2;12777:18;;;12770:30;-1:-1:-1;;;12816:18:1;;;12809:49;12875:18;;48773:150:0;12556:343:1;48773:150:0;48426:1155;;;-1:-1:-1;;;;;49021:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;49076:37:0;;;;;;:31;:37;;;;;;;;49075:38;49021:92;48995:586;;;49200:17;;49190:6;:27;;49156:164;;;;-1:-1:-1;;;49156:164:0;;13106:2:1;49156:164:0;;;13088:21:1;13145:2;13125:18;;;13118:30;13184:34;13164:18;;;13157:62;-1:-1:-1;;;13235:18:1;;;13228:49;13294:19;;49156:164:0;12904:415:1;48995:586:0;-1:-1:-1;;;;;49351:35:0;;;;;;:31;:35;;;;;;;;49346:235;;49471:19;;-1:-1:-1;;;;;17749:18:0;;17722:7;17749:18;;;;;;;;;;;49445:22;;:6;:22;:::i;:::-;:45;;49411:150;;;;-1:-1:-1;;;49411:150:0;;12758:2:1;49411:150:0;;;12740:21:1;12797:2;12777:18;;;12770:30;-1:-1:-1;;;12816:18:1;;;12809:49;12875:18;;49411:150:0;12556:343:1;49411:150:0;49668:4;49619:28;17749:18;;;;;;;;;;;49726;;49702:42;;;;;;;49775:37;;-1:-1:-1;49799:13:0;;;;;;;49775:37;:65;;;;-1:-1:-1;49830:10:0;;;;;;;49829:11;49775:65;:114;;;;-1:-1:-1;;;;;;49858:31:0;;;;;;:25;:31;;;;;;;;49857:32;49775:114;:157;;;;-1:-1:-1;;;;;;49907:25:0;;;;;;:19;:25;;;;;;;;49906:26;49775:157;:198;;;;-1:-1:-1;;;;;;49950:23:0;;;;;;:19;:23;;;;;;;;49949:24;49775:198;49757:334;;;50000:10;:17;;-1:-1:-1;;50000:17:0;;;;;50034:10;:8;:10::i;:::-;50061;:18;;-1:-1:-1;;50061:18:0;;;49757:334;50122:10;;;;;;;50121:11;:57;;;;-1:-1:-1;;;;;;50149:29:0;;;;;;:25;:29;;;;;;;;50121:57;:92;;;;-1:-1:-1;50195:18:0;;;;50121:92;:160;;;;;50266:15;;50249:14;;:32;;;;:::i;:::-;50230:15;:51;;50121:160;:203;;;;-1:-1:-1;;;;;;50299:25:0;;;;;;:19;:25;;;;;;;;50298:26;50121:203;50103:289;;;50351:29;:27;:29::i;:::-;;50103:289;50420:10;;-1:-1:-1;;;;;50532:25:0;;50404:12;50532:25;;;:19;:25;;;;;;50420:10;;;;;;;50419:11;;50532:25;;:52;;-1:-1:-1;;;;;;50561:23:0;;;;;;:19;:23;;;;;;;;50532:52;50528:100;;;-1:-1:-1;50611:5:0;50528:100;50640:12;50745:7;50741:907;;;-1:-1:-1;;;;;50797:29:0;;;;;;:25;:29;;;;;;;;:44;;;;;50840:1;50830:7;;:11;50797:44;50793:706;;;50869:28;50893:3;50869:19;50880:7;;50869:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;50862:35;;50966:7;;50946:16;;50939:4;:23;;;;:::i;:::-;50938:35;;;;:::i;:::-;50916:18;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;51030:7:0;;51016:10;;51009:17;;:4;:17;:::i;:::-;51008:29;;;;:::i;:::-;50992:12;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;51105:7:0;;51086:15;;51079:22;;:4;:22;:::i;:::-;51078:34;;;;:::i;:::-;51056:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;50793:706:0;;-1:-1:-1;50793:706:0;;-1:-1:-1;;;;;51174:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;51218:1;51209:6;;:10;51174:45;51170:329;;;51247:27;51270:3;51247:18;51258:6;;51247;:10;;:18;;;;:::i;:27::-;51240:34;;51342:6;;51323:15;;51316:4;:22;;;;:::i;:::-;51315:33;;;;:::i;:::-;51293:18;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;51404:6:0;;51391:9;;51384:16;;:4;:16;:::i;:::-;51383:27;;;;:::i;:::-;51367:12;;:43;;;;;;;:::i;:::-;;;;-1:-1:-1;;51477:6:0;;51459:14;;51452:21;;:4;:21;:::i;:::-;51451:32;;;;:::i;:::-;51429:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;51170:329:0;51519:8;;51515:91;;51548:42;51564:4;51578;51585;51548:15;:42::i;:::-;51622:14;51632:4;51622:14;;:::i;:::-;;;50741:907;51660:33;51676:4;51682:2;51686:6;51660:15;:33::i;:::-;46946:4755;;;;46833:4868;;;:::o;10356:191::-;10449:6;;;-1:-1:-1;;;;;10466:17:0;;;-1:-1:-1;;;;;;10466:17:0;;;;;;;10499:40;;10449:6;;;10466:17;10449:6;;10499:40;;10430:16;;10499:40;10419:128;10356:191;:::o;22002:877::-;-1:-1:-1;;;;;22133:18:0;;22125:68;;;;-1:-1:-1;;;22125:68:0;;13659:2:1;22125:68:0;;;13641:21:1;13698:2;13678:18;;;13671:30;13737:34;13717:18;;;13710:62;-1:-1:-1;;;13788:18:1;;;13781:35;13833:19;;22125:68:0;13457:401:1;22125:68:0;-1:-1:-1;;;;;22212:16:0;;22204:64;;;;-1:-1:-1;;;22204:64:0;;14065:2:1;22204:64:0;;;14047:21:1;14104:2;14084:18;;;14077:30;14143:34;14123:18;;;14116:62;-1:-1:-1;;;14194:18:1;;;14187:33;14237:19;;22204:64:0;13863:399:1;22204:64:0;-1:-1:-1;;;;;22354:15:0;;22332:19;22354:15;;;;;;;;;;;22402:21;;;;22380:109;;;;-1:-1:-1;;;22380:109:0;;14469:2:1;22380:109:0;;;14451:21:1;14508:2;14488:18;;;14481:30;14547:34;14527:18;;;14520:62;-1:-1:-1;;;14598:18:1;;;14591:36;14644:19;;22380:109:0;14267:402:1;22380:109:0;-1:-1:-1;;;;;22525:15:0;;;:9;:15;;;;;;;;;;;22543:20;;;22525:38;;22743:13;;;;;;;;;;:23;;;;;;22795:26;;1866:25:1;;;22743:13:0;;22795:26;;1839:18:1;22795:26:0;;;;;;;22834:37;44942:387;53399:1602;53482:4;53438:23;17749:18;;;;;;;;;;;53438:50;;53499:25;53595:12;;53561:18;;53527;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;53499:108;-1:-1:-1;53618:12:0;53647:20;;;:46;;-1:-1:-1;53671:22:0;;53647:46;53643:85;;;53710:7;;;53399:1602::o;53643:85::-;53762:18;;:23;;53783:2;53762:23;:::i;:::-;53744:15;:41;53740:115;;;53820:18;;:23;;53841:2;53820:23;:::i;:::-;53802:41;;53740:115;53916:23;54029:1;53996:17;53961:18;;53943:15;:36;;;;:::i;:::-;53942:71;;;;:::i;:::-;:88;;;;:::i;:::-;53916:114;-1:-1:-1;54041:26:0;54070:36;:15;53916:114;54070:19;:36::i;:::-;54041:65;-1:-1:-1;54147:21:0;54181:36;54041:65;54181:16;:36::i;:::-;54230:18;54251:44;:21;54277:17;54251:25;:44::i;:::-;54230:65;;54308:23;54334:81;54387:17;54334:34;54349:18;;54334:10;:14;;:34;;;;:::i;:81::-;54308:107;;54426:17;54446:51;54479:17;54446:28;54461:12;;54446:10;:14;;:28;;;;:::i;:51::-;54426:71;-1:-1:-1;54510:23:0;54426:71;54536:28;54549:15;54536:10;:28;:::i;:::-;:40;;;;:::i;:::-;54610:1;54589:18;:22;;;54622:18;:22;;;54655:12;:16;;;54706:9;;54698:45;;54510:66;;-1:-1:-1;;;;;;54706:9:0;;54729;;54698:45;54610:1;54698:45;54729:9;54706;54698:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54684:59:0;;-1:-1:-1;;54760:19:0;;;;;:42;;;54801:1;54783:15;:19;54760:42;54756:121;;;54819:46;54832:15;54849;54819:12;:46::i;:::-;54911:18;;54903:90;;54911:18;;;;-1:-1:-1;;;;;54911:18:0;;54957:21;;54903:90;;;;54957:21;54911:18;54903:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;53399:1602:0:o;55009:760::-;55100:15;55083:14;:32;55201:29;;-1:-1:-1;;;55201:29:0;;-1:-1:-1;;;;;55216:13:0;2093:32:1;55201:29:0;;;2075:51:1;55066:4:0;;;;55201;;:14;;2048:18:1;;55201:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55170:60;;55280:20;55303:77;55364:5;55303:42;55328:16;;55303:20;:24;;:42;;;;:::i;:77::-;55280:100;-1:-1:-1;55485:16:0;;55481:110;;55518:61;55534:13;55557:6;55566:12;55518:15;:61::i;:::-;55666:19;55703:13;55666:51;;55728:4;-1:-1:-1;;;;;55728:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55757:4;55750:11;;;;;55009:760;:::o;3478:98::-;3536:7;3563:5;3567:1;3563;:5;:::i;:::-;3556:12;3478:98;-1:-1:-1;;;3478:98:0:o;3877:::-;3935:7;3962:5;3966:1;3962;:5;:::i;3121:98::-;3179:7;3206:5;3210:1;3206;:5;:::i;51709:589::-;51859:16;;;51873:1;51859:16;;;;;;;;51835:21;;51859:16;;;;;;;;;;-1:-1:-1;51859:16:0;51835:40;;51904:4;51886;51891:1;51886:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;51886:23:0;;;-1:-1:-1;;;;;51886:23:0;;;;;51930:15;-1:-1:-1;;;;;51930:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51920:4;51925:1;51920:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;51920:32:0;;;-1:-1:-1;;;;;51920:32:0;;;;;51965:62;51982:4;51997:15;52015:11;51965:8;:62::i;:::-;52066:224;;-1:-1:-1;;;52066:224:0;;-1:-1:-1;;;;;52066:15:0;:66;;;;:224;;52147:11;;52173:1;;52217:4;;52244;;52264:15;;52066:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51764:534;51709:589;:::o;52306:517::-;52454:62;52471:4;52486:15;52504:11;52454:8;:62::i;:::-;52559:256;;-1:-1:-1;;;52559:256:0;;52631:4;52559:256;;;16919:34:1;16969:18;;;16962:34;;;52677:1:0;17012:18:1;;;17005:34;;;17055:18;;;17048:34;38882:6:0;17098:19:1;;;17091:44;52789:15:0;17151:19:1;;;17144:35;52559:15:0;-1:-1:-1;;;;;52559:31:0;;;;52598:9;;16853:19:1;;52559:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;52306:517;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1467:248::-;1535:6;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;-1:-1:-1;;1635:23:1;;;1705:2;1690:18;;;1677:32;;-1:-1:-1;1467:248:1:o;2137:180::-;2196:6;2249:2;2237:9;2228:7;2224:23;2220:32;2217:52;;;2265:1;2262;2255:12;2217:52;-1:-1:-1;2288:23:1;;2137:180;-1:-1:-1;2137:180:1:o;2322:456::-;2399:6;2407;2415;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2523:9;2510:23;2542:31;2567:5;2542:31;:::i;:::-;2592:5;-1:-1:-1;2649:2:1;2634:18;;2621:32;2662:33;2621:32;2662:33;:::i;:::-;2322:456;;2714:7;;-1:-1:-1;;;2768:2:1;2753:18;;;;2740:32;;2322:456::o;3180:160::-;3245:20;;3301:13;;3294:21;3284:32;;3274:60;;3330:1;3327;3320:12;3345:316;3419:6;3427;3435;3488:2;3476:9;3467:7;3463:23;3459:32;3456:52;;;3504:1;3501;3494:12;3456:52;3540:9;3527:23;3517:33;;3597:2;3586:9;3582:18;3569:32;3559:42;;3620:35;3651:2;3640:9;3636:18;3620:35;:::i;:::-;3610:45;;3345:316;;;;;:::o;3666:315::-;3731:6;3739;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3847:9;3834:23;3866:31;3891:5;3866:31;:::i;:::-;3916:5;-1:-1:-1;3940:35:1;3971:2;3956:18;;3940:35;:::i;:::-;3930:45;;3666:315;;;;;:::o;3986:316::-;4063:6;4071;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;-1:-1:-1;;4171:23:1;;;4241:2;4226:18;;4213:32;;-1:-1:-1;4292:2:1;4277:18;;;4264:32;;3986:316;-1:-1:-1;3986:316:1:o;4307:388::-;4375:6;4383;4436:2;4424:9;4415:7;4411:23;4407:32;4404:52;;;4452:1;4449;4442:12;4404:52;4491:9;4478:23;4510:31;4535:5;4510:31;:::i;:::-;4560:5;-1:-1:-1;4617:2:1;4602:18;;4589:32;4630:33;4589:32;4630:33;:::i;:::-;4682:7;4672:17;;;4307:388;;;;;:::o;4700:380::-;4779:1;4775:12;;;;4822;;;4843:61;;4897:4;4889:6;4885:17;4875:27;;4843:61;4950:2;4942:6;4939:14;4919:18;4916:38;4913:161;;4996:10;4991:3;4987:20;4984:1;4977:31;5031:4;5028:1;5021:15;5059:4;5056:1;5049:15;4913:161;;4700:380;;;:::o;5085:127::-;5146:10;5141:3;5137:20;5134:1;5127:31;5177:4;5174:1;5167:15;5201:4;5198:1;5191:15;5217:125;5282:9;;;5303:10;;;5300:36;;;5316:18;;:::i;6063:168::-;6136:9;;;6167;;6184:15;;;6178:22;;6164:37;6154:71;;6205:18;;:::i;6236:217::-;6276:1;6302;6292:132;;6346:10;6341:3;6337:20;6334:1;6327:31;6381:4;6378:1;6371:15;6409:4;6406:1;6399:15;6292:132;-1:-1:-1;6438:9:1;;6236:217::o;6458:408::-;6660:2;6642:21;;;6699:2;6679:18;;;6672:30;6738:34;6733:2;6718:18;;6711:62;-1:-1:-1;;;6804:2:1;6789:18;;6782:42;6856:3;6841:19;;6458:408::o;7708:410::-;7910:2;7892:21;;;7949:2;7929:18;;;7922:30;7988:34;7983:2;7968:18;;7961:62;-1:-1:-1;;;8054:2:1;8039:18;;8032:44;8108:3;8093:19;;7708:410::o;13324:128::-;13391:9;;;13412:11;;;13409:37;;;13426:18;;:::i;14884:184::-;14954:6;15007:2;14995:9;14986:7;14982:23;14978:32;14975:52;;;15023:1;15020;15013:12;14975:52;-1:-1:-1;15046:16:1;;14884:184;-1:-1:-1;14884:184:1:o;15205:127::-;15266:10;15261:3;15257:20;15254:1;15247:31;15297:4;15294:1;15287:15;15321:4;15318:1;15311:15;15337:251;15407:6;15460:2;15448:9;15439:7;15435:23;15431:32;15428:52;;;15476:1;15473;15466:12;15428:52;15508:9;15502:16;15527:31;15552:5;15527:31;:::i;15593:980::-;15855:4;15903:3;15892:9;15888:19;15934:6;15923:9;15916:25;15960:2;15998:6;15993:2;15982:9;15978:18;15971:34;16041:3;16036:2;16025:9;16021:18;16014:31;16065:6;16100;16094:13;16131:6;16123;16116:22;16169:3;16158:9;16154:19;16147:26;;16208:2;16200:6;16196:15;16182:29;;16229:1;16239:195;16253:6;16250:1;16247:13;16239:195;;;16318:13;;-1:-1:-1;;;;;16314:39:1;16302:52;;16409:15;;;;16374:12;;;;16350:1;16268:9;16239:195;;;-1:-1:-1;;;;;;;16490:32:1;;;;16485:2;16470:18;;16463:60;-1:-1:-1;;;16554:3:1;16539:19;16532:35;16451:3;15593:980;-1:-1:-1;;;15593:980:1:o;17190:306::-;17278:6;17286;17294;17347:2;17335:9;17326:7;17322:23;17318:32;17315:52;;;17363:1;17360;17353:12;17315:52;17392:9;17386:16;17376:26;;17442:2;17431:9;17427:18;17421:25;17411:35;;17486:2;17475:9;17471:18;17465:25;17455:35;;17190:306;;;;;:::o
Swarm Source
ipfs://4c842b7ff93609385bc5217722c2af0081061b4c1b5c62a4ddeb6f67abb0e2eb
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.