ERC-20
Overview
Max Total Supply
1,000,000,000 FKVG
Holders
49
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
52,166,492.967659241757576864 FKVGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FKVGToken
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; /// @title FKVG Token - A token to express disagreement with Vanguard's stance on Bitcoin ETFs, F*CK VANGUARD! contract FKVGToken is ERC20, Ownable { bool public tradingActivated; uint256 private tradingStartTime; address public constant wethTokenAddr = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address public constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 public uniswapV2RouterInstance; address public uniswapV2TokenPair; uint256 public constant TOKEN_MAX_SUPPLY = 1_000_000_000 * 10 ** 18; // 1 billion tokens mapping(address => bool) private permittedAddresses; mapping(address => bool) public boycottList; address public reserveWallet; constructor( address reserveAddress ) ERC20("BOYCOTT VANGUARD", "FKVG") { reserveWallet = reserveAddress; // 90% to owner for liquidity uint256 ownerAmount = (TOKEN_MAX_SUPPLY * 90) / 100; super._mint(owner(), ownerAmount); // 10% to reserve wallet for marketing uint256 reserveAmount = (TOKEN_MAX_SUPPLY * 10) / 100; super._mint(reserveAddress, reserveAmount); // Creating a Uniswap pair for this new token uniswapV2RouterInstance = IUniswapV2Router02(routerAddress); uniswapV2TokenPair = IUniswapV2Factory( uniswapV2RouterInstance.factory() ).createPair(address(this), wethTokenAddr); permittedAddresses[owner()] = true; permittedAddresses[reserveAddress] = true; permittedAddresses[address(this)] = true; permittedAddresses[routerAddress] = true; } function _transfer( address sender, address recipient, uint256 amount ) internal override { require(sender != address(0), "Cannot send from zero address"); require(!boycottList[sender], "Sender account is on the boycott list"); require( !boycottList[recipient], "Recipient account is on the boycott list" ); if (permittedAddresses[sender] || permittedAddresses[recipient]) { super._transfer(sender, recipient, amount); return; } // Check if trading is activated require(tradingActivated, "Trading is not activated"); if (recipient == uniswapV2TokenPair || sender == uniswapV2TokenPair) { // Apply a 99% tax on trades that occur within 5 minutes of trading activation // This tax is designed to prevent sniper bots and destructive trading practices if (block.timestamp < tradingStartTime + 5 minutes) { uint256 taxAmount = (amount * 99) / 100; uint256 taxedAmount = amount - taxAmount; super._transfer(sender, reserveWallet, taxAmount); super._transfer(sender, recipient, taxedAmount); } else { super._transfer(sender, recipient, amount); } } else { // If it's not a buy or sell transaction, proceed without tax super._transfer(sender, recipient, amount); } } /// @notice Activates trading, enabling token transfers function activateTrading() external onlyOwner { tradingActivated = true; tradingStartTime = block.timestamp; } /// @notice Adds multiple addresses to the boycott list. /// @param accounts Array of addresses to be added to the list. function addToBoycottList(address[] memory accounts) external onlyOwner { for (uint i = 0; i < accounts.length; i++) { boycottList[accounts[i]] = true; } } /// @notice Removes multiple addresses from the boycott list. /// @param accounts Array of addresses to be removed from the list. function removeFromBoycottList( address[] memory accounts ) external onlyOwner { for (uint i = 0; i < accounts.length; i++) { boycottList[accounts[i]] = false; } } // Function to update the reserve wallet address function updateReserveWallet(address newWallet) external onlyOwner { require(newWallet != address(0), "Invalid address"); reserveWallet = newWallet; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
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; }
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); }
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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "paris", "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"reserveAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOKEN_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addToBoycottList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"boycottList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeFromBoycottList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tradingActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2RouterInstance","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2TokenPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateReserveWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wethTokenAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003225380380620032258339818101604052810190620000379190620007db565b6040518060400160405280601081526020017f424f59434f54542056414e4755415244000000000000000000000000000000008152506040518060400160405280600481526020017f464b5647000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000a87565b508060049081620000c6919062000a87565b505050620000e9620000dd6200050260201b60201c565b6200050a60201b60201c565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006064605a6b033b2e3c9fd0803ce800000062000149919062000b9d565b62000155919062000c17565b9050620001786200016b620005d060201b60201c565b82620005fa60201b60201c565b60006064600a6b033b2e3c9fd0803ce800000062000197919062000b9d565b620001a3919062000c17565b9050620001b78382620005fa60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a09190620007db565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620002f092919062000c60565b6020604051808303816000875af115801562000310573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003369190620007db565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960006200038c620005d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505062000d79565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006639062000cee565b60405180910390fd5b62000680600083836200076760201b60201c565b806002600082825462000694919062000d10565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000747919062000d5c565b60405180910390a362000763600083836200076c60201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a38262000776565b9050919050565b620007b58162000796565b8114620007c157600080fd5b50565b600081519050620007d581620007aa565b92915050565b600060208284031215620007f457620007f362000771565b5b60006200080484828501620007c4565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200088f57607f821691505b602082108103620008a557620008a462000847565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200090f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008d0565b6200091b8683620008d0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000968620009626200095c8462000933565b6200093d565b62000933565b9050919050565b6000819050919050565b620009848362000947565b6200099c62000993826200096f565b848454620008dd565b825550505050565b600090565b620009b3620009a4565b620009c081848462000979565b505050565b5b81811015620009e857620009dc600082620009a9565b600181019050620009c6565b5050565b601f82111562000a375762000a0181620008ab565b62000a0c84620008c0565b8101602085101562000a1c578190505b62000a3462000a2b85620008c0565b830182620009c5565b50505b505050565b600082821c905092915050565b600062000a5c6000198460080262000a3c565b1980831691505092915050565b600062000a77838362000a49565b9150826002028217905092915050565b62000a92826200080d565b67ffffffffffffffff81111562000aae5762000aad62000818565b5b62000aba825462000876565b62000ac7828285620009ec565b600060209050601f83116001811462000aff576000841562000aea578287015190505b62000af6858262000a69565b86555062000b66565b601f19841662000b0f86620008ab565b60005b8281101562000b395784890151825560018201915060208501945060208101905062000b12565b8683101562000b59578489015162000b55601f89168262000a49565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000baa8262000933565b915062000bb78362000933565b925082820262000bc78162000933565b9150828204841483151762000be15762000be062000b6e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c248262000933565b915062000c318362000933565b92508262000c445762000c4362000be8565b5b828204905092915050565b62000c5a8162000796565b82525050565b600060408201905062000c77600083018562000c4f565b62000c86602083018462000c4f565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cd6601f8362000c8d565b915062000ce38262000c9e565b602082019050919050565b6000602082019050818103600083015262000d098162000cc7565b9050919050565b600062000d1d8262000933565b915062000d2a8362000933565b925082820190508082111562000d455762000d4462000b6e565b5b92915050565b62000d568162000933565b82525050565b600060208201905062000d73600083018462000d4b565b92915050565b61249c8062000d896000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610479578063ebaa6346146104a9578063f2fde38b146104c5578063fa46a530146104e15761018e565b8063a9059cbb1461040d578063aa774afb1461043d578063d72b11bd1461045b5761018e565b8063715018a6146103495780638da5cb5b146103535780638ee2c4b81461037157806395d89b411461038f5780639d58f4a8146103ad578063a457c2d7146103dd5761018e565b8063313ce5671161014b5780634c44a538116101255780634c44a538146102c157806355d8d3b6146102df5780635dff9fc6146102fd57806370a08231146103195761018e565b8063313ce567146102555780633268cc561461027357806339509351146102915761018e565b806306fdde0314610193578063095ea7b3146101b15780630bd05b69146101e157806318160ddd146101eb578063199c27c51461020957806323b872dd14610225575b600080fd5b61019b6104ff565b6040516101a89190611682565b60405180910390f35b6101cb60048036038101906101c6919061174c565b610591565b6040516101d891906117a7565b60405180910390f35b6101e96105b4565b005b6101f36105e0565b60405161020091906117d1565b60405180910390f35b610223600480360381019061021e91906117ec565b6105ea565b005b61023f600480360381019061023a9190611819565b6106a5565b60405161024c91906117a7565b60405180910390f35b61025d6106d4565b60405161026a9190611888565b60405180910390f35b61027b6106dd565b60405161028891906118b2565b60405180910390f35b6102ab60048036038101906102a6919061174c565b6106f5565b6040516102b891906117a7565b60405180910390f35b6102c961072c565b6040516102d691906117a7565b60405180910390f35b6102e761073f565b6040516102f491906118b2565b60405180910390f35b61031760048036038101906103129190611a15565b610765565b005b610333600480360381019061032e91906117ec565b610802565b60405161034091906117d1565b60405180910390f35b61035161084a565b005b61035b61085e565b60405161036891906118b2565b60405180910390f35b610379610888565b60405161038691906117d1565b60405180910390f35b610397610898565b6040516103a49190611682565b60405180910390f35b6103c760048036038101906103c291906117ec565b61092a565b6040516103d491906117a7565b60405180910390f35b6103f760048036038101906103f2919061174c565b61094a565b60405161040491906117a7565b60405180910390f35b6104276004803603810190610422919061174c565b6109c1565b60405161043491906117a7565b60405180910390f35b6104456109e4565b6040516104529190611abd565b60405180910390f35b610463610a0a565b60405161047091906118b2565b60405180910390f35b610493600480360381019061048e9190611ad8565b610a30565b6040516104a091906117d1565b60405180910390f35b6104c360048036038101906104be9190611a15565b610ab7565b005b6104df60048036038101906104da91906117ec565b610b54565b005b6104e9610bd7565b6040516104f691906118b2565b60405180910390f35b60606003805461050e90611b47565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611b47565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610bef565b90506105a9818585610bf7565b600191505092915050565b6105bc610dc0565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b6000600254905090565b6105f2610dc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611bc4565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806106b0610bef565b90506106bd858285610e3e565b6106c8858585610eca565b60019150509392505050565b60006012905090565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600080610700610bef565b90506107218185856107128589610a30565b61071c9190611c13565b610bf7565b600191505092915050565b600560149054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61076d610dc0565b60005b81518110156107fe576001600a600084848151811061079257610791611c47565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107f690611c76565b915050610770565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610852610dc0565b61085c60006112ac565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b6060600480546108a790611b47565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611b47565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080610955610bef565b905060006109638286610a30565b9050838110156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611d30565b60405180910390fd5b6109b58286868403610bf7565b60019250505092915050565b6000806109cc610bef565b90506109d9818585610eca565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610abf610dc0565b60005b8151811015610b50576000600a6000848481518110610ae457610ae3611c47565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b4890611c76565b915050610ac2565b5050565b610b5c610dc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611dc2565b60405180910390fd5b610bd4816112ac565b50565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90611e54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90611ee6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db391906117d1565b60405180910390a3505050565b610dc8610bef565b73ffffffffffffffffffffffffffffffffffffffff16610de661085e565b73ffffffffffffffffffffffffffffffffffffffff1614610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390611f52565b60405180910390fd5b565b6000610e4a8484610a30565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec45781811015610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90611fbe565b60405180910390fd5b610ec38484848403610bf7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061202a565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906120bc565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a9061214e565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110f45750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561110957611104838383611372565b6112a7565b600560149054906101000a900460ff16611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906121ba565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806112015750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561129a5761012c6006546112169190611c13565b421015611289576000606460638361122e91906121da565b611238919061224b565b905060008183611248919061227c565b905061127785600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611372565b611282858583611372565b5050611295565b611294838383611372565b5b6112a6565b6112a5838383611372565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890612322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906123b4565b60405180910390fd5b61145b8383836115e8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612446565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cf91906117d1565b60405180910390a36115e28484846115ed565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561162c578082015181840152602081019050611611565b60008484015250505050565b6000601f19601f8301169050919050565b6000611654826115f2565b61165e81856115fd565b935061166e81856020860161160e565b61167781611638565b840191505092915050565b6000602082019050818103600083015261169c8184611649565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116e3826116b8565b9050919050565b6116f3816116d8565b81146116fe57600080fd5b50565b600081359050611710816116ea565b92915050565b6000819050919050565b61172981611716565b811461173457600080fd5b50565b60008135905061174681611720565b92915050565b60008060408385031215611763576117626116ae565b5b600061177185828601611701565b925050602061178285828601611737565b9150509250929050565b60008115159050919050565b6117a18161178c565b82525050565b60006020820190506117bc6000830184611798565b92915050565b6117cb81611716565b82525050565b60006020820190506117e660008301846117c2565b92915050565b600060208284031215611802576118016116ae565b5b600061181084828501611701565b91505092915050565b600080600060608486031215611832576118316116ae565b5b600061184086828701611701565b935050602061185186828701611701565b925050604061186286828701611737565b9150509250925092565b600060ff82169050919050565b6118828161186c565b82525050565b600060208201905061189d6000830184611879565b92915050565b6118ac816116d8565b82525050565b60006020820190506118c760008301846118a3565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61190a82611638565b810181811067ffffffffffffffff82111715611929576119286118d2565b5b80604052505050565b600061193c6116a4565b90506119488282611901565b919050565b600067ffffffffffffffff821115611968576119676118d2565b5b602082029050602081019050919050565b600080fd5b600061199161198c8461194d565b611932565b905080838252602082019050602084028301858111156119b4576119b3611979565b5b835b818110156119dd57806119c98882611701565b8452602084019350506020810190506119b6565b5050509392505050565b600082601f8301126119fc576119fb6118cd565b5b8135611a0c84826020860161197e565b91505092915050565b600060208284031215611a2b57611a2a6116ae565b5b600082013567ffffffffffffffff811115611a4957611a486116b3565b5b611a55848285016119e7565b91505092915050565b6000819050919050565b6000611a83611a7e611a79846116b8565b611a5e565b6116b8565b9050919050565b6000611a9582611a68565b9050919050565b6000611aa782611a8a565b9050919050565b611ab781611a9c565b82525050565b6000602082019050611ad26000830184611aae565b92915050565b60008060408385031215611aef57611aee6116ae565b5b6000611afd85828601611701565b9250506020611b0e85828601611701565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b5f57607f821691505b602082108103611b7257611b71611b18565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611bae600f836115fd565b9150611bb982611b78565b602082019050919050565b60006020820190508181036000830152611bdd81611ba1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c1e82611716565b9150611c2983611716565b9250828201905080821115611c4157611c40611be4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611c8182611716565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cb357611cb2611be4565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a6025836115fd565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dac6026836115fd565b9150611db782611d50565b604082019050919050565b60006020820190508181036000830152611ddb81611d9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e3e6024836115fd565b9150611e4982611de2565b604082019050919050565b60006020820190508181036000830152611e6d81611e31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ed06022836115fd565b9150611edb82611e74565b604082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f3c6020836115fd565b9150611f4782611f06565b602082019050919050565b60006020820190508181036000830152611f6b81611f2f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa8601d836115fd565b9150611fb382611f72565b602082019050919050565b60006020820190508181036000830152611fd781611f9b565b9050919050565b7f43616e6e6f742073656e642066726f6d207a65726f2061646472657373000000600082015250565b6000612014601d836115fd565b915061201f82611fde565b602082019050919050565b6000602082019050818103600083015261204381612007565b9050919050565b7f53656e646572206163636f756e74206973206f6e2074686520626f79636f747460008201527f206c697374000000000000000000000000000000000000000000000000000000602082015250565b60006120a66025836115fd565b91506120b18261204a565b604082019050919050565b600060208201905081810360008301526120d581612099565b9050919050565b7f526563697069656e74206163636f756e74206973206f6e2074686520626f796360008201527f6f7474206c697374000000000000000000000000000000000000000000000000602082015250565b60006121386028836115fd565b9150612143826120dc565b604082019050919050565b600060208201905081810360008301526121678161212b565b9050919050565b7f54726164696e67206973206e6f74206163746976617465640000000000000000600082015250565b60006121a46018836115fd565b91506121af8261216e565b602082019050919050565b600060208201905081810360008301526121d381612197565b9050919050565b60006121e582611716565b91506121f083611716565b92508282026121fe81611716565b9150828204841483151761221557612214611be4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061225682611716565b915061226183611716565b9250826122715761227061221c565b5b828204905092915050565b600061228782611716565b915061229283611716565b92508282039050818111156122aa576122a9611be4565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061230c6025836115fd565b9150612317826122b0565b604082019050919050565b6000602082019050818103600083015261233b816122ff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061239e6023836115fd565b91506123a982612342565b604082019050919050565b600060208201905081810360008301526123cd81612391565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124306026836115fd565b915061243b826123d4565b604082019050919050565b6000602082019050818103600083015261245f81612423565b905091905056fea26469706673582212208bf7043cc5383796ceb5ccc1bd60799463cbcc10cab423e5347f01be978cd83864736f6c63430008140033000000000000000000000000f6e7975d18fcc7871d56e15f5e3876fef0186728
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610479578063ebaa6346146104a9578063f2fde38b146104c5578063fa46a530146104e15761018e565b8063a9059cbb1461040d578063aa774afb1461043d578063d72b11bd1461045b5761018e565b8063715018a6146103495780638da5cb5b146103535780638ee2c4b81461037157806395d89b411461038f5780639d58f4a8146103ad578063a457c2d7146103dd5761018e565b8063313ce5671161014b5780634c44a538116101255780634c44a538146102c157806355d8d3b6146102df5780635dff9fc6146102fd57806370a08231146103195761018e565b8063313ce567146102555780633268cc561461027357806339509351146102915761018e565b806306fdde0314610193578063095ea7b3146101b15780630bd05b69146101e157806318160ddd146101eb578063199c27c51461020957806323b872dd14610225575b600080fd5b61019b6104ff565b6040516101a89190611682565b60405180910390f35b6101cb60048036038101906101c6919061174c565b610591565b6040516101d891906117a7565b60405180910390f35b6101e96105b4565b005b6101f36105e0565b60405161020091906117d1565b60405180910390f35b610223600480360381019061021e91906117ec565b6105ea565b005b61023f600480360381019061023a9190611819565b6106a5565b60405161024c91906117a7565b60405180910390f35b61025d6106d4565b60405161026a9190611888565b60405180910390f35b61027b6106dd565b60405161028891906118b2565b60405180910390f35b6102ab60048036038101906102a6919061174c565b6106f5565b6040516102b891906117a7565b60405180910390f35b6102c961072c565b6040516102d691906117a7565b60405180910390f35b6102e761073f565b6040516102f491906118b2565b60405180910390f35b61031760048036038101906103129190611a15565b610765565b005b610333600480360381019061032e91906117ec565b610802565b60405161034091906117d1565b60405180910390f35b61035161084a565b005b61035b61085e565b60405161036891906118b2565b60405180910390f35b610379610888565b60405161038691906117d1565b60405180910390f35b610397610898565b6040516103a49190611682565b60405180910390f35b6103c760048036038101906103c291906117ec565b61092a565b6040516103d491906117a7565b60405180910390f35b6103f760048036038101906103f2919061174c565b61094a565b60405161040491906117a7565b60405180910390f35b6104276004803603810190610422919061174c565b6109c1565b60405161043491906117a7565b60405180910390f35b6104456109e4565b6040516104529190611abd565b60405180910390f35b610463610a0a565b60405161047091906118b2565b60405180910390f35b610493600480360381019061048e9190611ad8565b610a30565b6040516104a091906117d1565b60405180910390f35b6104c360048036038101906104be9190611a15565b610ab7565b005b6104df60048036038101906104da91906117ec565b610b54565b005b6104e9610bd7565b6040516104f691906118b2565b60405180910390f35b60606003805461050e90611b47565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611b47565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610bef565b90506105a9818585610bf7565b600191505092915050565b6105bc610dc0565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b6000600254905090565b6105f2610dc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611bc4565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806106b0610bef565b90506106bd858285610e3e565b6106c8858585610eca565b60019150509392505050565b60006012905090565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600080610700610bef565b90506107218185856107128589610a30565b61071c9190611c13565b610bf7565b600191505092915050565b600560149054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61076d610dc0565b60005b81518110156107fe576001600a600084848151811061079257610791611c47565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107f690611c76565b915050610770565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610852610dc0565b61085c60006112ac565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b6060600480546108a790611b47565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611b47565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080610955610bef565b905060006109638286610a30565b9050838110156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611d30565b60405180910390fd5b6109b58286868403610bf7565b60019250505092915050565b6000806109cc610bef565b90506109d9818585610eca565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610abf610dc0565b60005b8151811015610b50576000600a6000848481518110610ae457610ae3611c47565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b4890611c76565b915050610ac2565b5050565b610b5c610dc0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611dc2565b60405180910390fd5b610bd4816112ac565b50565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90611e54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90611ee6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db391906117d1565b60405180910390a3505050565b610dc8610bef565b73ffffffffffffffffffffffffffffffffffffffff16610de661085e565b73ffffffffffffffffffffffffffffffffffffffff1614610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390611f52565b60405180910390fd5b565b6000610e4a8484610a30565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec45781811015610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90611fbe565b60405180910390fd5b610ec38484848403610bf7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f309061202a565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906120bc565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a9061214e565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110f45750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561110957611104838383611372565b6112a7565b600560149054906101000a900460ff16611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906121ba565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806112015750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561129a5761012c6006546112169190611c13565b421015611289576000606460638361122e91906121da565b611238919061224b565b905060008183611248919061227c565b905061127785600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611372565b611282858583611372565b5050611295565b611294838383611372565b5b6112a6565b6112a5838383611372565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890612322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906123b4565b60405180910390fd5b61145b8383836115e8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612446565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cf91906117d1565b60405180910390a36115e28484846115ed565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561162c578082015181840152602081019050611611565b60008484015250505050565b6000601f19601f8301169050919050565b6000611654826115f2565b61165e81856115fd565b935061166e81856020860161160e565b61167781611638565b840191505092915050565b6000602082019050818103600083015261169c8184611649565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116e3826116b8565b9050919050565b6116f3816116d8565b81146116fe57600080fd5b50565b600081359050611710816116ea565b92915050565b6000819050919050565b61172981611716565b811461173457600080fd5b50565b60008135905061174681611720565b92915050565b60008060408385031215611763576117626116ae565b5b600061177185828601611701565b925050602061178285828601611737565b9150509250929050565b60008115159050919050565b6117a18161178c565b82525050565b60006020820190506117bc6000830184611798565b92915050565b6117cb81611716565b82525050565b60006020820190506117e660008301846117c2565b92915050565b600060208284031215611802576118016116ae565b5b600061181084828501611701565b91505092915050565b600080600060608486031215611832576118316116ae565b5b600061184086828701611701565b935050602061185186828701611701565b925050604061186286828701611737565b9150509250925092565b600060ff82169050919050565b6118828161186c565b82525050565b600060208201905061189d6000830184611879565b92915050565b6118ac816116d8565b82525050565b60006020820190506118c760008301846118a3565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61190a82611638565b810181811067ffffffffffffffff82111715611929576119286118d2565b5b80604052505050565b600061193c6116a4565b90506119488282611901565b919050565b600067ffffffffffffffff821115611968576119676118d2565b5b602082029050602081019050919050565b600080fd5b600061199161198c8461194d565b611932565b905080838252602082019050602084028301858111156119b4576119b3611979565b5b835b818110156119dd57806119c98882611701565b8452602084019350506020810190506119b6565b5050509392505050565b600082601f8301126119fc576119fb6118cd565b5b8135611a0c84826020860161197e565b91505092915050565b600060208284031215611a2b57611a2a6116ae565b5b600082013567ffffffffffffffff811115611a4957611a486116b3565b5b611a55848285016119e7565b91505092915050565b6000819050919050565b6000611a83611a7e611a79846116b8565b611a5e565b6116b8565b9050919050565b6000611a9582611a68565b9050919050565b6000611aa782611a8a565b9050919050565b611ab781611a9c565b82525050565b6000602082019050611ad26000830184611aae565b92915050565b60008060408385031215611aef57611aee6116ae565b5b6000611afd85828601611701565b9250506020611b0e85828601611701565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b5f57607f821691505b602082108103611b7257611b71611b18565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611bae600f836115fd565b9150611bb982611b78565b602082019050919050565b60006020820190508181036000830152611bdd81611ba1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c1e82611716565b9150611c2983611716565b9250828201905080821115611c4157611c40611be4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611c8182611716565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cb357611cb2611be4565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a6025836115fd565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dac6026836115fd565b9150611db782611d50565b604082019050919050565b60006020820190508181036000830152611ddb81611d9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e3e6024836115fd565b9150611e4982611de2565b604082019050919050565b60006020820190508181036000830152611e6d81611e31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ed06022836115fd565b9150611edb82611e74565b604082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f3c6020836115fd565b9150611f4782611f06565b602082019050919050565b60006020820190508181036000830152611f6b81611f2f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa8601d836115fd565b9150611fb382611f72565b602082019050919050565b60006020820190508181036000830152611fd781611f9b565b9050919050565b7f43616e6e6f742073656e642066726f6d207a65726f2061646472657373000000600082015250565b6000612014601d836115fd565b915061201f82611fde565b602082019050919050565b6000602082019050818103600083015261204381612007565b9050919050565b7f53656e646572206163636f756e74206973206f6e2074686520626f79636f747460008201527f206c697374000000000000000000000000000000000000000000000000000000602082015250565b60006120a66025836115fd565b91506120b18261204a565b604082019050919050565b600060208201905081810360008301526120d581612099565b9050919050565b7f526563697069656e74206163636f756e74206973206f6e2074686520626f796360008201527f6f7474206c697374000000000000000000000000000000000000000000000000602082015250565b60006121386028836115fd565b9150612143826120dc565b604082019050919050565b600060208201905081810360008301526121678161212b565b9050919050565b7f54726164696e67206973206e6f74206163746976617465640000000000000000600082015250565b60006121a46018836115fd565b91506121af8261216e565b602082019050919050565b600060208201905081810360008301526121d381612197565b9050919050565b60006121e582611716565b91506121f083611716565b92508282026121fe81611716565b9150828204841483151761221557612214611be4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061225682611716565b915061226183611716565b9250826122715761227061221c565b5b828204905092915050565b600061228782611716565b915061229283611716565b92508282039050818111156122aa576122a9611be4565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061230c6025836115fd565b9150612317826122b0565b604082019050919050565b6000602082019050818103600083015261233b816122ff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061239e6023836115fd565b91506123a982612342565b604082019050919050565b600060208201905081810360008301526123cd81612391565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124306026836115fd565b915061243b826123d4565b604082019050919050565b6000602082019050818103600083015261245f81612423565b905091905056fea26469706673582212208bf7043cc5383796ceb5ccc1bd60799463cbcc10cab423e5347f01be978cd83864736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f6e7975d18fcc7871d56e15f5e3876fef0186728
-----Decoded View---------------
Arg [0] : reserveAddress (address): 0xF6E7975d18fcC7871D56e15F5E3876Fef0186728
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f6e7975d18fcc7871d56e15f5e3876fef0186728
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.