ERC-20
Overview
Max Total Supply
500,000,000 FOMO
Holders
312
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
921,200.056390569714375785 FOMOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FomoRocket
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } contract FomoRocket is ERC20, Ownable, ERC20Burnable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; uint256 public maxTrxAmount; uint256 public maxHoldingLimit; uint256 public buyTax; uint256 public sellTax; bool public buyEnabled; bool public sellEnabled; address private taxRecipient; mapping(address => bool) isTxLimitExempt; mapping(address => bool) isExcludedFromMaxHold; mapping(address => bool) isBlacklisted; mapping(address => bool) isExcludedFromFees; mapping(address => bool) isWhitelisted; uint256 _totalSupply = 500000000 * 10 ** 18; constructor() ERC20("Fomo Rocket", "FOMO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; maxTrxAmount = _totalSupply.mul(10).div(1000); // 1% maxHoldingLimit = _totalSupply.mul(10).div(1000); // 1% taxRecipient = 0x1e03882B2294F3Cd98398fd17927332130A11999; //Exclude uniswapV2Pair, _uniswapV2Router, deployer and contract from limits exludeFromTxLimit(msg.sender, true); exludeFromTxLimit(address(uniswapV2Router), true); exludeFromTxLimit(address(uniswapV2Pair), true); exludeFromTxLimit(address(this), true); exludeFromTxLimit(taxRecipient, true); isTxLimitExempt[0x0000000000000000000000000000000000000000] = true; exludeFromMaxHold(msg.sender, true); exludeFromMaxHold(address(uniswapV2Router), true); exludeFromMaxHold(address(uniswapV2Pair), true); exludeFromMaxHold(address(this), true); exludeFromMaxHold(taxRecipient, true); excludeFromFees(msg.sender, true); excludeFromFees(address(uniswapV2Router), true); excludeFromFees(address(uniswapV2Pair), true); excludeFromFees(address(this), true); excludeFromFees(taxRecipient, true); isWhitelisted[msg.sender] = true; isWhitelisted[address(uniswapV2Router)] = true; isWhitelisted[address(uniswapV2Pair)] = true; isWhitelisted[address(this)] = true; isWhitelisted[taxRecipient] = true; //Zero tax buyTax = 0; sellTax = 0; buyEnabled = false; sellEnabled = false; _mint(msg.sender, 405000000 * 10 ** decimals()); //LP _mint(0xeF2cBB5F22AE96B4118175ea7ddB91150b4eEC23, 5000000 * 10 ** decimals()); //M1 _mint(0x2F0849e63F552F5c827dd8d937553DBcC57e4b1A, 5000000 * 10 ** decimals()); //M2 _mint(0x1BDbADdf27B94896e81edA5D09bcf8c6fAE46426, 5000000 * 10 ** decimals()); //M3 _mint(0xA8B8E22305ccbca57ec7925F1bF771bed6D1c9A8, 5000000 * 10 ** decimals()); //M4 _mint(0xEb71efaFD2f4b647DfBfe64dc9c9336bE878817C, 5000000 * 10 ** decimals()); //M5 _mint(0x14AB25206abE85F46093f7A4B137291dA58428bE, 5000000 * 10 ** decimals()); //M6 _mint(0x519E2d0f18eA524Bf388104dF27f1bd5a7B26cA1, 5000000 * 10 ** decimals()); //M7 _mint(0x611682521d2565519C44d54Ea4A4814143a47089, 5000000 * 10 ** decimals()); //M8 _mint(0xF4E35578F6aCBe8664bB4bEB0908f2E353b07bC8, 5000000 * 10 ** decimals()); //M9 _mint(0x66A669755078A4e0AA7cAB5d2b09BB811354EB41, 5000000 * 10 ** decimals()); //M10 _mint(0x3BD5F8245D784f631c1365dba52362Ec2519E156, 5000000 * 10 ** decimals()); //M11 _mint(0xdd21779a50FD17C475EcBcc916da86dE4e39077B, 5000000 * 10 ** decimals()); //M12 _mint(0xb7c33ab937aa94201a406A1044dBa40096b196C2, 5000000 * 10 ** decimals()); //M13 _mint(0x6902166Ba8a198d8B45D0A00c98CeAc1A63f00fB, 5000000 * 10 ** decimals()); //M14 _mint(0x8c20E80992c004E41B00De123315c43Cbe6bd115, 5000000 * 10 ** decimals()); //M15 //Refund from Relaunch _mint(0x4E6BC973ac32A5960174b2E378D82c1c278fEE3C, 5000000 * 10 ** decimals()); //R1 _mint(0xF7d9A9a9461B5E772332280bDEd5E42105b14190, 5000000 * 10 ** decimals()); //R2 _mint(0x2d18079416BC8E222cDb884ac0e12b76fd529ccD, 5000000 * 10 ** decimals()); //R3 _mint(0xa8C2e974964F168DbD0E8eE641D7752DB870e528, 5000000 * 10 ** decimals()); //R4 } function exludeFromTxLimit(address _exclude, bool status) public onlyOwner { require(_exclude != address(0x0), "Invalid address"); isTxLimitExempt[_exclude] = status; } function exludeFromMaxHold(address _exclude, bool status) public onlyOwner { require(_exclude != address(0x0), "Invalid address"); isExcludedFromMaxHold[_exclude] = status; } function excludeFromFees(address _exclude, bool status) public onlyOwner { require(_exclude != address(0x0), "Invalid address"); isExcludedFromFees[_exclude] = status; } function setBuyTax(uint256 _tax) public onlyOwner { require(_tax > 0, "Invalid amount"); buyTax = _tax; } function setSellTax(uint256 _tax) public onlyOwner { require(_tax > 0, "Invalid amount"); sellTax = _tax; } function setBuyStatus(bool status) public onlyOwner { buyEnabled = status; } function setSellStatus(bool status) public onlyOwner { sellEnabled = status; } function blacklist(address _malicious, bool status) public onlyOwner { require(_malicious != address(0x0), "Invalid address"); isBlacklisted[_malicious] = status; } function updateMaxTrxLimit(uint256 _limit) public onlyOwner { require(_limit <= 100, "Invalid"); require(_limit > 0, "Invalid amount"); maxTrxAmount = _totalSupply.mul(_limit).div(1000); } function updateMaxHoldingLimit(uint256 _limit) public onlyOwner { require(_limit <= 100, "Invalid"); require(_limit > 0, "Invalid amount"); maxHoldingLimit = _totalSupply.mul(_limit).div(1000); } function updateTaxRecipient(address _recipient) public onlyOwner { require(_recipient != address(0x0), "Invalid address"); taxRecipient = _recipient; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { super._beforeTokenTransfer(from, to, amount); require(!isBlacklisted[from], "Malicious user banned"); require(!isBlacklisted[to], "Malicious user banned"); if(!isTxLimitExempt[from]) { require(amount <= maxTrxAmount, "TX Limit Exceeded"); } if(!isExcludedFromMaxHold[to]) { uint _balance = balanceOf(to); require(_balance.add(amount) <= maxHoldingLimit, "Max Hold Limit Exceeded"); } } function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); bool _buyAction = owner == uniswapV2Pair; bool _sellAction = to == uniswapV2Pair; if(_buyAction){ if(!isWhitelisted[to]) { require(buyEnabled, "buy is disabled at the moment"); } _transfer(owner, to, amount); if(!isExcludedFromFees[to]) { uint256 _buyFee = amount.mul(buyTax).div(1000); if(_buyFee > 0) { _burn(to, _buyFee); _mint(taxRecipient, _buyFee); } } }else if(_sellAction){ if(!isWhitelisted[owner]) { require(sellEnabled, "sell is disabled at the moment"); } if(!isExcludedFromFees[owner]) { uint256 _sellFee = amount.mul(buyTax).div(1000); amount = amount.sub(_sellFee); if(_sellFee > 0){ _burn(owner, _sellFee); _mint(taxRecipient, _sellFee); } } _transfer(owner, to, amount); }else{ _transfer(owner, to, amount); } return true; } function batchWhitelist(address[] memory _addresses) public onlyOwner { for(uint i = 0; i < _addresses.length; i++){ isWhitelisted[_addresses[i]] = true; } } function unbatchWhitelist(address[] memory _addresses) public onlyOwner { for(uint i = 0; i < _addresses.length; i++){ isWhitelisted[_addresses[i]] = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 {} }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_malicious","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","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":[{"internalType":"address","name":"_exclude","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exclude","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"exludeFromMaxHold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exclude","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"exludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setBuyStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSellStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"unbatchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"updateMaxHoldingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"updateMaxTrxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"updateTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526b019d971e4fe8401e740000006010553480156200002157600080fd5b506040518060400160405280600b81526020017f466f6d6f20526f636b65740000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464f4d4f0000000000000000000000000000000000000000000000000000000081525081600390816200009f919062001951565b508060049081620000b1919062001951565b505050620000d4620000c862000e0560201b60201c565b62000e0d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000139573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015f919062001aa2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed919062001aa2565b6040518363ffffffff1660e01b81526004016200020c92919062001ae5565b6020604051808303816000875af11580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062001aa2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620002f16103e8620002dd600a60105462000ed360201b620016d01790919060201c565b62000eeb60201b620016e61790919060201c565b6006819055506200032f6103e86200031b600a60105462000ed360201b620016d01790919060201c565b62000eeb60201b620016e61790919060201c565b600781905550731e03882b2294f3cd98398fd17927332130a11999600a60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200039d33600162000f0360201b60201c565b620003b2608051600162000f0360201b60201c565b620003c760a051600162000f0360201b60201c565b620003da30600162000f0360201b60201c565b6200040f600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000f0360201b60201c565b6001600b60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200047a33600162000fe060201b60201c565b6200048f608051600162000fe060201b60201c565b620004a460a051600162000fe060201b60201c565b620004b730600162000fe060201b60201c565b620004ec600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000fe060201b60201c565b620004ff336001620010bd60201b60201c565b620005146080516001620010bd60201b60201c565b6200052960a0516001620010bd60201b60201c565b6200053c306001620010bd60201b60201c565b62000571600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620010bd60201b60201c565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060088190555060006009819055506000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff021916908315150217905550620007d533620007aa6200119a60201b60201c565b600a620007b8919062001ca2565b631823cf40620007c9919062001cf3565b620011a360201b60201c565b6200082873ef2cbb5f22ae96b4118175ea7ddb91150b4eec23620007fe6200119a60201b60201c565b600a6200080c919062001ca2565b624c4b406200081c919062001cf3565b620011a360201b60201c565b6200087b732f0849e63f552f5c827dd8d937553dbcc57e4b1a620008516200119a60201b60201c565b600a6200085f919062001ca2565b624c4b406200086f919062001cf3565b620011a360201b60201c565b620008ce731bdbaddf27b94896e81eda5d09bcf8c6fae46426620008a46200119a60201b60201c565b600a620008b2919062001ca2565b624c4b40620008c2919062001cf3565b620011a360201b60201c565b6200092173a8b8e22305ccbca57ec7925f1bf771bed6d1c9a8620008f76200119a60201b60201c565b600a62000905919062001ca2565b624c4b4062000915919062001cf3565b620011a360201b60201c565b6200097473eb71efafd2f4b647dfbfe64dc9c9336be878817c6200094a6200119a60201b60201c565b600a62000958919062001ca2565b624c4b4062000968919062001cf3565b620011a360201b60201c565b620009c77314ab25206abe85f46093f7a4b137291da58428be6200099d6200119a60201b60201c565b600a620009ab919062001ca2565b624c4b40620009bb919062001cf3565b620011a360201b60201c565b62000a1a73519e2d0f18ea524bf388104df27f1bd5a7b26ca1620009f06200119a60201b60201c565b600a620009fe919062001ca2565b624c4b4062000a0e919062001cf3565b620011a360201b60201c565b62000a6d73611682521d2565519c44d54ea4a4814143a4708962000a436200119a60201b60201c565b600a62000a51919062001ca2565b624c4b4062000a61919062001cf3565b620011a360201b60201c565b62000ac073f4e35578f6acbe8664bb4beb0908f2e353b07bc862000a966200119a60201b60201c565b600a62000aa4919062001ca2565b624c4b4062000ab4919062001cf3565b620011a360201b60201c565b62000b137366a669755078a4e0aa7cab5d2b09bb811354eb4162000ae96200119a60201b60201c565b600a62000af7919062001ca2565b624c4b4062000b07919062001cf3565b620011a360201b60201c565b62000b66733bd5f8245d784f631c1365dba52362ec2519e15662000b3c6200119a60201b60201c565b600a62000b4a919062001ca2565b624c4b4062000b5a919062001cf3565b620011a360201b60201c565b62000bb973dd21779a50fd17c475ecbcc916da86de4e39077b62000b8f6200119a60201b60201c565b600a62000b9d919062001ca2565b624c4b4062000bad919062001cf3565b620011a360201b60201c565b62000c0c73b7c33ab937aa94201a406a1044dba40096b196c262000be26200119a60201b60201c565b600a62000bf0919062001ca2565b624c4b4062000c00919062001cf3565b620011a360201b60201c565b62000c5f736902166ba8a198d8b45d0a00c98ceac1a63f00fb62000c356200119a60201b60201c565b600a62000c43919062001ca2565b624c4b4062000c53919062001cf3565b620011a360201b60201c565b62000cb2738c20e80992c004e41b00de123315c43cbe6bd11562000c886200119a60201b60201c565b600a62000c96919062001ca2565b624c4b4062000ca6919062001cf3565b620011a360201b60201c565b62000d05734e6bc973ac32a5960174b2e378d82c1c278fee3c62000cdb6200119a60201b60201c565b600a62000ce9919062001ca2565b624c4b4062000cf9919062001cf3565b620011a360201b60201c565b62000d5873f7d9a9a9461b5e772332280bded5e42105b1419062000d2e6200119a60201b60201c565b600a62000d3c919062001ca2565b624c4b4062000d4c919062001cf3565b620011a360201b60201c565b62000dab732d18079416bc8e222cdb884ac0e12b76fd529ccd62000d816200119a60201b60201c565b600a62000d8f919062001ca2565b624c4b4062000d9f919062001cf3565b620011a360201b60201c565b62000dfe73a8c2e974964f168dbd0e8ee641d7752db870e52862000dd46200119a60201b60201c565b600a62000de2919062001ca2565b624c4b4062000df2919062001cf3565b620011a360201b60201c565b50620020cb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818362000ee3919062001cf3565b905092915050565b6000818362000efb919062001d6d565b905092915050565b62000f136200131060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f7c9062001e06565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000ff06200131060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010599062001e06565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620010cd6200131060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011369062001e06565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001215576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200120c9062001e78565b60405180910390fd5b6200122960008383620013a160201b60201c565b80600260008282546200123d919062001e9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620012f0919062001ee6565b60405180910390a36200130c600083836200164360201b60201c565b5050565b6200132062000e0560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620013466200164860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200139f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013969062001f53565b60405180910390fd5b565b620013b98383836200167260201b620016fc1760201c565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014409062001fc5565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620014d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014d09062001fc5565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620015745760065481111562001573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200156a9062002037565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166200163e576000620015d9836200167760201b60201c565b9050600754620015f88383620016bf60201b620017011790919060201c565b11156200163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200163390620020a9565b60405180910390fd5b505b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008183620016cf919062001e9a565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200175957607f821691505b6020821081036200176f576200176e62001711565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620017d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200179a565b620017e586836200179a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620018326200182c6200182684620017fd565b62001807565b620017fd565b9050919050565b6000819050919050565b6200184e8362001811565b620018666200185d8262001839565b848454620017a7565b825550505050565b600090565b6200187d6200186e565b6200188a81848462001843565b505050565b5b81811015620018b257620018a660008262001873565b60018101905062001890565b5050565b601f8211156200190157620018cb8162001775565b620018d6846200178a565b81016020851015620018e6578190505b620018fe620018f5856200178a565b8301826200188f565b50505b505050565b600082821c905092915050565b6000620019266000198460080262001906565b1980831691505092915050565b600062001941838362001913565b9150826002028217905092915050565b6200195c82620016d7565b67ffffffffffffffff811115620019785762001977620016e2565b5b62001984825462001740565b62001991828285620018b6565b600060209050601f831160018114620019c95760008415620019b4578287015190505b620019c0858262001933565b86555062001a30565b601f198416620019d98662001775565b60005b8281101562001a0357848901518255600182019150602085019450602081019050620019dc565b8683101562001a23578489015162001a1f601f89168262001913565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001a6a8262001a3d565b9050919050565b62001a7c8162001a5d565b811462001a8857600080fd5b50565b60008151905062001a9c8162001a71565b92915050565b60006020828403121562001abb5762001aba62001a38565b5b600062001acb8482850162001a8b565b91505092915050565b62001adf8162001a5d565b82525050565b600060408201905062001afc600083018562001ad4565b62001b0b602083018462001ad4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562001ba05780860481111562001b785762001b7762001b12565b5b600185161562001b885780820291505b808102905062001b988562001b41565b945062001b58565b94509492505050565b60008262001bbb576001905062001c8e565b8162001bcb576000905062001c8e565b816001811462001be4576002811462001bef5762001c25565b600191505062001c8e565b60ff84111562001c045762001c0362001b12565b5b8360020a91508482111562001c1e5762001c1d62001b12565b5b5062001c8e565b5060208310610133831016604e8410600b841016171562001c5f5782820a90508381111562001c595762001c5862001b12565b5b62001c8e565b62001c6e848484600162001b4e565b9250905081840481111562001c885762001c8762001b12565b5b81810290505b9392505050565b600060ff82169050919050565b600062001caf82620017fd565b915062001cbc8362001c95565b925062001ceb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001ba9565b905092915050565b600062001d0082620017fd565b915062001d0d83620017fd565b925082820262001d1d81620017fd565b9150828204841483151762001d375762001d3662001b12565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062001d7a82620017fd565b915062001d8783620017fd565b92508262001d9a5762001d9962001d3e565b5b828204905092915050565b600082825260208201905092915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b600062001dee600f8362001da5565b915062001dfb8262001db6565b602082019050919050565b6000602082019050818103600083015262001e218162001ddf565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001e60601f8362001da5565b915062001e6d8262001e28565b602082019050919050565b6000602082019050818103600083015262001e938162001e51565b9050919050565b600062001ea782620017fd565b915062001eb483620017fd565b925082820190508082111562001ecf5762001ece62001b12565b5b92915050565b62001ee081620017fd565b82525050565b600060208201905062001efd600083018462001ed5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001f3b60208362001da5565b915062001f488262001f03565b602082019050919050565b6000602082019050818103600083015262001f6e8162001f2c565b9050919050565b7f4d616c6963696f757320757365722062616e6e65640000000000000000000000600082015250565b600062001fad60158362001da5565b915062001fba8262001f75565b602082019050919050565b6000602082019050818103600083015262001fe08162001f9e565b9050919050565b7f5458204c696d6974204578636565646564000000000000000000000000000000600082015250565b60006200201f60118362001da5565b91506200202c8262001fe7565b602082019050919050565b60006020820190508181036000830152620020528162002010565b9050919050565b7f4d617820486f6c64204c696d6974204578636565646564000000000000000000600082015250565b60006200209160178362001da5565b91506200209e8262002059565b602082019050919050565b60006020820190508181036000830152620020c48162002082565b9050919050565b60805160a0516134dc620020ff60003960008181610b2601528181610ff501526110480152600061086901526134dc6000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a082311161013057806397c64d26116100b8578063cc1776d31161007c578063cc1776d314610628578063dc1052e214610646578063dd62ed3e14610662578063f2fde38b14610692578063f582d293146106ae57610227565b806397c64d2614610574578063a457c2d714610590578063a9059cbb146105c0578063c0246668146105f0578063ca68b4951461060c57610227565b8063818285a0116100ff578063818285a0146104e45780638388cd99146105005780638cd09d501461051c5780638da5cb5b1461053857806395d89b411461055657610227565b806370a082311461047057806370a3c45d146104a0578063715018a6146104be57806379cc6790146104c857610227565b806339509351116101b357806349bd5a5e1161018257806349bd5a5e146103dc5780634f7041a5146103fa5780635154f1361461041857806358197a9d146104365780635b4be32b1461045457610227565b8063395093511461035857806339ee066114610388578063404e5129146103a457806342966c68146103c057610227565b80631694505e116101fa5780631694505e146102b257806318160ddd146102d057806323b872dd146102ee578063256b501a1461031e578063313ce5671461033a57610227565b80630643f1951461022c57806306fdde0314610248578063095ea7b3146102665780630d02e05c14610296575b600080fd5b6102466004803603810190610241919061232e565b6106cc565b005b61025061078d565b60405161025d91906123eb565b60405180910390f35b610280600480360381019061027b919061246b565b61081f565b60405161028d91906124c6565b60405180910390f35b6102b060048036038101906102ab919061250d565b610842565b005b6102ba610867565b6040516102c79190612599565b60405180910390f35b6102d861088b565b6040516102e591906125c3565b60405180910390f35b610308600480360381019061030391906125de565b610895565b60405161031591906124c6565b60405180910390f35b61033860048036038101906103339190612779565b6108c4565b005b610342610961565b60405161034f91906127de565b60405180910390f35b610372600480360381019061036d919061246b565b61096a565b60405161037f91906124c6565b60405180910390f35b6103a2600480360381019061039d9190612779565b6109a1565b005b6103be60048036038101906103b991906127f9565b610a3e565b005b6103da60048036038101906103d5919061232e565b610b10565b005b6103e4610b24565b6040516103f19190612848565b60405180910390f35b610402610b48565b60405161040f91906125c3565b60405180910390f35b610420610b4e565b60405161042d91906125c3565b60405180910390f35b61043e610b54565b60405161044b91906124c6565b60405180910390f35b61046e6004803603810190610469919061250d565b610b67565b005b61048a60048036038101906104859190612863565b610b8c565b60405161049791906125c3565b60405180910390f35b6104a8610bd4565b6040516104b591906125c3565b60405180910390f35b6104c6610bda565b005b6104e260048036038101906104dd919061246b565b610bee565b005b6104fe60048036038101906104f99190612863565b610c0e565b005b61051a6004803603810190610515919061232e565b610cc9565b005b6105366004803603810190610531919061232e565b610d8a565b005b610540610ddf565b60405161054d9190612848565b60405180910390f35b61055e610e09565b60405161056b91906123eb565b60405180910390f35b61058e600480360381019061058991906127f9565b610e9b565b005b6105aa60048036038101906105a5919061246b565b610f6d565b6040516105b791906124c6565b60405180910390f35b6105da60048036038101906105d5919061246b565b610fe4565b6040516105e791906124c6565b60405180910390f35b61060a600480360381019061060591906127f9565b6113b4565b005b610626600480360381019061062191906127f9565b611486565b005b610630611558565b60405161063d91906125c3565b60405180910390f35b610660600480360381019061065b919061232e565b61155e565b005b61067c60048036038101906106779190612890565b6115b3565b60405161068991906125c3565b60405180910390f35b6106ac60048036038101906106a79190612863565b61163a565b005b6106b66116bd565b6040516106c391906124c6565b60405180910390f35b6106d4611717565b6064811115610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f9061291c565b60405180910390fd5b6000811161075b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075290612988565b60405180910390fd5b6107846103e8610776836010546116d090919063ffffffff16565b6116e690919063ffffffff16565b60078190555050565b60606003805461079c906129d7565b80601f01602080910402602001604051908101604052809291908181526020018280546107c8906129d7565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b60008061082a611795565b905061083781858561179d565b600191505092915050565b61084a611717565b80600a60006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108a0611795565b90506108ad858285611966565b6108b88585856119f2565b60019150509392505050565b6108cc611717565b60005b815181101561095d576000600f60008484815181106108f1576108f0612a08565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061095590612a66565b9150506108cf565b5050565b60006012905090565b600080610975611795565b905061099681858561098785896115b3565b6109919190612aae565b61179d565b600191505092915050565b6109a9611717565b60005b8151811015610a3a576001600f60008484815181106109ce576109cd612a08565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a3290612a66565b9150506109ac565b5050565b610a46611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90612b2e565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610b21610b1b611795565b82611c68565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60085481565b60075481565b600a60019054906101000a900460ff1681565b610b6f611717565b80600a60016101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60065481565b610be2611717565b610bec6000611e35565b565b610c0082610bfa611795565b83611966565b610c0a8282611c68565b5050565b610c16611717565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90612b2e565b60405180910390fd5b80600a60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cd1611717565b6064811115610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061291c565b60405180910390fd5b60008111610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90612988565b60405180910390fd5b610d816103e8610d73836010546116d090919063ffffffff16565b6116e690919063ffffffff16565b60068190555050565b610d92611717565b60008111610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612988565b60405180910390fd5b8060098190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e18906129d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e44906129d7565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b5050505050905090565b610ea3611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990612b2e565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610f78611795565b90506000610f8682866115b3565b905083811015610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290612bc0565b60405180910390fd5b610fd8828686840361179d565b60019250505092915050565b600080610fef611795565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16149050811561120e57600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661113e57600a60009054906101000a900460ff1661113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490612c2c565b60405180910390fd5b5b6111498387876119f2565b600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112095760006111c56103e86111b7600854896116d090919063ffffffff16565b6116e690919063ffffffff16565b90506000811115611207576111da8782611c68565b611206600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611efb565b5b505b6113a7565b801561139a57600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112b557600a60019054906101000a900460ff166112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612c98565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661138a5760006113316103e8611323600854896116d090919063ffffffff16565b6116e690919063ffffffff16565b9050611346818761205190919063ffffffff16565b955060008111156113885761135b8482611c68565b611387600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611efb565b5b505b6113958387876119f2565b6113a6565b6113a58387876119f2565b5b5b6001935050505092915050565b6113bc611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612b2e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61148e611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612b2e565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b611566611717565b600081116115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090612988565b60405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611642611717565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890612d2a565b60405180910390fd5b6116ba81611e35565b50565b600a60009054906101000a900460ff1681565b600081836116de9190612d4a565b905092915050565b600081836116f49190612dbb565b905092915050565b505050565b6000818361170f9190612aae565b905092915050565b61171f611795565b73ffffffffffffffffffffffffffffffffffffffff1661173d610ddf565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90612e38565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290612f5c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161195991906125c3565b60405180910390a3505050565b600061197284846115b3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119ec57818110156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590612fc8565b60405180910390fd5b6119eb848484840361179d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a589061305a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906130ec565b60405180910390fd5b611adb838383612067565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b589061317e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4f91906125c3565b60405180910390a3611c628484846122df565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613210565b60405180910390fd5b611ce382600083612067565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d60906132a2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e1c91906125c3565b60405180910390a3611e30836000846122df565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f619061330e565b60405180910390fd5b611f7660008383612067565b8060026000828254611f889190612aae565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161203991906125c3565b60405180910390a361204d600083836122df565b5050565b6000818361205f919061332e565b905092915050565b6120728383836116fc565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f6906133ae565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561218c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612183906133ae565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661222357600654811115612222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122199061341a565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122da57600061227f83610b8c565b9050600754612297838361170190919063ffffffff16565b11156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90613486565b60405180910390fd5b505b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61230b816122f8565b811461231657600080fd5b50565b60008135905061232881612302565b92915050565b600060208284031215612344576123436122ee565b5b600061235284828501612319565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561239557808201518184015260208101905061237a565b60008484015250505050565b6000601f19601f8301169050919050565b60006123bd8261235b565b6123c78185612366565b93506123d7818560208601612377565b6123e0816123a1565b840191505092915050565b6000602082019050818103600083015261240581846123b2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124388261240d565b9050919050565b6124488161242d565b811461245357600080fd5b50565b6000813590506124658161243f565b92915050565b60008060408385031215612482576124816122ee565b5b600061249085828601612456565b92505060206124a185828601612319565b9150509250929050565b60008115159050919050565b6124c0816124ab565b82525050565b60006020820190506124db60008301846124b7565b92915050565b6124ea816124ab565b81146124f557600080fd5b50565b600081359050612507816124e1565b92915050565b600060208284031215612523576125226122ee565b5b6000612531848285016124f8565b91505092915050565b6000819050919050565b600061255f61255a6125558461240d565b61253a565b61240d565b9050919050565b600061257182612544565b9050919050565b600061258382612566565b9050919050565b61259381612578565b82525050565b60006020820190506125ae600083018461258a565b92915050565b6125bd816122f8565b82525050565b60006020820190506125d860008301846125b4565b92915050565b6000806000606084860312156125f7576125f66122ee565b5b600061260586828701612456565b935050602061261686828701612456565b925050604061262786828701612319565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61266e826123a1565b810181811067ffffffffffffffff8211171561268d5761268c612636565b5b80604052505050565b60006126a06122e4565b90506126ac8282612665565b919050565b600067ffffffffffffffff8211156126cc576126cb612636565b5b602082029050602081019050919050565b600080fd5b60006126f56126f0846126b1565b612696565b90508083825260208201905060208402830185811115612718576127176126dd565b5b835b81811015612741578061272d8882612456565b84526020840193505060208101905061271a565b5050509392505050565b600082601f8301126127605761275f612631565b5b81356127708482602086016126e2565b91505092915050565b60006020828403121561278f5761278e6122ee565b5b600082013567ffffffffffffffff8111156127ad576127ac6122f3565b5b6127b98482850161274b565b91505092915050565b600060ff82169050919050565b6127d8816127c2565b82525050565b60006020820190506127f360008301846127cf565b92915050565b600080604083850312156128105761280f6122ee565b5b600061281e85828601612456565b925050602061282f858286016124f8565b9150509250929050565b6128428161242d565b82525050565b600060208201905061285d6000830184612839565b92915050565b600060208284031215612879576128786122ee565b5b600061288784828501612456565b91505092915050565b600080604083850312156128a7576128a66122ee565b5b60006128b585828601612456565b92505060206128c685828601612456565b9150509250929050565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b6000612906600783612366565b9150612911826128d0565b602082019050919050565b60006020820190508181036000830152612935816128f9565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000612972600e83612366565b915061297d8261293c565b602082019050919050565b600060208201905081810360008301526129a181612965565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129ef57607f821691505b602082108103612a0257612a016129a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a71826122f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612aa357612aa2612a37565b5b600182019050919050565b6000612ab9826122f8565b9150612ac4836122f8565b9250828201905080821115612adc57612adb612a37565b5b92915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000612b18600f83612366565b9150612b2382612ae2565b602082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612baa602583612366565b9150612bb582612b4e565b604082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f6275792069732064697361626c656420617420746865206d6f6d656e74000000600082015250565b6000612c16601d83612366565b9150612c2182612be0565b602082019050919050565b60006020820190508181036000830152612c4581612c09565b9050919050565b7f73656c6c2069732064697361626c656420617420746865206d6f6d656e740000600082015250565b6000612c82601e83612366565b9150612c8d82612c4c565b602082019050919050565b60006020820190508181036000830152612cb181612c75565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d14602683612366565b9150612d1f82612cb8565b604082019050919050565b60006020820190508181036000830152612d4381612d07565b9050919050565b6000612d55826122f8565b9150612d60836122f8565b9250828202612d6e816122f8565b91508282048414831517612d8557612d84612a37565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dc6826122f8565b9150612dd1836122f8565b925082612de157612de0612d8c565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e22602083612366565b9150612e2d82612dec565b602082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612eb4602483612366565b9150612ebf82612e58565b604082019050919050565b60006020820190508181036000830152612ee381612ea7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f46602283612366565b9150612f5182612eea565b604082019050919050565b60006020820190508181036000830152612f7581612f39565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612fb2601d83612366565b9150612fbd82612f7c565b602082019050919050565b60006020820190508181036000830152612fe181612fa5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613044602583612366565b915061304f82612fe8565b604082019050919050565b6000602082019050818103600083015261307381613037565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130d6602383612366565b91506130e18261307a565b604082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613168602683612366565b91506131738261310c565b604082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131fa602183612366565b91506132058261319e565b604082019050919050565b60006020820190508181036000830152613229816131ed565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061328c602283612366565b915061329782613230565b604082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006132f8601f83612366565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b6000613339826122f8565b9150613344836122f8565b925082820390508181111561335c5761335b612a37565b5b92915050565b7f4d616c6963696f757320757365722062616e6e65640000000000000000000000600082015250565b6000613398601583612366565b91506133a382613362565b602082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b7f5458204c696d6974204578636565646564000000000000000000000000000000600082015250565b6000613404601183612366565b915061340f826133ce565b602082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f4d617820486f6c64204c696d6974204578636565646564000000000000000000600082015250565b6000613470601783612366565b915061347b8261343a565b602082019050919050565b6000602082019050818103600083015261349f81613463565b905091905056fea2646970667358221220262153c9a5f807e9c766ea8507492a73fe2a5fa7209f0b606c753ac10f20dac664736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a082311161013057806397c64d26116100b8578063cc1776d31161007c578063cc1776d314610628578063dc1052e214610646578063dd62ed3e14610662578063f2fde38b14610692578063f582d293146106ae57610227565b806397c64d2614610574578063a457c2d714610590578063a9059cbb146105c0578063c0246668146105f0578063ca68b4951461060c57610227565b8063818285a0116100ff578063818285a0146104e45780638388cd99146105005780638cd09d501461051c5780638da5cb5b1461053857806395d89b411461055657610227565b806370a082311461047057806370a3c45d146104a0578063715018a6146104be57806379cc6790146104c857610227565b806339509351116101b357806349bd5a5e1161018257806349bd5a5e146103dc5780634f7041a5146103fa5780635154f1361461041857806358197a9d146104365780635b4be32b1461045457610227565b8063395093511461035857806339ee066114610388578063404e5129146103a457806342966c68146103c057610227565b80631694505e116101fa5780631694505e146102b257806318160ddd146102d057806323b872dd146102ee578063256b501a1461031e578063313ce5671461033a57610227565b80630643f1951461022c57806306fdde0314610248578063095ea7b3146102665780630d02e05c14610296575b600080fd5b6102466004803603810190610241919061232e565b6106cc565b005b61025061078d565b60405161025d91906123eb565b60405180910390f35b610280600480360381019061027b919061246b565b61081f565b60405161028d91906124c6565b60405180910390f35b6102b060048036038101906102ab919061250d565b610842565b005b6102ba610867565b6040516102c79190612599565b60405180910390f35b6102d861088b565b6040516102e591906125c3565b60405180910390f35b610308600480360381019061030391906125de565b610895565b60405161031591906124c6565b60405180910390f35b61033860048036038101906103339190612779565b6108c4565b005b610342610961565b60405161034f91906127de565b60405180910390f35b610372600480360381019061036d919061246b565b61096a565b60405161037f91906124c6565b60405180910390f35b6103a2600480360381019061039d9190612779565b6109a1565b005b6103be60048036038101906103b991906127f9565b610a3e565b005b6103da60048036038101906103d5919061232e565b610b10565b005b6103e4610b24565b6040516103f19190612848565b60405180910390f35b610402610b48565b60405161040f91906125c3565b60405180910390f35b610420610b4e565b60405161042d91906125c3565b60405180910390f35b61043e610b54565b60405161044b91906124c6565b60405180910390f35b61046e6004803603810190610469919061250d565b610b67565b005b61048a60048036038101906104859190612863565b610b8c565b60405161049791906125c3565b60405180910390f35b6104a8610bd4565b6040516104b591906125c3565b60405180910390f35b6104c6610bda565b005b6104e260048036038101906104dd919061246b565b610bee565b005b6104fe60048036038101906104f99190612863565b610c0e565b005b61051a6004803603810190610515919061232e565b610cc9565b005b6105366004803603810190610531919061232e565b610d8a565b005b610540610ddf565b60405161054d9190612848565b60405180910390f35b61055e610e09565b60405161056b91906123eb565b60405180910390f35b61058e600480360381019061058991906127f9565b610e9b565b005b6105aa60048036038101906105a5919061246b565b610f6d565b6040516105b791906124c6565b60405180910390f35b6105da60048036038101906105d5919061246b565b610fe4565b6040516105e791906124c6565b60405180910390f35b61060a600480360381019061060591906127f9565b6113b4565b005b610626600480360381019061062191906127f9565b611486565b005b610630611558565b60405161063d91906125c3565b60405180910390f35b610660600480360381019061065b919061232e565b61155e565b005b61067c60048036038101906106779190612890565b6115b3565b60405161068991906125c3565b60405180910390f35b6106ac60048036038101906106a79190612863565b61163a565b005b6106b66116bd565b6040516106c391906124c6565b60405180910390f35b6106d4611717565b6064811115610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f9061291c565b60405180910390fd5b6000811161075b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075290612988565b60405180910390fd5b6107846103e8610776836010546116d090919063ffffffff16565b6116e690919063ffffffff16565b60078190555050565b60606003805461079c906129d7565b80601f01602080910402602001604051908101604052809291908181526020018280546107c8906129d7565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b60008061082a611795565b905061083781858561179d565b600191505092915050565b61084a611717565b80600a60006101000a81548160ff02191690831515021790555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108a0611795565b90506108ad858285611966565b6108b88585856119f2565b60019150509392505050565b6108cc611717565b60005b815181101561095d576000600f60008484815181106108f1576108f0612a08565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061095590612a66565b9150506108cf565b5050565b60006012905090565b600080610975611795565b905061099681858561098785896115b3565b6109919190612aae565b61179d565b600191505092915050565b6109a9611717565b60005b8151811015610a3a576001600f60008484815181106109ce576109cd612a08565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a3290612a66565b9150506109ac565b5050565b610a46611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90612b2e565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610b21610b1b611795565b82611c68565b50565b7f0000000000000000000000003163cb1bfdbffd58f0d13b7a62ae26d6fd35b44581565b60085481565b60075481565b600a60019054906101000a900460ff1681565b610b6f611717565b80600a60016101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60065481565b610be2611717565b610bec6000611e35565b565b610c0082610bfa611795565b83611966565b610c0a8282611c68565b5050565b610c16611717565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90612b2e565b60405180910390fd5b80600a60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cd1611717565b6064811115610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061291c565b60405180910390fd5b60008111610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90612988565b60405180910390fd5b610d816103e8610d73836010546116d090919063ffffffff16565b6116e690919063ffffffff16565b60068190555050565b610d92611717565b60008111610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612988565b60405180910390fd5b8060098190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e18906129d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e44906129d7565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b5050505050905090565b610ea3611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990612b2e565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610f78611795565b90506000610f8682866115b3565b905083811015610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290612bc0565b60405180910390fd5b610fd8828686840361179d565b60019250505092915050565b600080610fef611795565b905060007f0000000000000000000000003163cb1bfdbffd58f0d13b7a62ae26d6fd35b44573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614905060007f0000000000000000000000003163cb1bfdbffd58f0d13b7a62ae26d6fd35b44573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16149050811561120e57600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661113e57600a60009054906101000a900460ff1661113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490612c2c565b60405180910390fd5b5b6111498387876119f2565b600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112095760006111c56103e86111b7600854896116d090919063ffffffff16565b6116e690919063ffffffff16565b90506000811115611207576111da8782611c68565b611206600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611efb565b5b505b6113a7565b801561139a57600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112b557600a60019054906101000a900460ff166112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612c98565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661138a5760006113316103e8611323600854896116d090919063ffffffff16565b6116e690919063ffffffff16565b9050611346818761205190919063ffffffff16565b955060008111156113885761135b8482611c68565b611387600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611efb565b5b505b6113958387876119f2565b6113a6565b6113a58387876119f2565b5b5b6001935050505092915050565b6113bc611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612b2e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61148e611717565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490612b2e565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b611566611717565b600081116115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090612988565b60405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611642611717565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890612d2a565b60405180910390fd5b6116ba81611e35565b50565b600a60009054906101000a900460ff1681565b600081836116de9190612d4a565b905092915050565b600081836116f49190612dbb565b905092915050565b505050565b6000818361170f9190612aae565b905092915050565b61171f611795565b73ffffffffffffffffffffffffffffffffffffffff1661173d610ddf565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90612e38565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290612f5c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161195991906125c3565b60405180910390a3505050565b600061197284846115b3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119ec57818110156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590612fc8565b60405180910390fd5b6119eb848484840361179d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a589061305a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906130ec565b60405180910390fd5b611adb838383612067565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b589061317e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4f91906125c3565b60405180910390a3611c628484846122df565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613210565b60405180910390fd5b611ce382600083612067565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d60906132a2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e1c91906125c3565b60405180910390a3611e30836000846122df565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f619061330e565b60405180910390fd5b611f7660008383612067565b8060026000828254611f889190612aae565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161203991906125c3565b60405180910390a361204d600083836122df565b5050565b6000818361205f919061332e565b905092915050565b6120728383836116fc565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f6906133ae565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561218c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612183906133ae565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661222357600654811115612222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122199061341a565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122da57600061227f83610b8c565b9050600754612297838361170190919063ffffffff16565b11156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90613486565b60405180910390fd5b505b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61230b816122f8565b811461231657600080fd5b50565b60008135905061232881612302565b92915050565b600060208284031215612344576123436122ee565b5b600061235284828501612319565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561239557808201518184015260208101905061237a565b60008484015250505050565b6000601f19601f8301169050919050565b60006123bd8261235b565b6123c78185612366565b93506123d7818560208601612377565b6123e0816123a1565b840191505092915050565b6000602082019050818103600083015261240581846123b2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124388261240d565b9050919050565b6124488161242d565b811461245357600080fd5b50565b6000813590506124658161243f565b92915050565b60008060408385031215612482576124816122ee565b5b600061249085828601612456565b92505060206124a185828601612319565b9150509250929050565b60008115159050919050565b6124c0816124ab565b82525050565b60006020820190506124db60008301846124b7565b92915050565b6124ea816124ab565b81146124f557600080fd5b50565b600081359050612507816124e1565b92915050565b600060208284031215612523576125226122ee565b5b6000612531848285016124f8565b91505092915050565b6000819050919050565b600061255f61255a6125558461240d565b61253a565b61240d565b9050919050565b600061257182612544565b9050919050565b600061258382612566565b9050919050565b61259381612578565b82525050565b60006020820190506125ae600083018461258a565b92915050565b6125bd816122f8565b82525050565b60006020820190506125d860008301846125b4565b92915050565b6000806000606084860312156125f7576125f66122ee565b5b600061260586828701612456565b935050602061261686828701612456565b925050604061262786828701612319565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61266e826123a1565b810181811067ffffffffffffffff8211171561268d5761268c612636565b5b80604052505050565b60006126a06122e4565b90506126ac8282612665565b919050565b600067ffffffffffffffff8211156126cc576126cb612636565b5b602082029050602081019050919050565b600080fd5b60006126f56126f0846126b1565b612696565b90508083825260208201905060208402830185811115612718576127176126dd565b5b835b81811015612741578061272d8882612456565b84526020840193505060208101905061271a565b5050509392505050565b600082601f8301126127605761275f612631565b5b81356127708482602086016126e2565b91505092915050565b60006020828403121561278f5761278e6122ee565b5b600082013567ffffffffffffffff8111156127ad576127ac6122f3565b5b6127b98482850161274b565b91505092915050565b600060ff82169050919050565b6127d8816127c2565b82525050565b60006020820190506127f360008301846127cf565b92915050565b600080604083850312156128105761280f6122ee565b5b600061281e85828601612456565b925050602061282f858286016124f8565b9150509250929050565b6128428161242d565b82525050565b600060208201905061285d6000830184612839565b92915050565b600060208284031215612879576128786122ee565b5b600061288784828501612456565b91505092915050565b600080604083850312156128a7576128a66122ee565b5b60006128b585828601612456565b92505060206128c685828601612456565b9150509250929050565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b6000612906600783612366565b9150612911826128d0565b602082019050919050565b60006020820190508181036000830152612935816128f9565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000612972600e83612366565b915061297d8261293c565b602082019050919050565b600060208201905081810360008301526129a181612965565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129ef57607f821691505b602082108103612a0257612a016129a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a71826122f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612aa357612aa2612a37565b5b600182019050919050565b6000612ab9826122f8565b9150612ac4836122f8565b9250828201905080821115612adc57612adb612a37565b5b92915050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000612b18600f83612366565b9150612b2382612ae2565b602082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612baa602583612366565b9150612bb582612b4e565b604082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f6275792069732064697361626c656420617420746865206d6f6d656e74000000600082015250565b6000612c16601d83612366565b9150612c2182612be0565b602082019050919050565b60006020820190508181036000830152612c4581612c09565b9050919050565b7f73656c6c2069732064697361626c656420617420746865206d6f6d656e740000600082015250565b6000612c82601e83612366565b9150612c8d82612c4c565b602082019050919050565b60006020820190508181036000830152612cb181612c75565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d14602683612366565b9150612d1f82612cb8565b604082019050919050565b60006020820190508181036000830152612d4381612d07565b9050919050565b6000612d55826122f8565b9150612d60836122f8565b9250828202612d6e816122f8565b91508282048414831517612d8557612d84612a37565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dc6826122f8565b9150612dd1836122f8565b925082612de157612de0612d8c565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e22602083612366565b9150612e2d82612dec565b602082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612eb4602483612366565b9150612ebf82612e58565b604082019050919050565b60006020820190508181036000830152612ee381612ea7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f46602283612366565b9150612f5182612eea565b604082019050919050565b60006020820190508181036000830152612f7581612f39565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612fb2601d83612366565b9150612fbd82612f7c565b602082019050919050565b60006020820190508181036000830152612fe181612fa5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613044602583612366565b915061304f82612fe8565b604082019050919050565b6000602082019050818103600083015261307381613037565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130d6602383612366565b91506130e18261307a565b604082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613168602683612366565b91506131738261310c565b604082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131fa602183612366565b91506132058261319e565b604082019050919050565b60006020820190508181036000830152613229816131ed565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061328c602283612366565b915061329782613230565b604082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006132f8601f83612366565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b6000613339826122f8565b9150613344836122f8565b925082820390508181111561335c5761335b612a37565b5b92915050565b7f4d616c6963696f757320757365722062616e6e65640000000000000000000000600082015250565b6000613398601583612366565b91506133a382613362565b602082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b7f5458204c696d6974204578636565646564000000000000000000000000000000600082015250565b6000613404601183612366565b915061340f826133ce565b602082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f4d617820486f6c64204c696d6974204578636565646564000000000000000000600082015250565b6000613470601783612366565b915061347b8261343a565b602082019050919050565b6000602082019050818103600083015261349f81613463565b905091905056fea2646970667358221220262153c9a5f807e9c766ea8507492a73fe2a5fa7209f0b606c753ac10f20dac664736f6c63430008120033
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.