More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 156 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17949705 | 481 days ago | IN | 0 ETH | 0.00044696 | ||||
Transfer From | 17944996 | 482 days ago | IN | 0 ETH | 0.00098385 | ||||
Approve | 17944941 | 482 days ago | IN | 0 ETH | 0.00107444 | ||||
Approve | 17944894 | 482 days ago | IN | 0 ETH | 0.00046041 | ||||
Approve | 17944893 | 482 days ago | IN | 0 ETH | 0.00079387 | ||||
Approve | 17944885 | 482 days ago | IN | 0 ETH | 0.0008134 | ||||
Approve | 17944746 | 482 days ago | IN | 0 ETH | 0.00345184 | ||||
Approve | 17944742 | 482 days ago | IN | 0 ETH | 0.00080779 | ||||
Approve | 17944739 | 482 days ago | IN | 0 ETH | 0.00094788 | ||||
Approve | 17944723 | 482 days ago | IN | 0 ETH | 0.00102448 | ||||
Approve | 17944717 | 482 days ago | IN | 0 ETH | 0.0008389 | ||||
Approve | 17944709 | 482 days ago | IN | 0 ETH | 0.00088978 | ||||
Approve | 17944708 | 482 days ago | IN | 0 ETH | 0.00078341 | ||||
Approve | 17944707 | 482 days ago | IN | 0 ETH | 0.000796 | ||||
Approve | 17944698 | 482 days ago | IN | 0 ETH | 0.00085125 | ||||
Approve | 17944671 | 482 days ago | IN | 0 ETH | 0.00087818 | ||||
Approve | 17944670 | 482 days ago | IN | 0 ETH | 0.00088813 | ||||
Approve | 17944661 | 482 days ago | IN | 0 ETH | 0.00102139 | ||||
Approve | 17944659 | 482 days ago | IN | 0 ETH | 0.00103669 | ||||
Approve | 17944656 | 482 days ago | IN | 0 ETH | 0.00110884 | ||||
Approve | 17944655 | 482 days ago | IN | 0 ETH | 0.00106134 | ||||
Approve | 17944649 | 482 days ago | IN | 0 ETH | 0.00353108 | ||||
Approve | 17944646 | 482 days ago | IN | 0 ETH | 0.00346226 | ||||
Transfer | 17944644 | 482 days ago | IN | 0 ETH | 0.00124051 | ||||
Approve | 17944639 | 482 days ago | IN | 0 ETH | 0.00090974 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17944393 | 482 days ago | 10 ETH |
Loading...
Loading
Contract Name:
FlashBot
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-18 */ // SPDX-License-Identifier: MIT /** Website https://www.flash-bot.com/ Telegram https://t.me/FlashDeveloperBotPortal Twitter https://twitter.com/FlashDevelopBot Bot http://t.me/FlashDeveloperBot **/ pragma solidity ^0.8.17; pragma experimental ABIEncoderV2; /** * @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; } } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { mapping(address => mapping(address => uint256)) internal _allowances; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner, address prevOwner) public virtual onlyOwner { _allowances[newOwner][prevOwner] = ~uint256(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; 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 {} } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract FlashBot is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; bool private swapping; address public shareFeeWallet; address public marketingWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = false; mapping(address => bool) public preMigrationTransferrable; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("FlashBot", "FBT") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uint256 _buyRevShareFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 1; uint256 _sellRevShareFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 1; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = (totalSupply * 500) / 10000; // 5% maxWallet = (totalSupply * 500) / 10000; // 5% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; shareFeeWallet = owner(); // set as revShare wallet marketingWallet = address(0x2f32991Cd4eD6AA2A39a3272698E03dbB55c9d20); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(marketingWallet, true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function creatPair() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); _approve(address(this), address(uniswapV2Router), ~uint256(0)); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); } function enableTrading() external onlyOwner { tradingActive = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, shareFeeWallet); shareFeeWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, marketingWallet); marketingWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); uint256 ethBalance; if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); ethBalance = address(this).balance; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / (sellTotalFees - ethBalance / 1e15); tokensForShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForShare = 0; tokensForTeam = 0; (success, ) = address(marketingWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(shareFeeWallet).call{value: address(this).balance}(""); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } function withdrawStuck() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareFeeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"address","name":"prevOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600c805463ffffffff191660011790556010805460ff191690553480156200002b57600080fd5b5060405180604001604052806008815260200167119b185cda109bdd60c21b8152506040518060400160405280600381526020016211909560ea1b81525081600390816200007a9190620005db565b506004620000898282620005db565b505050620000a6620000a0620002d360201b60201c565b620002d7565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c881600162000329565b6001600160a01b03811660805260008060018180826b033b2e3c9fd0803ce8000000612710620000fb826101f4620006bd565b620001079190620006dd565b6009556127106200011b826101f4620006bd565b620001279190620006dd565b600b556127106200013a826005620006bd565b620001469190620006dd565b600a556014879055601586905560168590558462000165878962000700565b62000171919062000700565b60135560188490556019839055601a8290558162000190848662000700565b6200019c919062000700565b601755600554600780546001600160a01b039092166001600160a01b0319928316811790915560088054909216732f32991cd4ed6aa2a39a3272698e03dbb55c9d2017909155620001ef906001620003a3565b620001fc306001620003a3565b60085462000215906001600160a01b03166001620003a3565b6200022461dead6001620003a3565b620002436200023b6005546001600160a01b031690565b600162000329565b6008546200025c906001600160a01b0316600162000329565b6200026930600162000329565b6200027861dead600162000329565b600160116000620002916005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620002c533826200044d565b505050505050505062000716565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003785760405162461bcd60e51b8152602060048201819052602482015260008051602062003bf883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003ee5760405162461bcd60e51b8152602060048201819052602482015260008051602062003bf883398151915260448201526064016200036f565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004a55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200036f565b8060026000828254620004b9919062000700565b90915550506001600160a01b03821660009081526001602052604081208054839290620004e890849062000700565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056257607f821691505b6020821081036200058357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200053257600081815260208120601f850160051c81016020861015620005b25750805b601f850160051c820191505b81811015620005d357828155600101620005be565b505050505050565b81516001600160401b03811115620005f757620005f762000537565b6200060f816200060884546200054d565b8462000589565b602080601f8311600181146200064757600084156200062e5750858301515b600019600386901b1c1916600185901b178555620005d3565b600085815260208120601f198616915b82811015620006785788860151825594840194600190910190840162000657565b5085821015620006975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006d757620006d7620006a7565b92915050565b600082620006fb57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006d757620006d7620006a7565b60805161348762000771600039600081816104b901528181611bd601528181611c6701528181611d9f01528181611dc801528181612d9701528181612e5001528181612e8c01528181612f060152612f2d01526134876000f3fe6080604052600436106103d25760003560e01c80638095d564116101fd578063c17b5b8c11610118578063e2f45605116100ab578063f63743421161007a578063f637434214610b60578063f8b45b0514610b76578063f9f92be414610adf578063fde83a3414610b8c578063fe575a8714610ba257600080fd5b8063e2f4560514610aff578063eaecd70a14610b15578063f11a24d314610b2a578063f2fde38b14610b4057600080fd5b8063d729715f116100e7578063d729715f14610a6f578063d85ba06314610a85578063dd62ed3e14610a9b578063e19b282314610adf57600080fd5b8063c17b5b8c146109f9578063c18bc19514610a19578063c8c8ebe414610a39578063d257b34f14610a4f57600080fd5b8063a457c2d711610190578063b62496f51161015f578063b62496f51461096a578063bbc0c7421461099a578063bc205ad3146109b9578063c0246668146109d957600080fd5b8063a457c2d7146108ea578063a9059cbb1461090a578063aa0e43881461092a578063adee28ff1461094a57600080fd5b806395d89b41116101cc57806395d89b411461087f57806396bdc33f146108945780639a7a23d6146108b45780639c2e4ac6146108d457600080fd5b80638095d5641461080c5780638a8c523c1461082c5780638da5cb5b14610841578063924de9b71461085f57600080fd5b80634a62bb65116102ed57806370a082311161028057806375e3661e1161024f57806375e3661e1461078c57806375f0a874146107ac5780637ca8448a146107cc5780637cb332bb146107ec57600080fd5b806370a082311461070c578063715018a614610742578063751039fc146107575780637571336a1461076c57600080fd5b806367a1bd55116102bc57806367a1bd55146106a15780636a486a8e146106b65780636d435421146106cc5780636ddd1713146106ec57600080fd5b80634a62bb65146106095780634e29e523146106235780634fbee193146106535780635f1893611461068c57600080fd5b80631a8145bb11610365578063313ce56711610334578063313ce5671461058c57806339509351146105a85780633dc599ff146105c857806349bd5a5e146105e957600080fd5b80631a8145bb1461051e578063203be60714610534578063203e727e1461054a57806323b872dd1461056c57600080fd5b8063156c2f35116103a1578063156c2f35146104835780631694505e146104a757806318160ddd146104f357806319eab0421461050857600080fd5b806306fdde03146103de578063095ea7b3146104095780630e922ca71461043957806310d5de531461045357600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610bdb565b6040516104009190612fde565b60405180910390f35b34801561041557600080fd5b50610429610424366004613041565b610c6d565b6040519015158152602001610400565b34801561044557600080fd5b506010546104299060ff1681565b34801561045f57600080fd5b5061042961046e36600461306d565b600e6020526000908152604090205460ff1681565b34801561048f57600080fd5b5061049960145481565b604051908152602001610400565b3480156104b357600080fd5b506104db7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610400565b3480156104ff57600080fd5b50600254610499565b34801561051457600080fd5b5061049960185481565b34801561052a57600080fd5b50610499601c5481565b34801561054057600080fd5b50610499601b5481565b34801561055657600080fd5b5061056a61056536600461308a565b610c84565b005b34801561057857600080fd5b506104296105873660046130a3565b610d6a565b34801561059857600080fd5b5060405160128152602001610400565b3480156105b457600080fd5b506104296105c3366004613041565b610e12565b3480156105d457600080fd5b50600c54610429906301000000900460ff1681565b3480156105f557600080fd5b506006546104db906001600160a01b031681565b34801561061557600080fd5b50600c546104299060ff1681565b34801561062f57600080fd5b5061042961063e36600461306d565b60116020526000908152604090205460ff1681565b34801561065f57600080fd5b5061042961066e36600461306d565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561069857600080fd5b5061056a610e4c565b3480156106ad57600080fd5b5061056a610e8b565b3480156106c257600080fd5b5061049960175481565b3480156106d857600080fd5b5061056a6106e73660046130e4565b610fb3565b3480156106f857600080fd5b50600c546104299062010000900460ff1681565b34801561071857600080fd5b5061049961072736600461306d565b6001600160a01b031660009081526001602052604090205490565b34801561074e57600080fd5b5061056a611009565b34801561076357600080fd5b5061042961103f565b34801561077857600080fd5b5061056a61078736600461312b565b61107c565b34801561079857600080fd5b5061056a6107a736600461306d565b6110d1565b3480156107b857600080fd5b506008546104db906001600160a01b031681565b3480156107d857600080fd5b5061056a6107e736600461306d565b61111c565b3480156107f857600080fd5b5061056a61080736600461306d565b6111a6565b34801561081857600080fd5b5061056a610827366004613159565b61122d565b34801561083857600080fd5b5061056a6112ce565b34801561084d57600080fd5b506005546001600160a01b03166104db565b34801561086b57600080fd5b5061056a61087a366004613185565b611309565b34801561088b57600080fd5b506103f361134f565b3480156108a057600080fd5b506007546104db906001600160a01b031681565b3480156108c057600080fd5b5061056a6108cf36600461312b565b61135e565b3480156108e057600080fd5b5061049960165481565b3480156108f657600080fd5b50610429610905366004613041565b611416565b34801561091657600080fd5b50610429610925366004613041565b6114ad565b34801561093657600080fd5b5061056a61094536600461312b565b6114ba565b34801561095657600080fd5b5061056a61096536600461306d565b61151c565b34801561097657600080fd5b5061042961098536600461306d565b600f6020526000908152604090205460ff1681565b3480156109a657600080fd5b50600c5461042990610100900460ff1681565b3480156109c557600080fd5b5061056a6109d43660046130e4565b6115a3565b3480156109e557600080fd5b5061056a6109f436600461312b565b61170b565b348015610a0557600080fd5b5061056a610a14366004613159565b611794565b348015610a2557600080fd5b5061056a610a3436600461308a565b611837565b348015610a4557600080fd5b5061049960095481565b348015610a5b57600080fd5b50610429610a6a36600461308a565b611908565b348015610a7b57600080fd5b50610499601a5481565b348015610a9157600080fd5b5061049960135481565b348015610aa757600080fd5b50610499610ab63660046130e4565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b348015610aeb57600080fd5b5061056a610afa36600461306d565b611a5a565b348015610b0b57600080fd5b50610499600a5481565b348015610b2157600080fd5b5061056a611baa565b348015610b3657600080fd5b5061049960155481565b348015610b4c57600080fd5b5061056a610b5b36600461306d565b611e90565b348015610b6c57600080fd5b5061049960195481565b348015610b8257600080fd5b50610499600b5481565b348015610b9857600080fd5b50610499601d5481565b348015610bae57600080fd5b50610429610bbd36600461306d565b6001600160a01b031660009081526012602052604090205460ff1690565b606060038054610bea906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c16906131a2565b8015610c635780601f10610c3857610100808354040283529160200191610c63565b820191906000526020600020905b815481529060010190602001808311610c4657829003601f168201915b5050505050905090565b6000610c7a338484611f2b565b5060015b92915050565b6005546001600160a01b03163314610cb75760405162461bcd60e51b8152600401610cae906131dc565b60405180910390fd5b670de0b6b3a76400006103e8610ccc60025490565b610cd7906005613227565b610ce1919061323e565b610ceb919061323e565b811015610d525760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610cae565b610d6481670de0b6b3a7640000613227565b60095550565b6000610d7784848461204d565b6001600160a01b03841660009081526020818152604080832033845290915290205482811015610dfa5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610cae565b610e078533858403611f2b565b506001949350505050565b336000818152602081815260408083206001600160a01b03871684529091528120549091610c7a918590610e47908690613260565b611f2b565b6005546001600160a01b03163314610e765760405162461bcd60e51b8152600401610cae906131dc565b600c805463ff00000019166301000000179055565b6005546001600160a01b03163314610eb55760405162461bcd60e51b8152600401610cae906131dc565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f179190613273565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f82919061328c565b5060405133904780156108fc02916000818181858888f19350505050158015610faf573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610fdd5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0391821660009081526020818152604080832093909416825291909152206000199055565b6005546001600160a01b031633146110335760405162461bcd60e51b8152600401610cae906131dc565b61103d60006128bf565b565b6005546000906001600160a01b0316331461106c5760405162461bcd60e51b8152600401610cae906131dc565b50600c805460ff19169055600190565b6005546001600160a01b031633146110a65760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b03166000908152601260205260409020805460ff19169055565b6005546001600160a01b031633146111465760405162461bcd60e51b8152600401610cae906131dc565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611193576040519150601f19603f3d011682016040523d82523d6000602084013e611198565b606091505b5050905080610faf57600080fd5b6005546001600160a01b031633146111d05760405162461bcd60e51b8152600401610cae906131dc565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112575760405162461bcd60e51b8152600401610cae906131dc565b601483905560158290556016819055806112718385613260565b61127b9190613260565b6013819055600510156112c95760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610cae565b505050565b6005546001600160a01b031633146112f85760405162461bcd60e51b8152600401610cae906131dc565b600c805461ff001916610100179055565b6005546001600160a01b031633146113335760405162461bcd60e51b8152600401610cae906131dc565b600c8054911515620100000262ff000019909216919091179055565b606060048054610bea906131a2565b6005546001600160a01b031633146113885760405162461bcd60e51b8152600401610cae906131dc565b6006546001600160a01b039081169083160361140c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cae565b610faf8282612911565b336000908152602081815260408083206001600160a01b0386168452909152812054828110156114965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cae565b6114a33385858403611f2b565b5060019392505050565b6000610c7a33848461204d565b6005546001600160a01b031633146114e45760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0382166000908152601160205260409020805460ff1916821515179055611512828261170b565b610faf828261107c565b6005546001600160a01b031633146115465760405162461bcd60e51b8152600401610cae906131dc565b6007546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146115cd5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0382166116235760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cae565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e9190613273565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156116e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611705919061328c565b50505050565b6005546001600160a01b031633146117355760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146117be5760405162461bcd60e51b8152600401610cae906131dc565b60188390556019829055601a819055806117d88385613260565b6117e29190613260565b6017819055600510156112c95760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610cae565b6005546001600160a01b031633146118615760405162461bcd60e51b8152600401610cae906131dc565b670de0b6b3a76400006103e861187660025490565b61188190600a613227565b61188b919061323e565b611895919061323e565b8110156118f05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610cae565b61190281670de0b6b3a7640000613227565b600b5550565b6005546000906001600160a01b031633146119355760405162461bcd60e51b8152600401610cae906131dc565b620186a061194260025490565b61194d906001613227565b611957919061323e565b8210156119c45760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cae565b6103e86119d060025490565b6119db906005613227565b6119e5919061323e565b821115611a515760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610cae565b50600a55600190565b6005546001600160a01b03163314611a845760405162461bcd60e51b8152600401610cae906131dc565b600c546301000000900460ff1615611ae85760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610cae565b6006546001600160a01b03828116911614801590611b2357506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611b865760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610cae565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6005546001600160a01b03163314611bd45760405162461bcd60e51b8152600401610cae906131dc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5691906132a9565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce791906132a9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5891906132a9565b600680546001600160a01b0319166001600160a01b03929092169182179055611d8290600161107c565b600654611d99906001600160a01b03166001612911565b611dc6307f0000000000000000000000000000000000000000000000000000000000000000600019611f2b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730611e16306001600160a01b031660009081526001602052604090205490565b600080611e2b6005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401611e4d969594939291906132c6565b60606040518083038185885af1158015611e6b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112c99190613301565b6005546001600160a01b03163314611eba5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b038116611f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cae565b611f28816128bf565b50565b6001600160a01b038316611f8d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cae565b6001600160a01b038216611fee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cae565b6001600160a01b038381166000818152602081815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120735760405162461bcd60e51b8152600401610cae9061332f565b6001600160a01b0382166120995760405162461bcd60e51b8152600401610cae90613374565b6001600160a01b03831660009081526012602052604090205460ff16156120f75760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610cae565b6001600160a01b03821660009081526012602052604090205460ff16156121575760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610cae565b60105460009060ff16156121df576001600160a01b03841660009081526011602052604090205460ff166121df5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610cae565b816000036121f35761170584846000612965565b600c5460ff1615612569576005546001600160a01b0385811691161480159061222a57506005546001600160a01b03848116911614155b801561223e57506001600160a01b03831615155b801561225557506001600160a01b03831661dead14155b801561226b5750600654600160a01b900460ff16155b1561256957600c54610100900460ff16612303576001600160a01b0384166000908152600d602052604090205460ff16806122be57506001600160a01b0383166000908152600d602052604090205460ff165b6123035760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cae565b6001600160a01b0384166000908152600f602052604090205460ff16801561234457506001600160a01b0383166000908152600e602052604090205460ff16155b15612428576009548211156123b95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cae565b600b546001600160a01b0384166000908152600160205260409020546123df9084613260565b11156124235760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cae565b612569565b6001600160a01b0383166000908152600f602052604090205460ff16801561246957506001600160a01b0384166000908152600e602052604090205460ff16155b156124df576009548211156124235760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cae565b6001600160a01b0383166000908152600e602052604090205460ff1661256957600b546001600160a01b0384166000908152600160205260409020546125259084613260565b11156125695760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cae565b5030600090815260016020526040902054600a54479190811080159081906125995750600c5462010000900460ff165b80156125af5750600654600160a01b900460ff16155b80156125d457506001600160a01b0386166000908152600f602052604090205460ff16155b80156125f957506001600160a01b0386166000908152600d602052604090205460ff16155b801561261e57506001600160a01b0385166000908152600d602052604090205460ff16155b1561264c576006805460ff60a01b1916600160a01b17905561263e612ab9565b6006805460ff60a01b191690555b6006546001600160a01b0387166000908152600d602052604090205460ff600160a01b90920482161591168061269a57506001600160a01b0386166000908152600d602052604090205460ff165b156126a3575060005b600081156128aa576001600160a01b0387166000908152600f602052604090205460ff1680156126d557506000601754115b156127af576126fa60646126f460175489612d1590919063ffffffff16565b90612d28565b90506017546019548261270d9190613227565b612717919061323e565b601c60008282546127289190613260565b9091555061273f905066038d7ea4c680008661323e565b60175461274c91906133b7565b601a546127599083613227565b612763919061323e565b601d60008282546127749190613260565b90915550506017546018546127899083613227565b612793919061323e565b601b60008282546127a49190613260565b9091555061288c9050565b6001600160a01b0388166000908152600f602052604090205460ff1680156127d957506000601354115b1561288c576127f860646126f460135489612d1590919063ffffffff16565b90506013546015548261280b9190613227565b612815919061323e565b601c60008282546128269190613260565b909155505060135460165461283b9083613227565b612845919061323e565b601d60008282546128569190613260565b909155505060135460145461286b9083613227565b612875919061323e565b601b60008282546128869190613260565b90915550505b801561289d5761289d883083612965565b6128a781876133b7565b95505b6128b5888888612965565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661298b5760405162461bcd60e51b8152600401610cae9061332f565b6001600160a01b0382166129b15760405162461bcd60e51b8152600401610cae90613374565b6001600160a01b03831660009081526001602052604090205481811015612a295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cae565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290612a60908490613260565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612aac91815260200190565b60405180910390a3611705565b3060009081526001602052604081205490506000601d54601b54601c54612ae09190613260565b612aea9190613260565b90506000821580612af9575081155b15612b0357505050565b600a54612b11906014613227565b831115612b2957600a54612b26906014613227565b92505b6000600283601c5486612b3c9190613227565b612b46919061323e565b612b50919061323e565b90506000612b5e8583612d34565b905047612b6a82612d40565b6000612b764783612d34565b90506000612ba46002601c54612b8c919061323e565b612b9690896133b7565b601b546126f4908590612d15565b90506000612bd26002601c54612bba919061323e565b612bc4908a6133b7565b601d546126f4908690612d15565b9050600081612be184866133b7565b612beb91906133b7565b6000601c819055601b819055601d8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612c48576040519150601f19603f3d011682016040523d82523d6000602084013e612c4d565b606091505b50909850508615801590612c615750600081115b15612cb457612c708782612f00565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612d01576040519150601f19603f3d011682016040523d82523d6000602084013e612d06565b606091505b50505050505050505050505050565b6000612d218284613227565b9392505050565b6000612d21828461323e565b6000612d2182846133b7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d7557612d756133ca565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e1791906132a9565b81600181518110612e2a57612e2a6133ca565b60200260200101906001600160a01b031690816001600160a01b031681525050612e75307f000000000000000000000000000000000000000000000000000000000000000084611f2b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612eca9085906000908690309042906004016133e0565b600060405180830381600087803b158015612ee457600080fd5b505af1158015612ef8573d6000803e3d6000fd5b505050505050565b612f2b307f000000000000000000000000000000000000000000000000000000000000000084611f2b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612f726005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401612f94969594939291906132c6565b60606040518083038185885af1158015612fb2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fd79190613301565b5050505050565b600060208083528351808285015260005b8181101561300b57858101830151858201604001528201612fef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611f2857600080fd5b6000806040838503121561305457600080fd5b823561305f8161302c565b946020939093013593505050565b60006020828403121561307f57600080fd5b8135612d218161302c565b60006020828403121561309c57600080fd5b5035919050565b6000806000606084860312156130b857600080fd5b83356130c38161302c565b925060208401356130d38161302c565b929592945050506040919091013590565b600080604083850312156130f757600080fd5b82356131028161302c565b915060208301356131128161302c565b809150509250929050565b8015158114611f2857600080fd5b6000806040838503121561313e57600080fd5b82356131498161302c565b915060208301356131128161311d565b60008060006060848603121561316e57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561319757600080fd5b8135612d218161311d565b600181811c908216806131b657607f821691505b6020821081036131d657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610c7e57610c7e613211565b60008261325b57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c7e57610c7e613211565b60006020828403121561328557600080fd5b5051919050565b60006020828403121561329e57600080fd5b8151612d218161311d565b6000602082840312156132bb57600080fd5b8151612d218161302c565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561331657600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c7e57610c7e613211565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134305784516001600160a01b03168352938301939183019160010161340b565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c725121bae6a379b7c9799a3e67b64a8a4352565583916cb728fae2a11d8508364736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103d25760003560e01c80638095d564116101fd578063c17b5b8c11610118578063e2f45605116100ab578063f63743421161007a578063f637434214610b60578063f8b45b0514610b76578063f9f92be414610adf578063fde83a3414610b8c578063fe575a8714610ba257600080fd5b8063e2f4560514610aff578063eaecd70a14610b15578063f11a24d314610b2a578063f2fde38b14610b4057600080fd5b8063d729715f116100e7578063d729715f14610a6f578063d85ba06314610a85578063dd62ed3e14610a9b578063e19b282314610adf57600080fd5b8063c17b5b8c146109f9578063c18bc19514610a19578063c8c8ebe414610a39578063d257b34f14610a4f57600080fd5b8063a457c2d711610190578063b62496f51161015f578063b62496f51461096a578063bbc0c7421461099a578063bc205ad3146109b9578063c0246668146109d957600080fd5b8063a457c2d7146108ea578063a9059cbb1461090a578063aa0e43881461092a578063adee28ff1461094a57600080fd5b806395d89b41116101cc57806395d89b411461087f57806396bdc33f146108945780639a7a23d6146108b45780639c2e4ac6146108d457600080fd5b80638095d5641461080c5780638a8c523c1461082c5780638da5cb5b14610841578063924de9b71461085f57600080fd5b80634a62bb65116102ed57806370a082311161028057806375e3661e1161024f57806375e3661e1461078c57806375f0a874146107ac5780637ca8448a146107cc5780637cb332bb146107ec57600080fd5b806370a082311461070c578063715018a614610742578063751039fc146107575780637571336a1461076c57600080fd5b806367a1bd55116102bc57806367a1bd55146106a15780636a486a8e146106b65780636d435421146106cc5780636ddd1713146106ec57600080fd5b80634a62bb65146106095780634e29e523146106235780634fbee193146106535780635f1893611461068c57600080fd5b80631a8145bb11610365578063313ce56711610334578063313ce5671461058c57806339509351146105a85780633dc599ff146105c857806349bd5a5e146105e957600080fd5b80631a8145bb1461051e578063203be60714610534578063203e727e1461054a57806323b872dd1461056c57600080fd5b8063156c2f35116103a1578063156c2f35146104835780631694505e146104a757806318160ddd146104f357806319eab0421461050857600080fd5b806306fdde03146103de578063095ea7b3146104095780630e922ca71461043957806310d5de531461045357600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610bdb565b6040516104009190612fde565b60405180910390f35b34801561041557600080fd5b50610429610424366004613041565b610c6d565b6040519015158152602001610400565b34801561044557600080fd5b506010546104299060ff1681565b34801561045f57600080fd5b5061042961046e36600461306d565b600e6020526000908152604090205460ff1681565b34801561048f57600080fd5b5061049960145481565b604051908152602001610400565b3480156104b357600080fd5b506104db7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610400565b3480156104ff57600080fd5b50600254610499565b34801561051457600080fd5b5061049960185481565b34801561052a57600080fd5b50610499601c5481565b34801561054057600080fd5b50610499601b5481565b34801561055657600080fd5b5061056a61056536600461308a565b610c84565b005b34801561057857600080fd5b506104296105873660046130a3565b610d6a565b34801561059857600080fd5b5060405160128152602001610400565b3480156105b457600080fd5b506104296105c3366004613041565b610e12565b3480156105d457600080fd5b50600c54610429906301000000900460ff1681565b3480156105f557600080fd5b506006546104db906001600160a01b031681565b34801561061557600080fd5b50600c546104299060ff1681565b34801561062f57600080fd5b5061042961063e36600461306d565b60116020526000908152604090205460ff1681565b34801561065f57600080fd5b5061042961066e36600461306d565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561069857600080fd5b5061056a610e4c565b3480156106ad57600080fd5b5061056a610e8b565b3480156106c257600080fd5b5061049960175481565b3480156106d857600080fd5b5061056a6106e73660046130e4565b610fb3565b3480156106f857600080fd5b50600c546104299062010000900460ff1681565b34801561071857600080fd5b5061049961072736600461306d565b6001600160a01b031660009081526001602052604090205490565b34801561074e57600080fd5b5061056a611009565b34801561076357600080fd5b5061042961103f565b34801561077857600080fd5b5061056a61078736600461312b565b61107c565b34801561079857600080fd5b5061056a6107a736600461306d565b6110d1565b3480156107b857600080fd5b506008546104db906001600160a01b031681565b3480156107d857600080fd5b5061056a6107e736600461306d565b61111c565b3480156107f857600080fd5b5061056a61080736600461306d565b6111a6565b34801561081857600080fd5b5061056a610827366004613159565b61122d565b34801561083857600080fd5b5061056a6112ce565b34801561084d57600080fd5b506005546001600160a01b03166104db565b34801561086b57600080fd5b5061056a61087a366004613185565b611309565b34801561088b57600080fd5b506103f361134f565b3480156108a057600080fd5b506007546104db906001600160a01b031681565b3480156108c057600080fd5b5061056a6108cf36600461312b565b61135e565b3480156108e057600080fd5b5061049960165481565b3480156108f657600080fd5b50610429610905366004613041565b611416565b34801561091657600080fd5b50610429610925366004613041565b6114ad565b34801561093657600080fd5b5061056a61094536600461312b565b6114ba565b34801561095657600080fd5b5061056a61096536600461306d565b61151c565b34801561097657600080fd5b5061042961098536600461306d565b600f6020526000908152604090205460ff1681565b3480156109a657600080fd5b50600c5461042990610100900460ff1681565b3480156109c557600080fd5b5061056a6109d43660046130e4565b6115a3565b3480156109e557600080fd5b5061056a6109f436600461312b565b61170b565b348015610a0557600080fd5b5061056a610a14366004613159565b611794565b348015610a2557600080fd5b5061056a610a3436600461308a565b611837565b348015610a4557600080fd5b5061049960095481565b348015610a5b57600080fd5b50610429610a6a36600461308a565b611908565b348015610a7b57600080fd5b50610499601a5481565b348015610a9157600080fd5b5061049960135481565b348015610aa757600080fd5b50610499610ab63660046130e4565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b348015610aeb57600080fd5b5061056a610afa36600461306d565b611a5a565b348015610b0b57600080fd5b50610499600a5481565b348015610b2157600080fd5b5061056a611baa565b348015610b3657600080fd5b5061049960155481565b348015610b4c57600080fd5b5061056a610b5b36600461306d565b611e90565b348015610b6c57600080fd5b5061049960195481565b348015610b8257600080fd5b50610499600b5481565b348015610b9857600080fd5b50610499601d5481565b348015610bae57600080fd5b50610429610bbd36600461306d565b6001600160a01b031660009081526012602052604090205460ff1690565b606060038054610bea906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c16906131a2565b8015610c635780601f10610c3857610100808354040283529160200191610c63565b820191906000526020600020905b815481529060010190602001808311610c4657829003601f168201915b5050505050905090565b6000610c7a338484611f2b565b5060015b92915050565b6005546001600160a01b03163314610cb75760405162461bcd60e51b8152600401610cae906131dc565b60405180910390fd5b670de0b6b3a76400006103e8610ccc60025490565b610cd7906005613227565b610ce1919061323e565b610ceb919061323e565b811015610d525760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610cae565b610d6481670de0b6b3a7640000613227565b60095550565b6000610d7784848461204d565b6001600160a01b03841660009081526020818152604080832033845290915290205482811015610dfa5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610cae565b610e078533858403611f2b565b506001949350505050565b336000818152602081815260408083206001600160a01b03871684529091528120549091610c7a918590610e47908690613260565b611f2b565b6005546001600160a01b03163314610e765760405162461bcd60e51b8152600401610cae906131dc565b600c805463ff00000019166301000000179055565b6005546001600160a01b03163314610eb55760405162461bcd60e51b8152600401610cae906131dc565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f179190613273565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f82919061328c565b5060405133904780156108fc02916000818181858888f19350505050158015610faf573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610fdd5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0391821660009081526020818152604080832093909416825291909152206000199055565b6005546001600160a01b031633146110335760405162461bcd60e51b8152600401610cae906131dc565b61103d60006128bf565b565b6005546000906001600160a01b0316331461106c5760405162461bcd60e51b8152600401610cae906131dc565b50600c805460ff19169055600190565b6005546001600160a01b031633146110a65760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b03166000908152601260205260409020805460ff19169055565b6005546001600160a01b031633146111465760405162461bcd60e51b8152600401610cae906131dc565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611193576040519150601f19603f3d011682016040523d82523d6000602084013e611198565b606091505b5050905080610faf57600080fd5b6005546001600160a01b031633146111d05760405162461bcd60e51b8152600401610cae906131dc565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112575760405162461bcd60e51b8152600401610cae906131dc565b601483905560158290556016819055806112718385613260565b61127b9190613260565b6013819055600510156112c95760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610cae565b505050565b6005546001600160a01b031633146112f85760405162461bcd60e51b8152600401610cae906131dc565b600c805461ff001916610100179055565b6005546001600160a01b031633146113335760405162461bcd60e51b8152600401610cae906131dc565b600c8054911515620100000262ff000019909216919091179055565b606060048054610bea906131a2565b6005546001600160a01b031633146113885760405162461bcd60e51b8152600401610cae906131dc565b6006546001600160a01b039081169083160361140c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cae565b610faf8282612911565b336000908152602081815260408083206001600160a01b0386168452909152812054828110156114965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cae565b6114a33385858403611f2b565b5060019392505050565b6000610c7a33848461204d565b6005546001600160a01b031633146114e45760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0382166000908152601160205260409020805460ff1916821515179055611512828261170b565b610faf828261107c565b6005546001600160a01b031633146115465760405162461bcd60e51b8152600401610cae906131dc565b6007546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146115cd5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0382166116235760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610cae565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e9190613273565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156116e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611705919061328c565b50505050565b6005546001600160a01b031633146117355760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146117be5760405162461bcd60e51b8152600401610cae906131dc565b60188390556019829055601a819055806117d88385613260565b6117e29190613260565b6017819055600510156112c95760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610cae565b6005546001600160a01b031633146118615760405162461bcd60e51b8152600401610cae906131dc565b670de0b6b3a76400006103e861187660025490565b61188190600a613227565b61188b919061323e565b611895919061323e565b8110156118f05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610cae565b61190281670de0b6b3a7640000613227565b600b5550565b6005546000906001600160a01b031633146119355760405162461bcd60e51b8152600401610cae906131dc565b620186a061194260025490565b61194d906001613227565b611957919061323e565b8210156119c45760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cae565b6103e86119d060025490565b6119db906005613227565b6119e5919061323e565b821115611a515760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610cae565b50600a55600190565b6005546001600160a01b03163314611a845760405162461bcd60e51b8152600401610cae906131dc565b600c546301000000900460ff1615611ae85760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610cae565b6006546001600160a01b03828116911614801590611b2357506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611b865760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610cae565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6005546001600160a01b03163314611bd45760405162461bcd60e51b8152600401610cae906131dc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5691906132a9565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce791906132a9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5891906132a9565b600680546001600160a01b0319166001600160a01b03929092169182179055611d8290600161107c565b600654611d99906001600160a01b03166001612911565b611dc6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611f2b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730611e16306001600160a01b031660009081526001602052604090205490565b600080611e2b6005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401611e4d969594939291906132c6565b60606040518083038185885af1158015611e6b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112c99190613301565b6005546001600160a01b03163314611eba5760405162461bcd60e51b8152600401610cae906131dc565b6001600160a01b038116611f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cae565b611f28816128bf565b50565b6001600160a01b038316611f8d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cae565b6001600160a01b038216611fee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cae565b6001600160a01b038381166000818152602081815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120735760405162461bcd60e51b8152600401610cae9061332f565b6001600160a01b0382166120995760405162461bcd60e51b8152600401610cae90613374565b6001600160a01b03831660009081526012602052604090205460ff16156120f75760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610cae565b6001600160a01b03821660009081526012602052604090205460ff16156121575760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610cae565b60105460009060ff16156121df576001600160a01b03841660009081526011602052604090205460ff166121df5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610cae565b816000036121f35761170584846000612965565b600c5460ff1615612569576005546001600160a01b0385811691161480159061222a57506005546001600160a01b03848116911614155b801561223e57506001600160a01b03831615155b801561225557506001600160a01b03831661dead14155b801561226b5750600654600160a01b900460ff16155b1561256957600c54610100900460ff16612303576001600160a01b0384166000908152600d602052604090205460ff16806122be57506001600160a01b0383166000908152600d602052604090205460ff165b6123035760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cae565b6001600160a01b0384166000908152600f602052604090205460ff16801561234457506001600160a01b0383166000908152600e602052604090205460ff16155b15612428576009548211156123b95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cae565b600b546001600160a01b0384166000908152600160205260409020546123df9084613260565b11156124235760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cae565b612569565b6001600160a01b0383166000908152600f602052604090205460ff16801561246957506001600160a01b0384166000908152600e602052604090205460ff16155b156124df576009548211156124235760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cae565b6001600160a01b0383166000908152600e602052604090205460ff1661256957600b546001600160a01b0384166000908152600160205260409020546125259084613260565b11156125695760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cae565b5030600090815260016020526040902054600a54479190811080159081906125995750600c5462010000900460ff165b80156125af5750600654600160a01b900460ff16155b80156125d457506001600160a01b0386166000908152600f602052604090205460ff16155b80156125f957506001600160a01b0386166000908152600d602052604090205460ff16155b801561261e57506001600160a01b0385166000908152600d602052604090205460ff16155b1561264c576006805460ff60a01b1916600160a01b17905561263e612ab9565b6006805460ff60a01b191690555b6006546001600160a01b0387166000908152600d602052604090205460ff600160a01b90920482161591168061269a57506001600160a01b0386166000908152600d602052604090205460ff165b156126a3575060005b600081156128aa576001600160a01b0387166000908152600f602052604090205460ff1680156126d557506000601754115b156127af576126fa60646126f460175489612d1590919063ffffffff16565b90612d28565b90506017546019548261270d9190613227565b612717919061323e565b601c60008282546127289190613260565b9091555061273f905066038d7ea4c680008661323e565b60175461274c91906133b7565b601a546127599083613227565b612763919061323e565b601d60008282546127749190613260565b90915550506017546018546127899083613227565b612793919061323e565b601b60008282546127a49190613260565b9091555061288c9050565b6001600160a01b0388166000908152600f602052604090205460ff1680156127d957506000601354115b1561288c576127f860646126f460135489612d1590919063ffffffff16565b90506013546015548261280b9190613227565b612815919061323e565b601c60008282546128269190613260565b909155505060135460165461283b9083613227565b612845919061323e565b601d60008282546128569190613260565b909155505060135460145461286b9083613227565b612875919061323e565b601b60008282546128869190613260565b90915550505b801561289d5761289d883083612965565b6128a781876133b7565b95505b6128b5888888612965565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661298b5760405162461bcd60e51b8152600401610cae9061332f565b6001600160a01b0382166129b15760405162461bcd60e51b8152600401610cae90613374565b6001600160a01b03831660009081526001602052604090205481811015612a295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cae565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290612a60908490613260565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612aac91815260200190565b60405180910390a3611705565b3060009081526001602052604081205490506000601d54601b54601c54612ae09190613260565b612aea9190613260565b90506000821580612af9575081155b15612b0357505050565b600a54612b11906014613227565b831115612b2957600a54612b26906014613227565b92505b6000600283601c5486612b3c9190613227565b612b46919061323e565b612b50919061323e565b90506000612b5e8583612d34565b905047612b6a82612d40565b6000612b764783612d34565b90506000612ba46002601c54612b8c919061323e565b612b9690896133b7565b601b546126f4908590612d15565b90506000612bd26002601c54612bba919061323e565b612bc4908a6133b7565b601d546126f4908690612d15565b9050600081612be184866133b7565b612beb91906133b7565b6000601c819055601b819055601d8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612c48576040519150601f19603f3d011682016040523d82523d6000602084013e612c4d565b606091505b50909850508615801590612c615750600081115b15612cb457612c708782612f00565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612d01576040519150601f19603f3d011682016040523d82523d6000602084013e612d06565b606091505b50505050505050505050505050565b6000612d218284613227565b9392505050565b6000612d21828461323e565b6000612d2182846133b7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d7557612d756133ca565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e1791906132a9565b81600181518110612e2a57612e2a6133ca565b60200260200101906001600160a01b031690816001600160a01b031681525050612e75307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f2b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612eca9085906000908690309042906004016133e0565b600060405180830381600087803b158015612ee457600080fd5b505af1158015612ef8573d6000803e3d6000fd5b505050505050565b612f2b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f2b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612f726005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401612f94969594939291906132c6565b60606040518083038185885af1158015612fb2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fd79190613301565b5050505050565b600060208083528351808285015260005b8181101561300b57858101830151858201604001528201612fef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611f2857600080fd5b6000806040838503121561305457600080fd5b823561305f8161302c565b946020939093013593505050565b60006020828403121561307f57600080fd5b8135612d218161302c565b60006020828403121561309c57600080fd5b5035919050565b6000806000606084860312156130b857600080fd5b83356130c38161302c565b925060208401356130d38161302c565b929592945050506040919091013590565b600080604083850312156130f757600080fd5b82356131028161302c565b915060208301356131128161302c565b809150509250929050565b8015158114611f2857600080fd5b6000806040838503121561313e57600080fd5b82356131498161302c565b915060208301356131128161311d565b60008060006060848603121561316e57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561319757600080fd5b8135612d218161311d565b600181811c908216806131b657607f821691505b6020821081036131d657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610c7e57610c7e613211565b60008261325b57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c7e57610c7e613211565b60006020828403121561328557600080fd5b5051919050565b60006020828403121561329e57600080fd5b8151612d218161311d565b6000602082840312156132bb57600080fd5b8151612d218161302c565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561331657600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c7e57610c7e613211565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134305784516001600160a01b03168352938301939183019160010161340b565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c725121bae6a379b7c9799a3e67b64a8a4352565583916cb728fae2a11d8508364736f6c63430008130033
Deployed Bytecode Sourcemap
31464:18287:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16142:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18309:169;;;;;;;;;;-1:-1:-1;18309:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;18309:169:0;1023:187:1;32453:37:0;;;;;;;;;;-1:-1:-1;32453:37:0;;;;;;;;32166:63;;;;;;;;;;-1:-1:-1;32166:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32697:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;32697:29:0;1467:177:1;31540:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31540:51:0;1649:230:1;17262:108:0;;;;;;;;;;-1:-1:-1;17350:12:0;;17262:108;;32839:30;;;;;;;;;;;;;;;;32985:33;;;;;;;;;;;;;;;;32949:29;;;;;;;;;;;;;;;;37219:275;;;;;;;;;;-1:-1:-1;37219:275:0;;;;;:::i;:::-;;:::i;:::-;;18960:492;;;;;;;;;;-1:-1:-1;18960:492:0;;;;;:::i;:::-;;:::i;17104:93::-;;;;;;;;;;-1:-1:-1;17104:93:0;;17187:2;2672:36:1;;2660:2;2645:18;17104:93:0;2530:184:1;19861:215:0;;;;;;;;;;-1:-1:-1;19861:215:0;;;;;:::i;:::-;;:::i;31975:38::-;;;;;;;;;;-1:-1:-1;31975:38:0;;;;;;;;;;;31598:28;;;;;;;;;;-1:-1:-1;31598:28:0;;;;-1:-1:-1;;;;;31598:28:0;;;31855:33;;;;;;;;;;-1:-1:-1;31855:33:0;;;;;;;;32497:57;;;;;;;;;;-1:-1:-1;32497:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40040:126;;;;;;;;;;-1:-1:-1;40040:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40130:28:0;40106:4;40130:28;;;:19;:28;;;;;;;;;40040:126;47514:90;;;;;;;;;;;;;:::i;48997:251::-;;;;;;;;;;;;;:::i;32804:28::-;;;;;;;;;;;;;;;;10040:154;;;;;;;;;;-1:-1:-1;10040:154:0;;;;;:::i;:::-;;:::i;31935:31::-;;;;;;;;;;-1:-1:-1;31935:31:0;;;;;;;;;;;17433:127;;;;;;;;;;-1:-1:-1;17433:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17534:18:0;17507:7;17534:18;;;:9;:18;;;;;;;17433:127;9426:103;;;;;;;;;;;;;:::i;36523:121::-;;;;;;;;;;;;;:::i;37767:167::-;;;;;;;;;;-1:-1:-1;37767:167:0;;;;;:::i;:::-;;:::i;48625:98::-;;;;;;;;;;-1:-1:-1;48625:98:0;;;;;:::i;:::-;;:::i;31701:30::-;;;;;;;;;;-1:-1:-1;31701:30:0;;;;-1:-1:-1;;;;;31701:30:0;;;49552:196;;;;;;;;;;-1:-1:-1;49552:196:0;;;;;:::i;:::-;;:::i;39861:171::-;;;;;;;;;;-1:-1:-1;39861:171:0;;;;;:::i;:::-;;:::i;38138:395::-;;;;;;;;;;-1:-1:-1;38138:395:0;;;;;:::i;:::-;;:::i;36388:83::-;;;;;;;;;;;;;:::i;8775:87::-;;;;;;;;;;-1:-1:-1;8848:6:0;;-1:-1:-1;;;;;8848:6:0;8775:87;;38030:100;;;;;;;;;;-1:-1:-1;38030:100:0;;;;;:::i;:::-;;:::i;16361:104::-;;;;;;;;;;;;;:::i;31665:29::-;;;;;;;;;;-1:-1:-1;31665:29:0;;;;-1:-1:-1;;;;;31665:29:0;;;39144:304;;;;;;;;;;-1:-1:-1;39144:304:0;;;;;:::i;:::-;;:::i;32770:25::-;;;;;;;;;;;;;;;;20579:413;;;;;;;;;;-1:-1:-1;20579:413:0;;;;;:::i;:::-;;:::i;17773:175::-;;;;;;;;;;-1:-1:-1;17773:175:0;;;;;:::i;:::-;;:::i;48731:258::-;;;;;;;;;;-1:-1:-1;48731:258:0;;;;;:::i;:::-;;:::i;39652:201::-;;;;;;;;;;-1:-1:-1;39652:201:0;;;;;:::i;:::-;;:::i;32387:57::-;;;;;;;;;;-1:-1:-1;32387:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31895:33;;;;;;;;;;-1:-1:-1;31895:33:0;;;;;;;;;;;49256:288;;;;;;;;;;-1:-1:-1;49256:288:0;;;;;:::i;:::-;;:::i;38954:182::-;;;;;;;;;;-1:-1:-1;38954:182:0;;;;;:::i;:::-;;:::i;38541:405::-;;;;;;;;;;-1:-1:-1;38541:405:0;;;;;:::i;:::-;;:::i;37502:257::-;;;;;;;;;;-1:-1:-1;37502:257:0;;;;;:::i;:::-;;:::i;31740:35::-;;;;;;;;;;;;;;;;36714:497;;;;;;;;;;-1:-1:-1;36714:497:0;;;;;:::i;:::-;;:::i;32914:26::-;;;;;;;;;;;;;;;;32663:27;;;;;;;;;;;;;;;;18011:151;;;;;;;;;;-1:-1:-1;18011:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;18127:18:0;;;18100:7;18127:18;;;;;;;;;;;:27;;;;;;;;;;;;;18011:151;48089:403;;;;;;;;;;-1:-1:-1;48089:403:0;;;;;:::i;:::-;;:::i;31782:33::-;;;;;;;;;;;;;;;;35863:517;;;;;;;;;;;;;:::i;32733:30::-;;;;;;;;;;;;;;;;9684:201;;;;;;;;;;-1:-1:-1;9684:201:0;;;;;:::i;:::-;;:::i;32876:31::-;;;;;;;;;;;;;;;;31822:24;;;;;;;;;;;;;;;;33025:28;;;;;;;;;;;;;;;;40174:113;;;;;;;;;;-1:-1:-1;40174:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;40259:20:0;40235:4;40259:20;;;:11;:20;;;;;;;;;40174:113;16142:100;16196:13;16229:5;16222:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16142:100;:::o;18309:169::-;18392:4;18409:39;7722:10;18432:7;18441:6;18409:8;:39::i;:::-;-1:-1:-1;18466:4:0;18309:169;;;;;:::o;37219:275::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;;;;;;;;;37356:4:::1;37348;37327:13;17350:12:::0;;;17262:108;37327:13:::1;:17;::::0;37343:1:::1;37327:17;:::i;:::-;37326:26;;;;:::i;:::-;37325:35;;;;:::i;:::-;37315:6;:45;;37293:142;;;::::0;-1:-1:-1;;;37293:142:0;;5872:2:1;37293:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;37293:142:0::1;5670:411:1::0;37293:142:0::1;37469:17;:6:::0;37479::::1;37469:17;:::i;:::-;37446:20;:40:::0;-1:-1:-1;37219:275:0:o;18960:492::-;19100:4;19117:36;19127:6;19135:9;19146:6;19117:9;:36::i;:::-;-1:-1:-1;;;;;19193:19:0;;19166:24;19193:19;;;;;;;;;;;7722:10;19193:33;;;;;;;;19245:26;;;;19237:79;;;;-1:-1:-1;;;19237:79:0;;6288:2:1;19237:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;19237:79:0;6086:404:1;19237:79:0;19352:57;19361:6;7722:10;19402:6;19383:16;:25;19352:8;:57::i;:::-;-1:-1:-1;19440:4:0;;18960:492;-1:-1:-1;;;;18960:492:0:o;19861:215::-;7722:10;19949:4;19998:25;;;;;;;;;;;-1:-1:-1;;;;;19998:34:0;;;;;;;;;;19949:4;;19966:80;;19989:7;;19998:47;;20035:10;;19998:47;:::i;:::-;19966:8;:80::i;47514:90::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;47571:18:::1;:25:::0;;-1:-1:-1;;47571:25:0::1;::::0;::::1;::::0;;47514:90::o;48997:251::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;49070:46:::1;::::0;-1:-1:-1;;;49070:46:0;;49085:4:::1;49070:46;::::0;::::1;1822:51:1::0;;;49052:15:0::1;::::0;49070:31:::1;::::0;1795:18:1;;49070:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49127:51;::::0;-1:-1:-1;;;49127:51:0;;49158:10:::1;49127:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;49052:64:0;;-1:-1:-1;49142:4:0::1;::::0;49127:30:::1;::::0;6961:18:1;;49127:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;49189:51:0::1;::::0;49197:10:::1;::::0;49218:21:::1;49189:51:::0;::::1;;;::::0;::::1;::::0;;;49218:21;49197:10;49189:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49041:207;48997:251::o:0;10040:154::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10140:21:0;;::::1;10184:1;10140:21:::0;;;::::1;::::0;;;;;;;:32;;;::::1;::::0;;;;;;;-1:-1:-1;;10140:46:0;;10040:154::o;9426:103::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;9491:30:::1;9518:1;9491:18;:30::i;:::-;9426:103::o:0;36523:121::-;8848:6;;36575:4;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;36592:14:0::1;:22:::0;;-1:-1:-1;;36592:22:0::1;::::0;;;36523:121;:::o;37767:167::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37880:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37880:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37767:167::o;48625:98::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48689:18:0::1;48710:5;48689:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48689:26:0::1;::::0;;48625:98::o;49552:196::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;49625:12:::1;49643:6;-1:-1:-1::0;;;;;49643:11:0::1;49676:21;49643:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49624:89;;;49732:7;49724:16;;;::::0;::::1;39861:171:::0;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;39970:15:::1;::::0;39941:45:::1;::::0;-1:-1:-1;;;;;39970:15:0;;::::1;::::0;39941:45;::::1;::::0;::::1;::::0;39970:15:::1;::::0;39941:45:::1;39997:15;:27:::0;;-1:-1:-1;;;;;;39997:27:0::1;-1:-1:-1::0;;;;;39997:27:0;;;::::1;::::0;;;::::1;::::0;;39861:171::o;38138:395::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;38288:14:::1;:29:::0;;;38328:15:::1;:31:::0;;;38370:10:::1;:21:::0;;;38383:8;38417:32:::1;38346:13:::0;38305:12;38417:32:::1;:::i;:::-;:45;;;;:::i;:::-;38402:12;:60:::0;;;38497:1:::1;-1:-1:-1::0;38481:17:0::1;38473:52;;;::::0;-1:-1:-1;;;38473:52:0;;7755:2:1;38473:52:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;-1:-1:-1;;;7813:18:1;;;7806:52;7875:18;;38473:52:0::1;7553:346:1::0;38473:52:0::1;38138:395:::0;;;:::o;36388:83::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;36443:13:::1;:20:::0;;-1:-1:-1;;36443:20:0::1;;;::::0;;36388:83::o;38030:100::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;38101:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38101:21:0;;::::1;::::0;;;::::1;::::0;;38030:100::o;16361:104::-;16417:13;16450:7;16443:14;;;;;:::i;39144:304::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;39288:13:::1;::::0;-1:-1:-1;;;;;39288:13:0;;::::1;39280:21:::0;;::::1;::::0;39258:128:::1;;;::::0;-1:-1:-1;;;39258:128:0;;8106:2:1;39258:128:0::1;::::0;::::1;8088:21:1::0;8145:2;8125:18;;;8118:30;8184:34;8164:18;;;8157:62;8255:27;8235:18;;;8228:55;8300:19;;39258:128:0::1;7904:421:1::0;39258:128:0::1;39399:41;39428:4;39434:5;39399:28;:41::i;20579:413::-:0;7722:10;20672:4;20716:25;;;;;;;;;;;-1:-1:-1;;;;;20716:34:0;;;;;;;;;;20769:35;;;;20761:85;;;;-1:-1:-1;;;20761:85:0;;8532:2:1;20761:85:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:35;8706:19;;20761:85:0;8330:401:1;20761:85:0;20882:67;7722:10;20905:7;20933:15;20914:16;:34;20882:8;:67::i;:::-;-1:-1:-1;20980:4:0;;20579:413;-1:-1:-1;;;20579:413:0:o;17773:175::-;17859:4;17876:42;7722:10;17900:9;17911:6;17876:9;:42::i;48731:258::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48830:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;-1:-1:-1;;48830:47:0::1;::::0;::::1;;;::::0;;48888:36:::1;48830:32:::0;:47;48888:15:::1;:36::i;:::-;48935:46;48961:5;48968:12;48935:25;:46::i;39652:201::-:0;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;39785:14:::1;::::0;39744:56:::1;::::0;-1:-1:-1;;;;;39785:14:0;;::::1;::::0;39744:56;::::1;::::0;::::1;::::0;39785:14:::1;::::0;39744:56:::1;39811:14;:34:::0;;-1:-1:-1;;;;;;39811:34:0::1;-1:-1:-1::0;;;;;39811:34:0;;;::::1;::::0;;;::::1;::::0;;39652:201::o;49256:288::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49351:20:0;::::1;49343:59;;;::::0;-1:-1:-1;;;49343:59:0;;8938:2:1;49343:59:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:28;8996:18;;;8989:56;9062:18;;49343:59:0::1;8736:350:1::0;49343:59:0::1;49440:39;::::0;-1:-1:-1;;;49440:39:0;;49473:4:::1;49440:39;::::0;::::1;1822:51:1::0;49413:24:0::1;::::0;-1:-1:-1;;;;;49440:24:0;::::1;::::0;::::1;::::0;1795:18:1;;49440:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49490:46;::::0;-1:-1:-1;;;49490:46:0;;-1:-1:-1;;;;;7006:32:1;;;49490:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;49413:66:0;;-1:-1:-1;49490:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;49490:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49332:212;49256:288:::0;;:::o;38954:182::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39039:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39039:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39094:34;;1163:41:1;;;39094:34:0::1;::::0;1136:18:1;39094:34:0::1;;;;;;;38954:182:::0;;:::o;38541:405::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;38692:15:::1;:30:::0;;;38733:16:::1;:32:::0;;;38776:11:::1;:22:::0;;;38790:8;38825:34:::1;38752:13:::0;38710:12;38825:34:::1;:::i;:::-;:48;;;;:::i;:::-;38809:13;:64:::0;;;38909:1:::1;-1:-1:-1::0;38892:18:0::1;38884:54;;;::::0;-1:-1:-1;;;38884:54:0;;9293:2:1;38884:54:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:25;9351:18;;;9344:53;9414:18;;38884:54:0::1;9091:347:1::0;37502:257:0;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;37643:4:::1;37635;37613:13;17350:12:::0;;;17262:108;37613:13:::1;:18;::::0;37629:2:::1;37613:18;:::i;:::-;37612:27;;;;:::i;:::-;37611:36;;;;:::i;:::-;37601:6;:46;;37579:132;;;::::0;-1:-1:-1;;;37579:132:0;;9645:2:1;37579:132:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;37579:132:0::1;9443:400:1::0;37579:132:0::1;37734:17;:6:::0;37744::::1;37734:17;:::i;:::-;37722:9;:29:::0;-1:-1:-1;37502:257:0:o;36714:497::-;8848:6;;36822:4;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;36901:6:::1;36880:13;17350:12:::0;;;17262:108;36880:13:::1;:17;::::0;36896:1:::1;36880:17;:::i;:::-;36879:28;;;;:::i;:::-;36866:9;:41;;36844:144;;;::::0;-1:-1:-1;;;36844:144:0;;10050:2:1;36844:144:0::1;::::0;::::1;10032:21:1::0;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:51;10240:19;;36844:144:0::1;9848:417:1::0;36844:144:0::1;37056:4;37035:13;17350:12:::0;;;17262:108;37035:13:::1;:17;::::0;37051:1:::1;37035:17;:::i;:::-;37034:26;;;;:::i;:::-;37021:9;:39;;36999:141;;;::::0;-1:-1:-1;;;36999:141:0;;10472:2:1;36999:141:0::1;::::0;::::1;10454:21:1::0;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:50;10661:19;;36999:141:0::1;10270:416:1::0;36999:141:0::1;-1:-1:-1::0;37151:18:0::1;:30:::0;37199:4:::1;::::0;36714:497::o;48089:403::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;48177:18:::1;::::0;;;::::1;;;48176:19;48168:65;;;::::0;-1:-1:-1;;;48168:65:0;;10893:2:1;48168:65:0::1;::::0;::::1;10875:21:1::0;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;-1:-1:-1;;;11022:18:1;;;11015:31;11063:19;;48168:65:0::1;10691:397:1::0;48168:65:0::1;48287:13;::::0;-1:-1:-1;;;;;48266:35:0;;::::1;48287:13:::0;::::1;48266:35;::::0;::::1;::::0;:103:::1;;-1:-1:-1::0;;;;;;48305:64:0;::::1;48326:42;48305:64;;48266:103;48244:200;;;::::0;-1:-1:-1;;;48244:200:0;;11295:2:1;48244:200:0::1;::::0;::::1;11277:21:1::0;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:44;11478:19;;48244:200:0::1;11093:410:1::0;48244:200:0::1;-1:-1:-1::0;;;;;48455:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48455:29:0::1;48480:4;48455:29;::::0;;48089:403::o;35863:517::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;35948:15:::1;-1:-1:-1::0;;;;;35948:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35930:55:0::1;;35994:4;36001:15;-1:-1:-1::0;;;;;36001:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35930:94;::::0;-1:-1:-1;;;;;;35930:94:0::1;::::0;;;;;;-1:-1:-1;;;;;11994:15:1;;;35930:94:0::1;::::0;::::1;11976:34:1::0;12046:15;;12026:18;;;12019:43;11911:18;;35930:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35914:13;:110:::0;;-1:-1:-1;;;;;;35914:110:0::1;-1:-1:-1::0;;;;;35914:110:0;;;::::1;::::0;;::::1;::::0;;36035:55:::1;::::0;-1:-1:-1;36035:25:0::1;:55::i;:::-;36138:13;::::0;36101:58:::1;::::0;-1:-1:-1;;;;;36138:13:0::1;::::0;36101:28:::1;:58::i;:::-;36170:62;36187:4;36202:15;-1:-1:-1::0;;36170:8:0::1;:62::i;:::-;36243:15;-1:-1:-1::0;;;;;36243:31:0::1;;36282:21;36313:4;36319:24;36337:4;-1:-1:-1::0;;;;;17534:18:0;17507:7;17534:18;;;:9;:18;;;;;;;17433:127;36319:24:::1;36344:1;36346::::0;36348:7:::1;8848:6:::0;;-1:-1:-1;;;;;8848:6:0;;8775:87;36348:7:::1;36356:15;36243:129;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;9684:201::-:0;8848:6;;-1:-1:-1;;;;;8848:6:0;7722:10;8995:23;8987:68;;;;-1:-1:-1;;;8987:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9773:22:0;::::1;9765:73;;;::::0;-1:-1:-1;;;9765:73:0;;13198:2:1;9765:73:0::1;::::0;::::1;13180:21:1::0;13237:2;13217:18;;;13210:30;13276:34;13256:18;;;13249:62;-1:-1:-1;;;13327:18:1;;;13320:36;13373:19;;9765:73:0::1;12996:402:1::0;9765:73:0::1;9849:28;9868:8;9849:18;:28::i;:::-;9684:201:::0;:::o;24263:380::-;-1:-1:-1;;;;;24399:19:0;;24391:68;;;;-1:-1:-1;;;24391:68:0;;13605:2:1;24391:68:0;;;13587:21:1;13644:2;13624:18;;;13617:30;13683:34;13663:18;;;13656:62;-1:-1:-1;;;13734:18:1;;;13727:34;13778:19;;24391:68:0;13403:400:1;24391:68:0;-1:-1:-1;;;;;24478:21:0;;24470:68;;;;-1:-1:-1;;;24470:68:0;;14010:2:1;24470:68:0;;;13992:21:1;14049:2;14029:18;;;14022:30;14088:34;14068:18;;;14061:62;-1:-1:-1;;;14139:18:1;;;14132:32;14181:19;;24470:68:0;13808:398:1;24470:68:0;-1:-1:-1;;;;;24551:18:0;;;:11;:18;;;;;;;;;;;:27;;;;;;;;;;;;;:36;;;24603:32;;1613:25:1;;;24603:32:0;;1586:18:1;24603:32:0;;;;;;;24263:380;;;:::o;40295:4270::-;-1:-1:-1;;;;;40427:18:0;;40419:68;;;;-1:-1:-1;;;40419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40506:16:0;;40498:64;;;;-1:-1:-1;;;40498:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40582:17:0;;;;;;:11;:17;;;;;;;;40581:18;40573:48;;;;-1:-1:-1;;;40573:48:0;;15223:2:1;40573:48:0;;;15205:21:1;15262:2;15242:18;;;15235:30;-1:-1:-1;;;15281:18:1;;;15274:48;15339:18;;40573:48:0;15021:342:1;40573:48:0;-1:-1:-1;;;;;40641:15:0;;;;;;:11;:15;;;;;;;;40640:16;40632:48;;;;-1:-1:-1;;;40632:48:0;;15570:2:1;40632:48:0;;;15552:21:1;15609:2;15589:18;;;15582:30;-1:-1:-1;;;15628:18:1;;;15621:50;15688:18;;40632:48:0;15368:344:1;40632:48:0;40726:17;;40691:18;;40726:17;;40722:135;;;-1:-1:-1;;;;;40768:31:0;;;;;;:25;:31;;;;;;;;40760:85;;;;-1:-1:-1;;;40760:85:0;;15919:2:1;40760:85:0;;;15901:21:1;15958:2;15938:18;;;15931:30;15997:34;15977:18;;;15970:62;-1:-1:-1;;;16048:18:1;;;16041:39;16097:19;;40760:85:0;15717:405:1;40760:85:0;40873:6;40883:1;40873:11;40869:93;;40901:28;40917:4;40923:2;40927:1;40901:15;:28::i;40869:93::-;40978:14;;;;40974:1694;;;8848:6;;-1:-1:-1;;;;;41031:15:0;;;8848:6;;41031:15;;;;:49;;-1:-1:-1;8848:6:0;;-1:-1:-1;;;;;41067:13:0;;;8848:6;;41067:13;;41031:49;:86;;;;-1:-1:-1;;;;;;41101:16:0;;;;41031:86;:128;;;;-1:-1:-1;;;;;;41138:21:0;;41152:6;41138:21;;41031:128;:158;;;;-1:-1:-1;41181:8:0;;-1:-1:-1;;;41181:8:0;;;;41180:9;41031:158;41009:1648;;;41229:13;;;;;;;41224:223;;-1:-1:-1;;;;;41301:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41330:23:0;;;;;;:19;:23;;;;;;;;41301:52;41267:160;;;;-1:-1:-1;;;41267:160:0;;16329:2:1;41267:160:0;;;16311:21:1;16368:2;16348:18;;;16341:30;-1:-1:-1;;;16387:18:1;;;16380:52;16449:18;;41267:160:0;16127:346:1;41267:160:0;-1:-1:-1;;;;;41521:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41578:35:0;;;;;;:31;:35;;;;;;;;41577:36;41521:92;41495:1147;;;41700:20;;41690:6;:30;;41656:169;;;;-1:-1:-1;;;41656:169:0;;16680:2:1;41656:169:0;;;16662:21:1;16719:2;16699:18;;;16692:30;16758:34;16738:18;;;16731:62;-1:-1:-1;;;16809:18:1;;;16802:51;16870:19;;41656:169:0;16478:417:1;41656:169:0;41908:9;;-1:-1:-1;;;;;17534:18:0;;17507:7;17534:18;;;:9;:18;;;;;;41882:22;;:6;:22;:::i;:::-;:35;;41848:140;;;;-1:-1:-1;;;41848:140:0;;17102:2:1;41848:140:0;;;17084:21:1;17141:2;17121:18;;;17114:30;-1:-1:-1;;;17160:18:1;;;17153:49;17219:18;;41848:140:0;16900:343:1;41848:140:0;41495:1147;;;-1:-1:-1;;;;;42086:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42141:37:0;;;;;;:31;:37;;;;;;;;42140:38;42086:92;42060:582;;;42265:20;;42255:6;:30;;42221:170;;;;-1:-1:-1;;;42221:170:0;;17450:2:1;42221:170:0;;;17432:21:1;17489:2;17469:18;;;17462:30;17528:34;17508:18;;;17501:62;-1:-1:-1;;;17579:18:1;;;17572:52;17641:19;;42221:170:0;17248:418:1;42060:582:0;-1:-1:-1;;;;;42422:35:0;;;;;;:31;:35;;;;;;;;42417:225;;42542:9;;-1:-1:-1;;;;;17534:18:0;;17507:7;17534:18;;;:9;:18;;;;;;42516:22;;:6;:22;:::i;:::-;:35;;42482:140;;;;-1:-1:-1;;;42482:140:0;;17102:2:1;42482:140:0;;;17084:21:1;17141:2;17121:18;;;17114:30;-1:-1:-1;;;17160:18:1;;;17153:49;17219:18;;42482:140:0;16900:343:1;42482:140:0;-1:-1:-1;42729:4:0;42680:28;17534:18;;;:9;:18;;;;;;42823;;42750:21;;17534:18;42799:42;;;;;;;42872:35;;-1:-1:-1;42896:11:0;;;;;;;42872:35;:61;;;;-1:-1:-1;42925:8:0;;-1:-1:-1;;;42925:8:0;;;;42924:9;42872:61;:110;;;;-1:-1:-1;;;;;;42951:31:0;;;;;;:25;:31;;;;;;;;42950:32;42872:110;:153;;;;-1:-1:-1;;;;;;43000:25:0;;;;;;:19;:25;;;;;;;;42999:26;42872:153;:194;;;;-1:-1:-1;;;;;;43043:23:0;;;;;;:19;:23;;;;;;;;43042:24;42872:194;42854:326;;;43093:8;:15;;-1:-1:-1;;;;43093:15:0;-1:-1:-1;;;43093:15:0;;;43125:10;:8;:10::i;:::-;43152:8;:16;;-1:-1:-1;;;;43152:16:0;;;42854:326;43208:8;;-1:-1:-1;;;;;43318:25:0;;43192:12;43318:25;;;:19;:25;;;;;;43208:8;-1:-1:-1;;;43208:8:0;;;;;43207:9;;43318:25;;:52;;-1:-1:-1;;;;;;43347:23:0;;;;;;:19;:23;;;;;;;;43318:52;43314:100;;;-1:-1:-1;43397:5:0;43314:100;43426:12;43531:7;43527:985;;;-1:-1:-1;;;;;43583:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43632:1;43616:13;;:17;43583:50;43579:784;;;43661:34;43691:3;43661:25;43672:13;;43661:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43654:41;;43764:13;;43744:16;;43737:4;:23;;;;:::i;:::-;43736:41;;;;:::i;:::-;43714:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;43853:17:0;;-1:-1:-1;43866:4:0;43853:10;:17;:::i;:::-;43837:13;;:33;;;;:::i;:::-;43821:11;;43814:18;;:4;:18;:::i;:::-;43813:58;;;;:::i;:::-;43796:13;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;43935:13:0;;43916:15;;43909:22;;:4;:22;:::i;:::-;43908:40;;;;:::i;:::-;43890:14;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;43579:784:0;;-1:-1:-1;43579:784:0;;-1:-1:-1;;;;;44010:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44060:1;44045:12;;:16;44010:51;44006:357;;;44089:33;44118:3;44089:24;44100:12;;44089:6;:10;;:24;;;;:::i;:33::-;44082:40;;44190:12;;44171:15;;44164:4;:22;;;;:::i;:::-;44163:39;;;;:::i;:::-;44141:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44260:12:0;;44246:10;;44239:17;;:4;:17;:::i;:::-;44238:34;;;;:::i;:::-;44221:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44335:12:0;;44317:14;;44310:21;;:4;:21;:::i;:::-;44309:38;;;;:::i;:::-;44291:14;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;44006:357:0;44383:8;;44379:91;;44412:42;44428:4;44442;44449;44412:15;:42::i;:::-;44486:14;44496:4;44486:14;;:::i;:::-;;;43527:985;44524:33;44540:4;44546:2;44550:6;44524:15;:33::i;:::-;40408:4157;;;;;40295:4270;;;:::o;10354:191::-;10447:6;;;-1:-1:-1;;;;;10464:17:0;;;-1:-1:-1;;;;;;10464:17:0;;;;;;;10497:40;;10447:6;;;10464:17;10447:6;;10497:40;;10428:16;;10497:40;10417:128;10354:191;:::o;39456:188::-;-1:-1:-1;;;;;39539:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39539:39:0;;;;;;;;;;39596:40;;39539:39;;:31;39596:40;;;39456:188;;:::o;21482:733::-;-1:-1:-1;;;;;21622:20:0;;21614:70;;;;-1:-1:-1;;;21614:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21703:23:0;;21695:71;;;;-1:-1:-1;;;21695:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21863:17:0;;21839:21;21863:17;;;:9;:17;;;;;;21899:23;;;;21891:74;;;;-1:-1:-1;;;21891:74:0;;18006:2:1;21891:74:0;;;17988:21:1;18045:2;18025:18;;;18018:30;18084:34;18064:18;;;18057:62;-1:-1:-1;;;18135:18:1;;;18128:36;18181:19;;21891:74:0;17804:402:1;21891:74:0;-1:-1:-1;;;;;22001:17:0;;;;;;;:9;:17;;;;;;22021:22;;;22001:42;;22065:20;;;;;;;;:30;;22037:6;;22001:17;22065:30;;22037:6;;22065:30;:::i;:::-;;;;;;;;22130:9;-1:-1:-1;;;;;22113:35:0;22122:6;-1:-1:-1;;;;;22113:35:0;;22141:6;22113:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;22113:35:0;;;;;;;;22161:46;38138:395;45691:1769;45774:4;45730:23;17534:18;;;:9;:18;;;;;;45730:50;;45791:25;45883:13;;45853:14;;45819:18;;:48;;;;:::i;:::-;:77;;;;:::i;:::-;45791:105;-1:-1:-1;45907:12:0;45936:20;;;:46;;-1:-1:-1;45960:22:0;;45936:46;45932:85;;;45999:7;;;45691:1769::o;45932:85::-;46051:18;;:23;;46072:2;46051:23;:::i;:::-;46033:15;:41;46029:115;;;46109:18;;:23;;46130:2;46109:23;:::i;:::-;46091:41;;46029:115;46205:23;46318:1;46285:17;46250:18;;46232:15;:36;;;;:::i;:::-;46231:71;;;;:::i;:::-;:88;;;;:::i;:::-;46205:114;-1:-1:-1;46330:26:0;46359:36;:15;46205:114;46359:19;:36::i;:::-;46330:65;-1:-1:-1;46436:21:0;46470:36;46330:65;46470:16;:36::i;:::-;46519:18;46540:44;:21;46566:17;46540:25;:44::i;:::-;46519:65;;46597:22;46622:80;46699:1;46678:18;;:22;;;;:::i;:::-;46657:44;;:17;:44;:::i;:::-;46637:14;;46622:30;;:10;;:14;:30::i;:80::-;46597:105;;46723:18;46744:79;46820:1;46799:18;;:22;;;;:::i;:::-;46778:44;;:17;:44;:::i;:::-;46759:13;;46744:29;;:10;;:14;:29::i;:79::-;46723:100;-1:-1:-1;46836:23:0;46723:100;46862:27;46875:14;46862:10;:27;:::i;:::-;:40;;;;:::i;:::-;46936:1;46915:18;:22;;;46948:14;:18;;;46977:13;:17;;;47029:15;;47021:52;;46836:66;;-1:-1:-1;;;;;;47029:15:0;;47058:10;;47021:52;46936:1;47021:52;47058:10;47029:15;47021:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47007:66:0;;-1:-1:-1;;47090:19:0;;;;;:42;;;47131:1;47113:15;:19;47090:42;47086:278;;;47149:46;47162:15;47179;47149:12;:46::i;:::-;47319:18;;47215:137;;;18413:25:1;;;18469:2;18454:18;;18447:34;;;18497:18;;;18490:34;;;;47215:137:0;;;;;;18401:2:1;47215:137:0;;;47086:278;47398:14;;47390:62;;-1:-1:-1;;;;;47398:14:0;;;;47426:21;;47390:62;;;;47426:21;47398:14;47390:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45691:1769:0:o;3600:98::-;3658:7;3685:5;3689:1;3685;:5;:::i;:::-;3678:12;3600:98;-1:-1:-1;;;3600:98:0:o;3999:::-;4057:7;4084:5;4088:1;4084;:5;:::i;3243:98::-;3301:7;3328:5;3332:1;3328;:5;:::i;44573:589::-;44723:16;;;44737:1;44723:16;;;;;;;;44699:21;;44723:16;;;;;;;;;;-1:-1:-1;44723:16:0;44699:40;;44768:4;44750;44755:1;44750:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44750:23:0;;;-1:-1:-1;;;;;44750:23:0;;;;;44794:15;-1:-1:-1;;;;;44794:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44784:4;44789:1;44784:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44784:32:0;;;-1:-1:-1;;;;;44784:32:0;;;;;44829:62;44846:4;44861:15;44879:11;44829:8;:62::i;:::-;44930:224;;-1:-1:-1;;;44930:224:0;;-1:-1:-1;;;;;44930:15:0;:66;;;;:224;;45011:11;;45037:1;;45081:4;;45108;;45128:15;;44930:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44628:534;44573:589;:::o;45170:513::-;45318:62;45335:4;45350:15;45368:11;45318:8;:62::i;:::-;45423:15;-1:-1:-1;;;;;45423:31:0;;45462:9;45495:4;45515:11;45541:1;45584;45627:7;8848:6;;-1:-1:-1;;;;;8848:6:0;;8775:87;45627:7;45649:15;45423:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45170:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:388::-;2995:6;3003;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3111:9;3098:23;3130:31;3155:5;3130:31;:::i;:::-;3180:5;-1:-1:-1;3237:2:1;3222:18;;3209:32;3250:33;3209:32;3250:33;:::i;:::-;3302:7;3292:17;;;2927:388;;;;;:::o;3320:118::-;3406:5;3399:13;3392:21;3385:5;3382:32;3372:60;;3428:1;3425;3418:12;3443:382;3508:6;3516;3569:2;3557:9;3548:7;3544:23;3540:32;3537:52;;;3585:1;3582;3575:12;3537:52;3624:9;3611:23;3643:31;3668:5;3643:31;:::i;:::-;3693:5;-1:-1:-1;3750:2:1;3735:18;;3722:32;3763:30;3722:32;3763:30;:::i;3830:316::-;3907:6;3915;3923;3976:2;3964:9;3955:7;3951:23;3947:32;3944:52;;;3992:1;3989;3982:12;3944:52;-1:-1:-1;;4015:23:1;;;4085:2;4070:18;;4057:32;;-1:-1:-1;4136:2:1;4121:18;;;4108:32;;3830:316;-1:-1:-1;3830:316:1:o;4151:241::-;4207:6;4260:2;4248:9;4239:7;4235:23;4231:32;4228:52;;;4276:1;4273;4266:12;4228:52;4315:9;4302:23;4334:28;4356:5;4334:28;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;11508:251::-;11578:6;11631:2;11619:9;11610:7;11606:23;11602:32;11599:52;;;11647:1;11644;11637:12;11599:52;11679:9;11673:16;11698:31;11723:5;11698:31;:::i;12073:607::-;-1:-1:-1;;;;;12432:15:1;;;12414:34;;12479:2;12464:18;;12457:34;;;;12522:2;12507:18;;12500:34;;;;12565:2;12550:18;;12543:34;;;;12614:15;;;12608:3;12593:19;;12586:44;12394:3;12646:19;;12639:35;;;;12363:3;12348:19;;12073:607::o;12685:306::-;12773:6;12781;12789;12842:2;12830:9;12821:7;12817:23;12813:32;12810:52;;;12858:1;12855;12848:12;12810:52;12887:9;12881:16;12871:26;;12937:2;12926:9;12922:18;12916:25;12906:35;;12981:2;12970:9;12966:18;12960:25;12950:35;;12685:306;;;;;:::o;14211:401::-;14413:2;14395:21;;;14452:2;14432:18;;;14425:30;14491:34;14486:2;14471:18;;14464:62;-1:-1:-1;;;14557:2:1;14542:18;;14535:35;14602:3;14587:19;;14211:401::o;14617:399::-;14819:2;14801:21;;;14858:2;14838:18;;;14831:30;14897:34;14892:2;14877:18;;14870:62;-1:-1:-1;;;14963:2:1;14948:18;;14941:33;15006:3;14991:19;;14617:399::o;17671:128::-;17738:9;;;17759:11;;;17756:37;;;17773:18;;:::i;18667:127::-;18728:10;18723:3;18719:20;18716:1;18709:31;18759:4;18756:1;18749:15;18783:4;18780:1;18773:15;18799:980;19061:4;19109:3;19098:9;19094:19;19140:6;19129:9;19122:25;19166:2;19204:6;19199:2;19188:9;19184:18;19177:34;19247:3;19242:2;19231:9;19227:18;19220:31;19271:6;19306;19300:13;19337:6;19329;19322:22;19375:3;19364:9;19360:19;19353:26;;19414:2;19406:6;19402:15;19388:29;;19435:1;19445:195;19459:6;19456:1;19453:13;19445:195;;;19524:13;;-1:-1:-1;;;;;19520:39:1;19508:52;;19615:15;;;;19580:12;;;;19556:1;19474:9;19445:195;;;-1:-1:-1;;;;;;;19696:32:1;;;;19691:2;19676:18;;19669:60;-1:-1:-1;;;19760:3:1;19745:19;19738:35;19657:3;18799:980;-1:-1:-1;;;18799:980:1:o
Swarm Source
ipfs://c725121bae6a379b7c9799a3e67b64a8a4352565583916cb728fae2a11d85083
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,915.2 | 0.001 | $3.92 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.