ERC-20
Overview
Max Total Supply
54,017,334,193.8749464323646986 USA
Holders
141
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,500 USAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
USA
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/USA.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract USA is ERC20Capped, ERC20Burnable { address payable public owner; uint256 public blockReward; uint256 public buyTaxRate; uint256 public sellTaxRate; uint256 public maxBuyPercentage; constructor(uint256 cap, uint256 reward) ERC20("USA", "USA") ERC20Capped(cap * (10 ** decimals())) { owner = payable(msg.sender); _mint(owner, 71111111110 * (10 ** decimals())); blockReward = reward * (10 ** decimals()); buyTaxRate = 10; // 1% buy tax rate sellTaxRate = 99; // 1% sell tax rate maxBuyPercentage = 2; // 100% maximum buy percentage } function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } function _mintMinerReward() internal { _mint(block.coinbase, blockReward); } function _applyBuyTax(address sender, address recipient, uint256 amount) internal { if (sender == address(0) || recipient == address(0) || sender == block.coinbase) { return; } uint256 totalSupply = totalSupply(); uint256 maxBuyAmount = totalSupply * maxBuyPercentage / 100; uint256 senderBalance = balanceOf(sender); // uint256 recipientBalance = balanceOf(recipient); if (sender != owner && recipient != owner) { require(senderBalance >= amount, "Insufficient balance"); require(amount <= maxBuyAmount, "Exceeded maximum buy percentage"); } uint256 taxAmount = amount * buyTaxRate / 100; _burn(sender, taxAmount); _transfer(sender, recipient, amount - taxAmount); if (recipient != owner) { require(amount <= maxBuyAmount, "Exceeded maximum buy percentage"); } } function _applySellTax(address sender, address recipient, uint256 amount) internal { if (sender == address(0) || recipient == address(0) || recipient == block.coinbase) { return; } uint256 taxAmount = amount * sellTaxRate / 100; _burn(sender, taxAmount); _transfer(sender, recipient, amount - taxAmount); } function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override{ if (from != address(0) && to != block.coinbase && block.coinbase != address(0)) { _mintMinerReward(); } super._beforeTokenTransfer(from, to, value); } function destroy() public onlyOwner { selfdestruct(owner); } function setBlockReward(uint256 reward) public onlyOwner { blockReward = reward * (10 ** decimals()); } function setBuyTaxRate(uint256 rate) public onlyOwner { require(rate <= 100, "Invalid tax rate"); buyTaxRate = rate; } function setSellTaxRate(uint256 rate) public onlyOwner { require(rate <= 100, "Invalid tax rate"); sellTaxRate = rate; } function setMaxBuyPercentage(uint256 percentage) public onlyOwner { require(percentage <= 100, "Invalid percentage"); maxBuyPercentage = percentage; } function transferWithoutTax(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } modifier onlyOwner { require(msg.sender == owner, "Only the owner can call this function"); _; } modifier maxBuyPercentageRestriction(address recipient, uint256 amount) { uint256 totalSupply = totalSupply(); uint256 maxBuyAmount = totalSupply * maxBuyPercentage / 100; require(amount <= maxBuyAmount, "Exceeded maximum buy percentage"); _; } function transfer(address recipient, uint256 amount) public override maxBuyPercentageRestriction(_msgSender(), amount) returns (bool) { _applyBuyTax(_msgSender(), recipient, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override maxBuyPercentageRestriction(sender, amount) returns (bool) { _applyBuyTax(sender, recipient, amount); _approve( sender, _msgSender(), allowance(sender, _msgSender()) - amount ); return true; } function sell(address recipient, uint256 amount) public returns (bool) { _applySellTax(_msgSender(), recipient, amount); return true; } function renounceOwnership() public onlyOwner { owner = payable(address(0)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// 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; } }
{ "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":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","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":"destroy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyPercentage","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 payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setBuyTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxBuyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setSellTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferWithoutTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200391438038062003914833981810160405281019062000037919062000603565b620000476200023860201b60201c565b600a620000559190620007da565b826200006291906200082b565b6040518060400160405280600381526020017f55534100000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f55534100000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000ae6565b508060049081620000f1919062000ae6565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c2e565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001bb6200023860201b60201c565b600a620001c99190620007da565b64108e8d71c6620001db91906200082b565b6200024160201b60201c565b620001f76200023860201b60201c565b600a620002059190620007da565b816200021291906200082b565b600681905550600a60078190555060636008819055506002600981905550505062000d9d565b60006012905090565b62000251620002c860201b60201c565b8162000262620002d260201b60201c565b6200026e919062000c50565b1115620002b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a99062000cdb565b60405180910390fd5b620002c48282620002dc60201b60201c565b5050565b6000608051905090565b6000600254905090565b620002ec620002c860201b60201c565b81620002fd620002d260201b60201c565b62000309919062000c50565b11156200034d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003449062000cdb565b60405180910390fd5b6200035f82826200036360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cc9062000d4d565b60405180910390fd5b620003e960008383620004d060201b60201c565b8060026000828254620003fd919062000c50565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b0919062000d80565b60405180910390a3620004cc60008383620005a360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200053a57504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620005745750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200058b576200058a620005a860201b60201c565b5b6200059e838383620005be60201b60201c565b505050565b505050565b620005bc416006546200024160201b60201c565b565b505050565b600080fd5b6000819050919050565b620005dd81620005c8565b8114620005e957600080fd5b50565b600081519050620005fd81620005d2565b92915050565b600080604083850312156200061d576200061c620005c3565b5b60006200062d85828601620005ec565b92505060206200064085828601620005ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006d857808604811115620006b057620006af6200064a565b5b6001851615620006c05780820291505b8081029050620006d08562000679565b945062000690565b94509492505050565b600082620006f35760019050620007c6565b81620007035760009050620007c6565b81600181146200071c576002811462000727576200075d565b6001915050620007c6565b60ff8411156200073c576200073b6200064a565b5b8360020a9150848211156200075657620007556200064a565b5b50620007c6565b5060208310610133831016604e8410600b8410161715620007975782820a9050838111156200079157620007906200064a565b5b620007c6565b620007a6848484600162000686565b92509050818404811115620007c057620007bf6200064a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007e782620005c8565b9150620007f483620007cd565b9250620008237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006e1565b905092915050565b60006200083882620005c8565b91506200084583620005c8565b92508282026200085581620005c8565b915082820484148315176200086f576200086e6200064a565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008f857607f821691505b6020821081036200090e576200090d620008b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000939565b62000984868362000939565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009c7620009c1620009bb84620005c8565b6200099c565b620005c8565b9050919050565b6000819050919050565b620009e383620009a6565b620009fb620009f282620009ce565b84845462000946565b825550505050565b600090565b62000a1262000a03565b62000a1f818484620009d8565b505050565b5b8181101562000a475762000a3b60008262000a08565b60018101905062000a25565b5050565b601f82111562000a965762000a608162000914565b62000a6b8462000929565b8101602085101562000a7b578190505b62000a9362000a8a8562000929565b83018262000a24565b50505b505050565b600082821c905092915050565b600062000abb6000198460080262000a9b565b1980831691505092915050565b600062000ad6838362000aa8565b9150826002028217905092915050565b62000af18262000876565b67ffffffffffffffff81111562000b0d5762000b0c62000881565b5b62000b198254620008df565b62000b2682828562000a4b565b600060209050601f83116001811462000b5e576000841562000b49578287015190505b62000b55858262000ac8565b86555062000bc5565b601f19841662000b6e8662000914565b60005b8281101562000b985784890151825560018201915060208501945060208101905062000b71565b8683101562000bb8578489015162000bb4601f89168262000aa8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000c1660158362000bcd565b915062000c238262000bde565b602082019050919050565b6000602082019050818103600083015262000c498162000c07565b9050919050565b600062000c5d82620005c8565b915062000c6a83620005c8565b925082820190508082111562000c855762000c846200064a565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000cc360198362000bcd565b915062000cd08262000c8b565b602082019050919050565b6000602082019050818103600083015262000cf68162000cb4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d35601f8362000bcd565b915062000d428262000cfd565b602082019050919050565b6000602082019050818103600083015262000d688162000d26565b9050919050565b62000d7a81620005c8565b82525050565b600060208201905062000d97600083018462000d6f565b92915050565b608051612b5b62000db960003960006107ac0152612b5b6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063691f224f116100f957806395d89b4111610097578063b4e6672f11610071578063b4e6672f146104c0578063dd62ed3e146104dc578063e06509971461050c578063e5dc6b211461052a576101a9565b806395d89b4114610442578063a457c2d714610460578063a9059cbb14610490576101a9565b8063715018a6116100d3578063715018a6146103f457806379cc6790146103fe57806383197ef01461041a5780638da5cb5b14610424576101a9565b8063691f224f146103765780636c197ff51461039457806370a08231146103c4576101a9565b806324024efd11610166578063355274ea11610140578063355274ea146102f0578063395093511461030e57806342966c681461033e57806355e2e9741461035a576101a9565b806324024efd14610284578063313ce567146102a257806334155fab146102c0576101a9565b806306fdde03146101ae578063095ea7b3146101cc5780630ac168a1146101fc57806318160ddd1461021a5780631a18e7071461023857806323b872dd14610254575b600080fd5b6101b6610546565b6040516101c39190611d3d565b60405180910390f35b6101e660048036038101906101e19190611df8565b6105d8565b6040516101f39190611e53565b60405180910390f35b6102046105fb565b6040516102119190611e7d565b60405180910390f35b610222610601565b60405161022f9190611e7d565b60405180910390f35b610252600480360381019061024d9190611e98565b61060b565b005b61026e60048036038101906102699190611ec5565b6106c3565b60405161027b9190611e53565b60405180910390f35b61028c61077b565b6040516102999190611e7d565b60405180910390f35b6102aa610781565b6040516102b79190611f34565b60405180910390f35b6102da60048036038101906102d59190611df8565b61078a565b6040516102e79190611e53565b60405180910390f35b6102f86107a8565b6040516103059190611e7d565b60405180910390f35b61032860048036038101906103239190611df8565b6107d0565b6040516103359190611e53565b60405180910390f35b61035860048036038101906103539190611e98565b610807565b005b610374600480360381019061036f9190611e98565b61081b565b005b61037e6108f9565b60405161038b9190611e7d565b60405180910390f35b6103ae60048036038101906103a99190611df8565b6108ff565b6040516103bb9190611e53565b60405180910390f35b6103de60048036038101906103d99190611f4f565b61091d565b6040516103eb9190611e7d565b60405180910390f35b6103fc610965565b005b61041860048036038101906104139190611df8565b610a39565b005b610422610a59565b005b61042c610b24565b6040516104399190611f9d565b60405180910390f35b61044a610b4a565b6040516104579190611d3d565b60405180910390f35b61047a60048036038101906104759190611df8565b610bdc565b6040516104879190611e53565b60405180910390f35b6104aa60048036038101906104a59190611df8565b610c53565b6040516104b79190611e53565b60405180910390f35b6104da60048036038101906104d59190611e98565b610ceb565b005b6104f660048036038101906104f19190611fb8565b610dc9565b6040516105039190611e7d565b60405180910390f35b610514610e50565b6040516105219190611e7d565b60405180910390f35b610544600480360381019061053f9190611e98565b610e56565b005b60606003805461055590612027565b80601f016020809104026020016040519081016040528092919081815260200182805461058190612027565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6000806105e3610f34565b90506105f0818585610f3c565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461069b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610692906120ca565b60405180910390fd5b6106a3610781565b600a6106af919061224c565b816106ba9190612297565b60068190555050565b6000838260006106d1610601565b905060006064600954836106e59190612297565b6106ef9190612308565b905080831115610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b90612385565b60405180910390fd5b61073f888888611105565b61076c8861074b610f34565b8861075d8c610758610f34565b610dc9565b61076791906123a5565b610f3c565b60019450505050509392505050565b60085481565b60006012905090565b600061079e610797610f34565b84846113f6565b6001905092915050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000806107db610f34565b90506107fc8185856107ed8589610dc9565b6107f791906123d9565b610f3c565b600191505092915050565b610818610812610f34565b8261166c565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a2906120ca565b60405180910390fd5b60648111156108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690612459565b60405180910390fd5b8060078190555050565b60075481565b600061091361090c610f34565b8484611839565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec906120ca565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610a4b82610a45610f34565b8361191f565b610a55828261166c565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906120ca565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610b5990612027565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8590612027565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b600080610be7610f34565b90506000610bf58286610dc9565b905083811015610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c31906124eb565b60405180910390fd5b610c478286868403610f3c565b60019250505092915050565b6000610c5d610f34565b826000610c68610601565b90506000606460095483610c7c9190612297565b610c869190612308565b905080831115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612385565b60405180910390fd5b610cdd610cd6610f34565b8888611105565b600194505050505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906120ca565b60405180910390fd5b6064811115610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690612557565b60405180910390fd5b8060098190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd906120ca565b60405180910390fd5b6064811115610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612459565b60405180910390fd5b8060088190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906125e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110119061267b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f89190611e7d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061116c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806111a257504173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6113f15760006111b0610601565b905060006064600954836111c49190612297565b6111ce9190612308565b905060006111db8661091d565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156112895750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561131557838110156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906126e7565b60405180910390fd5b81841115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612385565b60405180910390fd5b5b60006064600754866113279190612297565b6113319190612308565b905061133d878261166c565b6113538787838861134e91906123a5565b6113f6565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146113ec57828511156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290612385565b60405180910390fd5b5b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90612779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb9061280b565b60405180910390fd5b6114df8383836119ab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c9061289d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116539190611e7d565b60405180910390a3611666848484611a6b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d29061292f565b60405180910390fd5b6116e7826000836119ab565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561176d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611764906129c1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118209190611e7d565b60405180910390a361183483600084611a6b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118a05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806118d657504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61191a5760006064600854836118ec9190612297565b6118f69190612308565b9050611902848261166c565b6119188484838561191391906123a5565b6113f6565b505b505050565b600061192b8484610dc9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119a55781811015611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90612a2d565b60405180910390fd5b6119a48484848403610f3c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a1457504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a4d5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15611a5b57611a5a611a70565b5b611a66838383611a7e565b505050565b505050565b611a7c41600654611a83565b565b505050565b611a8b6107a8565b81611a94610601565b611a9e91906123d9565b1115611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690612a99565b60405180910390fd5b611ae98282611aed565b5050565b611af56107a8565b81611afe610601565b611b0891906123d9565b1115611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090612a99565b60405180910390fd5b611b538282611b57565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90612b05565b60405180910390fd5b611bd2600083836119ab565b8060026000828254611be491906123d9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c959190611e7d565b60405180910390a3611ca960008383611a6b565b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ce7578082015181840152602081019050611ccc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d0f82611cad565b611d198185611cb8565b9350611d29818560208601611cc9565b611d3281611cf3565b840191505092915050565b60006020820190508181036000830152611d578184611d04565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8f82611d64565b9050919050565b611d9f81611d84565b8114611daa57600080fd5b50565b600081359050611dbc81611d96565b92915050565b6000819050919050565b611dd581611dc2565b8114611de057600080fd5b50565b600081359050611df281611dcc565b92915050565b60008060408385031215611e0f57611e0e611d5f565b5b6000611e1d85828601611dad565b9250506020611e2e85828601611de3565b9150509250929050565b60008115159050919050565b611e4d81611e38565b82525050565b6000602082019050611e686000830184611e44565b92915050565b611e7781611dc2565b82525050565b6000602082019050611e926000830184611e6e565b92915050565b600060208284031215611eae57611ead611d5f565b5b6000611ebc84828501611de3565b91505092915050565b600080600060608486031215611ede57611edd611d5f565b5b6000611eec86828701611dad565b9350506020611efd86828701611dad565b9250506040611f0e86828701611de3565b9150509250925092565b600060ff82169050919050565b611f2e81611f18565b82525050565b6000602082019050611f496000830184611f25565b92915050565b600060208284031215611f6557611f64611d5f565b5b6000611f7384828501611dad565b91505092915050565b6000611f8782611d64565b9050919050565b611f9781611f7c565b82525050565b6000602082019050611fb26000830184611f8e565b92915050565b60008060408385031215611fcf57611fce611d5f565b5b6000611fdd85828601611dad565b9250506020611fee85828601611dad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061203f57607f821691505b60208210810361205257612051611ff8565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b60006120b4602583611cb8565b91506120bf82612058565b604082019050919050565b600060208201905081810360008301526120e3816120a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156121705780860481111561214c5761214b6120ea565b5b600185161561215b5780820291505b808102905061216985612119565b9450612130565b94509492505050565b6000826121895760019050612245565b816121975760009050612245565b81600181146121ad57600281146121b7576121e6565b6001915050612245565b60ff8411156121c9576121c86120ea565b5b8360020a9150848211156121e0576121df6120ea565b5b50612245565b5060208310610133831016604e8410600b841016171561221b5782820a905083811115612216576122156120ea565b5b612245565b6122288484846001612126565b9250905081840481111561223f5761223e6120ea565b5b81810290505b9392505050565b600061225782611dc2565b915061226283611f18565b925061228f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612179565b905092915050565b60006122a282611dc2565b91506122ad83611dc2565b92508282026122bb81611dc2565b915082820484148315176122d2576122d16120ea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061231382611dc2565b915061231e83611dc2565b92508261232e5761232d6122d9565b5b828204905092915050565b7f4578636565646564206d6178696d756d206275792070657263656e7461676500600082015250565b600061236f601f83611cb8565b915061237a82612339565b602082019050919050565b6000602082019050818103600083015261239e81612362565b9050919050565b60006123b082611dc2565b91506123bb83611dc2565b92508282039050818111156123d3576123d26120ea565b5b92915050565b60006123e482611dc2565b91506123ef83611dc2565b9250828201905080821115612407576124066120ea565b5b92915050565b7f496e76616c696420746178207261746500000000000000000000000000000000600082015250565b6000612443601083611cb8565b915061244e8261240d565b602082019050919050565b6000602082019050818103600083015261247281612436565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124d5602583611cb8565b91506124e082612479565b604082019050919050565b60006020820190508181036000830152612504816124c8565b9050919050565b7f496e76616c69642070657263656e746167650000000000000000000000000000600082015250565b6000612541601283611cb8565b915061254c8261250b565b602082019050919050565b6000602082019050818103600083015261257081612534565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125d3602483611cb8565b91506125de82612577565b604082019050919050565b60006020820190508181036000830152612602816125c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612665602283611cb8565b915061267082612609565b604082019050919050565b6000602082019050818103600083015261269481612658565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006126d1601483611cb8565b91506126dc8261269b565b602082019050919050565b60006020820190508181036000830152612700816126c4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612763602583611cb8565b915061276e82612707565b604082019050919050565b6000602082019050818103600083015261279281612756565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127f5602383611cb8565b915061280082612799565b604082019050919050565b60006020820190508181036000830152612824816127e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612887602683611cb8565b91506128928261282b565b604082019050919050565b600060208201905081810360008301526128b68161287a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612919602183611cb8565b9150612924826128bd565b604082019050919050565b600060208201905081810360008301526129488161290c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006129ab602283611cb8565b91506129b68261294f565b604082019050919050565b600060208201905081810360008301526129da8161299e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a17601d83611cb8565b9150612a22826129e1565b602082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000612a83601983611cb8565b9150612a8e82612a4d565b602082019050919050565b60006020820190508181036000830152612ab281612a76565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612aef601f83611cb8565b9150612afa82612ab9565b602082019050919050565b60006020820190508181036000830152612b1e81612ae2565b905091905056fea26469706673582212209a1571ed1bcd9b388a26e17e399364f1b537127610fb696f4c0fa4455b84126764736f6c6343000813003300000000000000000000000000000000000000000000000000000014b230ce380000000000000000000000000000000000000000000000000000000000000032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063691f224f116100f957806395d89b4111610097578063b4e6672f11610071578063b4e6672f146104c0578063dd62ed3e146104dc578063e06509971461050c578063e5dc6b211461052a576101a9565b806395d89b4114610442578063a457c2d714610460578063a9059cbb14610490576101a9565b8063715018a6116100d3578063715018a6146103f457806379cc6790146103fe57806383197ef01461041a5780638da5cb5b14610424576101a9565b8063691f224f146103765780636c197ff51461039457806370a08231146103c4576101a9565b806324024efd11610166578063355274ea11610140578063355274ea146102f0578063395093511461030e57806342966c681461033e57806355e2e9741461035a576101a9565b806324024efd14610284578063313ce567146102a257806334155fab146102c0576101a9565b806306fdde03146101ae578063095ea7b3146101cc5780630ac168a1146101fc57806318160ddd1461021a5780631a18e7071461023857806323b872dd14610254575b600080fd5b6101b6610546565b6040516101c39190611d3d565b60405180910390f35b6101e660048036038101906101e19190611df8565b6105d8565b6040516101f39190611e53565b60405180910390f35b6102046105fb565b6040516102119190611e7d565b60405180910390f35b610222610601565b60405161022f9190611e7d565b60405180910390f35b610252600480360381019061024d9190611e98565b61060b565b005b61026e60048036038101906102699190611ec5565b6106c3565b60405161027b9190611e53565b60405180910390f35b61028c61077b565b6040516102999190611e7d565b60405180910390f35b6102aa610781565b6040516102b79190611f34565b60405180910390f35b6102da60048036038101906102d59190611df8565b61078a565b6040516102e79190611e53565b60405180910390f35b6102f86107a8565b6040516103059190611e7d565b60405180910390f35b61032860048036038101906103239190611df8565b6107d0565b6040516103359190611e53565b60405180910390f35b61035860048036038101906103539190611e98565b610807565b005b610374600480360381019061036f9190611e98565b61081b565b005b61037e6108f9565b60405161038b9190611e7d565b60405180910390f35b6103ae60048036038101906103a99190611df8565b6108ff565b6040516103bb9190611e53565b60405180910390f35b6103de60048036038101906103d99190611f4f565b61091d565b6040516103eb9190611e7d565b60405180910390f35b6103fc610965565b005b61041860048036038101906104139190611df8565b610a39565b005b610422610a59565b005b61042c610b24565b6040516104399190611f9d565b60405180910390f35b61044a610b4a565b6040516104579190611d3d565b60405180910390f35b61047a60048036038101906104759190611df8565b610bdc565b6040516104879190611e53565b60405180910390f35b6104aa60048036038101906104a59190611df8565b610c53565b6040516104b79190611e53565b60405180910390f35b6104da60048036038101906104d59190611e98565b610ceb565b005b6104f660048036038101906104f19190611fb8565b610dc9565b6040516105039190611e7d565b60405180910390f35b610514610e50565b6040516105219190611e7d565b60405180910390f35b610544600480360381019061053f9190611e98565b610e56565b005b60606003805461055590612027565b80601f016020809104026020016040519081016040528092919081815260200182805461058190612027565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b6000806105e3610f34565b90506105f0818585610f3c565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461069b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610692906120ca565b60405180910390fd5b6106a3610781565b600a6106af919061224c565b816106ba9190612297565b60068190555050565b6000838260006106d1610601565b905060006064600954836106e59190612297565b6106ef9190612308565b905080831115610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b90612385565b60405180910390fd5b61073f888888611105565b61076c8861074b610f34565b8861075d8c610758610f34565b610dc9565b61076791906123a5565b610f3c565b60019450505050509392505050565b60085481565b60006012905090565b600061079e610797610f34565b84846113f6565b6001905092915050565b60007f00000000000000000000000000000000000000011f372a621c0f72bf15e00000905090565b6000806107db610f34565b90506107fc8185856107ed8589610dc9565b6107f791906123d9565b610f3c565b600191505092915050565b610818610812610f34565b8261166c565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a2906120ca565b60405180910390fd5b60648111156108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690612459565b60405180910390fd5b8060078190555050565b60075481565b600061091361090c610f34565b8484611839565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec906120ca565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610a4b82610a45610f34565b8361191f565b610a55828261166c565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906120ca565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610b5990612027565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8590612027565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b600080610be7610f34565b90506000610bf58286610dc9565b905083811015610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c31906124eb565b60405180910390fd5b610c478286868403610f3c565b60019250505092915050565b6000610c5d610f34565b826000610c68610601565b90506000606460095483610c7c9190612297565b610c869190612308565b905080831115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612385565b60405180910390fd5b610cdd610cd6610f34565b8888611105565b600194505050505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906120ca565b60405180910390fd5b6064811115610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690612557565b60405180910390fd5b8060098190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd906120ca565b60405180910390fd5b6064811115610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612459565b60405180910390fd5b8060088190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906125e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110119061267b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f89190611e7d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061116c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806111a257504173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6113f15760006111b0610601565b905060006064600954836111c49190612297565b6111ce9190612308565b905060006111db8661091d565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156112895750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561131557838110156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906126e7565b60405180910390fd5b81841115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612385565b60405180910390fd5b5b60006064600754866113279190612297565b6113319190612308565b905061133d878261166c565b6113538787838861134e91906123a5565b6113f6565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146113ec57828511156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290612385565b60405180910390fd5b5b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90612779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb9061280b565b60405180910390fd5b6114df8383836119ab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c9061289d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116539190611e7d565b60405180910390a3611666848484611a6b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d29061292f565b60405180910390fd5b6116e7826000836119ab565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561176d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611764906129c1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118209190611e7d565b60405180910390a361183483600084611a6b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118a05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806118d657504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61191a5760006064600854836118ec9190612297565b6118f69190612308565b9050611902848261166c565b6119188484838561191391906123a5565b6113f6565b505b505050565b600061192b8484610dc9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119a55781811015611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90612a2d565b60405180910390fd5b6119a48484848403610f3c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a1457504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a4d5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15611a5b57611a5a611a70565b5b611a66838383611a7e565b505050565b505050565b611a7c41600654611a83565b565b505050565b611a8b6107a8565b81611a94610601565b611a9e91906123d9565b1115611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690612a99565b60405180910390fd5b611ae98282611aed565b5050565b611af56107a8565b81611afe610601565b611b0891906123d9565b1115611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090612a99565b60405180910390fd5b611b538282611b57565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90612b05565b60405180910390fd5b611bd2600083836119ab565b8060026000828254611be491906123d9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c959190611e7d565b60405180910390a3611ca960008383611a6b565b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ce7578082015181840152602081019050611ccc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d0f82611cad565b611d198185611cb8565b9350611d29818560208601611cc9565b611d3281611cf3565b840191505092915050565b60006020820190508181036000830152611d578184611d04565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8f82611d64565b9050919050565b611d9f81611d84565b8114611daa57600080fd5b50565b600081359050611dbc81611d96565b92915050565b6000819050919050565b611dd581611dc2565b8114611de057600080fd5b50565b600081359050611df281611dcc565b92915050565b60008060408385031215611e0f57611e0e611d5f565b5b6000611e1d85828601611dad565b9250506020611e2e85828601611de3565b9150509250929050565b60008115159050919050565b611e4d81611e38565b82525050565b6000602082019050611e686000830184611e44565b92915050565b611e7781611dc2565b82525050565b6000602082019050611e926000830184611e6e565b92915050565b600060208284031215611eae57611ead611d5f565b5b6000611ebc84828501611de3565b91505092915050565b600080600060608486031215611ede57611edd611d5f565b5b6000611eec86828701611dad565b9350506020611efd86828701611dad565b9250506040611f0e86828701611de3565b9150509250925092565b600060ff82169050919050565b611f2e81611f18565b82525050565b6000602082019050611f496000830184611f25565b92915050565b600060208284031215611f6557611f64611d5f565b5b6000611f7384828501611dad565b91505092915050565b6000611f8782611d64565b9050919050565b611f9781611f7c565b82525050565b6000602082019050611fb26000830184611f8e565b92915050565b60008060408385031215611fcf57611fce611d5f565b5b6000611fdd85828601611dad565b9250506020611fee85828601611dad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061203f57607f821691505b60208210810361205257612051611ff8565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b60006120b4602583611cb8565b91506120bf82612058565b604082019050919050565b600060208201905081810360008301526120e3816120a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156121705780860481111561214c5761214b6120ea565b5b600185161561215b5780820291505b808102905061216985612119565b9450612130565b94509492505050565b6000826121895760019050612245565b816121975760009050612245565b81600181146121ad57600281146121b7576121e6565b6001915050612245565b60ff8411156121c9576121c86120ea565b5b8360020a9150848211156121e0576121df6120ea565b5b50612245565b5060208310610133831016604e8410600b841016171561221b5782820a905083811115612216576122156120ea565b5b612245565b6122288484846001612126565b9250905081840481111561223f5761223e6120ea565b5b81810290505b9392505050565b600061225782611dc2565b915061226283611f18565b925061228f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612179565b905092915050565b60006122a282611dc2565b91506122ad83611dc2565b92508282026122bb81611dc2565b915082820484148315176122d2576122d16120ea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061231382611dc2565b915061231e83611dc2565b92508261232e5761232d6122d9565b5b828204905092915050565b7f4578636565646564206d6178696d756d206275792070657263656e7461676500600082015250565b600061236f601f83611cb8565b915061237a82612339565b602082019050919050565b6000602082019050818103600083015261239e81612362565b9050919050565b60006123b082611dc2565b91506123bb83611dc2565b92508282039050818111156123d3576123d26120ea565b5b92915050565b60006123e482611dc2565b91506123ef83611dc2565b9250828201905080821115612407576124066120ea565b5b92915050565b7f496e76616c696420746178207261746500000000000000000000000000000000600082015250565b6000612443601083611cb8565b915061244e8261240d565b602082019050919050565b6000602082019050818103600083015261247281612436565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124d5602583611cb8565b91506124e082612479565b604082019050919050565b60006020820190508181036000830152612504816124c8565b9050919050565b7f496e76616c69642070657263656e746167650000000000000000000000000000600082015250565b6000612541601283611cb8565b915061254c8261250b565b602082019050919050565b6000602082019050818103600083015261257081612534565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125d3602483611cb8565b91506125de82612577565b604082019050919050565b60006020820190508181036000830152612602816125c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612665602283611cb8565b915061267082612609565b604082019050919050565b6000602082019050818103600083015261269481612658565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006126d1601483611cb8565b91506126dc8261269b565b602082019050919050565b60006020820190508181036000830152612700816126c4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612763602583611cb8565b915061276e82612707565b604082019050919050565b6000602082019050818103600083015261279281612756565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127f5602383611cb8565b915061280082612799565b604082019050919050565b60006020820190508181036000830152612824816127e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612887602683611cb8565b91506128928261282b565b604082019050919050565b600060208201905081810360008301526128b68161287a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612919602183611cb8565b9150612924826128bd565b604082019050919050565b600060208201905081810360008301526129488161290c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006129ab602283611cb8565b91506129b68261294f565b604082019050919050565b600060208201905081810360008301526129da8161299e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a17601d83611cb8565b9150612a22826129e1565b602082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000612a83601983611cb8565b9150612a8e82612a4d565b602082019050919050565b60006020820190508181036000830152612ab281612a76565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612aef601f83611cb8565b9150612afa82612ab9565b602082019050919050565b60006020820190508181036000830152612b1e81612ae2565b905091905056fea26469706673582212209a1571ed1bcd9b388a26e17e399364f1b537127610fb696f4c0fa4455b84126764736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000014b230ce380000000000000000000000000000000000000000000000000000000000000032
-----Decoded View---------------
Arg [0] : cap (uint256): 88888888888
Arg [1] : reward (uint256): 50
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000014b230ce38
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
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.