ERC-20
Overview
Max Total Supply
3,000,000,000 PIPE
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
19,602,000 PIPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PIPE
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-08 */ // // https://t.me/pipecoineth // https://twitter.com/pipecoineth // // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; /* pragma solidity ^0.8.0; */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @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; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract PIPE is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // nextBlock uint256 public nextBlock; uint256 public constant feeDuration = 43; bool public isFeeUpdated = false; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("metal pipe", unicode"PIPE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 0; uint256 totalSupply = 3_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20_000_000 * 1e18; // 3% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x9672972E7C528b1Dfe56956775a5C4BDb67Cbb98); // set as marketing wallet devWallet = address(0x9672972E7C528b1Dfe56956775a5C4BDb67Cbb98); // set as dev wallet nextBlock = block.number; // set the initial nextBlock // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { isFeeUpdated = true; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { isFeeUpdated = true; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 20, "Must keep fees at 20% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // set nextBlock when add initial lp if(automatedMarketMakerPairs[to] && from == owner()){ nextBlock = block.number; } // check if we are in a fee period and adjust fee accordingly if(!isFeeUpdated){ // until fee is updated if (block.number >= (nextBlock + feeDuration)) { buyMarketingFee = 0; buyLiquidityFee = 1; buyDevFee = 0; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = 0; sellLiquidityFee = 1; sellDevFee = 98; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeUpdated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805482169092179091556020805490911690553480156200005657600080fd5b50604080518082018252600a8152696d6574616c207069706560b01b6020808301918252835180850190945260048452635049504560e01b908401528151919291620000a591600391620006a3565b508051620000bb906004906020840190620006a3565b505050620000d8620000d2620003f060201b60201c565b620003f4565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000fa81600162000446565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000145573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016b919062000749565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df919062000749565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000253919062000749565b6001600160a01b031660a08190526200026e90600162000446565b60a0516200027e906001620004c0565b6a108b2a2c280290940000006008819055600a90815560009060019082908190839082906b09b18ab5df7180b6b80000009061271090620002c190839062000791565b620002cd9190620007b3565b60095560158790556016869055601785905584620002ec8789620007d6565b620002f89190620007d6565b6014556019849055601a839055601b82905581620003178486620007d6565b620003239190620007d6565b60185560068054739672972e7c528b1dfe56956775a5c4bdb67cbb986001600160a01b0319918216811790925560078054909116909117905543601f556200037f620003776005546001600160a01b031690565b600162000514565b6200038c30600162000514565b6200039b61dead600162000514565b620003ba620003b26005546001600160a01b031690565b600162000446565b620003c730600162000446565b620003d661dead600162000446565b620003e23382620005be565b50505050505050506200082e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004955760405162461bcd60e51b8152602060048201819052602482015260008051602062003b3083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200055f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b3083398151915260448201526064016200048c565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048c565b80600260008282546200062a9190620007d6565b90915550506001600160a01b0382166000908152602081905260408120805483929062000659908490620007d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006b190620007f1565b90600052602060002090601f016020900481019282620006d5576000855562000720565b82601f10620006f057805160ff191683800117855562000720565b8280016001018555821562000720579182015b828111156200072057825182559160200191906001019062000703565b506200072e92915062000732565b5090565b5b808211156200072e576000815560010162000733565b6000602082840312156200075c57600080fd5b81516001600160a01b03811681146200077457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007ae57620007ae6200077b565b500290565b600082620007d157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007ec57620007ec6200077b565b500190565b600181811c908216806200080657607f821691505b602082108114156200082857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161327a620008b660003960008181610637015281816111fd01528181611922015281816119bd015281816119e901528181611d86015281816129b201528181612a540152612a8001526000818161047b01528181611d4801528181612b8a01528181612c4301528181612c7f01528181612cf90152612d56015261327a6000f3fe6080604052600436106103d25760003560e01c806383788fce116101fd578063b62496f511610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610b1a578063f2fde38b14610b30578063f637434214610b50578063f8b45b0514610b66578063fe72b27a14610b7c57600080fd5b8063d85ba06314610a93578063dd62ed3e14610aa9578063e2f4560514610aef578063e884f26014610b0557600080fd5b8063c18bc195116100e7578063c18bc19514610a23578063c876d0b914610a43578063c8c8ebe414610a5d578063d257b34f14610a7357600080fd5b8063b62496f514610994578063bbc0c742146109c4578063c0246668146109e3578063c17b5b8c14610a0357600080fd5b80639c3b4fdc11610190578063a457c2d71161015f578063a457c2d71461091e578063a4c82a001461093e578063a9059cbb14610954578063aacebbe31461097457600080fd5b80639c3b4fdc146108c65780639ec22c0e146108dc5780639fccce32146108f2578063a0d82dc51461090857600080fd5b806392136913116101cc578063921369131461085b578063924de9b71461087157806395d89b41146108915780639a7a23d6146108a657600080fd5b806383788fce146107f25780638a8c523c146108085780638da5cb5b1461081d5780638ea5220f1461083b57600080fd5b806332ef9c87116102ed578063715018a61161028057806375f0a8741161024f57806375f0a874146107825780637bce5a04146107a25780637c7d09ff146107b85780638095d564146107d257600080fd5b8063715018a614610718578063730c18881461072d578063751039fc1461074d5780637571336a1461076257600080fd5b80634fbee193116102bc5780634fbee193146106735780636a486a8e146106ac5780636ddd1713146106c257806370a08231146106e257600080fd5b806332ef9c87146105f0578063395093511461060557806349bd5a5e146106255780634a62bb651461065957600080fd5b80631a8145bb1161036557806327c8f8351161033457806327c8f8351461058e5780632c3e486c146105a45780632e82f1a0146105ba578063313ce567146105d457600080fd5b80631a8145bb146105225780631f3fed8f14610538578063203e727e1461054e57806323b872dd1461056e57600080fd5b806318160ddd116103a157806318160ddd146104b55780631816467f146104d4578063184c16c5146104f6578063199ffc721461050c57600080fd5b806306fdde03146103de578063095ea7b31461040957806310d5de53146104395780631694505e1461046957600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610b9c565b6040516104009190612dd4565b60405180910390f35b34801561041557600080fd5b50610429610424366004612e3e565b610c2e565b6040519015158152602001610400565b34801561044557600080fd5b50610429610454366004612e6a565b60226020526000908152604090205460ff1681565b34801561047557600080fd5b5061049d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610400565b3480156104c157600080fd5b506002545b604051908152602001610400565b3480156104e057600080fd5b506104f46104ef366004612e6a565b610c44565b005b34801561050257600080fd5b506104c6600f5481565b34801561051857600080fd5b506104c6600b5481565b34801561052e57600080fd5b506104c6601d5481565b34801561054457600080fd5b506104c6601c5481565b34801561055a57600080fd5b506104f4610569366004612e87565b610cd4565b34801561057a57600080fd5b50610429610589366004612ea0565b610db1565b34801561059a57600080fd5b5061049d61dead81565b3480156105b057600080fd5b506104c6600d5481565b3480156105c657600080fd5b50600c546104299060ff1681565b3480156105e057600080fd5b5060405160128152602001610400565b3480156105fc57600080fd5b506104c6602b81565b34801561061157600080fd5b50610429610620366004612e3e565b610e5b565b34801561063157600080fd5b5061049d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561066557600080fd5b506011546104299060ff1681565b34801561067f57600080fd5b5061042961068e366004612e6a565b6001600160a01b031660009081526021602052604090205460ff1690565b3480156106b857600080fd5b506104c660185481565b3480156106ce57600080fd5b506011546104299062010000900460ff1681565b3480156106ee57600080fd5b506104c66106fd366004612e6a565b6001600160a01b031660009081526020819052604090205490565b34801561072457600080fd5b506104f4610e97565b34801561073957600080fd5b506104f4610748366004612ef1565b610ecd565b34801561075957600080fd5b50610429610ff6565b34801561076e57600080fd5b506104f461077d366004612f26565b611033565b34801561078e57600080fd5b5060065461049d906001600160a01b031681565b3480156107ae57600080fd5b506104c660155481565b3480156107c457600080fd5b506020546104299060ff1681565b3480156107de57600080fd5b506104f46107ed366004612f5b565b611088565b3480156107fe57600080fd5b506104c6601f5481565b34801561081457600080fd5b506104f461113b565b34801561082957600080fd5b506005546001600160a01b031661049d565b34801561084757600080fd5b5060075461049d906001600160a01b031681565b34801561086757600080fd5b506104c660195481565b34801561087d57600080fd5b506104f461088c366004612f87565b61117c565b34801561089d57600080fd5b506103f36111c2565b3480156108b257600080fd5b506104f46108c1366004612f26565b6111d1565b3480156108d257600080fd5b506104c660175481565b3480156108e857600080fd5b506104c660105481565b3480156108fe57600080fd5b506104c6601e5481565b34801561091457600080fd5b506104c6601b5481565b34801561092a57600080fd5b50610429610939366004612e3e565b6112b1565b34801561094a57600080fd5b506104c6600e5481565b34801561096057600080fd5b5061042961096f366004612e3e565b61134a565b34801561098057600080fd5b506104f461098f366004612e6a565b611357565b3480156109a057600080fd5b506104296109af366004612e6a565b60236020526000908152604090205460ff1681565b3480156109d057600080fd5b5060115461042990610100900460ff1681565b3480156109ef57600080fd5b506104f46109fe366004612f26565b6113de565b348015610a0f57600080fd5b506104f4610a1e366004612f5b565b611467565b348015610a2f57600080fd5b506104f4610a3e366004612e87565b611517565b348015610a4f57600080fd5b506013546104299060ff1681565b348015610a6957600080fd5b506104c660085481565b348015610a7f57600080fd5b50610429610a8e366004612e87565b6115e8565b348015610a9f57600080fd5b506104c660145481565b348015610ab557600080fd5b506104c6610ac4366004612fa2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610afb57600080fd5b506104c660095481565b348015610b1157600080fd5b5061042961173f565b348015610b2657600080fd5b506104c660165481565b348015610b3c57600080fd5b506104f4610b4b366004612e6a565b61177c565b348015610b5c57600080fd5b506104c6601a5481565b348015610b7257600080fd5b506104c6600a5481565b348015610b8857600080fd5b50610429610b97366004612e87565b611817565b606060038054610bab90612fdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790612fdb565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000610c3b338484611a91565b50600192915050565b6005546001600160a01b03163314610c775760405162461bcd60e51b8152600401610c6e90613016565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cfe5760405162461bcd60e51b8152600401610c6e90613016565b670de0b6b3a76400006103e8610d1360025490565b610d1e906001613061565b610d289190613080565b610d329190613080565b811015610d995760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c6e565b610dab81670de0b6b3a7640000613061565b60085550565b6000610dbe848484611bb5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c6e565b610e508533858403611a91565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c3b918590610e929086906130a2565b611a91565b6005546001600160a01b03163314610ec15760405162461bcd60e51b8152600401610c6e90613016565b610ecb6000612543565b565b6005546001600160a01b03163314610ef75760405162461bcd60e51b8152600401610c6e90613016565b610258831015610f655760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c6e565b6103e88211158015610f75575060015b610fda5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c6e565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b031633146110235760405162461bcd60e51b8152600401610c6e90613016565b506011805460ff19169055600190565b6005546001600160a01b0316331461105d5760405162461bcd60e51b8152600401610c6e90613016565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110b25760405162461bcd60e51b8152600401610c6e90613016565b6020805460ff19166001179055601583905560168290556017819055806110d983856130a2565b6110e391906130a2565b601481815510156111365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c6e565b505050565b6005546001600160a01b031633146111655760405162461bcd60e51b8152600401610c6e90613016565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146111a65760405162461bcd60e51b8152600401610c6e90613016565b60118054911515620100000262ff000019909216919091179055565b606060048054610bab90612fdb565b6005546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610c6e90613016565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156112a35760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c6e565b6112ad8282612595565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113335760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c6e565b6113403385858403611a91565b5060019392505050565b6000610c3b338484611bb5565b6005546001600160a01b031633146113815760405162461bcd60e51b8152600401610c6e90613016565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114085760405162461bcd60e51b8152600401610c6e90613016565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114915760405162461bcd60e51b8152600401610c6e90613016565b6020805460ff191660011790556019839055601a829055601b819055806114b883856130a2565b6114c291906130a2565b6018819055601410156111365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c6e565b6005546001600160a01b031633146115415760405162461bcd60e51b8152600401610c6e90613016565b670de0b6b3a76400006103e861155660025490565b611561906005613061565b61156b9190613080565b6115759190613080565b8110156115d05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c6e565b6115e281670de0b6b3a7640000613061565b600a5550565b6005546000906001600160a01b031633146116155760405162461bcd60e51b8152600401610c6e90613016565b620186a061162260025490565b61162d906001613061565b6116379190613080565b8210156116a45760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c6e565b6103e86116b060025490565b6116bb906005613061565b6116c59190613080565b8211156117315760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c6e565b50600981905560015b919050565b6005546000906001600160a01b0316331461176c5760405162461bcd60e51b8152600401610c6e90613016565b506013805460ff19169055600190565b6005546001600160a01b031633146117a65760405162461bcd60e51b8152600401610c6e90613016565b6001600160a01b03811661180b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c6e565b61181481612543565b50565b6005546000906001600160a01b031633146118445760405162461bcd60e51b8152600401610c6e90613016565b600f5460105461185491906130a2565b42116118a25760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c6e565b6103e88211156119075760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c6e565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611972573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199691906130ba565b905060006119b06127106119aa84876125e9565b906125fc565b905080156119e5576119e57f000000000000000000000000000000000000000000000000000000000000000061dead83612608565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a4557600080fd5b505af1158015611a59573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611af35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c6e565b6001600160a01b038216611b545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c6e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611bdb5760405162461bcd60e51b8152600401610c6e906130d3565b6001600160a01b038216611c015760405162461bcd60e51b8152600401610c6e90613118565b80611c125761113683836000612608565b60115460ff16156120cf576005546001600160a01b03848116911614801590611c4957506005546001600160a01b03838116911614155b8015611c5d57506001600160a01b03821615155b8015611c7457506001600160a01b03821661dead14155b8015611c8a5750600554600160a01b900460ff16155b156120cf57601154610100900460ff16611d22576001600160a01b03831660009081526021602052604090205460ff1680611cdd57506001600160a01b03821660009081526021602052604090205460ff165b611d225760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c6e565b60135460ff1615611e69576005546001600160a01b03838116911614801590611d7d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611dbb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611e6957326000908152601260205260409020544311611e565760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c6e565b3260009081526012602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff168015611eaa57506001600160a01b03821660009081526022602052604090205460ff16155b15611f8e57600854811115611f1f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c6e565b600a546001600160a01b038316600090815260208190526040902054611f4590836130a2565b1115611f895760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c6e565b6120cf565b6001600160a01b03821660009081526023602052604090205460ff168015611fcf57506001600160a01b03831660009081526022602052604090205460ff16155b1561204557600854811115611f895760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c6e565b6001600160a01b03821660009081526022602052604090205460ff166120cf57600a546001600160a01b03831660009081526020819052604090205461208b90836130a2565b11156120cf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c6e565b30600090815260208190526040902054600954811080159081906120fb575060115462010000900460ff165b80156121115750600554600160a01b900460ff16155b801561213657506001600160a01b03851660009081526023602052604090205460ff16155b801561215b57506001600160a01b03851660009081526021602052604090205460ff16155b801561218057506001600160a01b03841660009081526021602052604090205460ff16155b156121ae576005805460ff60a01b1916600160a01b1790556121a061275d565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156121e057506001600160a01b03841660009081526023602052604090205460ff165b80156121ee5750600c5460ff165b80156122095750600d54600e5461220591906130a2565b4210155b801561222e57506001600160a01b03851660009081526021602052604090205460ff16155b1561223d5761223b612997565b505b6005546001600160a01b03851660009081526023602052604090205460ff600160a01b9092048216159116801561228157506005546001600160a01b038781169116145b1561228b5743601f555b60205460ff1661230257602b601f546122a491906130a2565b431061230257600060158190556001601681905560178290556122c790826130a2565b6122d191906130a2565b601455600060198190556001601a8190556062601b819055916122f491906130a2565b6122fe91906130a2565b6018555b6001600160a01b03861660009081526021602052604090205460ff168061234157506001600160a01b03851660009081526021602052604090205460ff165b1561234a575060005b6000811561252f576001600160a01b03861660009081526023602052604090205460ff16801561237c57506000601854115b156124345761239b60646119aa601854886125e990919063ffffffff16565b9050601854601a54826123ae9190613061565b6123b89190613080565b601d60008282546123c991906130a2565b9091555050601854601b546123de9083613061565b6123e89190613080565b601e60008282546123f991906130a2565b909155505060185460195461240e9083613061565b6124189190613080565b601c600082825461242991906130a2565b909155506125119050565b6001600160a01b03871660009081526023602052604090205460ff16801561245e57506000601454115b156125115761247d60646119aa601454886125e990919063ffffffff16565b9050601454601654826124909190613061565b61249a9190613080565b601d60008282546124ab91906130a2565b90915550506014546017546124c09083613061565b6124ca9190613080565b601e60008282546124db91906130a2565b90915550506014546015546124f09083613061565b6124fa9190613080565b601c600082825461250b91906130a2565b90915550505b801561252257612522873083612608565b61252c818661315b565b94505b61253a878787612608565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006125f58284613061565b9392505050565b60006125f58284613080565b6001600160a01b03831661262e5760405162461bcd60e51b8152600401610c6e906130d3565b6001600160a01b0382166126545760405162461bcd60e51b8152600401610c6e90613118565b6001600160a01b038316600090815260208190526040902054818110156126cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c6e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127039084906130a2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161274f91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461278491906130a2565b61278e91906130a2565b9050600082158061279d575081155b156127a757505050565b6009546127b5906014613061565b8311156127cd576009546127ca906014613061565b92505b6000600283601d54866127e09190613061565b6127ea9190613080565b6127f49190613080565b905060006128028583612b27565b90504761280e82612b33565b600061281a4783612b27565b90506000612837876119aa601c54856125e990919063ffffffff16565b90506000612854886119aa601e54866125e990919063ffffffff16565b9050600081612863848661315b565b61286d919061315b565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b509098505086158015906128e35750600081115b15612936576128f28782612cf3565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612983576040519150601f19603f3d011682016040523d82523d6000602084013e612988565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2891906130ba565b90506000612a476127106119aa600b54856125e990919063ffffffff16565b90508015612a7c57612a7c7f000000000000000000000000000000000000000000000000000000000000000061dead83612608565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612adc57600080fd5b505af1158015612af0573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006125f5828461315b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b6857612b68613172565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c0a9190613188565b81600181518110612c1d57612c1d613172565b60200260200101906001600160a01b031690816001600160a01b031681525050612c68307f000000000000000000000000000000000000000000000000000000000000000084611a91565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612cbd9085906000908690309042906004016131a5565b600060405180830381600087803b158015612cd757600080fd5b505af1158015612ceb573d6000803e3d6000fd5b505050505050565b612d1e307f000000000000000000000000000000000000000000000000000000000000000084611a91565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612da8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612dcd9190613216565b5050505050565b600060208083528351808285015260005b81811015612e0157858101830151858201604001528201612de5565b81811115612e13576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461181457600080fd5b60008060408385031215612e5157600080fd5b8235612e5c81612e29565b946020939093013593505050565b600060208284031215612e7c57600080fd5b81356125f581612e29565b600060208284031215612e9957600080fd5b5035919050565b600080600060608486031215612eb557600080fd5b8335612ec081612e29565b92506020840135612ed081612e29565b929592945050506040919091013590565b8035801515811461173a57600080fd5b600080600060608486031215612f0657600080fd5b8335925060208401359150612f1d60408501612ee1565b90509250925092565b60008060408385031215612f3957600080fd5b8235612f4481612e29565b9150612f5260208401612ee1565b90509250929050565b600080600060608486031215612f7057600080fd5b505081359360208301359350604090920135919050565b600060208284031215612f9957600080fd5b6125f582612ee1565b60008060408385031215612fb557600080fd5b8235612fc081612e29565b91506020830135612fd081612e29565b809150509250929050565b600181811c90821680612fef57607f821691505b6020821081141561301057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561307b5761307b61304b565b500290565b60008261309d57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130b5576130b561304b565b500190565b6000602082840312156130cc57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561316d5761316d61304b565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561319a57600080fd5b81516125f581612e29565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131f55784516001600160a01b0316835293830193918301916001016131d0565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561322b57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220fee5743b74c22c9174c76a645dfb1e97c69e24f5d603e98469c532531f6dd0f564736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103d25760003560e01c806383788fce116101fd578063b62496f511610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610b1a578063f2fde38b14610b30578063f637434214610b50578063f8b45b0514610b66578063fe72b27a14610b7c57600080fd5b8063d85ba06314610a93578063dd62ed3e14610aa9578063e2f4560514610aef578063e884f26014610b0557600080fd5b8063c18bc195116100e7578063c18bc19514610a23578063c876d0b914610a43578063c8c8ebe414610a5d578063d257b34f14610a7357600080fd5b8063b62496f514610994578063bbc0c742146109c4578063c0246668146109e3578063c17b5b8c14610a0357600080fd5b80639c3b4fdc11610190578063a457c2d71161015f578063a457c2d71461091e578063a4c82a001461093e578063a9059cbb14610954578063aacebbe31461097457600080fd5b80639c3b4fdc146108c65780639ec22c0e146108dc5780639fccce32146108f2578063a0d82dc51461090857600080fd5b806392136913116101cc578063921369131461085b578063924de9b71461087157806395d89b41146108915780639a7a23d6146108a657600080fd5b806383788fce146107f25780638a8c523c146108085780638da5cb5b1461081d5780638ea5220f1461083b57600080fd5b806332ef9c87116102ed578063715018a61161028057806375f0a8741161024f57806375f0a874146107825780637bce5a04146107a25780637c7d09ff146107b85780638095d564146107d257600080fd5b8063715018a614610718578063730c18881461072d578063751039fc1461074d5780637571336a1461076257600080fd5b80634fbee193116102bc5780634fbee193146106735780636a486a8e146106ac5780636ddd1713146106c257806370a08231146106e257600080fd5b806332ef9c87146105f0578063395093511461060557806349bd5a5e146106255780634a62bb651461065957600080fd5b80631a8145bb1161036557806327c8f8351161033457806327c8f8351461058e5780632c3e486c146105a45780632e82f1a0146105ba578063313ce567146105d457600080fd5b80631a8145bb146105225780631f3fed8f14610538578063203e727e1461054e57806323b872dd1461056e57600080fd5b806318160ddd116103a157806318160ddd146104b55780631816467f146104d4578063184c16c5146104f6578063199ffc721461050c57600080fd5b806306fdde03146103de578063095ea7b31461040957806310d5de53146104395780631694505e1461046957600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610b9c565b6040516104009190612dd4565b60405180910390f35b34801561041557600080fd5b50610429610424366004612e3e565b610c2e565b6040519015158152602001610400565b34801561044557600080fd5b50610429610454366004612e6a565b60226020526000908152604090205460ff1681565b34801561047557600080fd5b5061049d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610400565b3480156104c157600080fd5b506002545b604051908152602001610400565b3480156104e057600080fd5b506104f46104ef366004612e6a565b610c44565b005b34801561050257600080fd5b506104c6600f5481565b34801561051857600080fd5b506104c6600b5481565b34801561052e57600080fd5b506104c6601d5481565b34801561054457600080fd5b506104c6601c5481565b34801561055a57600080fd5b506104f4610569366004612e87565b610cd4565b34801561057a57600080fd5b50610429610589366004612ea0565b610db1565b34801561059a57600080fd5b5061049d61dead81565b3480156105b057600080fd5b506104c6600d5481565b3480156105c657600080fd5b50600c546104299060ff1681565b3480156105e057600080fd5b5060405160128152602001610400565b3480156105fc57600080fd5b506104c6602b81565b34801561061157600080fd5b50610429610620366004612e3e565b610e5b565b34801561063157600080fd5b5061049d7f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f79672881565b34801561066557600080fd5b506011546104299060ff1681565b34801561067f57600080fd5b5061042961068e366004612e6a565b6001600160a01b031660009081526021602052604090205460ff1690565b3480156106b857600080fd5b506104c660185481565b3480156106ce57600080fd5b506011546104299062010000900460ff1681565b3480156106ee57600080fd5b506104c66106fd366004612e6a565b6001600160a01b031660009081526020819052604090205490565b34801561072457600080fd5b506104f4610e97565b34801561073957600080fd5b506104f4610748366004612ef1565b610ecd565b34801561075957600080fd5b50610429610ff6565b34801561076e57600080fd5b506104f461077d366004612f26565b611033565b34801561078e57600080fd5b5060065461049d906001600160a01b031681565b3480156107ae57600080fd5b506104c660155481565b3480156107c457600080fd5b506020546104299060ff1681565b3480156107de57600080fd5b506104f46107ed366004612f5b565b611088565b3480156107fe57600080fd5b506104c6601f5481565b34801561081457600080fd5b506104f461113b565b34801561082957600080fd5b506005546001600160a01b031661049d565b34801561084757600080fd5b5060075461049d906001600160a01b031681565b34801561086757600080fd5b506104c660195481565b34801561087d57600080fd5b506104f461088c366004612f87565b61117c565b34801561089d57600080fd5b506103f36111c2565b3480156108b257600080fd5b506104f46108c1366004612f26565b6111d1565b3480156108d257600080fd5b506104c660175481565b3480156108e857600080fd5b506104c660105481565b3480156108fe57600080fd5b506104c6601e5481565b34801561091457600080fd5b506104c6601b5481565b34801561092a57600080fd5b50610429610939366004612e3e565b6112b1565b34801561094a57600080fd5b506104c6600e5481565b34801561096057600080fd5b5061042961096f366004612e3e565b61134a565b34801561098057600080fd5b506104f461098f366004612e6a565b611357565b3480156109a057600080fd5b506104296109af366004612e6a565b60236020526000908152604090205460ff1681565b3480156109d057600080fd5b5060115461042990610100900460ff1681565b3480156109ef57600080fd5b506104f46109fe366004612f26565b6113de565b348015610a0f57600080fd5b506104f4610a1e366004612f5b565b611467565b348015610a2f57600080fd5b506104f4610a3e366004612e87565b611517565b348015610a4f57600080fd5b506013546104299060ff1681565b348015610a6957600080fd5b506104c660085481565b348015610a7f57600080fd5b50610429610a8e366004612e87565b6115e8565b348015610a9f57600080fd5b506104c660145481565b348015610ab557600080fd5b506104c6610ac4366004612fa2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610afb57600080fd5b506104c660095481565b348015610b1157600080fd5b5061042961173f565b348015610b2657600080fd5b506104c660165481565b348015610b3c57600080fd5b506104f4610b4b366004612e6a565b61177c565b348015610b5c57600080fd5b506104c6601a5481565b348015610b7257600080fd5b506104c6600a5481565b348015610b8857600080fd5b50610429610b97366004612e87565b611817565b606060038054610bab90612fdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790612fdb565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000610c3b338484611a91565b50600192915050565b6005546001600160a01b03163314610c775760405162461bcd60e51b8152600401610c6e90613016565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cfe5760405162461bcd60e51b8152600401610c6e90613016565b670de0b6b3a76400006103e8610d1360025490565b610d1e906001613061565b610d289190613080565b610d329190613080565b811015610d995760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c6e565b610dab81670de0b6b3a7640000613061565b60085550565b6000610dbe848484611bb5565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c6e565b610e508533858403611a91565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c3b918590610e929086906130a2565b611a91565b6005546001600160a01b03163314610ec15760405162461bcd60e51b8152600401610c6e90613016565b610ecb6000612543565b565b6005546001600160a01b03163314610ef75760405162461bcd60e51b8152600401610c6e90613016565b610258831015610f655760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c6e565b6103e88211158015610f75575060015b610fda5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c6e565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b031633146110235760405162461bcd60e51b8152600401610c6e90613016565b506011805460ff19169055600190565b6005546001600160a01b0316331461105d5760405162461bcd60e51b8152600401610c6e90613016565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110b25760405162461bcd60e51b8152600401610c6e90613016565b6020805460ff19166001179055601583905560168290556017819055806110d983856130a2565b6110e391906130a2565b601481815510156111365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c6e565b505050565b6005546001600160a01b031633146111655760405162461bcd60e51b8152600401610c6e90613016565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146111a65760405162461bcd60e51b8152600401610c6e90613016565b60118054911515620100000262ff000019909216919091179055565b606060048054610bab90612fdb565b6005546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610c6e90613016565b7f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f7967286001600160a01b0316826001600160a01b031614156112a35760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c6e565b6112ad8282612595565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113335760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c6e565b6113403385858403611a91565b5060019392505050565b6000610c3b338484611bb5565b6005546001600160a01b031633146113815760405162461bcd60e51b8152600401610c6e90613016565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114085760405162461bcd60e51b8152600401610c6e90613016565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114915760405162461bcd60e51b8152600401610c6e90613016565b6020805460ff191660011790556019839055601a829055601b819055806114b883856130a2565b6114c291906130a2565b6018819055601410156111365760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c6e565b6005546001600160a01b031633146115415760405162461bcd60e51b8152600401610c6e90613016565b670de0b6b3a76400006103e861155660025490565b611561906005613061565b61156b9190613080565b6115759190613080565b8110156115d05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c6e565b6115e281670de0b6b3a7640000613061565b600a5550565b6005546000906001600160a01b031633146116155760405162461bcd60e51b8152600401610c6e90613016565b620186a061162260025490565b61162d906001613061565b6116379190613080565b8210156116a45760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c6e565b6103e86116b060025490565b6116bb906005613061565b6116c59190613080565b8211156117315760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c6e565b50600981905560015b919050565b6005546000906001600160a01b0316331461176c5760405162461bcd60e51b8152600401610c6e90613016565b506013805460ff19169055600190565b6005546001600160a01b031633146117a65760405162461bcd60e51b8152600401610c6e90613016565b6001600160a01b03811661180b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c6e565b61181481612543565b50565b6005546000906001600160a01b031633146118445760405162461bcd60e51b8152600401610c6e90613016565b600f5460105461185491906130a2565b42116118a25760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c6e565b6103e88211156119075760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c6e565b426010556040516370a0823160e01b81526001600160a01b037f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f79672816600482015260009030906370a0823190602401602060405180830381865afa158015611972573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199691906130ba565b905060006119b06127106119aa84876125e9565b906125fc565b905080156119e5576119e57f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f79672861dead83612608565b60007f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f7967289050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a4557600080fd5b505af1158015611a59573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611af35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c6e565b6001600160a01b038216611b545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c6e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611bdb5760405162461bcd60e51b8152600401610c6e906130d3565b6001600160a01b038216611c015760405162461bcd60e51b8152600401610c6e90613118565b80611c125761113683836000612608565b60115460ff16156120cf576005546001600160a01b03848116911614801590611c4957506005546001600160a01b03838116911614155b8015611c5d57506001600160a01b03821615155b8015611c7457506001600160a01b03821661dead14155b8015611c8a5750600554600160a01b900460ff16155b156120cf57601154610100900460ff16611d22576001600160a01b03831660009081526021602052604090205460ff1680611cdd57506001600160a01b03821660009081526021602052604090205460ff165b611d225760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c6e565b60135460ff1615611e69576005546001600160a01b03838116911614801590611d7d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611dbb57507f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f7967286001600160a01b0316826001600160a01b031614155b15611e6957326000908152601260205260409020544311611e565760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c6e565b3260009081526012602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff168015611eaa57506001600160a01b03821660009081526022602052604090205460ff16155b15611f8e57600854811115611f1f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c6e565b600a546001600160a01b038316600090815260208190526040902054611f4590836130a2565b1115611f895760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c6e565b6120cf565b6001600160a01b03821660009081526023602052604090205460ff168015611fcf57506001600160a01b03831660009081526022602052604090205460ff16155b1561204557600854811115611f895760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c6e565b6001600160a01b03821660009081526022602052604090205460ff166120cf57600a546001600160a01b03831660009081526020819052604090205461208b90836130a2565b11156120cf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c6e565b30600090815260208190526040902054600954811080159081906120fb575060115462010000900460ff165b80156121115750600554600160a01b900460ff16155b801561213657506001600160a01b03851660009081526023602052604090205460ff16155b801561215b57506001600160a01b03851660009081526021602052604090205460ff16155b801561218057506001600160a01b03841660009081526021602052604090205460ff16155b156121ae576005805460ff60a01b1916600160a01b1790556121a061275d565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156121e057506001600160a01b03841660009081526023602052604090205460ff165b80156121ee5750600c5460ff165b80156122095750600d54600e5461220591906130a2565b4210155b801561222e57506001600160a01b03851660009081526021602052604090205460ff16155b1561223d5761223b612997565b505b6005546001600160a01b03851660009081526023602052604090205460ff600160a01b9092048216159116801561228157506005546001600160a01b038781169116145b1561228b5743601f555b60205460ff1661230257602b601f546122a491906130a2565b431061230257600060158190556001601681905560178290556122c790826130a2565b6122d191906130a2565b601455600060198190556001601a8190556062601b819055916122f491906130a2565b6122fe91906130a2565b6018555b6001600160a01b03861660009081526021602052604090205460ff168061234157506001600160a01b03851660009081526021602052604090205460ff165b1561234a575060005b6000811561252f576001600160a01b03861660009081526023602052604090205460ff16801561237c57506000601854115b156124345761239b60646119aa601854886125e990919063ffffffff16565b9050601854601a54826123ae9190613061565b6123b89190613080565b601d60008282546123c991906130a2565b9091555050601854601b546123de9083613061565b6123e89190613080565b601e60008282546123f991906130a2565b909155505060185460195461240e9083613061565b6124189190613080565b601c600082825461242991906130a2565b909155506125119050565b6001600160a01b03871660009081526023602052604090205460ff16801561245e57506000601454115b156125115761247d60646119aa601454886125e990919063ffffffff16565b9050601454601654826124909190613061565b61249a9190613080565b601d60008282546124ab91906130a2565b90915550506014546017546124c09083613061565b6124ca9190613080565b601e60008282546124db91906130a2565b90915550506014546015546124f09083613061565b6124fa9190613080565b601c600082825461250b91906130a2565b90915550505b801561252257612522873083612608565b61252c818661315b565b94505b61253a878787612608565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006125f58284613061565b9392505050565b60006125f58284613080565b6001600160a01b03831661262e5760405162461bcd60e51b8152600401610c6e906130d3565b6001600160a01b0382166126545760405162461bcd60e51b8152600401610c6e90613118565b6001600160a01b038316600090815260208190526040902054818110156126cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c6e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127039084906130a2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161274f91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461278491906130a2565b61278e91906130a2565b9050600082158061279d575081155b156127a757505050565b6009546127b5906014613061565b8311156127cd576009546127ca906014613061565b92505b6000600283601d54866127e09190613061565b6127ea9190613080565b6127f49190613080565b905060006128028583612b27565b90504761280e82612b33565b600061281a4783612b27565b90506000612837876119aa601c54856125e990919063ffffffff16565b90506000612854886119aa601e54866125e990919063ffffffff16565b9050600081612863848661315b565b61286d919061315b565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b509098505086158015906128e35750600081115b15612936576128f28782612cf3565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612983576040519150601f19603f3d011682016040523d82523d6000602084013e612988565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f796728166004820152600090819030906370a0823190602401602060405180830381865afa158015612a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2891906130ba565b90506000612a476127106119aa600b54856125e990919063ffffffff16565b90508015612a7c57612a7c7f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f79672861dead83612608565b60007f00000000000000000000000034142d7ebdc2582ce8c8c816081068eb6f7967289050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612adc57600080fd5b505af1158015612af0573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006125f5828461315b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b6857612b68613172565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c0a9190613188565b81600181518110612c1d57612c1d613172565b60200260200101906001600160a01b031690816001600160a01b031681525050612c68307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a91565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612cbd9085906000908690309042906004016131a5565b600060405180830381600087803b158015612cd757600080fd5b505af1158015612ceb573d6000803e3d6000fd5b505050505050565b612d1e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a91565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612da8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612dcd9190613216565b5050505050565b600060208083528351808285015260005b81811015612e0157858101830151858201604001528201612de5565b81811115612e13576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461181457600080fd5b60008060408385031215612e5157600080fd5b8235612e5c81612e29565b946020939093013593505050565b600060208284031215612e7c57600080fd5b81356125f581612e29565b600060208284031215612e9957600080fd5b5035919050565b600080600060608486031215612eb557600080fd5b8335612ec081612e29565b92506020840135612ed081612e29565b929592945050506040919091013590565b8035801515811461173a57600080fd5b600080600060608486031215612f0657600080fd5b8335925060208401359150612f1d60408501612ee1565b90509250925092565b60008060408385031215612f3957600080fd5b8235612f4481612e29565b9150612f5260208401612ee1565b90509250929050565b600080600060608486031215612f7057600080fd5b505081359360208301359350604090920135919050565b600060208284031215612f9957600080fd5b6125f582612ee1565b60008060408385031215612fb557600080fd5b8235612fc081612e29565b91506020830135612fd081612e29565b809150509250929050565b600181811c90821680612fef57607f821691505b6020821081141561301057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561307b5761307b61304b565b500290565b60008261309d57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130b5576130b561304b565b500190565b6000602082840312156130cc57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561316d5761316d61304b565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561319a57600080fd5b81516125f581612e29565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131f55784516001600160a01b0316835293830193918301916001016131d0565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561322b57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220fee5743b74c22c9174c76a645dfb1e97c69e24f5d603e98469c532531f6dd0f564736f6c634300080a0033
Deployed Bytecode Sourcemap
31451:20512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8279:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10446:169;;;;;;;;;;-1:-1:-1;10446:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;10446:169:0;1072:187:1;33241:63:0;;;;;;;;;;-1:-1:-1;33241:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31525:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;31525:51:0;1516:230:1;9399:108:0;;;;;;;;;;-1:-1:-1;9487:12:0;;9399:108;;;1897:25:1;;;1885:2;1870:18;9399:108:0;1751:177:1;40520:157:0;;;;;;;;;;-1:-1:-1;40520:157:0;;;;;:::i;:::-;;:::i;:::-;;32090:47;;;;;;;;;;;;;;;;31905:36;;;;;;;;;;;;;;;;32860:33;;;;;;;;;;;;;;;;32820;;;;;;;;;;;;;;;;37772:275;;;;;;;;;;-1:-1:-1;37772:275:0;;;;;:::i;:::-;;:::i;11097:492::-;;;;;;;;;;-1:-1:-1;11097:492:0;;;;;:::i;:::-;;:::i;31628:53::-;;;;;;;;;;;;31674:6;31628:53;;32000:45;;;;;;;;;;;;;;;;31961:32;;;;;;;;;;-1:-1:-1;31961:32:0;;;;;;;;9241:93;;;;;;;;;;-1:-1:-1;9241:93:0;;9324:2;2929:36:1;;2917:2;2902:18;9241:93:0;2787:184:1;33013:40:0;;;;;;;;;;;;33051:2;33013:40;;11998:215;;;;;;;;;;-1:-1:-1;11998:215:0;;;;;:::i;:::-;;:::i;31583:38::-;;;;;;;;;;;;;;;32188:33;;;;;;;;;;-1:-1:-1;32188:33:0;;;;;;;;40685:126;;;;;;;;;;-1:-1:-1;40685:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40775:28:0;40751:4;40775:28;;;:19;:28;;;;;;;;;40685:126;32675:28;;;;;;;;;;;;;;;;32268:31;;;;;;;;;;-1:-1:-1;32268:31:0;;;;;;;;;;;9570:127;;;;;;;;;;-1:-1:-1;9570:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9671:18:0;9644:7;9671:18;;;;;;;;;;;;9570:127;1514:103;;;;;;;;;;;;;:::i;49545:555::-;;;;;;;;;;-1:-1:-1;49545:555:0;;;;;:::i;:::-;;:::i;36880:121::-;;;;;;;;;;;;;:::i;38319:167::-;;;;;;;;;;-1:-1:-1;38319:167:0;;;;;:::i;:::-;;:::i;31720:30::-;;;;;;;;;;-1:-1:-1;31720:30:0;;;;-1:-1:-1;;;;;31720:30:0;;;32568;;;;;;;;;;;;;;;;33060:32;;;;;;;;;;-1:-1:-1;33060:32:0;;;;;;;;38690:435;;;;;;;;;;-1:-1:-1;38690:435:0;;;;;:::i;:::-;;:::i;32982:24::-;;;;;;;;;;;;;;;;36673:155;;;;;;;;;;;;;:::i;863:87::-;;;;;;;;;;-1:-1:-1;936:6:0;;-1:-1:-1;;;;;936:6:0;863:87;;31757:24;;;;;;;;;;-1:-1:-1;31757:24:0;;;;-1:-1:-1;;;;;31757:24:0;;;32710:31;;;;;;;;;;;;;;;;38582:100;;;;;;;;;;-1:-1:-1;38582:100:0;;;;;:::i;:::-;;:::i;8498:104::-;;;;;;;;;;;;;:::i;39775:304::-;;;;;;;;;;-1:-1:-1;39775:304:0;;;;;:::i;:::-;;:::i;32642:24::-;;;;;;;;;;;;;;;;32144:35;;;;;;;;;;;;;;;;32900:27;;;;;;;;;;;;;;;;32786:25;;;;;;;;;;;;;;;;12716:413;;;;;;;;;;-1:-1:-1;12716:413:0;;;;;:::i;:::-;;:::i;32052:29::-;;;;;;;;;;;;;;;;9910:175;;;;;;;;;;-1:-1:-1;9910:175:0;;;;;:::i;:::-;;:::i;40281:231::-;;;;;;;;;;-1:-1:-1;40281:231:0;;;;;:::i;:::-;;:::i;33462:57::-;;;;;;;;;;-1:-1:-1;33462:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32228:33;;;;;;;;;;-1:-1:-1;32228:33:0;;;;;;;;;;;39585:182;;;;;;;;;;-1:-1:-1;39585:182:0;;;;;:::i;:::-;;:::i;39133:444::-;;;;;;;;;;-1:-1:-1;39133:444:0;;;;;:::i;:::-;;:::i;38055:256::-;;;;;;;;;;-1:-1:-1;38055:256:0;;;;;:::i;:::-;;:::i;32486:39::-;;;;;;;;;;-1:-1:-1;32486:39:0;;;;;;;;31790:35;;;;;;;;;;;;;;;;37267:497;;;;;;;;;;-1:-1:-1;37267:497:0;;;;;:::i;:::-;;:::i;32534:27::-;;;;;;;;;;;;;;;;10148:151;;;;;;;;;;-1:-1:-1;10148:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10264:18:0;;;10237:7;10264:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10148:151;31832:33;;;;;;;;;;;;;;;;37062:135;;;;;;;;;;;;;:::i;32605:30::-;;;;;;;;;;;;;;;;1772:201;;;;;;;;;;-1:-1:-1;1772:201:0;;;;;:::i;:::-;;:::i;32748:31::-;;;;;;;;;;;;;;;;31872:24;;;;;;;;;;;;;;;;50904:1056;;;;;;;;;;-1:-1:-1;50904:1056:0;;;;;:::i;:::-;;:::i;8279:100::-;8333:13;8366:5;8359:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8279:100;:::o;10446:169::-;10529:4;10546:39;317:10;10569:7;10578:6;10546:8;:39::i;:::-;-1:-1:-1;10603:4:0;10446:169;;;;:::o;40520:157::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;;;;;;;;;40627:9:::1;::::0;40599:38:::1;::::0;-1:-1:-1;;;;;40627:9:0;;::::1;::::0;40599:38;::::1;::::0;::::1;::::0;40627:9:::1;::::0;40599:38:::1;40648:9;:21:::0;;-1:-1:-1;;;;;;40648:21:0::1;-1:-1:-1::0;;;;;40648:21:0;;;::::1;::::0;;;::::1;::::0;;40520:157::o;37772:275::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;37909:4:::1;37901;37880:13;9487:12:::0;;;9399:108;37880:13:::1;:17;::::0;37896:1:::1;37880:17;:::i;:::-;37879:26;;;;:::i;:::-;37878:35;;;;:::i;:::-;37868:6;:45;;37846:142;;;::::0;-1:-1:-1;;;37846:142:0;;6156:2:1;37846:142:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:45;6340:19;;37846:142:0::1;5954:411:1::0;37846:142:0::1;38022:17;:6:::0;38032::::1;38022:17;:::i;:::-;37999:20;:40:::0;-1:-1:-1;37772:275:0:o;11097:492::-;11237:4;11254:36;11264:6;11272:9;11283:6;11254:9;:36::i;:::-;-1:-1:-1;;;;;11330:19:0;;11303:24;11330:19;;;:11;:19;;;;;;;;317:10;11330:33;;;;;;;;11382:26;;;;11374:79;;;;-1:-1:-1;;;11374:79:0;;6572:2:1;11374:79:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:1;;;6694:38;6749:19;;11374:79:0;6370:404:1;11374:79:0;11489:57;11498:6;317:10;11539:6;11520:16;:25;11489:8;:57::i;:::-;-1:-1:-1;11577:4:0;;11097:492;-1:-1:-1;;;;11097:492:0:o;11998:215::-;317:10;12086:4;12135:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12135:34:0;;;;;;;;;;12086:4;;12103:80;;12126:7;;12135:47;;12172:10;;12135:47;:::i;:::-;12103:8;:80::i;1514:103::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;1579:30:::1;1606:1;1579:18;:30::i;:::-;1514:103::o:0;49545:555::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;49747:3:::1;49724:19;:26;;49702:127;;;::::0;-1:-1:-1;;;49702:127:0;;7114:2:1;49702:127:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:49;7302:19;;49702:127:0::1;6912:415:1::0;49702:127:0::1;49874:4;49862:8;:16;;:33;;;;-1:-1:-1::0;49882:13:0;49862:33:::1;49840:131;;;::::0;-1:-1:-1;;;49840:131:0;;7534:2:1;49840:131:0::1;::::0;::::1;7516:21:1::0;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:46;7719:19;;49840:131:0::1;7332:412:1::0;49840:131:0::1;49982:15;:37:::0;;;;50030:16:::1;:27:::0;50068:13:::1;:24:::0;;-1:-1:-1;;50068:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49545:555::o;36880:121::-;936:6;;36932:4;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;-1:-1:-1;36949:14:0::1;:22:::0;;-1:-1:-1;;36949:22:0::1;::::0;;;36880:121;:::o;38319:167::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38432:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38432:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38319:167::o;38690:435::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;38840:12:::1;:19:::0;;-1:-1:-1;;38840:19:0::1;38855:4;38840:19;::::0;;38872:15:::1;:31:::0;;;38914:15:::1;:31:::0;;;38956:9:::1;:19:::0;;;38968:7;39001:33:::1;38932:13:::0;38890;39001:33:::1;:::i;:::-;:45;;;;:::i;:::-;38986:12;:60:::0;;;-1:-1:-1;39065:18:0::1;39057:60;;;::::0;-1:-1:-1;;;39057:60:0;;7951:2:1;39057:60:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029:31;8009:18;;;8002:59;8078:18;;39057:60:0::1;7749:353:1::0;39057:60:0::1;38690:435:::0;;;:::o;36673:155::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;36728:13:::1;:20:::0;;-1:-1:-1;;36759:18:0;;;;;36805:15:::1;36788:14;:32:::0;36673:155::o;38582:100::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;38653:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38653:21:0;;::::1;::::0;;;::::1;::::0;;38582:100::o;8498:104::-;8554:13;8587:7;8580:14;;;;;:::i;39775:304::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;39919:13:::1;-1:-1:-1::0;;;;;39911:21:0::1;:4;-1:-1:-1::0;;;;;39911:21:0::1;;;39889:128;;;::::0;-1:-1:-1;;;39889:128:0;;8309:2:1;39889:128:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;8458:27;8438:18;;;8431:55;8503:19;;39889:128:0::1;8107:421:1::0;39889:128:0::1;40030:41;40059:4;40065:5;40030:28;:41::i;:::-;39775:304:::0;;:::o;12716:413::-;317:10;12809:4;12853:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12853:34:0;;;;;;;;;;12906:35;;;;12898:85;;;;-1:-1:-1;;;12898:85:0;;8735:2:1;12898:85:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;-1:-1:-1;;;8864:18:1;;;8857:35;8909:19;;12898:85:0;8533:401:1;12898:85:0;13019:67;317:10;13042:7;13070:15;13051:16;:34;13019:8;:67::i;:::-;-1:-1:-1;13117:4:0;;12716:413;-1:-1:-1;;;12716:413:0:o;9910:175::-;9996:4;10013:42;317:10;10037:9;10048:6;10013:9;:42::i;40281:231::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;40441:15:::1;::::0;40398:59:::1;::::0;-1:-1:-1;;;;;40441:15:0;;::::1;::::0;40398:59;::::1;::::0;::::1;::::0;40441:15:::1;::::0;40398:59:::1;40468:15;:36:::0;;-1:-1:-1;;;;;;40468:36:0::1;-1:-1:-1::0;;;;;40468:36:0;;;::::1;::::0;;;::::1;::::0;;40281:231::o;39585:182::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39670:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39670:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39725:34;;1212:41:1;;;39725:34:0::1;::::0;1185:18:1;39725:34:0::1;;;;;;;39585:182:::0;;:::o;39133:444::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;39284:12:::1;:19:::0;;-1:-1:-1;;39284:19:0::1;39299:4;39284:19;::::0;;39316:16:::1;:32:::0;;;39359:16:::1;:32:::0;;;39402:10:::1;:20:::0;;;39415:7;39449:35:::1;39378:13:::0;39335;39449:35:::1;:::i;:::-;:48;;;;:::i;:::-;39433:13;:64:::0;;;39533:2:::1;-1:-1:-1::0;39516:19:0::1;39508:61;;;::::0;-1:-1:-1;;;39508:61:0;;7951:2:1;39508:61:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029:31;8009:18;;;8002:59;8078:18;;39508:61:0::1;7749:353:1::0;38055:256:0;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;38195:4:::1;38187;38166:13;9487:12:::0;;;9399:108;38166:13:::1;:17;::::0;38182:1:::1;38166:17;:::i;:::-;38165:26;;;;:::i;:::-;38164:35;;;;:::i;:::-;38154:6;:45;;38132:131;;;::::0;-1:-1:-1;;;38132:131:0;;9141:2:1;38132:131:0::1;::::0;::::1;9123:21:1::0;9180:2;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;-1:-1:-1;;;9270:18:1;;;9263:34;9314:19;;38132:131:0::1;8939:400:1::0;38132:131:0::1;38286:17;:6:::0;38296::::1;38286:17;:::i;:::-;38274:9;:29:::0;-1:-1:-1;38055:256:0:o;37267:497::-;936:6;;37375:4;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;37454:6:::1;37433:13;9487:12:::0;;;9399:108;37433:13:::1;:17;::::0;37449:1:::1;37433:17;:::i;:::-;37432:28;;;;:::i;:::-;37419:9;:41;;37397:144;;;::::0;-1:-1:-1;;;37397:144:0;;9546:2:1;37397:144:0::1;::::0;::::1;9528:21:1::0;9585:2;9565:18;;;9558:30;9624:34;9604:18;;;9597:62;-1:-1:-1;;;9675:18:1;;;9668:51;9736:19;;37397:144:0::1;9344:417:1::0;37397:144:0::1;37609:4;37588:13;9487:12:::0;;;9399:108;37588:13:::1;:17;::::0;37604:1:::1;37588:17;:::i;:::-;37587:26;;;;:::i;:::-;37574:9;:39;;37552:141;;;::::0;-1:-1:-1;;;37552:141:0;;9968:2:1;37552:141:0::1;::::0;::::1;9950:21:1::0;10007:2;9987:18;;;9980:30;10046:34;10026:18;;;10019:62;-1:-1:-1;;;10097:18:1;;;10090:50;10157:19;;37552:141:0::1;9766:416:1::0;37552:141:0::1;-1:-1:-1::0;37704:18:0::1;:30:::0;;;37752:4:::1;1154:1;37267:497:::0;;;:::o;37062:135::-;936:6;;37122:4;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;-1:-1:-1;37139:20:0::1;:28:::0;;-1:-1:-1;;37139:28:0::1;::::0;;;37062:135;:::o;1772:201::-;936:6;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1861:22:0;::::1;1853:73;;;::::0;-1:-1:-1;;;1853:73:0;;10389:2:1;1853:73:0::1;::::0;::::1;10371:21:1::0;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;-1:-1:-1;;;10518:18:1;;;10511:36;10564:19;;1853:73:0::1;10187:402:1::0;1853:73:0::1;1937:28;1956:8;1937:18;:28::i;:::-;1772:201:::0;:::o;50904:1056::-;936:6;;51015:4;;-1:-1:-1;;;;;936:6:0;317:10;1083:23;1075:68;;;;-1:-1:-1;;;1075:68:0;;;;;;;:::i;:::-;51100:19:::1;;51077:20;;:42;;;;:::i;:::-;51059:15;:60;51037:142;;;::::0;-1:-1:-1;;;51037:142:0;;10796:2:1;51037:142:0::1;::::0;::::1;10778:21:1::0;;;10815:18;;;10808:30;10874:34;10854:18;;;10847:62;10926:18;;51037:142:0::1;10594:356:1::0;51037:142:0::1;51209:4;51198:7;:15;;51190:70;;;::::0;-1:-1:-1;;;51190:70:0;;11157:2:1;51190:70:0::1;::::0;::::1;11139:21:1::0;11196:2;11176:18;;;11169:30;11235:34;11215:18;;;11208:62;-1:-1:-1;;;11286:18:1;;;11279:40;11336:19;;51190:70:0::1;10955:406:1::0;51190:70:0::1;51294:15;51271:20;:38:::0;51395:29:::1;::::0;-1:-1:-1;;;51395:29:0;;-1:-1:-1;;;;;51410:13:0::1;1707:32:1::0;51395:29:0::1;::::0;::::1;1689:51:1::0;51364:28:0::1;::::0;51395:4:::1;::::0;:14:::1;::::0;1662:18:1;;51395:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51364:60:::0;-1:-1:-1;51474:20:0::1;51497:44;51535:5;51497:33;51364:60:::0;51522:7;51497:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51474:67:::0;-1:-1:-1;51646:16:0;;51642:110:::1;;51679:61;51695:13;51718:6;51727:12;51679:15;:61::i;:::-;51827:19;51864:13;51827:51;;51889:4;-1:-1:-1::0;;;;;51889:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51916:14:0::1;::::0;::::1;::::0;-1:-1:-1;51916:14:0;;-1:-1:-1;51916:14:0::1;-1:-1:-1::0;51948:4:0::1;::::0;50904:1056;-1:-1:-1;;;;50904:1056:0:o;16400:380::-;-1:-1:-1;;;;;16536:19:0;;16528:68;;;;-1:-1:-1;;;16528:68:0;;11757:2:1;16528:68:0;;;11739:21:1;11796:2;11776:18;;;11769:30;11835:34;11815:18;;;11808:62;-1:-1:-1;;;11886:18:1;;;11879:34;11930:19;;16528:68:0;11555:400:1;16528:68:0;-1:-1:-1;;;;;16615:21:0;;16607:68;;;;-1:-1:-1;;;16607:68:0;;12162:2:1;16607:68:0;;;12144:21:1;12201:2;12181:18;;;12174:30;12240:34;12220:18;;;12213:62;-1:-1:-1;;;12291:18:1;;;12284:32;12333:19;;16607:68:0;11960:398:1;16607:68:0;-1:-1:-1;;;;;16688:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16740:32;;1897:25:1;;;16740:32:0;;1870:18:1;16740:32:0;;;;;;;16400:380;;;:::o;40869:5782::-;-1:-1:-1;;;;;41001:18:0;;40993:68;;;;-1:-1:-1;;;40993:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41080:16:0;;41072:64;;;;-1:-1:-1;;;41072:64:0;;;;;;;:::i;:::-;41153:11;41149:93;;41181:28;41197:4;41203:2;41207:1;41181:15;:28::i;41149:93::-;41258:14;;;;41254:2487;;;936:6;;-1:-1:-1;;;;;41311:15:0;;;936:6;;41311:15;;;;:49;;-1:-1:-1;936:6:0;;-1:-1:-1;;;;;41347:13:0;;;936:6;;41347:13;;41311:49;:86;;;;-1:-1:-1;;;;;;41381:16:0;;;;41311:86;:128;;;;-1:-1:-1;;;;;;41418:21:0;;41432:6;41418:21;;41311:128;:158;;;;-1:-1:-1;41461:8:0;;-1:-1:-1;;;41461:8:0;;;;41460:9;41311:158;41289:2441;;;41509:13;;;;;;;41504:223;;-1:-1:-1;;;;;41581:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41610:23:0;;;;;;:19;:23;;;;;;;;41581:52;41547:160;;;;-1:-1:-1;;;41547:160:0;;13375:2:1;41547:160:0;;;13357:21:1;13414:2;13394:18;;;13387:30;-1:-1:-1;;;13433:18:1;;;13426:52;13495:18;;41547:160:0;13173:346:1;41547:160:0;41883:20;;;;41879:641;;;936:6;;-1:-1:-1;;;;;41958:13:0;;;936:6;;41958:13;;;;:72;;;42014:15;-1:-1:-1;;;;;42000:30:0;:2;-1:-1:-1;;;;;42000:30:0;;;41958:72;:129;;;;;42073:13;-1:-1:-1;;;;;42059:28:0;:2;-1:-1:-1;;;;;42059:28:0;;;41958:129;41928:573;;;42205:9;42176:39;;;;:28;:39;;;;;;42251:12;-1:-1:-1;42138:258:0;;;;-1:-1:-1;;;42138:258:0;;13726:2:1;42138:258:0;;;13708:21:1;13765:2;13745:18;;;13738:30;13804:34;13784:18;;;13777:62;13875:34;13855:18;;;13848:62;-1:-1:-1;;;13926:19:1;;;13919:40;13976:19;;42138:258:0;13524:477:1;42138:258:0;42452:9;42423:39;;;;:28;:39;;;;;42465:12;42423:54;;41928:573;-1:-1:-1;;;;;42594:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42651:35:0;;;;;;:31;:35;;;;;;;;42650:36;42594:92;42568:1147;;;42773:20;;42763:6;:30;;42729:169;;;;-1:-1:-1;;;42729:169:0;;14208:2:1;42729:169:0;;;14190:21:1;14247:2;14227:18;;;14220:30;14286:34;14266:18;;;14259:62;-1:-1:-1;;;14337:18:1;;;14330:51;14398:19;;42729:169:0;14006:417:1;42729:169:0;42981:9;;-1:-1:-1;;;;;9671:18:0;;9644:7;9671:18;;;;;;;;;;;42955:22;;:6;:22;:::i;:::-;:35;;42921:140;;;;-1:-1:-1;;;42921:140:0;;14630:2:1;42921:140:0;;;14612:21:1;14669:2;14649:18;;;14642:30;-1:-1:-1;;;14688:18:1;;;14681:49;14747:18;;42921:140:0;14428:343:1;42921:140:0;42568:1147;;;-1:-1:-1;;;;;43159:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43214:37:0;;;;;;:31;:37;;;;;;;;43213:38;43159:92;43133:582;;;43338:20;;43328:6;:30;;43294:170;;;;-1:-1:-1;;;43294:170:0;;14978:2:1;43294:170:0;;;14960:21:1;15017:2;14997:18;;;14990:30;15056:34;15036:18;;;15029:62;-1:-1:-1;;;15107:18:1;;;15100:52;15169:19;;43294:170:0;14776:418:1;43133:582:0;-1:-1:-1;;;;;43495:35:0;;;;;;:31;:35;;;;;;;;43490:225;;43615:9;;-1:-1:-1;;;;;9671:18:0;;9644:7;9671:18;;;;;;;;;;;43589:22;;:6;:22;:::i;:::-;:35;;43555:140;;;;-1:-1:-1;;;43555:140:0;;14630:2:1;43555:140:0;;;14612:21:1;14669:2;14649:18;;;14642:30;-1:-1:-1;;;14688:18:1;;;14681:49;14747:18;;43555:140:0;14428:343:1;43555:140:0;43802:4;43753:28;9671:18;;;;;;;;;;;43860;;43836:42;;;;;;;43909:35;;-1:-1:-1;43933:11:0;;;;;;;43909:35;:61;;;;-1:-1:-1;43962:8:0;;-1:-1:-1;;;43962:8:0;;;;43961:9;43909:61;:110;;;;-1:-1:-1;;;;;;43988:31:0;;;;;;:25;:31;;;;;;;;43987:32;43909:110;:153;;;;-1:-1:-1;;;;;;44037:25:0;;;;;;:19;:25;;;;;;;;44036:26;43909:153;:194;;;;-1:-1:-1;;;;;;44080:23:0;;;;;;:19;:23;;;;;;;;44079:24;43909:194;43891:326;;;44130:8;:15;;-1:-1:-1;;;;44130:15:0;-1:-1:-1;;;44130:15:0;;;44162:10;:8;:10::i;:::-;44189:8;:16;;-1:-1:-1;;;;44189:16:0;;;43891:326;44248:8;;-1:-1:-1;;;44248:8:0;;;;44247:9;:55;;;;-1:-1:-1;;;;;;44273:29:0;;;;;;:25;:29;;;;;;;;44247:55;:85;;;;-1:-1:-1;44319:13:0;;;;44247:85;:153;;;;;44385:15;;44368:14;;:32;;;;:::i;:::-;44349:15;:51;;44247:153;:196;;;;-1:-1:-1;;;;;;44418:25:0;;;;;;:19;:25;;;;;;;;44417:26;44247:196;44229:282;;;44470:29;:27;:29::i;:::-;;44229:282;44539:8;;-1:-1:-1;;;;;44609:29:0;;44523:12;44609:29;;;:25;:29;;;;;;44539:8;-1:-1:-1;;;44539:8:0;;;;;44538:9;;44609:29;:48;;;;-1:-1:-1;936:6:0;;-1:-1:-1;;;;;44642:15:0;;;936:6;;44642:15;44609:48;44606:103;;;44685:12;44673:9;:24;44606:103;44796:12;;;;44792:527;;33051:2;44882:9;;:23;;;;:::i;:::-;44865:12;:41;44861:447;;44945:1;44927:15;:19;;;44983:1;44965:15;:19;;;45003:9;:13;;;45050:33;;44945:1;45050:33;:::i;:::-;:45;;;;:::i;:::-;45035:12;:60;45135:1;45116:16;:20;;;45174:1;45155:16;:20;;;45207:2;45194:10;:15;;;45207:2;45244:35;;45174:1;45244:35;:::i;:::-;:48;;;;:::i;:::-;45228:13;:64;44861:447;-1:-1:-1;;;;;45420:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45449:23:0;;;;;;:19;:23;;;;;;;;45420:52;45416:100;;;-1:-1:-1;45499:5:0;45416:100;45528:12;45633:7;45629:969;;;-1:-1:-1;;;;;45685:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45734:1;45718:13;;:17;45685:50;45681:768;;;45763:34;45793:3;45763:25;45774:13;;45763:6;:10;;:25;;;;:::i;:34::-;45756:41;;45866:13;;45846:16;;45839:4;:23;;;;:::i;:::-;45838:41;;;;:::i;:::-;45816:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45936:13:0;;45922:10;;45915:17;;:4;:17;:::i;:::-;45914:35;;;;:::i;:::-;45898:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46018:13:0;;45998:16;;45991:23;;:4;:23;:::i;:::-;45990:41;;;;:::i;:::-;45968:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45681:768:0;;-1:-1:-1;45681:768:0;;-1:-1:-1;;;;;46093:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46143:1;46128:12;;:16;46093:51;46089:360;;;46172:33;46201:3;46172:24;46183:12;;46172:6;:10;;:24;;;;:::i;:33::-;46165:40;;46273:12;;46254:15;;46247:4;:22;;;;:::i;:::-;46246:39;;;;:::i;:::-;46224:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46341:12:0;;46328:9;;46321:16;;:4;:16;:::i;:::-;46320:33;;;;:::i;:::-;46304:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46421:12:0;;46402:15;;46395:22;;:4;:22;:::i;:::-;46394:39;;;;:::i;:::-;46372:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46089:360:0;46469:8;;46465:91;;46498:42;46514:4;46528;46535;46498:15;:42::i;:::-;46572:14;46582:4;46572:14;;:::i;:::-;;;45629:969;46610:33;46626:4;46632:2;46636:6;46610:15;:33::i;:::-;40982:5669;;;;40869:5782;;;:::o;2133:191::-;2226:6;;;-1:-1:-1;;;;;2243:17:0;;;-1:-1:-1;;;;;;2243:17:0;;;;;;;2276:40;;2226:6;;;2243:17;2226:6;;2276:40;;2207:16;;2276:40;2196:128;2133:191;:::o;40087:186::-;-1:-1:-1;;;;;40170:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40170:39:0;;;;;;;;;;40225:40;;40170:39;;:31;40225:40;;;40087:186;;:::o;21853:98::-;21911:7;21938:5;21942:1;21938;:5;:::i;:::-;21931:12;21853:98;-1:-1:-1;;;21853:98:0:o;22252:::-;22310:7;22337:5;22341:1;22337;:5;:::i;13619:733::-;-1:-1:-1;;;;;13759:20:0;;13751:70;;;;-1:-1:-1;;;13751:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13840:23:0;;13832:71;;;;-1:-1:-1;;;13832:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14000:17:0;;13976:21;14000:17;;;;;;;;;;;14036:23;;;;14028:74;;;;-1:-1:-1;;;14028:74:0;;15531:2:1;14028:74:0;;;15513:21:1;15570:2;15550:18;;;15543:30;15609:34;15589:18;;;15582:62;-1:-1:-1;;;15660:18:1;;;15653:36;15706:19;;14028:74:0;15329:402:1;14028:74:0;-1:-1:-1;;;;;14138:17:0;;;:9;:17;;;;;;;;;;;14158:22;;;14138:42;;14202:20;;;;;;;;:30;;14174:6;;14138:9;14202:30;;14174:6;;14202:30;:::i;:::-;;;;;;;;14267:9;-1:-1:-1;;;;;14250:35:0;14259:6;-1:-1:-1;;;;;14250:35:0;;14278:6;14250:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;14250:35:0;;;;;;;;13740:612;13619:733;;;:::o;47781:1756::-;47864:4;47820:23;9671:18;;;;;;;;;;;47820:50;;47881:25;47977:12;;47943:18;;47909;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47881:108;-1:-1:-1;48000:12:0;48029:20;;;:46;;-1:-1:-1;48053:22:0;;48029:46;48025:85;;;48092:7;;;47781:1756::o;48025:85::-;48144:18;;:23;;48165:2;48144:23;:::i;:::-;48126:15;:41;48122:115;;;48202:18;;:23;;48223:2;48202:23;:::i;:::-;48184:41;;48122:115;48298:23;48411:1;48378:17;48343:18;;48325:15;:36;;;;:::i;:::-;48324:71;;;;:::i;:::-;:88;;;;:::i;:::-;48298:114;-1:-1:-1;48423:26:0;48452:36;:15;48298:114;48452:19;:36::i;:::-;48423:65;-1:-1:-1;48529:21:0;48563:36;48423:65;48563:16;:36::i;:::-;48612:18;48633:44;:21;48659:17;48633:25;:44::i;:::-;48612:65;;48690:23;48716:81;48769:17;48716:34;48731:18;;48716:10;:14;;:34;;;;:::i;:81::-;48690:107;;48808:17;48828:51;48861:17;48828:28;48843:12;;48828:10;:14;;:28;;;;:::i;:51::-;48808:71;-1:-1:-1;48892:23:0;48808:71;48918:28;48931:15;48918:10;:28;:::i;:::-;:40;;;;:::i;:::-;48992:1;48971:18;:22;;;49004:18;:22;;;49037:12;:16;;;49088:9;;49080:45;;48892:66;;-1:-1:-1;;;;;;49088:9:0;;49111;;49080:45;48992:1;49080:45;49111:9;49088;49080:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49066:59:0;;-1:-1:-1;;49142:19:0;;;;;:42;;;49183:1;49165:15;:19;49142:42;49138:278;;;49201:46;49214:15;49231;49201:12;:46::i;:::-;49371:18;;49267:137;;;16148:25:1;;;16204:2;16189:18;;16182:34;;;16232:18;;;16225:34;;;;49267:137:0;;;;;;16136:2:1;49267:137:0;;;49138:278;49450:15;;49442:87;;-1:-1:-1;;;;;49450:15:0;;;;49493:21;;49442:87;;;;49493:21;49450:15;49442:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47781:1756:0:o;50108:788::-;50199:15;50182:14;:32;50300:29;;-1:-1:-1;;;50300:29:0;;-1:-1:-1;;;;;50315:13:0;1707:32:1;50300:29:0;;;1689:51:1;50165:4:0;;;;50300;;:14;;1662:18:1;;50300:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50269:60;;50379:20;50402:77;50463:5;50402:42;50427:16;;50402:20;:24;;:42;;;;:::i;:77::-;50379:100;-1:-1:-1;50584:16:0;;50580:110;;50617:61;50633:13;50656:6;50665:12;50617:15;:61::i;:::-;50765:19;50802:13;50765:51;;50827:4;-1:-1:-1;;;;;50827:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50854:12:0;;;;-1:-1:-1;50854:12:0;;-1:-1:-1;50854:12:0;50884:4;50877:11;;;;;50108:788;:::o;21496:98::-;21554:7;21581:5;21585:1;21581;:5;:::i;46659:589::-;46809:16;;;46823:1;46809:16;;;;;;;;46785:21;;46809:16;;;;;;;;;;-1:-1:-1;46809:16:0;46785:40;;46854:4;46836;46841:1;46836:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46836:23:0;;;-1:-1:-1;;;;;46836:23:0;;;;;46880:15;-1:-1:-1;;;;;46880:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46870:4;46875:1;46870:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46870:32:0;;;-1:-1:-1;;;;;46870:32:0;;;;;46915:62;46932:4;46947:15;46965:11;46915:8;:62::i;:::-;47016:224;;-1:-1:-1;;;47016:224:0;;-1:-1:-1;;;;;47016:15:0;:66;;;;:224;;47097:11;;47123:1;;47167:4;;47194;;47214:15;;47016:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46714:534;46659:589;:::o;47256:517::-;47404:62;47421:4;47436:15;47454:11;47404:8;:62::i;:::-;47509:256;;-1:-1:-1;;;47509:256:0;;47581:4;47509:256;;;18116:34:1;18166:18;;;18159:34;;;47627:1:0;18209:18:1;;;18202:34;;;18252:18;;;18245:34;31674:6:0;18295:19:1;;;18288:44;47739:15:0;18348:19:1;;;18341:35;47509:15:0;-1:-1:-1;;;;;47509:31:0;;;;47548:9;;18050:19:1;;47509:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47256:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6779:128::-;6819:3;6850:1;6846:6;6843:1;6840:13;6837:39;;;6856:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6779:128::o;11366:184::-;11436:6;11489:2;11477:9;11468:7;11464:23;11460:32;11457:52;;;11505:1;11502;11495:12;11457:52;-1:-1:-1;11528:16:1;;11366:184;-1:-1:-1;11366:184:1:o;12363:401::-;12565:2;12547:21;;;12604:2;12584:18;;;12577:30;12643:34;12638:2;12623:18;;12616:62;-1:-1:-1;;;12709:2:1;12694:18;;12687:35;12754:3;12739:19;;12363:401::o;12769:399::-;12971:2;12953:21;;;13010:2;12990:18;;;12983:30;13049:34;13044:2;13029:18;;13022:62;-1:-1:-1;;;13115:2:1;13100:18;;13093:33;13158:3;13143:19;;12769:399::o;15199:125::-;15239:4;15267:1;15264;15261:8;15258:34;;;15272:18;;:::i;:::-;-1:-1:-1;15309:9:1;;15199:125::o;16402:127::-;16463:10;16458:3;16454:20;16451:1;16444:31;16494:4;16491:1;16484:15;16518:4;16515:1;16508:15;16534:251;16604:6;16657:2;16645:9;16636:7;16632:23;16628:32;16625:52;;;16673:1;16670;16663:12;16625:52;16705:9;16699:16;16724:31;16749:5;16724:31;:::i;16790:980::-;17052:4;17100:3;17089:9;17085:19;17131:6;17120:9;17113:25;17157:2;17195:6;17190:2;17179:9;17175:18;17168:34;17238:3;17233:2;17222:9;17218:18;17211:31;17262:6;17297;17291:13;17328:6;17320;17313:22;17366:3;17355:9;17351:19;17344:26;;17405:2;17397:6;17393:15;17379:29;;17426:1;17436:195;17450:6;17447:1;17444:13;17436:195;;;17515:13;;-1:-1:-1;;;;;17511:39:1;17499:52;;17606:15;;;;17571:12;;;;17547:1;17465:9;17436:195;;;-1:-1:-1;;;;;;;17687:32:1;;;;17682:2;17667:18;;17660:60;-1:-1:-1;;;17751:3:1;17736:19;17729:35;17648:3;16790:980;-1:-1:-1;;;16790:980:1:o;18387:306::-;18475:6;18483;18491;18544:2;18532:9;18523:7;18519:23;18515:32;18512:52;;;18560:1;18557;18550:12;18512:52;18589:9;18583:16;18573:26;;18639:2;18628:9;18624:18;18618:25;18608:35;;18683:2;18672:9;18668:18;18662:25;18652:35;;18387:306;;;;;:::o
Swarm Source
ipfs://fee5743b74c22c9174c76a645dfb1e97c69e24f5d603e98469c532531f6dd0f5
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.