Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 FUNGEA
Holders
133
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Fungea
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity >=0.8.10 <0.9; /** The mushrooms are here to rule the world. https://t.me/fungea https://twitter.com/FungeaERC https://fungea.world/ https://docs.fungea.world/ #play2burn **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract Fungea is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public devWallet = address(0x0ABdFDd65932410743B10262389AC4D4E451C91B); mapping(address => bool) public isExcludedFromFee; mapping(address => bool) public isExcludedMaxTransactionAmount; uint256 public buyTax = 4; uint256 public sellTax = 4; uint256 public transferTax = 20; // Transfer Tax between Wallets. Only active until all characters have been created uint256 public maxWallet = 40000000 * 1e18; // 4% from total supply maxWallet uint256 public maxTransactionAmount = 40000000 * 1e18; bool private swapping; bool public tradingActive = false; event BuyTaxUpdated(uint256 buyTax); event TransferTaxUpdated(uint256 transferTax); event SellTaxUpdated(uint256 sellTax); event DevWalletUpdated(address newWallet); event BurnedToken(uint256 amount); constructor() ERC20("Fungea", "FUNGEA") { uint256 _totalSupply = 1000000000 * 1e18; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _uniswapV2Router.WETH() ); isExcludedFromFee[address(this)] = true; isExcludedFromFee[address(uniswapV2Router)] = true; isExcludedFromFee[msg.sender] = true; isExcludedFromFee[devWallet] = true; isExcludedMaxTransactionAmount[owner()] = true; isExcludedMaxTransactionAmount[address(this)] = true; isExcludedMaxTransactionAmount[address(0xdead)] = true; _mint(msg.sender, _totalSupply); } // Daily burn of taxed token. Burn amount depending on in-game burn of $SPORES function burn(uint256 _burnAmount) external onlyOwner { super._transfer(address(this), address(0xdead), _burnAmount); emit BurnedToken(_burnAmount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, devWallet, block.timestamp ); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance" ); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 transferAmount; uint256 contractTokenBalance; uint256 taxShare; if (from == uniswapV2Pair || to == uniswapV2Pair) { if (isExcludedFromFee[from] || isExcludedFromFee[to]) { transferAmount = amount; } else { require(tradingActive, "Trading is not active."); // SELL if (from != uniswapV2Pair) { if (!isExcludedMaxTransactionAmount[from]) { require( amount <= maxTransactionAmount, "Exceeds maxTransactionAmount" ); } taxShare = amount.mul(sellTax).div(100); super._transfer(from, address(this), taxShare); transferAmount = amount.sub(taxShare); contractTokenBalance = balanceOf(address(this)); if ( contractTokenBalance > 0 && !swapping && !isExcludedFromFee[from] && !isExcludedFromFee[to] && taxShare > 0 ) { swapping = true; swapTokensForEth(taxShare); swapping = false; } } // BUY, tax to contract for future burn else { if (!isExcludedMaxTransactionAmount[to]) { require( amount <= maxTransactionAmount, "Exceeds maxTransactionAmount" ); require(amount + balanceOf(to) <= maxWallet, "Exceeds maxWallet"); } taxShare = amount.mul(buyTax).div(100); transferAmount = amount.sub(taxShare); super._transfer(from, address(this), taxShare); } } super._transfer(from, to, transferAmount); } else { // Transfer between wallets, only taxed until all Chars have been created if ( !isExcludedFromFee[from] && !isExcludedFromFee[to] && transferTax > 0 ) { taxShare = amount.mul(transferTax).div(100); transferAmount = amount.sub(taxShare); super._transfer(from, address(this), taxShare); super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } } function updateBuyTax(uint256 _buyTax) external onlyOwner { buyTax = _buyTax; require(buyTax <= 20, "Must keep fees at 20% or less"); emit BuyTaxUpdated(buyTax); } function updateTransferTax(uint256 _transferTax) external onlyOwner { transferTax = _transferTax; require(transferTax <= 50, "Must keep fees at 50% or less"); emit TransferTaxUpdated(buyTax); } function updateSellTax(uint256 _sellTax) external onlyOwner { sellTax = _sellTax; require(sellTax <= 20, "Must keep fees at 20% or less"); emit SellTaxUpdated(buyTax); } function updateDevWallet(address _newWallet) external onlyOwner { devWallet = _newWallet; emit DevWalletUpdated(_newWallet); } function excludeFromFee(address _address) external onlyOwner { isExcludedFromFee[_address] = true; } function includeToFee(address _address) external onlyOwner { isExcludedFromFee[_address] = false; } function enableTrading() external onlyOwner { tradingActive = true; } function withdrawAll(address payable _to) external onlyOwner { _to.transfer(address(this).balance); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
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, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "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":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTax","type":"uint256"}],"name":"BuyTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"DevWalletUpdated","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":false,"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"SellTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"transferTax","type":"uint256"}],"name":"TransferTaxUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeToFee","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":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTax","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":"uint256","name":"_buyTax","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferTax","type":"uint256"}],"name":"updateTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052730abdfdd65932410743b10262389ac4d4e451c91b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004600a556004600b556014600c556a2116545850052128000000600d556a2116545850052128000000600e556000600f60016101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600681526020017f46756e67656100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f46554e4745410000000000000000000000000000000000000000000000000000815250816003908051906020019062000133929190620008a4565b5080600490805190602001906200014c929190620008a4565b5050506200016f620001636200062960201b60201c565b6200063160201b60201c565b60006b033b2e3c9fd0803ce800000090506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f9190620009be565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cd9190620009be565b6040518363ffffffff1660e01b8152600401620002ec92919062000a01565b6020604051808303816000875af11580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003329190620009be565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960006200050c620006f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200062133836200072160201b60201c565b505062000bda565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000794576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078b9062000a8f565b60405180910390fd5b620007a8600083836200089a60201b60201c565b8060026000828254620007bc919062000aea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000813919062000aea565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200087a919062000b58565b60405180910390a362000896600083836200089f60201b60201c565b5050565b505050565b505050565b828054620008b29062000ba4565b90600052602060002090601f016020900481019282620008d6576000855562000922565b82601f10620008f157805160ff191683800117855562000922565b8280016001018555821562000922579182015b828111156200092157825182559160200191906001019062000904565b5b50905062000931919062000935565b5090565b5b808211156200095057600081600090555060010162000936565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009868262000959565b9050919050565b620009988162000979565b8114620009a457600080fd5b50565b600081519050620009b8816200098d565b92915050565b600060208284031215620009d757620009d662000954565b5b6000620009e784828501620009a7565b91505092915050565b620009fb8162000979565b82525050565b600060408201905062000a186000830185620009f0565b62000a276020830184620009f0565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a77601f8362000a2e565b915062000a848262000a3f565b602082019050919050565b6000602082019050818103600083015262000aaa8162000a68565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af78262000ab1565b915062000b048362000ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b3c5762000b3b62000abb565b5b828201905092915050565b62000b528162000ab1565b82525050565b600060208201905062000b6f600083018462000b47565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bbd57607f821691505b6020821081141562000bd45762000bd362000b75565b5b50919050565b60805161362162000c0b600039600081816109de0152818161251b015281816125fc015261262301526136216000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063bbc0c742116100a0578063dd62ed3e1161006f578063dd62ed3e14610744578063e77f35c414610781578063f2fde38b146107aa578063f8b45b05146107d3578063fa09e630146107fe57610204565b8063bbc0c7421461069a578063c8c8ebe4146106c5578063cc1776d3146106f0578063cf0848f71461071b57610204565b80638ea5220f116100dc5780638ea5220f146105ca57806395d89b41146105f5578063a457c2d714610620578063a9059cbb1461065d57610204565b8063715018a6146105465780638124f7ac1461055d5780638a8c523c146105885780638da5cb5b1461059f57610204565b8063395093511161019057806349bd5a5e1161015f57806349bd5a5e146104395780634bb2c785146104645780634f7041a5146104a15780635342acb4146104cc57806370a082311461050957610204565b8063395093511461038157806342966c68146103be578063436d3340146103e7578063437823ec1461041057610204565b806318160ddd116101cc57806318160ddd146102c55780631816467f146102f057806323b872dd14610319578063313ce5671461035657610204565b806306fdde0314610209578063095ea7b31461023457806312185a39146102715780631694505e1461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610827565b60405161022b919061277e565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612839565b6108b9565b6040516102689190612894565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906128af565b6108d7565b005b3480156102a657600080fd5b506102af6109dc565b6040516102bc919061293b565b60405180910390f35b3480156102d157600080fd5b506102da610a00565b6040516102e79190612965565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612980565b610a0a565b005b34801561032557600080fd5b50610340600480360381019061033b91906129ad565b610b01565b60405161034d9190612894565b60405180910390f35b34801561036257600080fd5b5061036b610bf9565b6040516103789190612a1c565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612839565b610c02565b6040516103b59190612894565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906128af565b610cae565b005b3480156103f357600080fd5b5061040e600480360381019061040991906128af565b610d71565b005b34801561041c57600080fd5b5061043760048036038101906104329190612980565b610e76565b005b34801561044557600080fd5b5061044e610f4d565b60405161045b9190612a46565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190612980565b610f73565b6040516104989190612894565b60405180910390f35b3480156104ad57600080fd5b506104b6610f93565b6040516104c39190612965565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612980565b610f99565b6040516105009190612894565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612980565b610fb9565b60405161053d9190612965565b60405180910390f35b34801561055257600080fd5b5061055b611001565b005b34801561056957600080fd5b50610572611089565b60405161057f9190612965565b60405180910390f35b34801561059457600080fd5b5061059d61108f565b005b3480156105ab57600080fd5b506105b4611128565b6040516105c19190612a46565b60405180910390f35b3480156105d657600080fd5b506105df611152565b6040516105ec9190612a46565b60405180910390f35b34801561060157600080fd5b5061060a611178565b604051610617919061277e565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612839565b61120a565b6040516106549190612894565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612839565b6112f5565b6040516106919190612894565b60405180910390f35b3480156106a657600080fd5b506106af611313565b6040516106bc9190612894565b60405180910390f35b3480156106d157600080fd5b506106da611326565b6040516106e79190612965565b60405180910390f35b3480156106fc57600080fd5b5061070561132c565b6040516107129190612965565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190612980565b611332565b005b34801561075057600080fd5b5061076b60048036038101906107669190612a61565b611409565b6040516107789190612965565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a391906128af565b611490565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190612980565b611595565b005b3480156107df57600080fd5b506107e861168d565b6040516107f59190612965565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612adf565b611693565b005b60606003805461083690612b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461086290612b3b565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108cd6108c6611759565b8484611761565b6001905092915050565b6108df611759565b73ffffffffffffffffffffffffffffffffffffffff166108fd611128565b73ffffffffffffffffffffffffffffffffffffffff1614610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90612bb9565b60405180910390fd5b80600b819055506014600b5411156109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612c25565b60405180910390fd5b7fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11600a546040516109d19190612965565b60405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610a12611759565b73ffffffffffffffffffffffffffffffffffffffff16610a30611128565b73ffffffffffffffffffffffffffffffffffffffff1614610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90612bb9565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb81604051610af69190612a46565b60405180910390a150565b6000610b0e84848461192c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b59611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090612cb7565b60405180910390fd5b610bed85610be5611759565b858403611761565b60019150509392505050565b60006012905090565b6000610ca4610c0f611759565b848460016000610c1d611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9f9190612d06565b611761565b6001905092915050565b610cb6611759565b73ffffffffffffffffffffffffffffffffffffffff16610cd4611128565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190612bb9565b60405180910390fd5b610d373061dead836120f3565b7fb1f67ade07cda330ac167f4fcc4c01b94fdfc04d401cf85e487f0a5b8b98e75f81604051610d669190612965565b60405180910390a150565b610d79611759565b73ffffffffffffffffffffffffffffffffffffffff16610d97611128565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490612bb9565b60405180910390fd5b80600a819055506014600a541115610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612c25565b60405180910390fd5b7f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce600a54604051610e6b9190612965565b60405180910390a150565b610e7e611759565b73ffffffffffffffffffffffffffffffffffffffff16610e9c611128565b73ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990612bb9565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b600a5481565b60086020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611009611759565b73ffffffffffffffffffffffffffffffffffffffff16611027611128565b73ffffffffffffffffffffffffffffffffffffffff161461107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612bb9565b60405180910390fd5b6110876000612374565b565b600c5481565b611097611759565b73ffffffffffffffffffffffffffffffffffffffff166110b5611128565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612bb9565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461118790612b3b565b80601f01602080910402602001604051908101604052809291908181526020018280546111b390612b3b565b80156112005780601f106111d557610100808354040283529160200191611200565b820191906000526020600020905b8154815290600101906020018083116111e357829003601f168201915b5050505050905090565b60008060016000611219611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612dce565b60405180910390fd5b6112ea6112e1611759565b85858403611761565b600191505092915050565b6000611309611302611759565b848461192c565b6001905092915050565b600f60019054906101000a900460ff1681565b600e5481565b600b5481565b61133a611759565b73ffffffffffffffffffffffffffffffffffffffff16611358611128565b73ffffffffffffffffffffffffffffffffffffffff16146113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612bb9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611498611759565b73ffffffffffffffffffffffffffffffffffffffff166114b6611128565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612bb9565b60405180910390fd5b80600c819055506032600c541115611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090612e3a565b60405180910390fd5b7fe9b79e1a6c2dc43b4c0c6ff01ce9e3332d810e482270f464c0a21ad6c5fc6de3600a5460405161158a9190612965565b60405180910390a150565b61159d611759565b73ffffffffffffffffffffffffffffffffffffffff166115bb611128565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890612ecc565b60405180910390fd5b61168a81612374565b50565b600d5481565b61169b611759565b73ffffffffffffffffffffffffffffffffffffffff166116b9611128565b73ffffffffffffffffffffffffffffffffffffffff161461170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690612bb9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611755573d6000803e3d6000fd5b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612f5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890612ff0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161191f9190612965565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613082565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613114565b60405180910390fd5b80611a1684610fb9565b1015611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906131a6565b60405180910390fd5b6000811415611a7157611a6c838360006120f3565b6120ee565b6000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480611b1f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15611fcc57600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bc55750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bd257839250611fbc565b600f60019054906101000a900460ff16611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613212565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611e8157600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d0d57600e54841115611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d039061327e565b60405180910390fd5b5b611d356064611d27600b548761243a90919063ffffffff16565b61245090919063ffffffff16565b9050611d428630836120f3565b611d55818561246690919063ffffffff16565b9250611d6030610fb9565b9150600082118015611d7f5750600f60009054906101000a900460ff16155b8015611dd55750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e2b5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e375750600081115b15611e7c576001600f60006101000a81548160ff021916908315150217905550611e608161247c565b6000600f60006101000a81548160ff0219169083151502179055505b611fbb565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f7057600e54841115611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e9061327e565b60405180910390fd5b600d54611f2386610fb9565b85611f2e9190612d06565b1115611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f66906132ea565b60405180910390fd5b5b611f986064611f8a600a548761243a90919063ffffffff16565b61245090919063ffffffff16565b9050611fad818561246690919063ffffffff16565b9250611fba8630836120f3565b5b5b611fc78686856120f3565b6120ea565b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120705750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207e57506000600c54115b156120dd576120ab606461209d600c548761243a90919063ffffffff16565b61245090919063ffffffff16565b90506120c0818561246690919063ffffffff16565b92506120cd8630836120f3565b6120d88686856120f3565b6120e9565b6120e88686866120f3565b5b5b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a90613082565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613114565b60405180910390fd5b6121de8383836126db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b906131a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f79190612d06565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161235b9190612965565b60405180910390a361236e8484846126e0565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612448919061330a565b905092915050565b6000818361245e9190613393565b905092915050565b6000818361247491906133c4565b905092915050565b6000600267ffffffffffffffff811115612499576124986133f8565b5b6040519080825280602002602001820160405280156124c75781602001602082028036833780820191505090505b50905030816000815181106124df576124de613427565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612584573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a8919061346b565b816001815181106125bc576125bb613427565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612621307f000000000000000000000000000000000000000000000000000000000000000084611761565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016126a5959493929190613591565b600060405180830381600087803b1580156126bf57600080fd5b505af11580156126d3573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561271f578082015181840152602081019050612704565b8381111561272e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612750826126e5565b61275a81856126f0565b935061276a818560208601612701565b61277381612734565b840191505092915050565b600060208201905081810360008301526127988184612745565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127d0826127a5565b9050919050565b6127e0816127c5565b81146127eb57600080fd5b50565b6000813590506127fd816127d7565b92915050565b6000819050919050565b61281681612803565b811461282157600080fd5b50565b6000813590506128338161280d565b92915050565b600080604083850312156128505761284f6127a0565b5b600061285e858286016127ee565b925050602061286f85828601612824565b9150509250929050565b60008115159050919050565b61288e81612879565b82525050565b60006020820190506128a96000830184612885565b92915050565b6000602082840312156128c5576128c46127a0565b5b60006128d384828501612824565b91505092915050565b6000819050919050565b60006129016128fc6128f7846127a5565b6128dc565b6127a5565b9050919050565b6000612913826128e6565b9050919050565b600061292582612908565b9050919050565b6129358161291a565b82525050565b6000602082019050612950600083018461292c565b92915050565b61295f81612803565b82525050565b600060208201905061297a6000830184612956565b92915050565b600060208284031215612996576129956127a0565b5b60006129a4848285016127ee565b91505092915050565b6000806000606084860312156129c6576129c56127a0565b5b60006129d4868287016127ee565b93505060206129e5868287016127ee565b92505060406129f686828701612824565b9150509250925092565b600060ff82169050919050565b612a1681612a00565b82525050565b6000602082019050612a316000830184612a0d565b92915050565b612a40816127c5565b82525050565b6000602082019050612a5b6000830184612a37565b92915050565b60008060408385031215612a7857612a776127a0565b5b6000612a86858286016127ee565b9250506020612a97858286016127ee565b9150509250929050565b6000612aac826127a5565b9050919050565b612abc81612aa1565b8114612ac757600080fd5b50565b600081359050612ad981612ab3565b92915050565b600060208284031215612af557612af46127a0565b5b6000612b0384828501612aca565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5357607f821691505b60208210811415612b6757612b66612b0c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ba36020836126f0565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000612c0f601d836126f0565b9150612c1a82612bd9565b602082019050919050565b60006020820190508181036000830152612c3e81612c02565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612ca16028836126f0565b9150612cac82612c45565b604082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d1182612803565b9150612d1c83612803565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5157612d50612cd7565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612db86025836126f0565b9150612dc382612d5c565b604082019050919050565b60006020820190508181036000830152612de781612dab565b9050919050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b6000612e24601d836126f0565b9150612e2f82612dee565b602082019050919050565b60006020820190508181036000830152612e5381612e17565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612eb66026836126f0565b9150612ec182612e5a565b604082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f486024836126f0565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fda6022836126f0565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061306c6025836126f0565b915061307782613010565b604082019050919050565b6000602082019050818103600083015261309b8161305f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130fe6023836126f0565b9150613109826130a2565b604082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006131906026836126f0565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006131fc6016836126f0565b9150613207826131c6565b602082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b7f45786365656473206d61785472616e73616374696f6e416d6f756e7400000000600082015250565b6000613268601c836126f0565b915061327382613232565b602082019050919050565b600060208201905081810360008301526132978161325b565b9050919050565b7f45786365656473206d617857616c6c6574000000000000000000000000000000600082015250565b60006132d46011836126f0565b91506132df8261329e565b602082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b600061331582612803565b915061332083612803565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335957613358612cd7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061339e82612803565b91506133a983612803565b9250826133b9576133b8613364565b5b828204905092915050565b60006133cf82612803565b91506133da83612803565b9250828210156133ed576133ec612cd7565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613465816127d7565b92915050565b600060208284031215613481576134806127a0565b5b600061348f84828501613456565b91505092915050565b6000819050919050565b60006134bd6134b86134b384613498565b6128dc565b612803565b9050919050565b6134cd816134a2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613508816127c5565b82525050565b600061351a83836134ff565b60208301905092915050565b6000602082019050919050565b600061353e826134d3565b61354881856134de565b9350613553836134ef565b8060005b8381101561358457815161356b888261350e565b975061357683613526565b925050600181019050613557565b5085935050505092915050565b600060a0820190506135a66000830188612956565b6135b360208301876134c4565b81810360408301526135c58186613533565b90506135d46060830185612a37565b6135e16080830184612956565b969550505050505056fea2646970667358221220072b0ca3b2e13b041d048865a30c4a11b7998ad89d34d34b84ef1b119401738f64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063bbc0c742116100a0578063dd62ed3e1161006f578063dd62ed3e14610744578063e77f35c414610781578063f2fde38b146107aa578063f8b45b05146107d3578063fa09e630146107fe57610204565b8063bbc0c7421461069a578063c8c8ebe4146106c5578063cc1776d3146106f0578063cf0848f71461071b57610204565b80638ea5220f116100dc5780638ea5220f146105ca57806395d89b41146105f5578063a457c2d714610620578063a9059cbb1461065d57610204565b8063715018a6146105465780638124f7ac1461055d5780638a8c523c146105885780638da5cb5b1461059f57610204565b8063395093511161019057806349bd5a5e1161015f57806349bd5a5e146104395780634bb2c785146104645780634f7041a5146104a15780635342acb4146104cc57806370a082311461050957610204565b8063395093511461038157806342966c68146103be578063436d3340146103e7578063437823ec1461041057610204565b806318160ddd116101cc57806318160ddd146102c55780631816467f146102f057806323b872dd14610319578063313ce5671461035657610204565b806306fdde0314610209578063095ea7b31461023457806312185a39146102715780631694505e1461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610827565b60405161022b919061277e565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612839565b6108b9565b6040516102689190612894565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906128af565b6108d7565b005b3480156102a657600080fd5b506102af6109dc565b6040516102bc919061293b565b60405180910390f35b3480156102d157600080fd5b506102da610a00565b6040516102e79190612965565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612980565b610a0a565b005b34801561032557600080fd5b50610340600480360381019061033b91906129ad565b610b01565b60405161034d9190612894565b60405180910390f35b34801561036257600080fd5b5061036b610bf9565b6040516103789190612a1c565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612839565b610c02565b6040516103b59190612894565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906128af565b610cae565b005b3480156103f357600080fd5b5061040e600480360381019061040991906128af565b610d71565b005b34801561041c57600080fd5b5061043760048036038101906104329190612980565b610e76565b005b34801561044557600080fd5b5061044e610f4d565b60405161045b9190612a46565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190612980565b610f73565b6040516104989190612894565b60405180910390f35b3480156104ad57600080fd5b506104b6610f93565b6040516104c39190612965565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612980565b610f99565b6040516105009190612894565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612980565b610fb9565b60405161053d9190612965565b60405180910390f35b34801561055257600080fd5b5061055b611001565b005b34801561056957600080fd5b50610572611089565b60405161057f9190612965565b60405180910390f35b34801561059457600080fd5b5061059d61108f565b005b3480156105ab57600080fd5b506105b4611128565b6040516105c19190612a46565b60405180910390f35b3480156105d657600080fd5b506105df611152565b6040516105ec9190612a46565b60405180910390f35b34801561060157600080fd5b5061060a611178565b604051610617919061277e565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612839565b61120a565b6040516106549190612894565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612839565b6112f5565b6040516106919190612894565b60405180910390f35b3480156106a657600080fd5b506106af611313565b6040516106bc9190612894565b60405180910390f35b3480156106d157600080fd5b506106da611326565b6040516106e79190612965565b60405180910390f35b3480156106fc57600080fd5b5061070561132c565b6040516107129190612965565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190612980565b611332565b005b34801561075057600080fd5b5061076b60048036038101906107669190612a61565b611409565b6040516107789190612965565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a391906128af565b611490565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190612980565b611595565b005b3480156107df57600080fd5b506107e861168d565b6040516107f59190612965565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612adf565b611693565b005b60606003805461083690612b3b565b80601f016020809104026020016040519081016040528092919081815260200182805461086290612b3b565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108cd6108c6611759565b8484611761565b6001905092915050565b6108df611759565b73ffffffffffffffffffffffffffffffffffffffff166108fd611128565b73ffffffffffffffffffffffffffffffffffffffff1614610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90612bb9565b60405180910390fd5b80600b819055506014600b5411156109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612c25565b60405180910390fd5b7fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11600a546040516109d19190612965565b60405180910390a150565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610a12611759565b73ffffffffffffffffffffffffffffffffffffffff16610a30611128565b73ffffffffffffffffffffffffffffffffffffffff1614610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90612bb9565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb81604051610af69190612a46565b60405180910390a150565b6000610b0e84848461192c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b59611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090612cb7565b60405180910390fd5b610bed85610be5611759565b858403611761565b60019150509392505050565b60006012905090565b6000610ca4610c0f611759565b848460016000610c1d611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9f9190612d06565b611761565b6001905092915050565b610cb6611759565b73ffffffffffffffffffffffffffffffffffffffff16610cd4611128565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190612bb9565b60405180910390fd5b610d373061dead836120f3565b7fb1f67ade07cda330ac167f4fcc4c01b94fdfc04d401cf85e487f0a5b8b98e75f81604051610d669190612965565b60405180910390a150565b610d79611759565b73ffffffffffffffffffffffffffffffffffffffff16610d97611128565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490612bb9565b60405180910390fd5b80600a819055506014600a541115610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612c25565b60405180910390fd5b7f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce600a54604051610e6b9190612965565b60405180910390a150565b610e7e611759565b73ffffffffffffffffffffffffffffffffffffffff16610e9c611128565b73ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990612bb9565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900460ff1681565b600a5481565b60086020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611009611759565b73ffffffffffffffffffffffffffffffffffffffff16611027611128565b73ffffffffffffffffffffffffffffffffffffffff161461107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612bb9565b60405180910390fd5b6110876000612374565b565b600c5481565b611097611759565b73ffffffffffffffffffffffffffffffffffffffff166110b5611128565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612bb9565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461118790612b3b565b80601f01602080910402602001604051908101604052809291908181526020018280546111b390612b3b565b80156112005780601f106111d557610100808354040283529160200191611200565b820191906000526020600020905b8154815290600101906020018083116111e357829003601f168201915b5050505050905090565b60008060016000611219611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612dce565b60405180910390fd5b6112ea6112e1611759565b85858403611761565b600191505092915050565b6000611309611302611759565b848461192c565b6001905092915050565b600f60019054906101000a900460ff1681565b600e5481565b600b5481565b61133a611759565b73ffffffffffffffffffffffffffffffffffffffff16611358611128565b73ffffffffffffffffffffffffffffffffffffffff16146113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612bb9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611498611759565b73ffffffffffffffffffffffffffffffffffffffff166114b6611128565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612bb9565b60405180910390fd5b80600c819055506032600c541115611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090612e3a565b60405180910390fd5b7fe9b79e1a6c2dc43b4c0c6ff01ce9e3332d810e482270f464c0a21ad6c5fc6de3600a5460405161158a9190612965565b60405180910390a150565b61159d611759565b73ffffffffffffffffffffffffffffffffffffffff166115bb611128565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890612ecc565b60405180910390fd5b61168a81612374565b50565b600d5481565b61169b611759565b73ffffffffffffffffffffffffffffffffffffffff166116b9611128565b73ffffffffffffffffffffffffffffffffffffffff161461170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690612bb9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611755573d6000803e3d6000fd5b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612f5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890612ff0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161191f9190612965565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613082565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613114565b60405180910390fd5b80611a1684610fb9565b1015611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906131a6565b60405180910390fd5b6000811415611a7157611a6c838360006120f3565b6120ee565b6000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480611b1f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15611fcc57600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bc55750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bd257839250611fbc565b600f60019054906101000a900460ff16611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613212565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611e8157600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d0d57600e54841115611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d039061327e565b60405180910390fd5b5b611d356064611d27600b548761243a90919063ffffffff16565b61245090919063ffffffff16565b9050611d428630836120f3565b611d55818561246690919063ffffffff16565b9250611d6030610fb9565b9150600082118015611d7f5750600f60009054906101000a900460ff16155b8015611dd55750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e2b5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e375750600081115b15611e7c576001600f60006101000a81548160ff021916908315150217905550611e608161247c565b6000600f60006101000a81548160ff0219169083151502179055505b611fbb565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f7057600e54841115611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e9061327e565b60405180910390fd5b600d54611f2386610fb9565b85611f2e9190612d06565b1115611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f66906132ea565b60405180910390fd5b5b611f986064611f8a600a548761243a90919063ffffffff16565b61245090919063ffffffff16565b9050611fad818561246690919063ffffffff16565b9250611fba8630836120f3565b5b5b611fc78686856120f3565b6120ea565b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120705750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207e57506000600c54115b156120dd576120ab606461209d600c548761243a90919063ffffffff16565b61245090919063ffffffff16565b90506120c0818561246690919063ffffffff16565b92506120cd8630836120f3565b6120d88686856120f3565b6120e9565b6120e88686866120f3565b5b5b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a90613082565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613114565b60405180910390fd5b6121de8383836126db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b906131a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f79190612d06565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161235b9190612965565b60405180910390a361236e8484846126e0565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612448919061330a565b905092915050565b6000818361245e9190613393565b905092915050565b6000818361247491906133c4565b905092915050565b6000600267ffffffffffffffff811115612499576124986133f8565b5b6040519080825280602002602001820160405280156124c75781602001602082028036833780820191505090505b50905030816000815181106124df576124de613427565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612584573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a8919061346b565b816001815181106125bc576125bb613427565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612621307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611761565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016126a5959493929190613591565b600060405180830381600087803b1580156126bf57600080fd5b505af11580156126d3573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561271f578082015181840152602081019050612704565b8381111561272e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612750826126e5565b61275a81856126f0565b935061276a818560208601612701565b61277381612734565b840191505092915050565b600060208201905081810360008301526127988184612745565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127d0826127a5565b9050919050565b6127e0816127c5565b81146127eb57600080fd5b50565b6000813590506127fd816127d7565b92915050565b6000819050919050565b61281681612803565b811461282157600080fd5b50565b6000813590506128338161280d565b92915050565b600080604083850312156128505761284f6127a0565b5b600061285e858286016127ee565b925050602061286f85828601612824565b9150509250929050565b60008115159050919050565b61288e81612879565b82525050565b60006020820190506128a96000830184612885565b92915050565b6000602082840312156128c5576128c46127a0565b5b60006128d384828501612824565b91505092915050565b6000819050919050565b60006129016128fc6128f7846127a5565b6128dc565b6127a5565b9050919050565b6000612913826128e6565b9050919050565b600061292582612908565b9050919050565b6129358161291a565b82525050565b6000602082019050612950600083018461292c565b92915050565b61295f81612803565b82525050565b600060208201905061297a6000830184612956565b92915050565b600060208284031215612996576129956127a0565b5b60006129a4848285016127ee565b91505092915050565b6000806000606084860312156129c6576129c56127a0565b5b60006129d4868287016127ee565b93505060206129e5868287016127ee565b92505060406129f686828701612824565b9150509250925092565b600060ff82169050919050565b612a1681612a00565b82525050565b6000602082019050612a316000830184612a0d565b92915050565b612a40816127c5565b82525050565b6000602082019050612a5b6000830184612a37565b92915050565b60008060408385031215612a7857612a776127a0565b5b6000612a86858286016127ee565b9250506020612a97858286016127ee565b9150509250929050565b6000612aac826127a5565b9050919050565b612abc81612aa1565b8114612ac757600080fd5b50565b600081359050612ad981612ab3565b92915050565b600060208284031215612af557612af46127a0565b5b6000612b0384828501612aca565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5357607f821691505b60208210811415612b6757612b66612b0c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ba36020836126f0565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000612c0f601d836126f0565b9150612c1a82612bd9565b602082019050919050565b60006020820190508181036000830152612c3e81612c02565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612ca16028836126f0565b9150612cac82612c45565b604082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d1182612803565b9150612d1c83612803565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5157612d50612cd7565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612db86025836126f0565b9150612dc382612d5c565b604082019050919050565b60006020820190508181036000830152612de781612dab565b9050919050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b6000612e24601d836126f0565b9150612e2f82612dee565b602082019050919050565b60006020820190508181036000830152612e5381612e17565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612eb66026836126f0565b9150612ec182612e5a565b604082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f486024836126f0565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fda6022836126f0565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061306c6025836126f0565b915061307782613010565b604082019050919050565b6000602082019050818103600083015261309b8161305f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130fe6023836126f0565b9150613109826130a2565b604082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006131906026836126f0565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006131fc6016836126f0565b9150613207826131c6565b602082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b7f45786365656473206d61785472616e73616374696f6e416d6f756e7400000000600082015250565b6000613268601c836126f0565b915061327382613232565b602082019050919050565b600060208201905081810360008301526132978161325b565b9050919050565b7f45786365656473206d617857616c6c6574000000000000000000000000000000600082015250565b60006132d46011836126f0565b91506132df8261329e565b602082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b600061331582612803565b915061332083612803565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335957613358612cd7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061339e82612803565b91506133a983612803565b9250826133b9576133b8613364565b5b828204905092915050565b60006133cf82612803565b91506133da83612803565b9250828210156133ed576133ec612cd7565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613465816127d7565b92915050565b600060208284031215613481576134806127a0565b5b600061348f84828501613456565b91505092915050565b6000819050919050565b60006134bd6134b86134b384613498565b6128dc565b612803565b9050919050565b6134cd816134a2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613508816127c5565b82525050565b600061351a83836134ff565b60208301905092915050565b6000602082019050919050565b600061353e826134d3565b61354881856134de565b9350613553836134ef565b8060005b8381101561358457815161356b888261350e565b975061357683613526565b925050600181019050613557565b5085935050505092915050565b600060a0820190506135a66000830188612956565b6135b360208301876134c4565b81810360408301526135c58186613533565b90506135d46060830185612a37565b6135e16080830184612956565b969550505050505056fea2646970667358221220072b0ca3b2e13b041d048865a30c4a11b7998ad89d34d34b84ef1b119401738f64736f6c634300080a0033
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.