ERC-20
Overview
Max Total Supply
100,000,000,000 0XEXP
Holders
6
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,728,403,794.260581070226255854 0XEXPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EXPERIMENT0X
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-30 */ /** NO WEB, NO TG, NO TWITTER, NOTHING. */ // SPDX-License-Identifier: UNLICENSED // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } contract EXPERIMENT0X is IERC20, Ownable { using SafeMath for uint256; uint256 private _totalSupply; string private _name = "EXPERIMENT"; string private _symbol = "0XEXP"; uint8 private _decimals = 18; uint256 public maxFeeSwap; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) public _feeExcluded; uint256 public _feeRewardPct; address public _feeRewardAddress; address public _router; mapping(address => bool) public isBlackListed; uint256 public startBlock; address public firstPair; bool inProcessFees; bool swapFeesEnabled = true; constructor(uint256 feeRewardPct, address feeRewardAddress, address uniRouter, address uniPairFactory) { require(uniRouter != address(0), "uniRouter can't be the 0 address"); require(uniPairFactory != address(0), "uniPairFactory can't be the 0 address"); uint256 mintAmount = 100000000000 * 10**decimals(); _mint(msg.sender, mintAmount); maxFeeSwap = mintAmount.div(200); setFeeExcluded(_msgSender(), true); setFeeExcluded(address(this), true); setFees(feeRewardPct, feeRewardAddress); _router = uniRouter; address weth = IUniswapV2Router02(uniRouter).WETH(); firstPair = IUniswapV2Factory(uniPairFactory).createPair(weth, address(this)); } function setRouter(address r) public onlyOwner { _router = r; } function setFees(uint256 feeRewardPct, address feeRewardAddress) public onlyOwner { require(feeRewardPct <= 4500, "Fees cannot be more than 45%"); require( feeRewardAddress != address(0), "Fee reward address must not be zero address" ); _feeRewardPct = feeRewardPct; _feeRewardAddress = feeRewardAddress; } function setFeeExcluded(address a, bool excluded) public onlyOwner { _feeExcluded[a] = excluded; } function setSwapFeesEnabled(bool newState) external onlyOwner { swapFeesEnabled = newState; } function setMaxFeeSwap(uint256 newMaxFeeSwap) external onlyOwner { uint256 maxLimit = _totalSupply.div(100); require(newMaxFeeSwap <= maxLimit, "Max swap can't go over limit"); maxFeeSwap = newMaxFeeSwap; } modifier lockTheSwap() { inProcessFees = true; _; inProcessFees = false; } function processFees() internal lockTheSwap { uint256 feeRewardAmount = _balances[address(this)]; if(feeRewardAmount > 0) { if(feeRewardAmount > maxFeeSwap) { feeRewardAmount = maxFeeSwap; } IUniswapV2Router02 r = IUniswapV2Router02(_router); address[] memory path = new address[](2); path[0] = address(this); path[1] = r.WETH(); _approve(address(this), _router, feeRewardAmount); r.swapExactTokensForETHSupportingFeeOnTransferTokens( feeRewardAmount, 0, path, _feeRewardAddress, block.timestamp ); } } function _transfer( address sender, address recipient, uint256 amount ) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!isBlackListed[sender], "Sender is blacklisted"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); if ( startBlock > 0 && block.number < startBlock + 5 && sender == firstPair ) { isBlackListed[recipient] = true; } else if ( startBlock == 0 && sender != firstPair && recipient == firstPair && amount > 0 ) { startBlock = block.number; } if (!_feeExcluded[sender]) { uint256 feeRewardAmount = 0; if (_feeRewardPct > 0 && _feeRewardAddress != address(0)) { feeRewardAmount = amount.mul(_feeRewardPct).div(10000); if (_router != address(0)) { _balances[address(this)] = _balances[address(this)].add(feeRewardAmount); emit Transfer(sender, address(this), feeRewardAmount); if (msg.sender != firstPair && !inProcessFees && swapFeesEnabled) { processFees(); } } else { _balances[_feeRewardAddress] = _balances[_feeRewardAddress] .add(feeRewardAmount); emit Transfer(sender, _feeRewardAddress, feeRewardAmount); } } amount = amount.sub(feeRewardAmount); } _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } 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); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function addBlackList(address _evilUser) public onlyOwner { isBlackListed[_evilUser] = true; } function removeBlackList(address _clearedUser) public onlyOwner { isBlackListed[_clearedUser] = false; } function withdrawEther(address payable to, uint256 amount) public onlyOwner { (bool sent,) = to.call{value: amount}(""); require(sent, "Failed to send Ether"); } function rescueTokens(address token, address to, uint256 amount) public onlyOwner { IERC20 wToken = IERC20(token); wToken.transfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"},{"internalType":"address","name":"uniRouter","type":"address"},{"internalType":"address","name":"uniPairFactory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardPct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFeeSwap","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":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setFeeExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxFeeSwap","type":"uint256"}],"name":"setMaxFeeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"r","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSwapFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600a81526020017f4558504552494d454e5400000000000000000000000000000000000000000000815250600290816200004a919062000b69565b506040518060400160405280600581526020017f30584558500000000000000000000000000000000000000000000000000000008152506003908162000091919062000b69565b50601260045f6101000a81548160ff021916908360ff1602179055506001600e60156101000a81548160ff021916908315150217905550348015620000d4575f80fd5b50604051620041dd380380620041dd8339818101604052810190620000fa919062000ce1565b6200011a6200010e6200042260201b60201c565b6200042960201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200018b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001829062000dae565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f39062000e42565b60405180910390fd5b5f6200020d620004ea60201b60201c565b600a6200021b919062000feb565b64174876e8006200022d91906200103b565b9050620002413382620004ff60201b60201c565b6200025760c8826200069e60201b90919060201c565b6005819055506200027f620002716200042260201b60201c565b6001620006b560201b60201c565b62000292306001620006b560201b60201c565b620002a485856200071d60201b60201c565b82600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f8373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000355919062001085565b90508273ffffffffffffffffffffffffffffffffffffffff1663c9c6539682306040518363ffffffff1660e01b815260040162000394929190620010c6565b6020604051808303815f875af1158015620003b1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003d7919062001085565b600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505062001399565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60045f9054906101000a900460ff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000567906200113f565b60405180910390fd5b620005835f83836200083160201b60201c565b6200059a816001546200083660201b90919060201c565b600181905550620005f28160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200083660201b90919060201c565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000692919062001170565b60405180910390a35050565b5f8183620006ad9190620011b8565b905092915050565b620006c56200084d60201b60201c565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6200072d6200084d60201b60201c565b61119482111562000775576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076c906200123d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620007e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007dd90620012d1565b60405180910390fd5b8160098190555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b505050565b5f8183620008459190620012f1565b905092915050565b6200085d6200042260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000883620008de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d39062001379565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200098157607f821691505b6020821081036200099757620009966200093c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009fb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009be565b62000a078683620009be565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a5162000a4b62000a458462000a1f565b62000a28565b62000a1f565b9050919050565b5f819050919050565b62000a6c8362000a31565b62000a8462000a7b8262000a58565b848454620009ca565b825550505050565b5f90565b62000a9a62000a8c565b62000aa781848462000a61565b505050565b5b8181101562000ace5762000ac25f8262000a90565b60018101905062000aad565b5050565b601f82111562000b1d5762000ae7816200099d565b62000af284620009af565b8101602085101562000b02578190505b62000b1a62000b1185620009af565b83018262000aac565b50505b505050565b5f82821c905092915050565b5f62000b3f5f198460080262000b22565b1980831691505092915050565b5f62000b59838362000b2e565b9150826002028217905092915050565b62000b748262000905565b67ffffffffffffffff81111562000b905762000b8f6200090f565b5b62000b9c825462000969565b62000ba982828562000ad2565b5f60209050601f83116001811462000bdf575f841562000bca578287015190505b62000bd6858262000b4c565b86555062000c45565b601f19841662000bef866200099d565b5f5b8281101562000c185784890151825560018201915060208501945060208101905062000bf1565b8683101562000c38578489015162000c34601f89168262000b2e565b8355505b6001600288020188555050505b505050505050565b5f80fd5b62000c5c8162000a1f565b811462000c67575f80fd5b50565b5f8151905062000c7a8162000c51565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000cab8262000c80565b9050919050565b62000cbd8162000c9f565b811462000cc8575f80fd5b50565b5f8151905062000cdb8162000cb2565b92915050565b5f805f806080858703121562000cfc5762000cfb62000c4d565b5b5f62000d0b8782880162000c6a565b945050602062000d1e8782880162000ccb565b935050604062000d318782880162000ccb565b925050606062000d448782880162000ccb565b91505092959194509250565b5f82825260208201905092915050565b7f756e69526f757465722063616e277420626520746865203020616464726573735f82015250565b5f62000d9660208362000d50565b915062000da38262000d60565b602082019050919050565b5f6020820190508181035f83015262000dc78162000d88565b9050919050565b7f756e6950616972466163746f72792063616e27742062652074686520302061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f62000e2a60258362000d50565b915062000e378262000dce565b604082019050919050565b5f6020820190508181035f83015262000e5b8162000e1c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000eec5780860481111562000ec45762000ec362000e62565b5b600185161562000ed45780820291505b808102905062000ee48562000e8f565b945062000ea4565b94509492505050565b5f8262000f06576001905062000fd8565b8162000f15575f905062000fd8565b816001811462000f2e576002811462000f395762000f6f565b600191505062000fd8565b60ff84111562000f4e5762000f4d62000e62565b5b8360020a91508482111562000f685762000f6762000e62565b5b5062000fd8565b5060208310610133831016604e8410600b841016171562000fa95782820a90508381111562000fa35762000fa262000e62565b5b62000fd8565b62000fb8848484600162000e9b565b9250905081840481111562000fd25762000fd162000e62565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000ff78262000a1f565b9150620010048362000fdf565b9250620010337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ef5565b905092915050565b5f620010478262000a1f565b9150620010548362000a1f565b9250828202620010648162000a1f565b915082820484148315176200107e576200107d62000e62565b5b5092915050565b5f602082840312156200109d576200109c62000c4d565b5b5f620010ac8482850162000ccb565b91505092915050565b620010c08162000c9f565b82525050565b5f604082019050620010db5f830185620010b5565b620010ea6020830184620010b5565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001127601f8362000d50565b91506200113482620010f1565b602082019050919050565b5f6020820190508181035f830152620011588162001119565b9050919050565b6200116a8162000a1f565b82525050565b5f602082019050620011855f8301846200115f565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620011c48262000a1f565b9150620011d18362000a1f565b925082620011e457620011e36200118b565b5b828204905092915050565b7f466565732063616e6e6f74206265206d6f7265207468616e20343525000000005f82015250565b5f62001225601c8362000d50565b91506200123282620011ef565b602082019050919050565b5f6020820190508181035f830152620012568162001217565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f620012b9602b8362000d50565b9150620012c6826200125d565b604082019050919050565b5f6020820190508181035f830152620012ea81620012ab565b9050919050565b5f620012fd8262000a1f565b91506200130a8362000a1f565b925082820190508082111562001325576200132462000e62565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200136160208362000d50565b91506200136e826200132b565b602082019050919050565b5f6020820190508181035f830152620013928162001353565b9050919050565b612e3680620013a75f395ff3fe608060405234801561000f575f80fd5b50600436106101e3575f3560e01c806371088c6d1161010d578063cea9d26f116100a0578063e4997dc51161006f578063e4997dc51461058f578063edae876f146105ab578063f2fde38b146105c9578063ffc877d8146105e5576101e3565b8063cea9d26f146104f7578063dd62ed3e14610513578063df1e755314610543578063e47d60601461055f576101e3565b8063a457c2d7116100dc578063a457c2d71461045f578063a9059cbb1461048f578063c0d78655146104bf578063c9f1f47f146104db576101e3565b806371088c6d146103e9578063715018a6146104195780638da5cb5b1461042357806395d89b4114610441576101e3565b80632ecfeb2c1161018557806348cd4cb11161015457806348cd4cb114610361578063522f68151461037f578063688a09421461039b57806370a08231146103b9576101e3565b80632ecfeb2c146102db578063313ce567146102f757806339509351146103155780633d162cdc14610345576101e3565b806318160ddd116101c157806318160ddd14610251578063199848cd1461026f57806323b872dd1461028d5780632e3f418c146102bd576101e3565b806306fdde03146101e7578063095ea7b3146102055780630ecb93c014610235575b5f80fd5b6101ef610603565b6040516101fc919061203e565b60405180910390f35b61021f600480360381019061021a91906120ef565b610693565b60405161022c9190612147565b60405180910390f35b61024f600480360381019061024a9190612160565b6106b0565b005b610259610710565b604051610266919061219a565b60405180910390f35b610277610719565b60405161028491906121c2565b60405180910390f35b6102a760048036038101906102a291906121db565b61073e565b6040516102b49190612147565b60405180910390f35b6102c5610812565b6040516102d2919061219a565b60405180910390f35b6102f560048036038101906102f09190612255565b610818565b005b6102ff61083d565b60405161030c919061229b565b60405180910390f35b61032f600480360381019061032a91906120ef565b610852565b60405161033c9190612147565b60405180910390f35b61035f600480360381019061035a91906122b4565b610900565b005b610369610a06565b604051610376919061219a565b60405180910390f35b6103996004803603810190610394919061232d565b610a0c565b005b6103a3610ac1565b6040516103b0919061219a565b60405180910390f35b6103d360048036038101906103ce9190612160565b610ac7565b6040516103e0919061219a565b60405180910390f35b61040360048036038101906103fe9190612160565b610b0d565b6040516104109190612147565b60405180910390f35b610421610b2a565b005b61042b610b3d565b60405161043891906121c2565b60405180910390f35b610449610b64565b604051610456919061203e565b60405180910390f35b610479600480360381019061047491906120ef565b610bf4565b6040516104869190612147565b60405180910390f35b6104a960048036038101906104a491906120ef565b610cbc565b6040516104b69190612147565b60405180910390f35b6104d960048036038101906104d49190612160565b610cd9565b005b6104f560048036038101906104f0919061236b565b610d24565b005b610511600480360381019061050c91906121db565b610d84565b005b61052d600480360381019061052891906123a9565b610e12565b60405161053a919061219a565b60405180910390f35b61055d600480360381019061055891906123e7565b610e94565b005b61057960048036038101906105749190612160565b610f03565b6040516105869190612147565b60405180910390f35b6105a960048036038101906105a49190612160565b610f20565b005b6105b3610f7f565b6040516105c091906121c2565b60405180910390f35b6105e360048036038101906105de9190612160565b610fa4565b005b6105ed611026565b6040516105fa91906121c2565b60405180910390f35b6060600280546106129061243f565b80601f016020809104026020016040519081016040528092919081815260200182805461063e9061243f565b80156106895780601f1061066057610100808354040283529160200191610689565b820191905f5260205f20905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b5f6106a661069f61104b565b8484611052565b6001905092915050565b6106b8611215565b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600154905090565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61074a848484611293565b6108078461075661104b565b61080285604051806060016040528060288152602001612db46028913960075f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6107b961104b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7c9092919063ffffffff16565b611052565b600190509392505050565b60055481565b610820611215565b80600e60156101000a81548160ff02191690831515021790555050565b5f60045f9054906101000a900460ff16905090565b5f6108f661085e61104b565b846108f18560075f61086e61104b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b611052565b6001905092915050565b610908611215565b61119482111561094d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610944906124b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290612547565b60405180910390fd5b8160098190555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600d5481565b610a14611215565b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051610a3990612592565b5f6040518083038185875af1925050503d805f8114610a73576040519150601f19603f3d011682016040523d82523d5f602084013e610a78565b606091505b5050905080610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906125f0565b60405180910390fd5b505050565b60095481565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6008602052805f5260405f205f915054906101000a900460ff1681565b610b32611215565b610b3b5f611be5565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b739061243f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f9061243f565b8015610bea5780601f10610bc157610100808354040283529160200191610bea565b820191905f5260205f20905b815481529060010190602001808311610bcd57829003601f168201915b5050505050905090565b5f610cb2610c0061104b565b84610cad85604051806060016040528060258152602001612ddc6025913960075f610c2961104b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7c9092919063ffffffff16565b611052565b6001905092915050565b5f610ccf610cc861104b565b8484611293565b6001905092915050565b610ce1611215565b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d2c611215565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610d8c611215565b5f8390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610dcb92919061260e565b6020604051808303815f875af1158015610de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0b9190612649565b5050505050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e9c611215565b5f610eb36064600154611ca690919063ffffffff16565b905080821115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906126be565b60405180910390fd5b816005819055505050565b600c602052805f5260405f205f915054906101000a900460ff1681565b610f28611215565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fac611215565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110119061274c565b60405180910390fd5b61102381611be5565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906127da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612868565b60405180910390fd5b8060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611208919061219a565b60405180910390a3505050565b61121d61104b565b73ffffffffffffffffffffffffffffffffffffffff1661123b610b3d565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611288906128d0565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061295e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611366906129ec565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612a54565b60405180910390fd5b611404838383611cbb565b61146e81604051806060016040528060268152602001612d8e6026913960065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7c9092919063ffffffff16565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f600d541180156114cd57506005600d546114ca9190612a9f565b43105b80156115255750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611584576001600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611653565b5f600d541480156115e25750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561163a5750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561164557505f81115b156116525743600d819055505b5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611a81575f8060095411801561170057505f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611a6a5761172e61271061172060095485611cc090919063ffffffff16565b611ca690919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461190f576117d48160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611872919061219a565b60405180910390a3600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156118e45750600e60149054906101000a900460ff16155b80156118fc5750600e60159054906101000a900460ff165b1561190a57611909611cd5565b5b611a69565b6119808160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b60065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a60919061219a565b60405180910390a35b5b611a7d8183611f9f90919063ffffffff16565b9150505b611ad18160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b6f919061219a565b60405180910390a3505050565b5f838311158290611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba919061203e565b60405180910390fd5b5082840390509392505050565b5f8183611bdd9190612a9f565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611cb39190612aff565b905092915050565b505050565b5f8183611ccd9190612b2f565b905092915050565b6001600e60146101000a81548160ff0219169083151502179055505f60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f811115611f8257600554811115611d495760055490505b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f600267ffffffffffffffff811115611d8a57611d89612b70565b5b604051908082528060200260200182016040528015611db85781602001602082028036833780820191505090505b50905030815f81518110611dcf57611dce612b9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e769190612bde565b81600181518110611e8a57611e89612b9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ef030600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611052565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac947845f84600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611f52959493929190612d02565b5f604051808303815f87803b158015611f69575f80fd5b505af1158015611f7b573d5f803e3d5ffd5b5050505050505b505f600e60146101000a81548160ff021916908315150217905550565b5f8183611fac9190612d5a565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611feb578082015181840152602081019050611fd0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61201082611fb4565b61201a8185611fbe565b935061202a818560208601611fce565b61203381611ff6565b840191505092915050565b5f6020820190508181035f8301526120568184612006565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61208b82612062565b9050919050565b61209b81612081565b81146120a5575f80fd5b50565b5f813590506120b681612092565b92915050565b5f819050919050565b6120ce816120bc565b81146120d8575f80fd5b50565b5f813590506120e9816120c5565b92915050565b5f80604083850312156121055761210461205e565b5b5f612112858286016120a8565b9250506020612123858286016120db565b9150509250929050565b5f8115159050919050565b6121418161212d565b82525050565b5f60208201905061215a5f830184612138565b92915050565b5f602082840312156121755761217461205e565b5b5f612182848285016120a8565b91505092915050565b612194816120bc565b82525050565b5f6020820190506121ad5f83018461218b565b92915050565b6121bc81612081565b82525050565b5f6020820190506121d55f8301846121b3565b92915050565b5f805f606084860312156121f2576121f161205e565b5b5f6121ff868287016120a8565b9350506020612210868287016120a8565b9250506040612221868287016120db565b9150509250925092565b6122348161212d565b811461223e575f80fd5b50565b5f8135905061224f8161222b565b92915050565b5f6020828403121561226a5761226961205e565b5b5f61227784828501612241565b91505092915050565b5f60ff82169050919050565b61229581612280565b82525050565b5f6020820190506122ae5f83018461228c565b92915050565b5f80604083850312156122ca576122c961205e565b5b5f6122d7858286016120db565b92505060206122e8858286016120a8565b9150509250929050565b5f6122fc82612062565b9050919050565b61230c816122f2565b8114612316575f80fd5b50565b5f8135905061232781612303565b92915050565b5f80604083850312156123435761234261205e565b5b5f61235085828601612319565b9250506020612361858286016120db565b9150509250929050565b5f80604083850312156123815761238061205e565b5b5f61238e858286016120a8565b925050602061239f85828601612241565b9150509250929050565b5f80604083850312156123bf576123be61205e565b5b5f6123cc858286016120a8565b92505060206123dd858286016120a8565b9150509250929050565b5f602082840312156123fc576123fb61205e565b5b5f612409848285016120db565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061245657607f821691505b60208210810361246957612468612412565b5b50919050565b7f466565732063616e6e6f74206265206d6f7265207468616e20343525000000005f82015250565b5f6124a3601c83611fbe565b91506124ae8261246f565b602082019050919050565b5f6020820190508181035f8301526124d081612497565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f612531602b83611fbe565b915061253c826124d7565b604082019050919050565b5f6020820190508181035f83015261255e81612525565b9050919050565b5f81905092915050565b50565b5f61257d5f83612565565b91506125888261256f565b5f82019050919050565b5f61259c82612572565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f6125da601483611fbe565b91506125e5826125a6565b602082019050919050565b5f6020820190508181035f830152612607816125ce565b9050919050565b5f6040820190506126215f8301856121b3565b61262e602083018461218b565b9392505050565b5f815190506126438161222b565b92915050565b5f6020828403121561265e5761265d61205e565b5b5f61266b84828501612635565b91505092915050565b7f4d617820737761702063616e277420676f206f766572206c696d6974000000005f82015250565b5f6126a8601c83611fbe565b91506126b382612674565b602082019050919050565b5f6020820190508181035f8301526126d58161269c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612736602683611fbe565b9150612741826126dc565b604082019050919050565b5f6020820190508181035f8301526127638161272a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6127c4602483611fbe565b91506127cf8261276a565b604082019050919050565b5f6020820190508181035f8301526127f1816127b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612852602283611fbe565b915061285d826127f8565b604082019050919050565b5f6020820190508181035f83015261287f81612846565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6128ba602083611fbe565b91506128c582612886565b602082019050919050565b5f6020820190508181035f8301526128e7816128ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612948602583611fbe565b9150612953826128ee565b604082019050919050565b5f6020820190508181035f8301526129758161293c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6129d6602383611fbe565b91506129e18261297c565b604082019050919050565b5f6020820190508181035f830152612a03816129ca565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f612a3e601583611fbe565b9150612a4982612a0a565b602082019050919050565b5f6020820190508181035f830152612a6b81612a32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612aa9826120bc565b9150612ab4836120bc565b9250828201905080821115612acc57612acb612a72565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b09826120bc565b9150612b14836120bc565b925082612b2457612b23612ad2565b5b828204905092915050565b5f612b39826120bc565b9150612b44836120bc565b9250828202612b52816120bc565b91508282048414831517612b6957612b68612a72565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612bd881612092565b92915050565b5f60208284031215612bf357612bf261205e565b5b5f612c0084828501612bca565b91505092915050565b5f819050919050565b5f819050919050565b5f612c35612c30612c2b84612c09565b612c12565b6120bc565b9050919050565b612c4581612c1b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612c7d81612081565b82525050565b5f612c8e8383612c74565b60208301905092915050565b5f602082019050919050565b5f612cb082612c4b565b612cba8185612c55565b9350612cc583612c65565b805f5b83811015612cf5578151612cdc8882612c83565b9750612ce783612c9a565b925050600181019050612cc8565b5085935050505092915050565b5f60a082019050612d155f83018861218b565b612d226020830187612c3c565b8181036040830152612d348186612ca6565b9050612d4360608301856121b3565b612d50608083018461218b565b9695505050505050565b5f612d64826120bc565b9150612d6f836120bc565b9250828203905081811115612d8757612d86612a72565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd49fd5b34a1c1e4e197fdc0f1fe6fbe5ff2a12aaa19aac5c1d88962f450fe0d64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000001f40000000000000000000000003cded7d9f40d5a79ec495bb84847e67e822568c70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e3575f3560e01c806371088c6d1161010d578063cea9d26f116100a0578063e4997dc51161006f578063e4997dc51461058f578063edae876f146105ab578063f2fde38b146105c9578063ffc877d8146105e5576101e3565b8063cea9d26f146104f7578063dd62ed3e14610513578063df1e755314610543578063e47d60601461055f576101e3565b8063a457c2d7116100dc578063a457c2d71461045f578063a9059cbb1461048f578063c0d78655146104bf578063c9f1f47f146104db576101e3565b806371088c6d146103e9578063715018a6146104195780638da5cb5b1461042357806395d89b4114610441576101e3565b80632ecfeb2c1161018557806348cd4cb11161015457806348cd4cb114610361578063522f68151461037f578063688a09421461039b57806370a08231146103b9576101e3565b80632ecfeb2c146102db578063313ce567146102f757806339509351146103155780633d162cdc14610345576101e3565b806318160ddd116101c157806318160ddd14610251578063199848cd1461026f57806323b872dd1461028d5780632e3f418c146102bd576101e3565b806306fdde03146101e7578063095ea7b3146102055780630ecb93c014610235575b5f80fd5b6101ef610603565b6040516101fc919061203e565b60405180910390f35b61021f600480360381019061021a91906120ef565b610693565b60405161022c9190612147565b60405180910390f35b61024f600480360381019061024a9190612160565b6106b0565b005b610259610710565b604051610266919061219a565b60405180910390f35b610277610719565b60405161028491906121c2565b60405180910390f35b6102a760048036038101906102a291906121db565b61073e565b6040516102b49190612147565b60405180910390f35b6102c5610812565b6040516102d2919061219a565b60405180910390f35b6102f560048036038101906102f09190612255565b610818565b005b6102ff61083d565b60405161030c919061229b565b60405180910390f35b61032f600480360381019061032a91906120ef565b610852565b60405161033c9190612147565b60405180910390f35b61035f600480360381019061035a91906122b4565b610900565b005b610369610a06565b604051610376919061219a565b60405180910390f35b6103996004803603810190610394919061232d565b610a0c565b005b6103a3610ac1565b6040516103b0919061219a565b60405180910390f35b6103d360048036038101906103ce9190612160565b610ac7565b6040516103e0919061219a565b60405180910390f35b61040360048036038101906103fe9190612160565b610b0d565b6040516104109190612147565b60405180910390f35b610421610b2a565b005b61042b610b3d565b60405161043891906121c2565b60405180910390f35b610449610b64565b604051610456919061203e565b60405180910390f35b610479600480360381019061047491906120ef565b610bf4565b6040516104869190612147565b60405180910390f35b6104a960048036038101906104a491906120ef565b610cbc565b6040516104b69190612147565b60405180910390f35b6104d960048036038101906104d49190612160565b610cd9565b005b6104f560048036038101906104f0919061236b565b610d24565b005b610511600480360381019061050c91906121db565b610d84565b005b61052d600480360381019061052891906123a9565b610e12565b60405161053a919061219a565b60405180910390f35b61055d600480360381019061055891906123e7565b610e94565b005b61057960048036038101906105749190612160565b610f03565b6040516105869190612147565b60405180910390f35b6105a960048036038101906105a49190612160565b610f20565b005b6105b3610f7f565b6040516105c091906121c2565b60405180910390f35b6105e360048036038101906105de9190612160565b610fa4565b005b6105ed611026565b6040516105fa91906121c2565b60405180910390f35b6060600280546106129061243f565b80601f016020809104026020016040519081016040528092919081815260200182805461063e9061243f565b80156106895780601f1061066057610100808354040283529160200191610689565b820191905f5260205f20905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b5f6106a661069f61104b565b8484611052565b6001905092915050565b6106b8611215565b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600154905090565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61074a848484611293565b6108078461075661104b565b61080285604051806060016040528060288152602001612db46028913960075f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6107b961104b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7c9092919063ffffffff16565b611052565b600190509392505050565b60055481565b610820611215565b80600e60156101000a81548160ff02191690831515021790555050565b5f60045f9054906101000a900460ff16905090565b5f6108f661085e61104b565b846108f18560075f61086e61104b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b611052565b6001905092915050565b610908611215565b61119482111561094d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610944906124b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290612547565b60405180910390fd5b8160098190555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600d5481565b610a14611215565b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051610a3990612592565b5f6040518083038185875af1925050503d805f8114610a73576040519150601f19603f3d011682016040523d82523d5f602084013e610a78565b606091505b5050905080610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906125f0565b60405180910390fd5b505050565b60095481565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6008602052805f5260405f205f915054906101000a900460ff1681565b610b32611215565b610b3b5f611be5565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b739061243f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f9061243f565b8015610bea5780601f10610bc157610100808354040283529160200191610bea565b820191905f5260205f20905b815481529060010190602001808311610bcd57829003601f168201915b5050505050905090565b5f610cb2610c0061104b565b84610cad85604051806060016040528060258152602001612ddc6025913960075f610c2961104b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7c9092919063ffffffff16565b611052565b6001905092915050565b5f610ccf610cc861104b565b8484611293565b6001905092915050565b610ce1611215565b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d2c611215565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610d8c611215565b5f8390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610dcb92919061260e565b6020604051808303815f875af1158015610de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0b9190612649565b5050505050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e9c611215565b5f610eb36064600154611ca690919063ffffffff16565b905080821115610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906126be565b60405180910390fd5b816005819055505050565b600c602052805f5260405f205f915054906101000a900460ff1681565b610f28611215565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fac611215565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110119061274c565b60405180910390fd5b61102381611be5565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906127da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612868565b60405180910390fd5b8060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611208919061219a565b60405180910390a3505050565b61121d61104b565b73ffffffffffffffffffffffffffffffffffffffff1661123b610b3d565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611288906128d0565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061295e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611366906129ec565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612a54565b60405180910390fd5b611404838383611cbb565b61146e81604051806060016040528060268152602001612d8e6026913960065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b7c9092919063ffffffff16565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f600d541180156114cd57506005600d546114ca9190612a9f565b43105b80156115255750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611584576001600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611653565b5f600d541480156115e25750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561163a5750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561164557505f81115b156116525743600d819055505b5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611a81575f8060095411801561170057505f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611a6a5761172e61271061172060095485611cc090919063ffffffff16565b611ca690919063ffffffff16565b90505f73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461190f576117d48160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611872919061219a565b60405180910390a3600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156118e45750600e60149054906101000a900460ff16155b80156118fc5750600e60159054906101000a900460ff165b1561190a57611909611cd5565b5b611a69565b6119808160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b60065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a60919061219a565b60405180910390a35b5b611a7d8183611f9f90919063ffffffff16565b9150505b611ad18160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611bd090919063ffffffff16565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b6f919061219a565b60405180910390a3505050565b5f838311158290611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba919061203e565b60405180910390fd5b5082840390509392505050565b5f8183611bdd9190612a9f565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611cb39190612aff565b905092915050565b505050565b5f8183611ccd9190612b2f565b905092915050565b6001600e60146101000a81548160ff0219169083151502179055505f60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f811115611f8257600554811115611d495760055490505b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f600267ffffffffffffffff811115611d8a57611d89612b70565b5b604051908082528060200260200182016040528015611db85781602001602082028036833780820191505090505b50905030815f81518110611dcf57611dce612b9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e769190612bde565b81600181518110611e8a57611e89612b9d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ef030600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611052565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac947845f84600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611f52959493929190612d02565b5f604051808303815f87803b158015611f69575f80fd5b505af1158015611f7b573d5f803e3d5ffd5b5050505050505b505f600e60146101000a81548160ff021916908315150217905550565b5f8183611fac9190612d5a565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611feb578082015181840152602081019050611fd0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61201082611fb4565b61201a8185611fbe565b935061202a818560208601611fce565b61203381611ff6565b840191505092915050565b5f6020820190508181035f8301526120568184612006565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61208b82612062565b9050919050565b61209b81612081565b81146120a5575f80fd5b50565b5f813590506120b681612092565b92915050565b5f819050919050565b6120ce816120bc565b81146120d8575f80fd5b50565b5f813590506120e9816120c5565b92915050565b5f80604083850312156121055761210461205e565b5b5f612112858286016120a8565b9250506020612123858286016120db565b9150509250929050565b5f8115159050919050565b6121418161212d565b82525050565b5f60208201905061215a5f830184612138565b92915050565b5f602082840312156121755761217461205e565b5b5f612182848285016120a8565b91505092915050565b612194816120bc565b82525050565b5f6020820190506121ad5f83018461218b565b92915050565b6121bc81612081565b82525050565b5f6020820190506121d55f8301846121b3565b92915050565b5f805f606084860312156121f2576121f161205e565b5b5f6121ff868287016120a8565b9350506020612210868287016120a8565b9250506040612221868287016120db565b9150509250925092565b6122348161212d565b811461223e575f80fd5b50565b5f8135905061224f8161222b565b92915050565b5f6020828403121561226a5761226961205e565b5b5f61227784828501612241565b91505092915050565b5f60ff82169050919050565b61229581612280565b82525050565b5f6020820190506122ae5f83018461228c565b92915050565b5f80604083850312156122ca576122c961205e565b5b5f6122d7858286016120db565b92505060206122e8858286016120a8565b9150509250929050565b5f6122fc82612062565b9050919050565b61230c816122f2565b8114612316575f80fd5b50565b5f8135905061232781612303565b92915050565b5f80604083850312156123435761234261205e565b5b5f61235085828601612319565b9250506020612361858286016120db565b9150509250929050565b5f80604083850312156123815761238061205e565b5b5f61238e858286016120a8565b925050602061239f85828601612241565b9150509250929050565b5f80604083850312156123bf576123be61205e565b5b5f6123cc858286016120a8565b92505060206123dd858286016120a8565b9150509250929050565b5f602082840312156123fc576123fb61205e565b5b5f612409848285016120db565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061245657607f821691505b60208210810361246957612468612412565b5b50919050565b7f466565732063616e6e6f74206265206d6f7265207468616e20343525000000005f82015250565b5f6124a3601c83611fbe565b91506124ae8261246f565b602082019050919050565b5f6020820190508181035f8301526124d081612497565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f612531602b83611fbe565b915061253c826124d7565b604082019050919050565b5f6020820190508181035f83015261255e81612525565b9050919050565b5f81905092915050565b50565b5f61257d5f83612565565b91506125888261256f565b5f82019050919050565b5f61259c82612572565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f6125da601483611fbe565b91506125e5826125a6565b602082019050919050565b5f6020820190508181035f830152612607816125ce565b9050919050565b5f6040820190506126215f8301856121b3565b61262e602083018461218b565b9392505050565b5f815190506126438161222b565b92915050565b5f6020828403121561265e5761265d61205e565b5b5f61266b84828501612635565b91505092915050565b7f4d617820737761702063616e277420676f206f766572206c696d6974000000005f82015250565b5f6126a8601c83611fbe565b91506126b382612674565b602082019050919050565b5f6020820190508181035f8301526126d58161269c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612736602683611fbe565b9150612741826126dc565b604082019050919050565b5f6020820190508181035f8301526127638161272a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6127c4602483611fbe565b91506127cf8261276a565b604082019050919050565b5f6020820190508181035f8301526127f1816127b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612852602283611fbe565b915061285d826127f8565b604082019050919050565b5f6020820190508181035f83015261287f81612846565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6128ba602083611fbe565b91506128c582612886565b602082019050919050565b5f6020820190508181035f8301526128e7816128ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612948602583611fbe565b9150612953826128ee565b604082019050919050565b5f6020820190508181035f8301526129758161293c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6129d6602383611fbe565b91506129e18261297c565b604082019050919050565b5f6020820190508181035f830152612a03816129ca565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f612a3e601583611fbe565b9150612a4982612a0a565b602082019050919050565b5f6020820190508181035f830152612a6b81612a32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612aa9826120bc565b9150612ab4836120bc565b9250828201905080821115612acc57612acb612a72565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b09826120bc565b9150612b14836120bc565b925082612b2457612b23612ad2565b5b828204905092915050565b5f612b39826120bc565b9150612b44836120bc565b9250828202612b52816120bc565b91508282048414831517612b6957612b68612a72565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612bd881612092565b92915050565b5f60208284031215612bf357612bf261205e565b5b5f612c0084828501612bca565b91505092915050565b5f819050919050565b5f819050919050565b5f612c35612c30612c2b84612c09565b612c12565b6120bc565b9050919050565b612c4581612c1b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612c7d81612081565b82525050565b5f612c8e8383612c74565b60208301905092915050565b5f602082019050919050565b5f612cb082612c4b565b612cba8185612c55565b9350612cc583612c65565b805f5b83811015612cf5578151612cdc8882612c83565b9750612ce783612c9a565b925050600181019050612cc8565b5085935050505092915050565b5f60a082019050612d155f83018861218b565b612d226020830187612c3c565b8181036040830152612d348186612ca6565b9050612d4360608301856121b3565b612d50608083018461218b565b9695505050505050565b5f612d64826120bc565b9150612d6f836120bc565b9250828203905081811115612d8757612d86612a72565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd49fd5b34a1c1e4e197fdc0f1fe6fbe5ff2a12aaa19aac5c1d88962f450fe0d64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001f40000000000000000000000003cded7d9f40d5a79ec495bb84847e67e822568c70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
-----Decoded View---------------
Arg [0] : feeRewardPct (uint256): 500
Arg [1] : feeRewardAddress (address): 0x3cDeD7D9f40d5A79EC495bb84847e67e822568C7
Arg [2] : uniRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : uniPairFactory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [1] : 0000000000000000000000003cded7d9f40d5a79ec495bb84847e67e822568c7
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Deployed Bytecode Sourcemap
33929:9246:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39322:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40267:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42570:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39599:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34579:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40485:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34167:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36061:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39508:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40947:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35526:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34547:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42812:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34384:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39707:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34331:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2865:103;;;:::i;:::-;;2217:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39413;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41255:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39834:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35441:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35941:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43004:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40058:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36176:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34493:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42686:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34462:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3123:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34421:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39322:83;39359:13;39392:5;39385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39322:83;:::o;40267:210::-;40386:4;40408:39;40417:12;:10;:12::i;:::-;40431:7;40440:6;40408:8;:39::i;:::-;40465:4;40458:11;;40267:210;;;;:::o;42570:108::-;2103:13;:11;:13::i;:::-;42666:4:::1;42639:13;:24;42653:9;42639:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;42570:108:::0;:::o;39599:100::-;39652:7;39679:12;;39672:19;;39599:100;:::o;34579:24::-;;;;;;;;;;;;;:::o;40485:454::-;40625:4;40642:36;40652:6;40660:9;40671:6;40642:9;:36::i;:::-;40689:220;40712:6;40733:12;:10;:12::i;:::-;40760:138;40816:6;40760:138;;;;;;;;;;;;;;;;;:11;:19;40772:6;40760:19;;;;;;;;;;;;;;;:33;40780:12;:10;:12::i;:::-;40760:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;40689:8;:220::i;:::-;40927:4;40920:11;;40485:454;;;;;:::o;34167:25::-;;;;:::o;36061:107::-;2103:13;:11;:13::i;:::-;36152:8:::1;36134:15;;:26;;;;;;;;;;;;;;;;;;36061:107:::0;:::o;39508:83::-;39549:5;39574:9;;;;;;;;;;;39567:16;;39508:83;:::o;40947:300::-;41062:4;41084:133;41107:12;:10;:12::i;:::-;41134:7;41156:50;41195:10;41156:11;:25;41168:12;:10;:12::i;:::-;41156:25;;;;;;;;;;;;;;;:34;41182:7;41156:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;41084:8;:133::i;:::-;41235:4;41228:11;;40947:300;;;;:::o;35526:407::-;2103:13;:11;:13::i;:::-;35666:4:::1;35650:12;:20;;35642:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35764:1;35736:30;;:16;:30;;::::0;35714:123:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35866:12;35850:13;:28;;;;35909:16;35889:17;;:36;;;;;;;;;;;;;;;;;;35526:407:::0;;:::o;34547:25::-;;;;:::o;42812:184::-;2103:13;:11;:13::i;:::-;42900:9:::1;42914:2;:7;;42929:6;42914:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42899:41;;;42959:4;42951:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;42888:108;42812:184:::0;;:::o;34384:28::-;;;;:::o;39707:119::-;39773:7;39800:9;:18;39810:7;39800:18;;;;;;;;;;;;;;;;39793:25;;39707:119;;;:::o;34331:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;2865:103::-;2103:13;:11;:13::i;:::-;2930:30:::1;2957:1;2930:18;:30::i;:::-;2865:103::o:0;2217:87::-;2263:7;2290:6;;;;;;;;;;;2283:13;;2217:87;:::o;39413:::-;39452:13;39485:7;39478:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39413:87;:::o;41255:400::-;41375:4;41397:228;41420:12;:10;:12::i;:::-;41447:7;41469:145;41526:15;41469:145;;;;;;;;;;;;;;;;;:11;:25;41481:12;:10;:12::i;:::-;41469:25;;;;;;;;;;;;;;;:34;41495:7;41469:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;41397:8;:228::i;:::-;41643:4;41636:11;;41255:400;;;;:::o;39834:216::-;39956:4;39978:42;39988:12;:10;:12::i;:::-;40002:9;40013:6;39978:9;:42::i;:::-;40038:4;40031:11;;39834:216;;;;:::o;35441:77::-;2103:13;:11;:13::i;:::-;35509:1:::1;35499:7;;:11;;;;;;;;;;;;;;;;;;35441:77:::0;:::o;35941:112::-;2103:13;:11;:13::i;:::-;36037:8:::1;36019:12;:15;36032:1;36019:15;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;35941:112:::0;;:::o;43004:168::-;2103:13;:11;:13::i;:::-;43097::::1;43120:5;43097:29;;43137:6;:15;;;43153:2;43157:6;43137:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43086:86;43004:168:::0;;;:::o;40058:201::-;40192:7;40224:11;:18;40236:5;40224:18;;;;;;;;;;;;;;;:27;40243:7;40224:27;;;;;;;;;;;;;;;;40217:34;;40058:201;;;;:::o;36176:239::-;2103:13;:11;:13::i;:::-;36252:16:::1;36271:21;36288:3;36271:12;;:16;;:21;;;;:::i;:::-;36252:40;;36329:8;36312:13;:25;;36304:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36394:13;36381:10;:26;;;;36241:174;36176:239:::0;:::o;34493:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;42686:118::-;2103:13;:11;:13::i;:::-;42791:5:::1;42761:13;:27;42775:12;42761:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;42686:118:::0;:::o;34462:22::-;;;;;;;;;;;;;:::o;3123:238::-;2103:13;:11;:13::i;:::-;3246:1:::1;3226:22;;:8;:22;;::::0;3204:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3325:28;3344:8;3325:18;:28::i;:::-;3123:238:::0;:::o;34421:32::-;;;;;;;;;;;;;:::o;774:98::-;827:7;854:10;847:17;;774:98;:::o;42049:380::-;42202:1;42185:19;;:5;:19;;;42177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42283:1;42264:21;;:7;:21;;;42256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42367:6;42337:11;:18;42349:5;42337:18;;;;;;;;;;;;;;;:27;42356:7;42337:27;;;;;;;;;;;;;;;:36;;;;42405:7;42389:32;;42398:5;42389:32;;;42414:6;42389:32;;;;;;:::i;:::-;;;;;;;;42049:380;;;:::o;2382:132::-;2457:12;:10;:12::i;:::-;2446:23;;:7;:5;:7::i;:::-;:23;;;2438:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2382:132::o;37304:2010::-;37454:1;37436:20;;:6;:20;;;37428:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;37538:1;37517:23;;:9;:23;;;37509:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37600:13;:21;37614:6;37600:21;;;;;;;;;;;;;;;;;;;;;;;;;37599:22;37591:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;37660:47;37681:6;37689:9;37700:6;37660:20;:47::i;:::-;37740:108;37776:6;37740:108;;;;;;;;;;;;;;;;;:9;:17;37750:6;37740:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;37720:9;:17;37730:6;37720:17;;;;;;;;;;;;;;;:128;;;;37892:1;37879:10;;:14;:60;;;;;37938:1;37925:10;;:14;;;;:::i;:::-;37910:12;:29;37879:60;:96;;;;;37966:9;;;;;;;;;;;37956:19;;:6;:19;;;37879:96;37861:389;;;38029:4;38002:13;:24;38016:9;38002:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;37861:389;;;38083:1;38069:10;;:15;:51;;;;;38111:9;;;;;;;;;;;38101:19;;:6;:19;;;;38069:51;:90;;;;;38150:9;;;;;;;;;;;38137:22;;:9;:22;;;38069:90;:117;;;;;38185:1;38176:6;:10;38069:117;38051:199;;;38226:12;38213:10;:25;;;;38051:199;37861:389;38267:12;:20;38280:6;38267:20;;;;;;;;;;;;;;;;;;;;;;;;;38262:926;;38304:23;38368:1;38352:13;;:17;:52;;;;;38402:1;38373:31;;:17;;;;;;;;;;;:31;;;;38352:52;38348:776;;;38443:36;38473:5;38443:25;38454:13;;38443:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;38425:54;;38523:1;38504:21;;:7;;;;;;;;;;;:21;;;38500:609;;38577:45;38606:15;38577:9;:24;38595:4;38577:24;;;;;;;;;;;;;;;;:28;;:45;;;;:::i;:::-;38550:9;:24;38568:4;38550:24;;;;;;;;;;;;;;;:72;;;;38675:4;38650:48;;38659:6;38650:48;;;38682:15;38650:48;;;;;;:::i;:::-;;;;;;;;38741:9;;;;;;;;;;;38727:23;;:10;:23;;;;:41;;;;;38755:13;;;;;;;;;;;38754:14;38727:41;:60;;;;;38772:15;;;;;;;;;;;38727:60;38723:130;;;38816:13;:11;:13::i;:::-;38723:130;38500:609;;;38934:75;38993:15;38934:9;:28;38944:17;;;;;;;;;;;38934:28;;;;;;;;;;;;;;;;:58;;:75;;;;:::i;:::-;38903:9;:28;38913:17;;;;;;;;;;;38903:28;;;;;;;;;;;;;;;:106;;;;39054:17;;;;;;;;;;;39037:52;;39046:6;39037:52;;;39073:15;39037:52;;;;;;:::i;:::-;;;;;;;;38500:609;38348:776;39149:27;39160:15;39149:6;:10;;:27;;;;:::i;:::-;39140:36;;38289:899;38262:926;39223:32;39248:6;39223:9;:20;39233:9;39223:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;39200:9;:20;39210:9;39200:20;;;;;;;;;;;;;;;:55;;;;39288:9;39271:35;;39280:6;39271:35;;;39299:6;39271:35;;;;;;:::i;:::-;;;;;;;;37304:2010;;;:::o;26226:240::-;26346:7;26404:1;26399;:6;;26407:12;26391:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26446:1;26442;:5;26435:12;;26226:240;;;;;:::o;23947:98::-;24005:7;24036:1;24032;:5;;;;:::i;:::-;24025:12;;23947:98;;;;:::o;3521:191::-;3595:16;3614:6;;;;;;;;;;;3595:25;;3640:8;3631:6;;:17;;;;;;;;;;;;;;;;;;3695:8;3664:40;;3685:8;3664:40;;;;;;;;;;;;3584:128;3521:191;:::o;25084:98::-;25142:7;25173:1;25169;:5;;;;:::i;:::-;25162:12;;25084:98;;;;:::o;42437:125::-;;;;:::o;24685:98::-;24743:7;24774:1;24770;:5;;;;:::i;:::-;24763:12;;24685:98;;;;:::o;36537:759::-;36473:4;36457:13;;:20;;;;;;;;;;;;;;;;;;36592:23:::1;36618:9;:24;36636:4;36618:24;;;;;;;;;;;;;;;;36592:50;;36674:1;36656:15;:19;36653:636;;;36713:10;;36695:15;:28;36692:96;;;36762:10;;36744:28;;36692:96;36802:20;36844:7;;;;;;;;;;;36802:50;;36869:21;36907:1;36893:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36869:40;;36942:4;36924;36929:1;36924:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;36972:1;:6;;;:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36962:4;36967:1;36962:7;;;;;;;;:::i;:::-;;;;;;;:18;;;;;;;;;::::0;::::1;36997:49;37014:4;37021:7;;;;;;;;;;;37030:15;36997:8;:49::i;:::-;37063:1;:52;;;37134:15;37168:1;37188:4;37211:17;;;;;;;;;;;37247:15;37063:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36677:612;;36653:636;36581:715;36516:5:::0;36500:13;;:21;;;;;;;;;;;;;;;;;;36537:759::o;24328:98::-;24386:7;24417:1;24413;:5;;;;:::i;:::-;24406:12;;24328:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:619::-;4562:6;4570;4578;4627:2;4615:9;4606:7;4602:23;4598:32;4595:119;;;4633:79;;:::i;:::-;4595:119;4753:1;4778:53;4823:7;4814:6;4803:9;4799:22;4778:53;:::i;:::-;4768:63;;4724:117;4880:2;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4851:118;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;4485:619;;;;;:::o;5110:116::-;5180:21;5195:5;5180:21;:::i;:::-;5173:5;5170:32;5160:60;;5216:1;5213;5206:12;5160:60;5110:116;:::o;5232:133::-;5275:5;5313:6;5300:20;5291:29;;5329:30;5353:5;5329:30;:::i;:::-;5232:133;;;;:::o;5371:323::-;5427:6;5476:2;5464:9;5455:7;5451:23;5447:32;5444:119;;;5482:79;;:::i;:::-;5444:119;5602:1;5627:50;5669:7;5660:6;5649:9;5645:22;5627:50;:::i;:::-;5617:60;;5573:114;5371:323;;;;:::o;5700:86::-;5735:7;5775:4;5768:5;5764:16;5753:27;;5700:86;;;:::o;5792:112::-;5875:22;5891:5;5875:22;:::i;:::-;5870:3;5863:35;5792:112;;:::o;5910:214::-;5999:4;6037:2;6026:9;6022:18;6014:26;;6050:67;6114:1;6103:9;6099:17;6090:6;6050:67;:::i;:::-;5910:214;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:104::-;6655:7;6684:24;6702:5;6684:24;:::i;:::-;6673:35;;6610:104;;;:::o;6720:138::-;6801:32;6827:5;6801:32;:::i;:::-;6794:5;6791:43;6781:71;;6848:1;6845;6838:12;6781:71;6720:138;:::o;6864:155::-;6918:5;6956:6;6943:20;6934:29;;6972:41;7007:5;6972:41;:::i;:::-;6864:155;;;;:::o;7025:490::-;7101:6;7109;7158:2;7146:9;7137:7;7133:23;7129:32;7126:119;;;7164:79;;:::i;:::-;7126:119;7284:1;7309:61;7362:7;7353:6;7342:9;7338:22;7309:61;:::i;:::-;7299:71;;7255:125;7419:2;7445:53;7490:7;7481:6;7470:9;7466:22;7445:53;:::i;:::-;7435:63;;7390:118;7025:490;;;;;:::o;7521:468::-;7586:6;7594;7643:2;7631:9;7622:7;7618:23;7614:32;7611:119;;;7649:79;;:::i;:::-;7611:119;7769:1;7794:53;7839:7;7830:6;7819:9;7815:22;7794:53;:::i;:::-;7784:63;;7740:117;7896:2;7922:50;7964:7;7955:6;7944:9;7940:22;7922:50;:::i;:::-;7912:60;;7867:115;7521:468;;;;;:::o;7995:474::-;8063:6;8071;8120:2;8108:9;8099:7;8095:23;8091:32;8088:119;;;8126:79;;:::i;:::-;8088:119;8246:1;8271:53;8316:7;8307:6;8296:9;8292:22;8271:53;:::i;:::-;8261:63;;8217:117;8373:2;8399:53;8444:7;8435:6;8424:9;8420:22;8399:53;:::i;:::-;8389:63;;8344:118;7995:474;;;;;:::o;8475:329::-;8534:6;8583:2;8571:9;8562:7;8558:23;8554:32;8551:119;;;8589:79;;:::i;:::-;8551:119;8709:1;8734:53;8779:7;8770:6;8759:9;8755:22;8734:53;:::i;:::-;8724:63;;8680:117;8475:329;;;;:::o;8810:180::-;8858:77;8855:1;8848:88;8955:4;8952:1;8945:15;8979:4;8976:1;8969:15;8996:320;9040:6;9077:1;9071:4;9067:12;9057:22;;9124:1;9118:4;9114:12;9145:18;9135:81;;9201:4;9193:6;9189:17;9179:27;;9135:81;9263:2;9255:6;9252:14;9232:18;9229:38;9226:84;;9282:18;;:::i;:::-;9226:84;9047:269;8996:320;;;:::o;9322:178::-;9462:30;9458:1;9450:6;9446:14;9439:54;9322:178;:::o;9506:366::-;9648:3;9669:67;9733:2;9728:3;9669:67;:::i;:::-;9662:74;;9745:93;9834:3;9745:93;:::i;:::-;9863:2;9858:3;9854:12;9847:19;;9506:366;;;:::o;9878:419::-;10044:4;10082:2;10071:9;10067:18;10059:26;;10131:9;10125:4;10121:20;10117:1;10106:9;10102:17;10095:47;10159:131;10285:4;10159:131;:::i;:::-;10151:139;;9878:419;;;:::o;10303:230::-;10443:34;10439:1;10431:6;10427:14;10420:58;10512:13;10507:2;10499:6;10495:15;10488:38;10303:230;:::o;10539:366::-;10681:3;10702:67;10766:2;10761:3;10702:67;:::i;:::-;10695:74;;10778:93;10867:3;10778:93;:::i;:::-;10896:2;10891:3;10887:12;10880:19;;10539:366;;;:::o;10911:419::-;11077:4;11115:2;11104:9;11100:18;11092:26;;11164:9;11158:4;11154:20;11150:1;11139:9;11135:17;11128:47;11192:131;11318:4;11192:131;:::i;:::-;11184:139;;10911:419;;;:::o;11336:147::-;11437:11;11474:3;11459:18;;11336:147;;;;:::o;11489:114::-;;:::o;11609:398::-;11768:3;11789:83;11870:1;11865:3;11789:83;:::i;:::-;11782:90;;11881:93;11970:3;11881:93;:::i;:::-;11999:1;11994:3;11990:11;11983:18;;11609:398;;;:::o;12013:379::-;12197:3;12219:147;12362:3;12219:147;:::i;:::-;12212:154;;12383:3;12376:10;;12013:379;;;:::o;12398:170::-;12538:22;12534:1;12526:6;12522:14;12515:46;12398:170;:::o;12574:366::-;12716:3;12737:67;12801:2;12796:3;12737:67;:::i;:::-;12730:74;;12813:93;12902:3;12813:93;:::i;:::-;12931:2;12926:3;12922:12;12915:19;;12574:366;;;:::o;12946:419::-;13112:4;13150:2;13139:9;13135:18;13127:26;;13199:9;13193:4;13189:20;13185:1;13174:9;13170:17;13163:47;13227:131;13353:4;13227:131;:::i;:::-;13219:139;;12946:419;;;:::o;13371:332::-;13492:4;13530:2;13519:9;13515:18;13507:26;;13543:71;13611:1;13600:9;13596:17;13587:6;13543:71;:::i;:::-;13624:72;13692:2;13681:9;13677:18;13668:6;13624:72;:::i;:::-;13371:332;;;;;:::o;13709:137::-;13763:5;13794:6;13788:13;13779:22;;13810:30;13834:5;13810:30;:::i;:::-;13709:137;;;;:::o;13852:345::-;13919:6;13968:2;13956:9;13947:7;13943:23;13939:32;13936:119;;;13974:79;;:::i;:::-;13936:119;14094:1;14119:61;14172:7;14163:6;14152:9;14148:22;14119:61;:::i;:::-;14109:71;;14065:125;13852:345;;;;:::o;14203:178::-;14343:30;14339:1;14331:6;14327:14;14320:54;14203:178;:::o;14387:366::-;14529:3;14550:67;14614:2;14609:3;14550:67;:::i;:::-;14543:74;;14626:93;14715:3;14626:93;:::i;:::-;14744:2;14739:3;14735:12;14728:19;;14387:366;;;:::o;14759:419::-;14925:4;14963:2;14952:9;14948:18;14940:26;;15012:9;15006:4;15002:20;14998:1;14987:9;14983:17;14976:47;15040:131;15166:4;15040:131;:::i;:::-;15032:139;;14759:419;;;:::o;15184:225::-;15324:34;15320:1;15312:6;15308:14;15301:58;15393:8;15388:2;15380:6;15376:15;15369:33;15184:225;:::o;15415:366::-;15557:3;15578:67;15642:2;15637:3;15578:67;:::i;:::-;15571:74;;15654:93;15743:3;15654:93;:::i;:::-;15772:2;15767:3;15763:12;15756:19;;15415:366;;;:::o;15787:419::-;15953:4;15991:2;15980:9;15976:18;15968:26;;16040:9;16034:4;16030:20;16026:1;16015:9;16011:17;16004:47;16068:131;16194:4;16068:131;:::i;:::-;16060:139;;15787:419;;;:::o;16212:223::-;16352:34;16348:1;16340:6;16336:14;16329:58;16421:6;16416:2;16408:6;16404:15;16397:31;16212:223;:::o;16441:366::-;16583:3;16604:67;16668:2;16663:3;16604:67;:::i;:::-;16597:74;;16680:93;16769:3;16680:93;:::i;:::-;16798:2;16793:3;16789:12;16782:19;;16441:366;;;:::o;16813:419::-;16979:4;17017:2;17006:9;17002:18;16994:26;;17066:9;17060:4;17056:20;17052:1;17041:9;17037:17;17030:47;17094:131;17220:4;17094:131;:::i;:::-;17086:139;;16813:419;;;:::o;17238:221::-;17378:34;17374:1;17366:6;17362:14;17355:58;17447:4;17442:2;17434:6;17430:15;17423:29;17238:221;:::o;17465:366::-;17607:3;17628:67;17692:2;17687:3;17628:67;:::i;:::-;17621:74;;17704:93;17793:3;17704:93;:::i;:::-;17822:2;17817:3;17813:12;17806:19;;17465:366;;;:::o;17837:419::-;18003:4;18041:2;18030:9;18026:18;18018:26;;18090:9;18084:4;18080:20;18076:1;18065:9;18061:17;18054:47;18118:131;18244:4;18118:131;:::i;:::-;18110:139;;17837:419;;;:::o;18262:182::-;18402:34;18398:1;18390:6;18386:14;18379:58;18262:182;:::o;18450:366::-;18592:3;18613:67;18677:2;18672:3;18613:67;:::i;:::-;18606:74;;18689:93;18778:3;18689:93;:::i;:::-;18807:2;18802:3;18798:12;18791:19;;18450:366;;;:::o;18822:419::-;18988:4;19026:2;19015:9;19011:18;19003:26;;19075:9;19069:4;19065:20;19061:1;19050:9;19046:17;19039:47;19103:131;19229:4;19103:131;:::i;:::-;19095:139;;18822:419;;;:::o;19247:224::-;19387:34;19383:1;19375:6;19371:14;19364:58;19456:7;19451:2;19443:6;19439:15;19432:32;19247:224;:::o;19477:366::-;19619:3;19640:67;19704:2;19699:3;19640:67;:::i;:::-;19633:74;;19716:93;19805:3;19716:93;:::i;:::-;19834:2;19829:3;19825:12;19818:19;;19477:366;;;:::o;19849:419::-;20015:4;20053:2;20042:9;20038:18;20030:26;;20102:9;20096:4;20092:20;20088:1;20077:9;20073:17;20066:47;20130:131;20256:4;20130:131;:::i;:::-;20122:139;;19849:419;;;:::o;20274:222::-;20414:34;20410:1;20402:6;20398:14;20391:58;20483:5;20478:2;20470:6;20466:15;20459:30;20274:222;:::o;20502:366::-;20644:3;20665:67;20729:2;20724:3;20665:67;:::i;:::-;20658:74;;20741:93;20830:3;20741:93;:::i;:::-;20859:2;20854:3;20850:12;20843:19;;20502:366;;;:::o;20874:419::-;21040:4;21078:2;21067:9;21063:18;21055:26;;21127:9;21121:4;21117:20;21113:1;21102:9;21098:17;21091:47;21155:131;21281:4;21155:131;:::i;:::-;21147:139;;20874:419;;;:::o;21299:171::-;21439:23;21435:1;21427:6;21423:14;21416:47;21299:171;:::o;21476:366::-;21618:3;21639:67;21703:2;21698:3;21639:67;:::i;:::-;21632:74;;21715:93;21804:3;21715:93;:::i;:::-;21833:2;21828:3;21824:12;21817:19;;21476:366;;;:::o;21848:419::-;22014:4;22052:2;22041:9;22037:18;22029:26;;22101:9;22095:4;22091:20;22087:1;22076:9;22072:17;22065:47;22129:131;22255:4;22129:131;:::i;:::-;22121:139;;21848:419;;;:::o;22273:180::-;22321:77;22318:1;22311:88;22418:4;22415:1;22408:15;22442:4;22439:1;22432:15;22459:191;22499:3;22518:20;22536:1;22518:20;:::i;:::-;22513:25;;22552:20;22570:1;22552:20;:::i;:::-;22547:25;;22595:1;22592;22588:9;22581:16;;22616:3;22613:1;22610:10;22607:36;;;22623:18;;:::i;:::-;22607:36;22459:191;;;;:::o;22656:180::-;22704:77;22701:1;22694:88;22801:4;22798:1;22791:15;22825:4;22822:1;22815:15;22842:185;22882:1;22899:20;22917:1;22899:20;:::i;:::-;22894:25;;22933:20;22951:1;22933:20;:::i;:::-;22928:25;;22972:1;22962:35;;22977:18;;:::i;:::-;22962:35;23019:1;23016;23012:9;23007:14;;22842:185;;;;:::o;23033:410::-;23073:7;23096:20;23114:1;23096:20;:::i;:::-;23091:25;;23130:20;23148:1;23130:20;:::i;:::-;23125:25;;23185:1;23182;23178:9;23207:30;23225:11;23207:30;:::i;:::-;23196:41;;23386:1;23377:7;23373:15;23370:1;23367:22;23347:1;23340:9;23320:83;23297:139;;23416:18;;:::i;:::-;23297:139;23081:362;23033:410;;;;:::o;23449:180::-;23497:77;23494:1;23487:88;23594:4;23591:1;23584:15;23618:4;23615:1;23608:15;23635:180;23683:77;23680:1;23673:88;23780:4;23777:1;23770:15;23804:4;23801:1;23794:15;23821:143;23878:5;23909:6;23903:13;23894:22;;23925:33;23952:5;23925:33;:::i;:::-;23821:143;;;;:::o;23970:351::-;24040:6;24089:2;24077:9;24068:7;24064:23;24060:32;24057:119;;;24095:79;;:::i;:::-;24057:119;24215:1;24240:64;24296:7;24287:6;24276:9;24272:22;24240:64;:::i;:::-;24230:74;;24186:128;23970:351;;;;:::o;24327:85::-;24372:7;24401:5;24390:16;;24327:85;;;:::o;24418:60::-;24446:3;24467:5;24460:12;;24418:60;;;:::o;24484:158::-;24542:9;24575:61;24593:42;24602:32;24628:5;24602:32;:::i;:::-;24593:42;:::i;:::-;24575:61;:::i;:::-;24562:74;;24484:158;;;:::o;24648:147::-;24743:45;24782:5;24743:45;:::i;:::-;24738:3;24731:58;24648:147;;:::o;24801:114::-;24868:6;24902:5;24896:12;24886:22;;24801:114;;;:::o;24921:184::-;25020:11;25054:6;25049:3;25042:19;25094:4;25089:3;25085:14;25070:29;;24921:184;;;;:::o;25111:132::-;25178:4;25201:3;25193:11;;25231:4;25226:3;25222:14;25214:22;;25111:132;;;:::o;25249:108::-;25326:24;25344:5;25326:24;:::i;:::-;25321:3;25314:37;25249:108;;:::o;25363:179::-;25432:10;25453:46;25495:3;25487:6;25453:46;:::i;:::-;25531:4;25526:3;25522:14;25508:28;;25363:179;;;;:::o;25548:113::-;25618:4;25650;25645:3;25641:14;25633:22;;25548:113;;;:::o;25697:732::-;25816:3;25845:54;25893:5;25845:54;:::i;:::-;25915:86;25994:6;25989:3;25915:86;:::i;:::-;25908:93;;26025:56;26075:5;26025:56;:::i;:::-;26104:7;26135:1;26120:284;26145:6;26142:1;26139:13;26120:284;;;26221:6;26215:13;26248:63;26307:3;26292:13;26248:63;:::i;:::-;26241:70;;26334:60;26387:6;26334:60;:::i;:::-;26324:70;;26180:224;26167:1;26164;26160:9;26155:14;;26120:284;;;26124:14;26420:3;26413:10;;25821:608;;;25697:732;;;;:::o;26435:831::-;26698:4;26736:3;26725:9;26721:19;26713:27;;26750:71;26818:1;26807:9;26803:17;26794:6;26750:71;:::i;:::-;26831:80;26907:2;26896:9;26892:18;26883:6;26831:80;:::i;:::-;26958:9;26952:4;26948:20;26943:2;26932:9;26928:18;26921:48;26986:108;27089:4;27080:6;26986:108;:::i;:::-;26978:116;;27104:72;27172:2;27161:9;27157:18;27148:6;27104:72;:::i;:::-;27186:73;27254:3;27243:9;27239:19;27230:6;27186:73;:::i;:::-;26435:831;;;;;;;;:::o;27272:194::-;27312:4;27332:20;27350:1;27332:20;:::i;:::-;27327:25;;27366:20;27384:1;27366:20;:::i;:::-;27361:25;;27410:1;27407;27403:9;27395:17;;27434:1;27428:4;27425:11;27422:37;;;27439:18;;:::i;:::-;27422:37;27272:194;;;;:::o
Swarm Source
ipfs://dd49fd5b34a1c1e4e197fdc0f1fe6fbe5ff2a12aaa19aac5c1d88962f450fe0d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.