ERC-20
Overview
Max Total Supply
1,000,000 ApeGun
Holders
25
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,855.826437565646862346 ApeGunValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ApeGun
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-21 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the 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/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.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/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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's 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 {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; 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; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, 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); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; 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; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; 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; } // File: contracts/ApeGun.sol pragma solidity ^0.8.21; contract ApeGun is ERC20, Ownable { using SafeMath for uint256; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); IUniswapV2Router02 public immutable uniswapV2Router; bool private swapping; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; address public revShareWallet; address public teamWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("ApeGun", "ApeGun") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 2; uint256 _buyLiquidityFee = 1; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellTeamFee = 2; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 10_000 * 1e18; // 1% maxWallet = 10_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0x68F28Fccc087fB7F9FF900fc545AcF809ae422d4); // set as revShare wallet teamWallet = owner(); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{value: address(this).balance}(""); } function withdrawStuckApeGun() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckApeGun","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805463ffffffff60a01b1916600160a01b179055601a805460ff1916600117905534801562000033575f80fd5b5060408051808201825260068082526520b832a3bab760d11b6020808401829052845180860190955291845290830152906003620000728382620006f9565b506004620000818282620006f9565b5050506200009e62000098620003ee60201b60201c565b620003f2565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c081600162000443565b6001600160a01b03811660a08190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000109573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012f9190620007c1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a19190620007c1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002129190620007c1565b6001600160a01b031660808190526200022d90600162000443565b6080516200023d90600162000477565b69021e19e0c9bab24000006006819055600855600260018180828169d3c21bcecceda10000006127106200027382600562000804565b6200027f919062000824565b600755600d879055600e869055600f859055846200029e878962000844565b620002aa919062000844565b600c5560118490556012839055601382905581620002c9848662000844565b620002d5919062000844565b601055600980546001600160a01b0319167368f28fccc087fb7f9ff900fc545acf809ae422d4179055620003116005546001600160a01b031690565b600a80546001600160a01b0319166001600160a01b039283161790556005546200033e91166001620004ca565b6200034b306001620004ca565b6200035a61dead6001620004ca565b62000379620003716005546001600160a01b031690565b600162000443565b6200038630600162000443565b6200039561dead600162000443565b6001601b5f620003ad6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055620003e0338262000532565b50505050505050506200085a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200044d620005f7565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004d4620005f7565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200058e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620005a1919062000844565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000585565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200068357607f821691505b602082108103620006a257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000655575f81815260208120601f850160051c81016020861015620006d05750805b601f850160051c820191505b81811015620006f157828155600101620006dc565b505050505050565b81516001600160401b038111156200071557620007156200065a565b6200072d816200072684546200066e565b84620006a8565b602080601f83116001811462000763575f84156200074b5750858301515b5f19600386901b1c1916600185901b178555620006f1565b5f85815260208120601f198616915b82811015620007935788860151825594840194600190910190840162000772565b5085821015620007b157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007d2575f80fd5b81516001600160a01b0381168114620007e9575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200081e576200081e620007f0565b92915050565b5f826200083f57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200081e576200081e620007f0565b60805160a051612d51620008ad5f395f8181610495015281816126df01528181612796015281816127d201528181612846015261286d01525f81816105f60152818161105201526116c70152612d515ff3fe6080604052600436106103b6575f3560e01c80637cb332bb116101e9578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610af3578063f9f92be414610a76578063fde83a3414610b08578063fe575a8714610b1d575f80fd5b8063e2f4560514610a95578063f11a24d314610aaa578063f2fde38b14610abf578063f637434214610ade575f80fd5b8063d729715f116100d8578063d729715f14610a2d578063d85ba06314610a42578063dd62ed3e14610a57578063e19b282314610a76575f80fd5b8063c17b5b8c146109bb578063c18bc195146109da578063c8c8ebe4146109f9578063d257b34f14610a0e575f80fd5b8063a457c2d71161017e578063b62496f51161014e578063b62496f51461092f578063bbc0c7421461095d578063bc205ad31461097d578063c02466681461099c575f80fd5b8063a457c2d7146108b3578063a9059cbb146108d2578063aa0e4388146108f1578063adee28ff14610910575f80fd5b8063924de9b7116101b9578063924de9b71461084c57806395d89b411461086b5780639a7a23d61461087f5780639c2e4ac61461089e575f80fd5b80637cb332bb146107dd5780638095d564146107fc5780638a8c523c1461081b5780638da5cb5b1461082f575f80fd5b80633dc599ff116102d55780636ddd17131161026a5780637571336a1161023a5780637571336a1461076157806375e3661e14610780578063782c4e991461079f5780637ca8448a146107be575f80fd5b80636ddd1713146106e557806370a0823114610705578063715018a614610739578063751039fc1461074d575f80fd5b80634fbee193116102a55780634fbee19314610666578063599270441461069d5780635f189361146106bc5780636a486a8e146106d0575f80fd5b80633dc599ff146105c557806349bd5a5e146105e55780634a62bb65146106185780634e29e52314610638575f80fd5b80631a8145bb1161034b57806325f1139b1161031b57806325f1139b1461056257806327c8f83514610576578063313ce5671461058b57806339509351146105a6575f80fd5b80631a8145bb146104f8578063203e727e1461050d57806323b872dd1461052e57806324b9f3c11461054d575f80fd5b8063156c2f3511610386578063156c2f35146104615780631694505e1461048457806318160ddd146104cf57806319eab042146104e3575f80fd5b806306fdde03146103c1578063095ea7b3146103eb5780630e922ca71461041a57806310d5de5314610433575f80fd5b366103bd57005b5f80fd5b3480156103cc575f80fd5b506103d5610b54565b6040516103e29190612943565b60405180910390f35b3480156103f6575f80fd5b5061040a6104053660046129a2565b610be4565b60405190151581526020016103e2565b348015610425575f80fd5b50601a5461040a9060ff1681565b34801561043e575f80fd5b5061040a61044d3660046129cc565b60186020525f908152604090205460ff1681565b34801561046c575f80fd5b50610476600d5481565b6040519081526020016103e2565b34801561048f575f80fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103e2565b3480156104da575f80fd5b50600254610476565b3480156104ee575f80fd5b5061047660115481565b348015610503575f80fd5b5061047660155481565b348015610518575f80fd5b5061052c6105273660046129e7565b610bfd565b005b348015610539575f80fd5b5061040a6105483660046129fe565b610cbd565b348015610558575f80fd5b5061047660145481565b34801561056d575f80fd5b5061052c610ce0565b348015610581575f80fd5b506104b761dead81565b348015610596575f80fd5b50604051601281526020016103e2565b3480156105b1575f80fd5b5061040a6105c03660046129a2565b610ddd565b3480156105d0575f80fd5b50600a5461040a90600160b81b900460ff1681565b3480156105f0575f80fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b348015610623575f80fd5b50600a5461040a90600160a01b900460ff1681565b348015610643575f80fd5b5061040a6106523660046129cc565b601b6020525f908152604090205460ff1681565b348015610671575f80fd5b5061040a6106803660046129cc565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156106a8575f80fd5b50600a546104b7906001600160a01b031681565b3480156106c7575f80fd5b5061052c610dfe565b3480156106db575f80fd5b5061047660105481565b3480156106f0575f80fd5b50600a5461040a90600160b01b900460ff1681565b348015610710575f80fd5b5061047661071f3660046129cc565b6001600160a01b03165f9081526020819052604090205490565b348015610744575f80fd5b5061052c610e1b565b348015610758575f80fd5b5061040a610e2e565b34801561076c575f80fd5b5061052c61077b366004612a49565b610e4a565b34801561078b575f80fd5b5061052c61079a3660046129cc565b610e7c565b3480156107aa575f80fd5b506009546104b7906001600160a01b031681565b3480156107c9575f80fd5b5061052c6107d83660046129cc565b610ea4565b3480156107e8575f80fd5b5061052c6107f73660046129cc565b610f07565b348015610807575f80fd5b5061052c610816366004612a80565b610f6b565b348015610826575f80fd5b5061052c610fea565b34801561083a575f80fd5b506005546001600160a01b03166104b7565b348015610857575f80fd5b5061052c610866366004612aa9565b611013565b348015610876575f80fd5b506103d5611039565b34801561088a575f80fd5b5061052c610899366004612a49565b611048565b3480156108a9575f80fd5b50610476600f5481565b3480156108be575f80fd5b5061040a6108cd3660046129a2565b611101565b3480156108dd575f80fd5b5061040a6108ec3660046129a2565b61117b565b3480156108fc575f80fd5b5061052c61090b366004612a49565b611188565b34801561091b575f80fd5b5061052c61092a3660046129cc565b6111c7565b34801561093a575f80fd5b5061040a6109493660046129cc565b60196020525f908152604090205460ff1681565b348015610968575f80fd5b50600a5461040a90600160a81b900460ff1681565b348015610988575f80fd5b5061052c610997366004612ac4565b61122b565b3480156109a7575f80fd5b5061052c6109b6366004612a49565b61136b565b3480156109c6575f80fd5b5061052c6109d5366004612a80565b6113d1565b3480156109e5575f80fd5b5061052c6109f43660046129e7565b611452565b348015610a04575f80fd5b5061047660065481565b348015610a19575f80fd5b5061040a610a283660046129e7565b611501565b348015610a38575f80fd5b5061047660135481565b348015610a4d575f80fd5b50610476600c5481565b348015610a62575f80fd5b50610476610a71366004612ac4565b61162f565b348015610a81575f80fd5b5061052c610a903660046129cc565b611659565b348015610aa0575f80fd5b5061047660075481565b348015610ab5575f80fd5b50610476600e5481565b348015610aca575f80fd5b5061052c610ad93660046129cc565b6117aa565b348015610ae9575f80fd5b5061047660125481565b348015610afe575f80fd5b5061047660085481565b348015610b13575f80fd5b5061047660165481565b348015610b28575f80fd5b5061040a610b373660046129cc565b6001600160a01b03165f908152600b602052604090205460ff1690565b606060038054610b6390612af0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90612af0565b8015610bda5780601f10610bb157610100808354040283529160200191610bda565b820191905f5260205f20905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b5f33610bf1818585611823565b60019150505b92915050565b610c05611946565b670de0b6b3a76400006103e8610c1a60025490565b610c25906005612b3c565b610c2f9190612b53565b610c399190612b53565b811015610ca55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b60648201526084015b60405180910390fd5b610cb781670de0b6b3a7640000612b3c565b60065550565b5f33610cca8582856119a0565b610cd5858585611a12565b506001949350505050565b610ce8611946565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610d23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d479190612b72565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610d8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610daf9190612b89565b5060405133904780156108fc02915f818181858888f19350505050158015610dd9573d5f803e3d5ffd5b5050565b5f33610bf1818585610def838361162f565b610df99190612ba4565b611823565b610e06611946565b600a805460ff60b81b1916600160b81b179055565b610e23611946565b610e2c5f61224a565b565b5f610e37611946565b50600a805460ff60a01b19169055600190565b610e52611946565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b610e84611946565b6001600160a01b03165f908152600b60205260409020805460ff19169055565b610eac611946565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610ef5576040519150601f19603f3d011682016040523d82523d5f602084013e610efa565b606091505b5050905080610dd9575f80fd5b610f0f611946565b600a546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610f73611946565b600d839055600e829055600f81905580610f8d8385612ba4565b610f979190612ba4565b600c81905560051015610fe55760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c9c565b505050565b610ff2611946565b600a805461ffff60a81b191661010160a81b179055601a805460ff19169055565b61101b611946565b600a8054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610b6390612af0565b611050611946565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110f75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c9c565b610dd9828261229b565b5f338161110e828661162f565b90508381101561116e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c9c565b610cd58286868403611823565b5f33610bf1818585611a12565b611190611946565b6001600160a01b0382165f908152601b60205260409020805460ff19168215151790556111bd828261136b565b610dd98282610e4a565b6111cf611946565b6009546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b611233611946565b6001600160a01b0382166112895760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c9c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156112cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f19190612b72565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611341573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113659190612b89565b50505050565b611373611946565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113d9611946565b601183905560128290556013819055806113f38385612ba4565b6113fd9190612ba4565b601081905560051015610fe55760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c9c565b61145a611946565b670de0b6b3a76400006103e861146f60025490565b61147a90600a612b3c565b6114849190612b53565b61148e9190612b53565b8110156114e95760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610c9c565b6114fb81670de0b6b3a7640000612b3c565b60085550565b5f61150a611946565b620186a061151760025490565b611522906001612b3c565b61152c9190612b53565b8210156115995760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c9c565b6103e86115a560025490565b6115b0906005612b3c565b6115ba9190612b53565b8211156116265760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c9c565b50600755600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611661611946565b600a54600160b81b900460ff16156116c55760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610c9c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561172457506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6117875760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610c9c565b6001600160a01b03165f908152600b60205260409020805460ff19166001179055565b6117b2611946565b6001600160a01b0381166118175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c9c565b6118208161224a565b50565b6001600160a01b0383166118855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c9c565b6001600160a01b0382166118e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c9c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610e2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c9c565b5f6119ab848461162f565b90505f1981146113655781811015611a055760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c9c565b6113658484848403611823565b6001600160a01b038316611a385760405162461bcd60e51b8152600401610c9c90612bb7565b6001600160a01b038216611a5e5760405162461bcd60e51b8152600401610c9c90612bfc565b6001600160a01b0383165f908152600b602052604090205460ff1615611abb5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c9c565b6001600160a01b0382165f908152600b602052604090205460ff1615611b1a5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c9c565b601a5460ff1615611b9e576001600160a01b0383165f908152601b602052604090205460ff16611b9e5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610c9c565b805f03611bb057610fe583835f6122ee565b600a54600160a01b900460ff1615611f26576005546001600160a01b03848116911614801590611bee57506005546001600160a01b03838116911614155b8015611c0257506001600160a01b03821615155b8015611c1957506001600160a01b03821661dead14155b8015611c2f5750600554600160a01b900460ff16155b15611f2657600a54600160a81b900460ff16611cc7576001600160a01b0383165f9081526017602052604090205460ff1680611c8257506001600160a01b0382165f9081526017602052604090205460ff165b611cc75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c9c565b6001600160a01b0383165f9081526019602052604090205460ff168015611d0657506001600160a01b0382165f9081526018602052604090205460ff16155b15611de957600654811115611d7b5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c9c565b6008546001600160a01b0383165f90815260208190526040902054611da09083612ba4565b1115611de45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c9c565b611f26565b6001600160a01b0382165f9081526019602052604090205460ff168015611e2857506001600160a01b0383165f9081526018602052604090205460ff16155b15611e9e57600654811115611de45760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c9c565b6001600160a01b0382165f9081526018602052604090205460ff16611f26576008546001600160a01b0383165f90815260208190526040902054611ee29083612ba4565b1115611f265760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c9c565b305f9081526020819052604090205460075481108015908190611f525750600a54600160b01b900460ff165b8015611f685750600554600160a01b900460ff16155b8015611f8c57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611fb057506001600160a01b0385165f9081526017602052604090205460ff16155b8015611fd457506001600160a01b0384165f9081526017602052604090205460ff16155b15612002576005805460ff60a01b1916600160a01b179055611ff4612416565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168061204e57506001600160a01b0385165f9081526017602052604090205460ff165b1561205657505f5b5f8115612236576001600160a01b0386165f9081526019602052604090205460ff16801561208557505f601054115b15612140576120aa60646120a46010548861266290919063ffffffff16565b90612674565b9050601054601254826120bd9190612b3c565b6120c79190612b53565b60155f8282546120d79190612ba4565b90915550506010546013546120ec9083612b3c565b6120f69190612b53565b60165f8282546121069190612ba4565b909155505060105460115461211b9083612b3c565b6121259190612b53565b60145f8282546121359190612ba4565b909155506122189050565b6001600160a01b0387165f9081526019602052604090205460ff16801561216857505f600c54115b156122185761218760646120a4600c548861266290919063ffffffff16565b9050600c54600e548261219a9190612b3c565b6121a49190612b53565b60155f8282546121b49190612ba4565b9091555050600c54600f546121c99083612b3c565b6121d39190612b53565b60165f8282546121e39190612ba4565b9091555050600c54600d546121f89083612b3c565b6122029190612b53565b60145f8282546122129190612ba4565b90915550505b8015612229576122298730836122ee565b6122338186612c3f565b94505b6122418787876122ee565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123145760405162461bcd60e51b8152600401610c9c90612bb7565b6001600160a01b03821661233a5760405162461bcd60e51b8152600401610c9c90612bfc565b6001600160a01b0383165f90815260208190526040902054818110156123b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c9c565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611365565b305f9081526020819052604081205490505f60165460145460155461243b9190612ba4565b6124459190612ba4565b90505f821580612453575081155b1561245d57505050565b60075461246b906014612b3c565b83111561248357600754612480906014612b3c565b92505b5f600283601554866124959190612b3c565b61249f9190612b53565b6124a99190612b53565b90505f6124b6858361267f565b9050476124c28261268a565b5f6124cd478361267f565b90505f6124fa60026015546124e29190612b53565b6124ec9089612c3f565b6014546120a4908590612662565b90505f612527600260155461250f9190612b53565b612519908a612c3f565b6016546120a4908690612662565b90505f816125358486612c3f565b61253f9190612c3f565b5f601581905560148190556016819055600a546040519293506001600160a01b031691849181818185875af1925050503d805f8114612599576040519150601f19603f3d011682016040523d82523d5f602084013e61259e565b606091505b509098505086158015906125b157505f81115b15612604576125c08782612840565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b039091169047905f81818185875af1925050503d805f811461264e576040519150601f19603f3d011682016040523d82523d5f602084013e612653565b606091505b50505050505050505050505050565b5f61266d8284612b3c565b9392505050565b5f61266d8284612b53565b5f61266d8284612c3f565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106126bd576126bd612c52565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612739573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061275d9190612c66565b8160018151811061277057612770612c52565b60200260200101906001600160a01b031690816001600160a01b0316815250506127bb307f000000000000000000000000000000000000000000000000000000000000000084611823565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061280f9085905f90869030904290600401612c81565b5f604051808303815f87803b158015612826575f80fd5b505af1158015612838573d5f803e3d5ffd5b505050505050565b61286b307f000000000000000000000000000000000000000000000000000000000000000084611823565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806128b16005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612917573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061293c9190612cf0565b5050505050565b5f6020808352835180828501525f5b8181101561296e57858101830151858201604001528201612952565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611820575f80fd5b5f80604083850312156129b3575f80fd5b82356129be8161298e565b946020939093013593505050565b5f602082840312156129dc575f80fd5b813561266d8161298e565b5f602082840312156129f7575f80fd5b5035919050565b5f805f60608486031215612a10575f80fd5b8335612a1b8161298e565b92506020840135612a2b8161298e565b929592945050506040919091013590565b8015158114611820575f80fd5b5f8060408385031215612a5a575f80fd5b8235612a658161298e565b91506020830135612a7581612a3c565b809150509250929050565b5f805f60608486031215612a92575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612ab9575f80fd5b813561266d81612a3c565b5f8060408385031215612ad5575f80fd5b8235612ae08161298e565b91506020830135612a758161298e565b600181811c90821680612b0457607f821691505b602082108103612b2257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610bf757610bf7612b28565b5f82612b6d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612b82575f80fd5b5051919050565b5f60208284031215612b99575f80fd5b815161266d81612a3c565b80820180821115610bf757610bf7612b28565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bf757610bf7612b28565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612c76575f80fd5b815161266d8161298e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612ccf5784516001600160a01b031683529383019391830191600101612caa565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612d02575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a425cd2996ba5c7940c5f4a297ce4273435f9c842c1f10e17dfc1a3a0dfcfaa564736f6c63430008150033
Deployed Bytecode
0x6080604052600436106103b6575f3560e01c80637cb332bb116101e9578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610af3578063f9f92be414610a76578063fde83a3414610b08578063fe575a8714610b1d575f80fd5b8063e2f4560514610a95578063f11a24d314610aaa578063f2fde38b14610abf578063f637434214610ade575f80fd5b8063d729715f116100d8578063d729715f14610a2d578063d85ba06314610a42578063dd62ed3e14610a57578063e19b282314610a76575f80fd5b8063c17b5b8c146109bb578063c18bc195146109da578063c8c8ebe4146109f9578063d257b34f14610a0e575f80fd5b8063a457c2d71161017e578063b62496f51161014e578063b62496f51461092f578063bbc0c7421461095d578063bc205ad31461097d578063c02466681461099c575f80fd5b8063a457c2d7146108b3578063a9059cbb146108d2578063aa0e4388146108f1578063adee28ff14610910575f80fd5b8063924de9b7116101b9578063924de9b71461084c57806395d89b411461086b5780639a7a23d61461087f5780639c2e4ac61461089e575f80fd5b80637cb332bb146107dd5780638095d564146107fc5780638a8c523c1461081b5780638da5cb5b1461082f575f80fd5b80633dc599ff116102d55780636ddd17131161026a5780637571336a1161023a5780637571336a1461076157806375e3661e14610780578063782c4e991461079f5780637ca8448a146107be575f80fd5b80636ddd1713146106e557806370a0823114610705578063715018a614610739578063751039fc1461074d575f80fd5b80634fbee193116102a55780634fbee19314610666578063599270441461069d5780635f189361146106bc5780636a486a8e146106d0575f80fd5b80633dc599ff146105c557806349bd5a5e146105e55780634a62bb65146106185780634e29e52314610638575f80fd5b80631a8145bb1161034b57806325f1139b1161031b57806325f1139b1461056257806327c8f83514610576578063313ce5671461058b57806339509351146105a6575f80fd5b80631a8145bb146104f8578063203e727e1461050d57806323b872dd1461052e57806324b9f3c11461054d575f80fd5b8063156c2f3511610386578063156c2f35146104615780631694505e1461048457806318160ddd146104cf57806319eab042146104e3575f80fd5b806306fdde03146103c1578063095ea7b3146103eb5780630e922ca71461041a57806310d5de5314610433575f80fd5b366103bd57005b5f80fd5b3480156103cc575f80fd5b506103d5610b54565b6040516103e29190612943565b60405180910390f35b3480156103f6575f80fd5b5061040a6104053660046129a2565b610be4565b60405190151581526020016103e2565b348015610425575f80fd5b50601a5461040a9060ff1681565b34801561043e575f80fd5b5061040a61044d3660046129cc565b60186020525f908152604090205460ff1681565b34801561046c575f80fd5b50610476600d5481565b6040519081526020016103e2565b34801561048f575f80fd5b506104b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103e2565b3480156104da575f80fd5b50600254610476565b3480156104ee575f80fd5b5061047660115481565b348015610503575f80fd5b5061047660155481565b348015610518575f80fd5b5061052c6105273660046129e7565b610bfd565b005b348015610539575f80fd5b5061040a6105483660046129fe565b610cbd565b348015610558575f80fd5b5061047660145481565b34801561056d575f80fd5b5061052c610ce0565b348015610581575f80fd5b506104b761dead81565b348015610596575f80fd5b50604051601281526020016103e2565b3480156105b1575f80fd5b5061040a6105c03660046129a2565b610ddd565b3480156105d0575f80fd5b50600a5461040a90600160b81b900460ff1681565b3480156105f0575f80fd5b506104b77f00000000000000000000000055eacc2ff36ed3e3a0c2888dd2ced1baa3a7172981565b348015610623575f80fd5b50600a5461040a90600160a01b900460ff1681565b348015610643575f80fd5b5061040a6106523660046129cc565b601b6020525f908152604090205460ff1681565b348015610671575f80fd5b5061040a6106803660046129cc565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156106a8575f80fd5b50600a546104b7906001600160a01b031681565b3480156106c7575f80fd5b5061052c610dfe565b3480156106db575f80fd5b5061047660105481565b3480156106f0575f80fd5b50600a5461040a90600160b01b900460ff1681565b348015610710575f80fd5b5061047661071f3660046129cc565b6001600160a01b03165f9081526020819052604090205490565b348015610744575f80fd5b5061052c610e1b565b348015610758575f80fd5b5061040a610e2e565b34801561076c575f80fd5b5061052c61077b366004612a49565b610e4a565b34801561078b575f80fd5b5061052c61079a3660046129cc565b610e7c565b3480156107aa575f80fd5b506009546104b7906001600160a01b031681565b3480156107c9575f80fd5b5061052c6107d83660046129cc565b610ea4565b3480156107e8575f80fd5b5061052c6107f73660046129cc565b610f07565b348015610807575f80fd5b5061052c610816366004612a80565b610f6b565b348015610826575f80fd5b5061052c610fea565b34801561083a575f80fd5b506005546001600160a01b03166104b7565b348015610857575f80fd5b5061052c610866366004612aa9565b611013565b348015610876575f80fd5b506103d5611039565b34801561088a575f80fd5b5061052c610899366004612a49565b611048565b3480156108a9575f80fd5b50610476600f5481565b3480156108be575f80fd5b5061040a6108cd3660046129a2565b611101565b3480156108dd575f80fd5b5061040a6108ec3660046129a2565b61117b565b3480156108fc575f80fd5b5061052c61090b366004612a49565b611188565b34801561091b575f80fd5b5061052c61092a3660046129cc565b6111c7565b34801561093a575f80fd5b5061040a6109493660046129cc565b60196020525f908152604090205460ff1681565b348015610968575f80fd5b50600a5461040a90600160a81b900460ff1681565b348015610988575f80fd5b5061052c610997366004612ac4565b61122b565b3480156109a7575f80fd5b5061052c6109b6366004612a49565b61136b565b3480156109c6575f80fd5b5061052c6109d5366004612a80565b6113d1565b3480156109e5575f80fd5b5061052c6109f43660046129e7565b611452565b348015610a04575f80fd5b5061047660065481565b348015610a19575f80fd5b5061040a610a283660046129e7565b611501565b348015610a38575f80fd5b5061047660135481565b348015610a4d575f80fd5b50610476600c5481565b348015610a62575f80fd5b50610476610a71366004612ac4565b61162f565b348015610a81575f80fd5b5061052c610a903660046129cc565b611659565b348015610aa0575f80fd5b5061047660075481565b348015610ab5575f80fd5b50610476600e5481565b348015610aca575f80fd5b5061052c610ad93660046129cc565b6117aa565b348015610ae9575f80fd5b5061047660125481565b348015610afe575f80fd5b5061047660085481565b348015610b13575f80fd5b5061047660165481565b348015610b28575f80fd5b5061040a610b373660046129cc565b6001600160a01b03165f908152600b602052604090205460ff1690565b606060038054610b6390612af0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90612af0565b8015610bda5780601f10610bb157610100808354040283529160200191610bda565b820191905f5260205f20905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b5f33610bf1818585611823565b60019150505b92915050565b610c05611946565b670de0b6b3a76400006103e8610c1a60025490565b610c25906005612b3c565b610c2f9190612b53565b610c399190612b53565b811015610ca55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b60648201526084015b60405180910390fd5b610cb781670de0b6b3a7640000612b3c565b60065550565b5f33610cca8582856119a0565b610cd5858585611a12565b506001949350505050565b610ce8611946565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610d23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d479190612b72565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610d8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610daf9190612b89565b5060405133904780156108fc02915f818181858888f19350505050158015610dd9573d5f803e3d5ffd5b5050565b5f33610bf1818585610def838361162f565b610df99190612ba4565b611823565b610e06611946565b600a805460ff60b81b1916600160b81b179055565b610e23611946565b610e2c5f61224a565b565b5f610e37611946565b50600a805460ff60a01b19169055600190565b610e52611946565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b610e84611946565b6001600160a01b03165f908152600b60205260409020805460ff19169055565b610eac611946565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610ef5576040519150601f19603f3d011682016040523d82523d5f602084013e610efa565b606091505b5050905080610dd9575f80fd5b610f0f611946565b600a546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610f73611946565b600d839055600e829055600f81905580610f8d8385612ba4565b610f979190612ba4565b600c81905560051015610fe55760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c9c565b505050565b610ff2611946565b600a805461ffff60a81b191661010160a81b179055601a805460ff19169055565b61101b611946565b600a8054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610b6390612af0565b611050611946565b7f00000000000000000000000055eacc2ff36ed3e3a0c2888dd2ced1baa3a717296001600160a01b0316826001600160a01b0316036110f75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c9c565b610dd9828261229b565b5f338161110e828661162f565b90508381101561116e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c9c565b610cd58286868403611823565b5f33610bf1818585611a12565b611190611946565b6001600160a01b0382165f908152601b60205260409020805460ff19168215151790556111bd828261136b565b610dd98282610e4a565b6111cf611946565b6009546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b611233611946565b6001600160a01b0382166112895760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c9c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156112cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f19190612b72565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611341573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113659190612b89565b50505050565b611373611946565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113d9611946565b601183905560128290556013819055806113f38385612ba4565b6113fd9190612ba4565b601081905560051015610fe55760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c9c565b61145a611946565b670de0b6b3a76400006103e861146f60025490565b61147a90600a612b3c565b6114849190612b53565b61148e9190612b53565b8110156114e95760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610c9c565b6114fb81670de0b6b3a7640000612b3c565b60085550565b5f61150a611946565b620186a061151760025490565b611522906001612b3c565b61152c9190612b53565b8210156115995760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c9c565b6103e86115a560025490565b6115b0906005612b3c565b6115ba9190612b53565b8211156116265760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c9c565b50600755600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611661611946565b600a54600160b81b900460ff16156116c55760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610c9c565b7f00000000000000000000000055eacc2ff36ed3e3a0c2888dd2ced1baa3a717296001600160a01b0316816001600160a01b03161415801561172457506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6117875760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610c9c565b6001600160a01b03165f908152600b60205260409020805460ff19166001179055565b6117b2611946565b6001600160a01b0381166118175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c9c565b6118208161224a565b50565b6001600160a01b0383166118855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c9c565b6001600160a01b0382166118e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c9c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610e2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c9c565b5f6119ab848461162f565b90505f1981146113655781811015611a055760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c9c565b6113658484848403611823565b6001600160a01b038316611a385760405162461bcd60e51b8152600401610c9c90612bb7565b6001600160a01b038216611a5e5760405162461bcd60e51b8152600401610c9c90612bfc565b6001600160a01b0383165f908152600b602052604090205460ff1615611abb5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c9c565b6001600160a01b0382165f908152600b602052604090205460ff1615611b1a5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c9c565b601a5460ff1615611b9e576001600160a01b0383165f908152601b602052604090205460ff16611b9e5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610c9c565b805f03611bb057610fe583835f6122ee565b600a54600160a01b900460ff1615611f26576005546001600160a01b03848116911614801590611bee57506005546001600160a01b03838116911614155b8015611c0257506001600160a01b03821615155b8015611c1957506001600160a01b03821661dead14155b8015611c2f5750600554600160a01b900460ff16155b15611f2657600a54600160a81b900460ff16611cc7576001600160a01b0383165f9081526017602052604090205460ff1680611c8257506001600160a01b0382165f9081526017602052604090205460ff165b611cc75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c9c565b6001600160a01b0383165f9081526019602052604090205460ff168015611d0657506001600160a01b0382165f9081526018602052604090205460ff16155b15611de957600654811115611d7b5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c9c565b6008546001600160a01b0383165f90815260208190526040902054611da09083612ba4565b1115611de45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c9c565b611f26565b6001600160a01b0382165f9081526019602052604090205460ff168015611e2857506001600160a01b0383165f9081526018602052604090205460ff16155b15611e9e57600654811115611de45760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c9c565b6001600160a01b0382165f9081526018602052604090205460ff16611f26576008546001600160a01b0383165f90815260208190526040902054611ee29083612ba4565b1115611f265760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c9c565b305f9081526020819052604090205460075481108015908190611f525750600a54600160b01b900460ff165b8015611f685750600554600160a01b900460ff16155b8015611f8c57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611fb057506001600160a01b0385165f9081526017602052604090205460ff16155b8015611fd457506001600160a01b0384165f9081526017602052604090205460ff16155b15612002576005805460ff60a01b1916600160a01b179055611ff4612416565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168061204e57506001600160a01b0385165f9081526017602052604090205460ff165b1561205657505f5b5f8115612236576001600160a01b0386165f9081526019602052604090205460ff16801561208557505f601054115b15612140576120aa60646120a46010548861266290919063ffffffff16565b90612674565b9050601054601254826120bd9190612b3c565b6120c79190612b53565b60155f8282546120d79190612ba4565b90915550506010546013546120ec9083612b3c565b6120f69190612b53565b60165f8282546121069190612ba4565b909155505060105460115461211b9083612b3c565b6121259190612b53565b60145f8282546121359190612ba4565b909155506122189050565b6001600160a01b0387165f9081526019602052604090205460ff16801561216857505f600c54115b156122185761218760646120a4600c548861266290919063ffffffff16565b9050600c54600e548261219a9190612b3c565b6121a49190612b53565b60155f8282546121b49190612ba4565b9091555050600c54600f546121c99083612b3c565b6121d39190612b53565b60165f8282546121e39190612ba4565b9091555050600c54600d546121f89083612b3c565b6122029190612b53565b60145f8282546122129190612ba4565b90915550505b8015612229576122298730836122ee565b6122338186612c3f565b94505b6122418787876122ee565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123145760405162461bcd60e51b8152600401610c9c90612bb7565b6001600160a01b03821661233a5760405162461bcd60e51b8152600401610c9c90612bfc565b6001600160a01b0383165f90815260208190526040902054818110156123b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c9c565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611365565b305f9081526020819052604081205490505f60165460145460155461243b9190612ba4565b6124459190612ba4565b90505f821580612453575081155b1561245d57505050565b60075461246b906014612b3c565b83111561248357600754612480906014612b3c565b92505b5f600283601554866124959190612b3c565b61249f9190612b53565b6124a99190612b53565b90505f6124b6858361267f565b9050476124c28261268a565b5f6124cd478361267f565b90505f6124fa60026015546124e29190612b53565b6124ec9089612c3f565b6014546120a4908590612662565b90505f612527600260155461250f9190612b53565b612519908a612c3f565b6016546120a4908690612662565b90505f816125358486612c3f565b61253f9190612c3f565b5f601581905560148190556016819055600a546040519293506001600160a01b031691849181818185875af1925050503d805f8114612599576040519150601f19603f3d011682016040523d82523d5f602084013e61259e565b606091505b509098505086158015906125b157505f81115b15612604576125c08782612840565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b039091169047905f81818185875af1925050503d805f811461264e576040519150601f19603f3d011682016040523d82523d5f602084013e612653565b606091505b50505050505050505050505050565b5f61266d8284612b3c565b9392505050565b5f61266d8284612b53565b5f61266d8284612c3f565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106126bd576126bd612c52565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612739573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061275d9190612c66565b8160018151811061277057612770612c52565b60200260200101906001600160a01b031690816001600160a01b0316815250506127bb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611823565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061280f9085905f90869030904290600401612c81565b5f604051808303815f87803b158015612826575f80fd5b505af1158015612838573d5f803e3d5ffd5b505050505050565b61286b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611823565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806128b16005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612917573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061293c9190612cf0565b5050505050565b5f6020808352835180828501525f5b8181101561296e57858101830151858201604001528201612952565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611820575f80fd5b5f80604083850312156129b3575f80fd5b82356129be8161298e565b946020939093013593505050565b5f602082840312156129dc575f80fd5b813561266d8161298e565b5f602082840312156129f7575f80fd5b5035919050565b5f805f60608486031215612a10575f80fd5b8335612a1b8161298e565b92506020840135612a2b8161298e565b929592945050506040919091013590565b8015158114611820575f80fd5b5f8060408385031215612a5a575f80fd5b8235612a658161298e565b91506020830135612a7581612a3c565b809150509250929050565b5f805f60608486031215612a92575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612ab9575f80fd5b813561266d81612a3c565b5f8060408385031215612ad5575f80fd5b8235612ae08161298e565b91506020830135612a758161298e565b600181811c90821680612b0457607f821691505b602082108103612b2257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610bf757610bf7612b28565b5f82612b6d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612b82575f80fd5b5051919050565b5f60208284031215612b99575f80fd5b815161266d81612a3c565b80820180821115610bf757610bf7612b28565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bf757610bf7612b28565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612c76575f80fd5b815161266d8161298e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612ccf5784516001600160a01b031683529383019391830191600101612caa565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612d02575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a425cd2996ba5c7940c5f4a297ce4273435f9c842c1f10e17dfc1a3a0dfcfaa564736f6c63430008150033
Deployed Bytecode Sourcemap
35709:17887:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13560:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15920:201;;;;;;;;;;-1:-1:-1;15920:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;15920:201:0;1023:187:1;37208:36:0;;;;;;;;;;-1:-1:-1;37208:36:0;;;;;;;;36921:63;;;;;;;;;;-1:-1:-1;36921:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36413:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;36413:29:0;1467:177:1;35890:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;35890:51:0;1649:230:1;14689:108:0;;;;;;;;;;-1:-1:-1;14777:12:0;;14689:108;;36555:30;;;;;;;;;;;;;;;;36704:33;;;;;;;;;;;;;;;;41145:275;;;;;;;;;;-1:-1:-1;41145:275:0;;;;;:::i;:::-;;:::i;:::-;;16701:261;;;;;;;;;;-1:-1:-1;16701:261:0;;;;;:::i;:::-;;:::i;36665:32::-;;;;;;;;;;;;;;;;51307:257;;;;;;;;;;;;;:::i;35830:53::-;;;;;;;;;;;;35876:6;35830:53;;14531:93;;;;;;;;;;-1:-1:-1;14531:93:0;;14614:2;2880:36:1;;2868:2;2853:18;14531:93:0;2738:184:1;17371:238:0;;;;;;;;;;-1:-1:-1;17371:238:0;;;;;:::i;:::-;;:::i;36283:38::-;;;;;;;;;;-1:-1:-1;36283:38:0;;;;-1:-1:-1;;;36283:38:0;;;;;;35785;;;;;;;;;;;;;;;36163:33;;;;;;;;;;-1:-1:-1;36163:33:0;;;;-1:-1:-1;;;36163:33:0;;;;;;37251:57;;;;;;;;;;-1:-1:-1;37251:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43956:126;;;;;;;;;;-1:-1:-1;43956:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44046:28:0;44022:4;44046:28;;;:19;:28;;;;;;;;;43956:126;36129:25;;;;;;;;;;-1:-1:-1;36129:25:0;;;;-1:-1:-1;;;;;36129:25:0;;;52118:90;;;;;;;;;;;;;:::i;36520:28::-;;;;;;;;;;;;;;;;36243:31;;;;;;;;;;-1:-1:-1;36243:31:0;;;;-1:-1:-1;;;36243:31:0;;;;;;14860:127;;;;;;;;;;-1:-1:-1;14860:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;14961:18:0;14934:7;14961:18;;;;;;;;;;;;14860:127;26429:103;;;;;;;;;;;;;:::i;40449:121::-;;;;;;;;;;;;;:::i;41693:167::-;;;;;;;;;;-1:-1:-1;41693:167:0;;;;;:::i;:::-;;:::i;53229:98::-;;;;;;;;;;-1:-1:-1;53229:98:0;;;;;:::i;:::-;;:::i;36093:29::-;;;;;;;;;;-1:-1:-1;36093:29:0;;;;-1:-1:-1;;;;;36093:29:0;;;51868:196;;;;;;;;;;-1:-1:-1;51868:196:0;;;;;:::i;:::-;;:::i;43787:161::-;;;;;;;;;;-1:-1:-1;43787:161:0;;;;;:::i;:::-;;:::i;42064:395::-;;;;;;;;;;-1:-1:-1;42064:395:0;;;;;:::i;:::-;;:::i;40249:148::-;;;;;;;;;;;;;:::i;25788:87::-;;;;;;;;;;-1:-1:-1;25861:6:0;;-1:-1:-1;;;;;25861:6:0;25788:87;;41956:100;;;;;;;;;;-1:-1:-1;41956:100:0;;;;;:::i;:::-;;:::i;13779:104::-;;;;;;;;;;;;;:::i;43070:304::-;;;;;;;;;;-1:-1:-1;43070:304:0;;;;;:::i;:::-;;:::i;36486:25::-;;;;;;;;;;;;;;;;18112:436;;;;;;;;;;-1:-1:-1;18112:436:0;;;;;:::i;:::-;;:::i;15193:193::-;;;;;;;;;;-1:-1:-1;15193:193:0;;;;;:::i;:::-;;:::i;53335:258::-;;;;;;;;;;-1:-1:-1;53335:258:0;;;;;:::i;:::-;;:::i;43578:201::-;;;;;;;;;;-1:-1:-1;43578:201:0;;;;;:::i;:::-;;:::i;37142:57::-;;;;;;;;;;-1:-1:-1;37142:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36203:33;;;;;;;;;;-1:-1:-1;36203:33:0;;;;-1:-1:-1;;;36203:33:0;;;;;;51572:288;;;;;;;;;;-1:-1:-1;51572:288:0;;;;;:::i;:::-;;:::i;42880:182::-;;;;;;;;;;-1:-1:-1;42880:182:0;;;;;:::i;:::-;;:::i;42467:405::-;;;;;;;;;;-1:-1:-1;42467:405:0;;;;;:::i;:::-;;:::i;41428:257::-;;;;;;;;;;-1:-1:-1;41428:257:0;;;;;:::i;:::-;;:::i;35980:35::-;;;;;;;;;;;;;;;;40640:497;;;;;;;;;;-1:-1:-1;40640:497:0;;;;;:::i;:::-;;:::i;36630:26::-;;;;;;;;;;;;;;;;36379:27;;;;;;;;;;;;;;;;15449:151;;;;;;;;;;-1:-1:-1;15449:151:0;;;;;:::i;:::-;;:::i;52693:403::-;;;;;;;;;;-1:-1:-1;52693:403:0;;;;;:::i;:::-;;:::i;36022:33::-;;;;;;;;;;;;;;;;36449:30;;;;;;;;;;;;;;;;26687:201;;;;;;;;;;-1:-1:-1;26687:201:0;;;;;:::i;:::-;;:::i;36592:31::-;;;;;;;;;;;;;;;;36062:24;;;;;;;;;;;;;;;;36744:28;;;;;;;;;;;;;;;;44090:113;;;;;;;;;;-1:-1:-1;44090:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;44175:20:0;44151:4;44175:20;;;:11;:20;;;;;;;;;44090:113;13560:100;13614:13;13647:5;13640:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13560:100;:::o;15920:201::-;16003:4;11278:10;16059:32;11278:10;16075:7;16084:6;16059:8;:32::i;:::-;16109:4;16102:11;;;15920:201;;;;;:::o;41145:275::-;25674:13;:11;:13::i;:::-;41282:4:::1;41274;41253:13;14777:12:::0;;;14689:108;41253:13:::1;:17;::::0;41269:1:::1;41253:17;:::i;:::-;41252:26;;;;:::i;:::-;41251:35;;;;:::i;:::-;41241:6;:45;;41219:142;;;::::0;-1:-1:-1;;;41219:142:0;;5511:2:1;41219:142:0::1;::::0;::::1;5493:21:1::0;5550:2;5530:18;;;5523:30;5589:34;5569:18;;;5562:62;-1:-1:-1;;;5640:18:1;;;5633:45;5695:19;;41219:142:0::1;;;;;;;;;41395:17;:6:::0;41405::::1;41395:17;:::i;:::-;41372:20;:40:::0;-1:-1:-1;41145:275:0:o;16701:261::-;16798:4;11278:10;16856:38;16872:4;11278:10;16887:6;16856:15;:38::i;:::-;16905:27;16915:4;16921:2;16925:6;16905:9;:27::i;:::-;-1:-1:-1;16950:4:0;;16701:261;-1:-1:-1;;;;16701:261:0:o;51307:257::-;25674:13;:11;:13::i;:::-;51386:46:::1;::::0;-1:-1:-1;;;51386:46:0;;51401:4:::1;51386:46;::::0;::::1;1822:51:1::0;;;51368:15:0::1;::::0;51386:31:::1;::::0;1795:18:1;;51386:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51443:51;::::0;-1:-1:-1;;;51443:51:0;;51474:10:::1;51443:51;::::0;::::1;6088::1::0;6155:18;;;6148:34;;;51368:64:0;;-1:-1:-1;51458:4:0::1;::::0;51443:30:::1;::::0;6061:18:1;;51443:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;51505:51:0::1;::::0;51513:10:::1;::::0;51534:21:::1;51505:51:::0;::::1;;;::::0;::::1;::::0;;;51534:21;51513:10;51505:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51357:207;51307:257::o:0;17371:238::-;17459:4;11278:10;17515:64;11278:10;17531:7;17568:10;17540:25;11278:10;17531:7;17540:9;:25::i;:::-;:38;;;;:::i;:::-;17515:8;:64::i;52118:90::-;25674:13;:11;:13::i;:::-;52175:18:::1;:25:::0;;-1:-1:-1;;;;52175:25:0::1;-1:-1:-1::0;;;52175:25:0::1;::::0;;52118:90::o;26429:103::-;25674:13;:11;:13::i;:::-;26494:30:::1;26521:1;26494:18;:30::i;:::-;26429:103::o:0;40449:121::-;40501:4;25674:13;:11;:13::i;:::-;-1:-1:-1;40518:14:0::1;:22:::0;;-1:-1:-1;;;;40518:22:0::1;::::0;;;40449:121;:::o;41693:167::-;25674:13;:11;:13::i;:::-;-1:-1:-1;;;;;41806:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41806:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41693:167::o;53229:98::-;25674:13;:11;:13::i;:::-;-1:-1:-1;;;;;53293:18:0::1;53314:5;53293:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;53293:26:0::1;::::0;;53229:98::o;51868:196::-;25674:13;:11;:13::i;:::-;51941:12:::1;51959:6;-1:-1:-1::0;;;;;51959:11:0::1;51992:21;51959:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51940:89;;;52048:7;52040:16;;;::::0;::::1;43787:161:::0;25674:13;:11;:13::i;:::-;43896:10:::1;::::0;43867:40:::1;::::0;-1:-1:-1;;;;;43896:10:0;;::::1;::::0;43867:40;::::1;::::0;::::1;::::0;43896:10:::1;::::0;43867:40:::1;43918:10;:22:::0;;-1:-1:-1;;;;;;43918:22:0::1;-1:-1:-1::0;;;;;43918:22:0;;;::::1;::::0;;;::::1;::::0;;43787:161::o;42064:395::-;25674:13;:11;:13::i;:::-;42214:14:::1;:29:::0;;;42254:15:::1;:31:::0;;;42296:10:::1;:21:::0;;;42309:8;42343:32:::1;42272:13:::0;42231:12;42343:32:::1;:::i;:::-;:45;;;;:::i;:::-;42328:12;:60:::0;;;42423:1:::1;-1:-1:-1::0;42407:17:0::1;42399:52;;;::::0;-1:-1:-1;;;42399:52:0;;6985:2:1;42399:52:0::1;::::0;::::1;6967:21:1::0;7024:2;7004:18;;;6997:30;-1:-1:-1;;;7043:18:1;;;7036:52;7105:18;;42399:52:0::1;6783:346:1::0;42399:52:0::1;42064:395:::0;;;:::o;40249:148::-;25674:13;:11;:13::i;:::-;40304::::1;:20:::0;;-1:-1:-1;;;;40335:18:0;-1:-1:-1;;;40335:18:0;;;40364:17:::1;:25:::0;;-1:-1:-1;;40364:25:0::1;::::0;;40249:148::o;41956:100::-;25674:13;:11;:13::i;:::-;42027:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;42027:21:0::1;-1:-1:-1::0;;;;42027:21:0;;::::1;::::0;;;::::1;::::0;;41956:100::o;13779:104::-;13835:13;13868:7;13861:14;;;;;:::i;43070:304::-;25674:13;:11;:13::i;:::-;43214::::1;-1:-1:-1::0;;;;;43206:21:0::1;:4;-1:-1:-1::0;;;;;43206:21:0::1;::::0;43184:128:::1;;;::::0;-1:-1:-1;;;43184:128:0;;7336:2:1;43184:128:0::1;::::0;::::1;7318:21:1::0;7375:2;7355:18;;;7348:30;7414:34;7394:18;;;7387:62;7485:27;7465:18;;;7458:55;7530:19;;43184:128:0::1;7134:421:1::0;43184:128:0::1;43325:41;43354:4;43360:5;43325:28;:41::i;18112:436::-:0;18205:4;11278:10;18205:4;18288:25;11278:10;18305:7;18288:9;:25::i;:::-;18261:52;;18352:15;18332:16;:35;;18324:85;;;;-1:-1:-1;;;18324:85:0;;7762:2:1;18324:85:0;;;7744:21:1;7801:2;7781:18;;;7774:30;7840:34;7820:18;;;7813:62;-1:-1:-1;;;7891:18:1;;;7884:35;7936:19;;18324:85:0;7560:401:1;18324:85:0;18445:60;18454:5;18461:7;18489:15;18470:16;:34;18445:8;:60::i;15193:193::-;15272:4;11278:10;15328:28;11278:10;15345:2;15349:6;15328:9;:28::i;53335:258::-;25674:13;:11;:13::i;:::-;-1:-1:-1;;;;;53434:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;-1:-1:-1;;53434:47:0::1;::::0;::::1;;;::::0;;53492:36:::1;53434:32:::0;:47;53492:15:::1;:36::i;:::-;53539:46;53565:5;53572:12;53539:25;:46::i;43578:201::-:0;25674:13;:11;:13::i;:::-;43711:14:::1;::::0;43670:56:::1;::::0;-1:-1:-1;;;;;43711:14:0;;::::1;::::0;43670:56;::::1;::::0;::::1;::::0;43711:14:::1;::::0;43670:56:::1;43737:14;:34:::0;;-1:-1:-1;;;;;;43737:34:0::1;-1:-1:-1::0;;;;;43737:34:0;;;::::1;::::0;;;::::1;::::0;;43578:201::o;51572:288::-;25674:13;:11;:13::i;:::-;-1:-1:-1;;;;;51667:20:0;::::1;51659:59;;;::::0;-1:-1:-1;;;51659:59:0;;8168:2:1;51659:59:0::1;::::0;::::1;8150:21:1::0;8207:2;8187:18;;;8180:30;8246:28;8226:18;;;8219:56;8292:18;;51659:59:0::1;7966:350:1::0;51659:59:0::1;51756:39;::::0;-1:-1:-1;;;51756:39:0;;51789:4:::1;51756:39;::::0;::::1;1822:51:1::0;51729:24:0::1;::::0;-1:-1:-1;;;;;51756:24:0;::::1;::::0;::::1;::::0;1795:18:1;;51756:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51806:46;::::0;-1:-1:-1;;;51806:46:0;;-1:-1:-1;;;;;6106:32:1;;;51806:46:0::1;::::0;::::1;6088:51:1::0;6155:18;;;6148:34;;;51729:66:0;;-1:-1:-1;51806:23:0;;::::1;::::0;::::1;::::0;6061:18:1;;51806:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51648:212;51572:288:::0;;:::o;42880:182::-;25674:13;:11;:13::i;:::-;-1:-1:-1;;;;;42965:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;42965:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43020:34;;1163:41:1;;;43020:34:0::1;::::0;1136:18:1;43020:34:0::1;;;;;;;42880:182:::0;;:::o;42467:405::-;25674:13;:11;:13::i;:::-;42618:15:::1;:30:::0;;;42659:16:::1;:32:::0;;;42702:11:::1;:22:::0;;;42716:8;42751:34:::1;42678:13:::0;42636:12;42751:34:::1;:::i;:::-;:48;;;;:::i;:::-;42735:13;:64:::0;;;42835:1:::1;-1:-1:-1::0;42818:18:0::1;42810:54;;;::::0;-1:-1:-1;;;42810:54:0;;8523:2:1;42810:54:0::1;::::0;::::1;8505:21:1::0;8562:2;8542:18;;;8535:30;8601:25;8581:18;;;8574:53;8644:18;;42810:54:0::1;8321:347:1::0;41428:257:0;25674:13;:11;:13::i;:::-;41569:4:::1;41561;41539:13;14777:12:::0;;;14689:108;41539:13:::1;:18;::::0;41555:2:::1;41539:18;:::i;:::-;41538:27;;;;:::i;:::-;41537:36;;;;:::i;:::-;41527:6;:46;;41505:132;;;::::0;-1:-1:-1;;;41505:132:0;;8875:2:1;41505:132:0::1;::::0;::::1;8857:21:1::0;8914:2;8894:18;;;8887:30;8953:34;8933:18;;;8926:62;-1:-1:-1;;;9004:18:1;;;8997:34;9048:19;;41505:132:0::1;8673:400:1::0;41505:132:0::1;41660:17;:6:::0;41670::::1;41660:17;:::i;:::-;41648:9;:29:::0;-1:-1:-1;41428:257:0:o;40640:497::-;40748:4;25674:13;:11;:13::i;:::-;40827:6:::1;40806:13;14777:12:::0;;;14689:108;40806:13:::1;:17;::::0;40822:1:::1;40806:17;:::i;:::-;40805:28;;;;:::i;:::-;40792:9;:41;;40770:144;;;::::0;-1:-1:-1;;;40770:144:0;;9280:2:1;40770:144:0::1;::::0;::::1;9262:21:1::0;9319:2;9299:18;;;9292:30;9358:34;9338:18;;;9331:62;-1:-1:-1;;;9409:18:1;;;9402:51;9470:19;;40770:144:0::1;9078:417:1::0;40770:144:0::1;40982:4;40961:13;14777:12:::0;;;14689:108;40961:13:::1;:17;::::0;40977:1:::1;40961:17;:::i;:::-;40960:26;;;;:::i;:::-;40947:9;:39;;40925:141;;;::::0;-1:-1:-1;;;40925:141:0;;9702:2:1;40925:141:0::1;::::0;::::1;9684:21:1::0;9741:2;9721:18;;;9714:30;9780:34;9760:18;;;9753:62;-1:-1:-1;;;9831:18:1;;;9824:50;9891:19;;40925:141:0::1;9500:416:1::0;40925:141:0::1;-1:-1:-1::0;41077:18:0::1;:30:::0;41125:4:::1;::::0;40640:497::o;15449:151::-;-1:-1:-1;;;;;15565:18:0;;;15538:7;15565:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15449:151::o;52693:403::-;25674:13;:11;:13::i;:::-;52781:18:::1;::::0;-1:-1:-1;;;52781:18:0;::::1;;;52780:19;52772:65;;;::::0;-1:-1:-1;;;52772:65:0;;10123:2:1;52772:65:0::1;::::0;::::1;10105:21:1::0;10162:2;10142:18;;;10135:30;10201:34;10181:18;;;10174:62;-1:-1:-1;;;10252:18:1;;;10245:31;10293:19;;52772:65:0::1;9921:397:1::0;52772:65:0::1;52891:13;-1:-1:-1::0;;;;;52870:35:0::1;:9;-1:-1:-1::0;;;;;52870:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;52909:64:0;::::1;52930:42;52909:64;;52870:103;52848:200;;;::::0;-1:-1:-1;;;52848:200:0;;10525:2:1;52848:200:0::1;::::0;::::1;10507:21:1::0;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;-1:-1:-1;;;10654:18:1;;;10647:44;10708:19;;52848:200:0::1;10323:410:1::0;52848:200:0::1;-1:-1:-1::0;;;;;53059:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;53059:29:0::1;53084:4;53059:29;::::0;;52693:403::o;26687:201::-;25674:13;:11;:13::i;:::-;-1:-1:-1;;;;;26776:22:0;::::1;26768:73;;;::::0;-1:-1:-1;;;26768:73:0;;10940:2:1;26768:73:0::1;::::0;::::1;10922:21:1::0;10979:2;10959:18;;;10952:30;11018:34;10998:18;;;10991:62;-1:-1:-1;;;11069:18:1;;;11062:36;11115:19;;26768:73:0::1;10738:402:1::0;26768:73:0::1;26852:28;26871:8;26852:18;:28::i;:::-;26687:201:::0;:::o;22105:346::-;-1:-1:-1;;;;;22207:19:0;;22199:68;;;;-1:-1:-1;;;22199:68:0;;11347:2:1;22199:68:0;;;11329:21:1;11386:2;11366:18;;;11359:30;11425:34;11405:18;;;11398:62;-1:-1:-1;;;11476:18:1;;;11469:34;11520:19;;22199:68:0;11145:400:1;22199:68:0;-1:-1:-1;;;;;22286:21:0;;22278:68;;;;-1:-1:-1;;;22278:68:0;;11752:2:1;22278:68:0;;;11734:21:1;11791:2;11771:18;;;11764:30;11830:34;11810:18;;;11803:62;-1:-1:-1;;;11881:18:1;;;11874:32;11923:19;;22278:68:0;11550:398:1;22278:68:0;-1:-1:-1;;;;;22359:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22411:32;;1613:25:1;;;22411:32:0;;1586:18:1;22411:32:0;;;;;;;22105:346;;;:::o;25953:132::-;25861:6;;-1:-1:-1;;;;;25861:6:0;11278:10;26017:23;26009:68;;;;-1:-1:-1;;;26009:68:0;;12155:2:1;26009:68:0;;;12137:21:1;;;12174:18;;;12167:30;12233:34;12213:18;;;12206:62;12285:18;;26009:68:0;11953:356:1;22742:419:0;22843:24;22870:25;22880:5;22887:7;22870:9;:25::i;:::-;22843:52;;-1:-1:-1;;22910:16:0;:37;22906:248;;22992:6;22972:16;:26;;22964:68;;;;-1:-1:-1;;;22964:68:0;;12516:2:1;22964:68:0;;;12498:21:1;12555:2;12535:18;;;12528:30;12594:31;12574:18;;;12567:59;12643:18;;22964:68:0;12314:353:1;22964:68:0;23076:51;23085:5;23092:7;23120:6;23101:16;:25;23076:8;:51::i;44211:4189::-;-1:-1:-1;;;;;44343:18:0;;44335:68;;;;-1:-1:-1;;;44335:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44422:16:0;;44414:64;;;;-1:-1:-1;;;44414:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44498:17:0;;;;;;:11;:17;;;;;;;;44497:18;44489:48;;;;-1:-1:-1;;;44489:48:0;;13684:2:1;44489:48:0;;;13666:21:1;13723:2;13703:18;;;13696:30;-1:-1:-1;;;13742:18:1;;;13735:48;13800:18;;44489:48:0;13482:342:1;44489:48:0;-1:-1:-1;;;;;44557:15:0;;;;;;:11;:15;;;;;;;;44556:16;44548:48;;;;-1:-1:-1;;;44548:48:0;;14031:2:1;44548:48:0;;;14013:21:1;14070:2;14050:18;;;14043:30;-1:-1:-1;;;14089:18:1;;;14082:50;14149:18;;44548:48:0;13829:344:1;44548:48:0;44613:17;;;;44609:135;;;-1:-1:-1;;;;;44655:31:0;;;;;;:25;:31;;;;;;;;44647:85;;;;-1:-1:-1;;;44647:85:0;;14380:2:1;44647:85:0;;;14362:21:1;14419:2;14399:18;;;14392:30;14458:34;14438:18;;;14431:62;-1:-1:-1;;;14509:18:1;;;14502:39;14558:19;;44647:85:0;14178:405:1;44647:85:0;44760:6;44770:1;44760:11;44756:93;;44788:28;44804:4;44810:2;44814:1;44788:15;:28::i;44756:93::-;44865:14;;-1:-1:-1;;;44865:14:0;;;;44861:1694;;;25861:6;;-1:-1:-1;;;;;44918:15:0;;;25861:6;;44918:15;;;;:49;;-1:-1:-1;25861:6:0;;-1:-1:-1;;;;;44954:13:0;;;25861:6;;44954:13;;44918:49;:86;;;;-1:-1:-1;;;;;;44988:16:0;;;;44918:86;:128;;;;-1:-1:-1;;;;;;45025:21:0;;45039:6;45025:21;;44918:128;:158;;;;-1:-1:-1;45068:8:0;;-1:-1:-1;;;45068:8:0;;;;45067:9;44918:158;44896:1648;;;45116:13;;-1:-1:-1;;;45116:13:0;;;;45111:223;;-1:-1:-1;;;;;45188:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45217:23:0;;;;;;:19;:23;;;;;;;;45188:52;45154:160;;;;-1:-1:-1;;;45154:160:0;;14790:2:1;45154:160:0;;;14772:21:1;14829:2;14809:18;;;14802:30;-1:-1:-1;;;14848:18:1;;;14841:52;14910:18;;45154:160:0;14588:346:1;45154:160:0;-1:-1:-1;;;;;45408:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;45465:35:0;;;;;;:31;:35;;;;;;;;45464:36;45408:92;45382:1147;;;45587:20;;45577:6;:30;;45543:169;;;;-1:-1:-1;;;45543:169:0;;15141:2:1;45543:169:0;;;15123:21:1;15180:2;15160:18;;;15153:30;15219:34;15199:18;;;15192:62;-1:-1:-1;;;15270:18:1;;;15263:51;15331:19;;45543:169:0;14939:417:1;45543:169:0;45795:9;;-1:-1:-1;;;;;14961:18:0;;14934:7;14961:18;;;;;;;;;;;45769:22;;:6;:22;:::i;:::-;:35;;45735:140;;;;-1:-1:-1;;;45735:140:0;;15563:2:1;45735:140:0;;;15545:21:1;15602:2;15582:18;;;15575:30;-1:-1:-1;;;15621:18:1;;;15614:49;15680:18;;45735:140:0;15361:343:1;45735:140:0;45382:1147;;;-1:-1:-1;;;;;45973:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;46028:37:0;;;;;;:31;:37;;;;;;;;46027:38;45973:92;45947:582;;;46152:20;;46142:6;:30;;46108:170;;;;-1:-1:-1;;;46108:170:0;;15911:2:1;46108:170:0;;;15893:21:1;15950:2;15930:18;;;15923:30;15989:34;15969:18;;;15962:62;-1:-1:-1;;;16040:18:1;;;16033:52;16102:19;;46108:170:0;15709:418:1;45947:582:0;-1:-1:-1;;;;;46309:35:0;;;;;;:31;:35;;;;;;;;46304:225;;46429:9;;-1:-1:-1;;;;;14961:18:0;;14934:7;14961:18;;;;;;;;;;;46403:22;;:6;:22;:::i;:::-;:35;;46369:140;;;;-1:-1:-1;;;46369:140:0;;15563:2:1;46369:140:0;;;15545:21:1;15602:2;15582:18;;;15575:30;-1:-1:-1;;;15621:18:1;;;15614:49;15680:18;;46369:140:0;15361:343:1;46369:140:0;46616:4;46567:28;14961:18;;;;;;;;;;;46674;;46650:42;;;;;;;46723:35;;-1:-1:-1;46747:11:0;;-1:-1:-1;;;46747:11:0;;;;46723:35;:61;;;;-1:-1:-1;46776:8:0;;-1:-1:-1;;;46776:8:0;;;;46775:9;46723:61;:110;;;;-1:-1:-1;;;;;;46802:31:0;;;;;;:25;:31;;;;;;;;46801:32;46723:110;:153;;;;-1:-1:-1;;;;;;46851:25:0;;;;;;:19;:25;;;;;;;;46850:26;46723:153;:194;;;;-1:-1:-1;;;;;;46894:23:0;;;;;;:19;:23;;;;;;;;46893:24;46723:194;46705:326;;;46944:8;:15;;-1:-1:-1;;;;46944:15:0;-1:-1:-1;;;46944:15:0;;;46976:10;:8;:10::i;:::-;47003:8;:16;;-1:-1:-1;;;;47003:16:0;;;46705:326;47059:8;;-1:-1:-1;;;;;47169:25:0;;47043:12;47169:25;;;:19;:25;;;;;;47059:8;-1:-1:-1;;;47059:8:0;;;;;47058:9;;47169:25;;:52;;-1:-1:-1;;;;;;47198:23:0;;;;;;:19;:23;;;;;;;;47169:52;47165:100;;;-1:-1:-1;47248:5:0;47165:100;47277:12;47382:7;47378:969;;;-1:-1:-1;;;;;47434:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;47483:1;47467:13;;:17;47434:50;47430:768;;;47512:34;47542:3;47512:25;47523:13;;47512:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;47505:41;;47615:13;;47595:16;;47588:4;:23;;;;:::i;:::-;47587:41;;;;:::i;:::-;47565:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;47687:13:0;;47672:11;;47665:18;;:4;:18;:::i;:::-;47664:36;;;;:::i;:::-;47647:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;47767:13:0;;47748:15;;47741:22;;:4;:22;:::i;:::-;47740:40;;;;:::i;:::-;47719:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;47430:768:0;;-1:-1:-1;47430:768:0;;-1:-1:-1;;;;;47842:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;47892:1;47877:12;;:16;47842:51;47838:360;;;47921:33;47950:3;47921:24;47932:12;;47921:6;:10;;:24;;;;:::i;:33::-;47914:40;;48022:12;;48003:15;;47996:4;:22;;;;:::i;:::-;47995:39;;;;:::i;:::-;47973:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;48092:12:0;;48078:10;;48071:17;;:4;:17;:::i;:::-;48070:34;;;;:::i;:::-;48053:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;48170:12:0;;48152:14;;48145:21;;:4;:21;:::i;:::-;48144:38;;;;:::i;:::-;48123:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;47838:360:0;48218:8;;48214:91;;48247:42;48263:4;48277;48284;48247:15;:42::i;:::-;48321:14;48331:4;48321:14;;:::i;:::-;;;47378:969;48359:33;48375:4;48381:2;48385:6;48359:15;:33::i;:::-;44324:4076;;;;44211:4189;;;:::o;27048:191::-;27141:6;;;-1:-1:-1;;;;;27158:17:0;;;-1:-1:-1;;;;;;27158:17:0;;;;;;;27191:40;;27141:6;;;27158:17;27141:6;;27191:40;;27122:16;;27191:40;27111:128;27048:191;:::o;43382:188::-;-1:-1:-1;;;;;43465:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;43465:39:0;;;;;;;;;;43522:40;;43465:39;;:31;43522:40;;;43382:188;;:::o;19018:806::-;-1:-1:-1;;;;;19115:18:0;;19107:68;;;;-1:-1:-1;;;19107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19194:16:0;;19186:64;;;;-1:-1:-1;;;19186:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19336:15:0;;19314:19;19336:15;;;;;;;;;;;19370:21;;;;19362:72;;;;-1:-1:-1;;;19362:72:0;;16467:2:1;19362:72:0;;;16449:21:1;16506:2;16486:18;;;16479:30;16545:34;16525:18;;;16518:62;-1:-1:-1;;;16596:18:1;;;16589:36;16642:19;;19362:72:0;16265:402:1;19362:72:0;-1:-1:-1;;;;;19470:15:0;;;:9;:15;;;;;;;;;;;19488:20;;;19470:38;;19688:13;;;;;;;;;;:23;;;;;;19740:26;;1613:25:1;;;19688:13:0;;19740:26;;1586:18:1;19740:26:0;;;;;;;19779:37;42064:395;49526:1773;49609:4;49565:23;14961:18;;;;;;;;;;;49565:50;;49626:25;49721:13;;49688:17;;49654:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;49626:108;-1:-1:-1;49745:12:0;49774:20;;;:46;;-1:-1:-1;49798:22:0;;49774:46;49770:85;;;49837:7;;;49526:1773::o;49770:85::-;49889:18;;:23;;49910:2;49889:23;:::i;:::-;49871:15;:41;49867:115;;;49947:18;;:23;;49968:2;49947:23;:::i;:::-;49929:41;;49867:115;50043:23;50156:1;50123:17;50088:18;;50070:15;:36;;;;:::i;:::-;50069:71;;;;:::i;:::-;:88;;;;:::i;:::-;50043:114;-1:-1:-1;50168:26:0;50197:36;:15;50043:114;50197:19;:36::i;:::-;50168:65;-1:-1:-1;50274:21:0;50308:36;50168:65;50308:16;:36::i;:::-;50357:18;50378:44;:21;50404:17;50378:25;:44::i;:::-;50357:65;;50435:22;50460:83;50540:1;50519:18;;:22;;;;:::i;:::-;50498:44;;:17;:44;:::i;:::-;50475:17;;50460:33;;:10;;:14;:33::i;:83::-;50435:108;;50564:18;50585:79;50661:1;50640:18;;:22;;;;:::i;:::-;50619:44;;:17;:44;:::i;:::-;50600:13;;50585:29;;:10;;:14;:29::i;:79::-;50564:100;-1:-1:-1;50677:23:0;50564:100;50703:27;50716:14;50703:10;:27;:::i;:::-;:40;;;;:::i;:::-;50777:1;50756:18;:22;;;50789:17;:21;;;50821:13;:17;;;50873:10;;50865:47;;50677:66;;-1:-1:-1;;;;;;50873:10:0;;50897;;50865:47;50777:1;50865:47;50897:10;50873;50865:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50851:61:0;;-1:-1:-1;;50929:19:0;;;;;:42;;;50970:1;50952:15;:19;50929:42;50925:278;;;50988:46;51001:15;51018;50988:12;:46::i;:::-;51158:18;;51054:137;;;16874:25:1;;;16930:2;16915:18;;16908:34;;;16958:18;;;16951:34;;;;51054:137:0;;;;;;16862:2:1;51054:137:0;;;50925:278;51237:14;;51229:62;;-1:-1:-1;;;;;51237:14:0;;;;51265:21;;51229:62;;;;51265:21;51237:14;51229:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;49526:1773:0:o;3614:98::-;3672:7;3699:5;3703:1;3699;:5;:::i;:::-;3692:12;3614:98;-1:-1:-1;;;3614:98:0:o;4013:::-;4071:7;4098:5;4102:1;4098;:5;:::i;3257:98::-;3315:7;3342:5;3346:1;3342;:5;:::i;48408:589::-;48558:16;;;48572:1;48558:16;;;;;;;;48534:21;;48558:16;;;;;;;;;;-1:-1:-1;48558:16:0;48534:40;;48603:4;48585;48590:1;48585:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;48585:23:0;;;-1:-1:-1;;;;;48585:23:0;;;;;48629:15;-1:-1:-1;;;;;48629:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48619:4;48624:1;48619:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;48619:32:0;;;-1:-1:-1;;;;;48619:32:0;;;;;48664:62;48681:4;48696:15;48714:11;48664:8;:62::i;:::-;48765:224;;-1:-1:-1;;;48765:224:0;;-1:-1:-1;;;;;48765:15:0;:66;;;;:224;;48846:11;;48872:1;;48916:4;;48943;;48963:15;;48765:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48463:534;48408:589;:::o;49005:513::-;49153:62;49170:4;49185:15;49203:11;49153:8;:62::i;:::-;49258:15;-1:-1:-1;;;;;49258:31:0;;49297:9;49330:4;49350:11;49376:1;49419;49462:7;25861:6;;-1:-1:-1;;;;;25861:6:0;;25788:87;49462:7;49258:252;;;;;;-1:-1:-1;;;;;;49258:252:0;;;-1:-1:-1;;;;;18860:15:1;;;49258:252:0;;;18842:34:1;18892:18;;;18885:34;;;;18935:18;;;18928:34;;;;18978:18;;;18971:34;19042:15;;;19021:19;;;19014:44;49484:15:0;19074:19:1;;;19067:35;18776:19;;49258:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49005:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:127::-;4843:10;4838:3;4834:20;4831:1;4824:31;4874:4;4871:1;4864:15;4898:4;4895:1;4888:15;4914:168;4987:9;;;5018;;5035:15;;;5029:22;;5015:37;5005:71;;5056:18;;:::i;5087:217::-;5127:1;5153;5143:132;;5197:10;5192:3;5188:20;5185:1;5178:31;5232:4;5229:1;5222:15;5260:4;5257:1;5250:15;5143:132;-1:-1:-1;5289:9:1;;5087:217::o;5725:184::-;5795:6;5848:2;5836:9;5827:7;5823:23;5819:32;5816:52;;;5864:1;5861;5854:12;5816:52;-1:-1:-1;5887:16:1;;5725:184;-1:-1:-1;5725:184:1:o;6193:245::-;6260:6;6313:2;6301:9;6292:7;6288:23;6284:32;6281:52;;;6329:1;6326;6319:12;6281:52;6361:9;6355:16;6380:28;6402:5;6380:28;:::i;6443:125::-;6508:9;;;6529:10;;;6526:36;;;6542:18;;:::i;12672:401::-;12874:2;12856:21;;;12913:2;12893:18;;;12886:30;12952:34;12947:2;12932:18;;12925:62;-1:-1:-1;;;13018:2:1;13003:18;;12996:35;13063:3;13048:19;;12672:401::o;13078:399::-;13280:2;13262:21;;;13319:2;13299:18;;;13292:30;13358:34;13353:2;13338:18;;13331:62;-1:-1:-1;;;13424:2:1;13409:18;;13402:33;13467:3;13452:19;;13078:399::o;16132:128::-;16199:9;;;16220:11;;;16217:37;;;16234:18;;:::i;17128:127::-;17189:10;17184:3;17180:20;17177:1;17170:31;17220:4;17217:1;17210:15;17244:4;17241:1;17234:15;17260:251;17330:6;17383:2;17371:9;17362:7;17358:23;17354:32;17351:52;;;17399:1;17396;17389:12;17351:52;17431:9;17425:16;17450:31;17475:5;17450:31;:::i;17516:980::-;17778:4;17826:3;17815:9;17811:19;17857:6;17846:9;17839:25;17883:2;17921:6;17916:2;17905:9;17901:18;17894:34;17964:3;17959:2;17948:9;17944:18;17937:31;17988:6;18023;18017:13;18054:6;18046;18039:22;18092:3;18081:9;18077:19;18070:26;;18131:2;18123:6;18119:15;18105:29;;18152:1;18162:195;18176:6;18173:1;18170:13;18162:195;;;18241:13;;-1:-1:-1;;;;;18237:39:1;18225:52;;18332:15;;;;18297:12;;;;18273:1;18191:9;18162:195;;;-1:-1:-1;;;;;;;18413:32:1;;;;18408:2;18393:18;;18386:60;-1:-1:-1;;;18477:3:1;18462:19;18455:35;18374:3;17516:980;-1:-1:-1;;;17516:980:1:o;19113:306::-;19201:6;19209;19217;19270:2;19258:9;19249:7;19245:23;19241:32;19238:52;;;19286:1;19283;19276:12;19238:52;19315:9;19309:16;19299:26;;19365:2;19354:9;19350:18;19344:25;19334:35;;19409:2;19398:9;19394:18;19388:25;19378:35;;19113:306;;;;;:::o
Swarm Source
ipfs://a425cd2996ba5c7940c5f4a297ce4273435f9c842c1f10e17dfc1a3a0dfcfaa5
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.