ERC-20
Overview
Max Total Supply
42,069 BOOMER
Holders
58
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
102.370062657593909814 BOOMERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Boomer
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// //BBBBBBBBBBBBBBBBB OOOOOOOOO OOOOOOOOO MMMMMMMM MMMMMMMMEEEEEEEEEEEEEEEEEEEEEERRRRRRRRRRRRRRRRR //B::::::::::::::::B OO:::::::::OO OO:::::::::OO M:::::::M M:::::::ME::::::::::::::::::::ER::::::::::::::::R //B::::::BBBBBB:::::B OO:::::::::::::OO OO:::::::::::::OO M::::::::M M::::::::ME::::::::::::::::::::ER::::::RRRRRR:::::R //BB:::::B B:::::BO:::::::OOO:::::::OO:::::::OOO:::::::OM:::::::::M M:::::::::MEE::::::EEEEEEEEE::::ERR:::::R R:::::R // B::::B B:::::BO::::::O O::::::OO::::::O O::::::OM::::::::::M M::::::::::M E:::::E EEEEEE R::::R R:::::R // B::::B B:::::BO:::::O O:::::OO:::::O O:::::OM:::::::::::M M:::::::::::M E:::::E R::::R R:::::R // B::::BBBBBB:::::B O:::::O O:::::OO:::::O O:::::OM:::::::M::::M M::::M:::::::M E::::::EEEEEEEEEE R::::RRRRRR:::::R // B:::::::::::::BB O:::::O O:::::OO:::::O O:::::OM::::::M M::::M M::::M M::::::M E:::::::::::::::E R:::::::::::::RR // B::::BBBBBB:::::B O:::::O O:::::OO:::::O O:::::OM::::::M M::::M::::M M::::::M E:::::::::::::::E R::::RRRRRR:::::R // B::::B B:::::BO:::::O O:::::OO:::::O O:::::OM::::::M M:::::::M M::::::M E::::::EEEEEEEEEE R::::R R:::::R // B::::B B:::::BO:::::O O:::::OO:::::O O:::::OM::::::M M:::::M M::::::M E:::::E R::::R R:::::R // B::::B B:::::BO::::::O O::::::OO::::::O O::::::OM::::::M MMMMM M::::::M E:::::E EEEEEE R::::R R:::::R //BB:::::BBBBBB::::::BO:::::::OOO:::::::OO:::::::OOO:::::::OM::::::M M::::::MEE::::::EEEEEEEE:::::ERR:::::R R:::::R //B:::::::::::::::::B OO:::::::::::::OO OO:::::::::::::OO M::::::M M::::::ME::::::::::::::::::::ER::::::R R:::::R //B::::::::::::::::B OO:::::::::OO OO:::::::::OO M::::::M M::::::ME::::::::::::::::::::ER::::::R R:::::R //BBBBBBBBBBBBBBBBB OOOOOOOOO OOOOOOOOO MMMMMMMM MMMMMMMMEEEEEEEEEEEEEEEEEEEEEERRRRRRRR RRRRRRR //https://t.me/boomereth // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// ============ Imports ============ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /// @title MerkleClaimERC20 /// @notice ERC20 claimable by members of a merkle tree contract Boomer is ERC20, Ownable { /// ============ Immutable storage ============ /// @notice ERC20-claimee inclusion root bytes32 public immutable merkleRoot; /// ============ Mutable storage ============ /// @notice Mapping of addresses who have claimed tokens mapping(address => bool) public hasClaimed; bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; /// ============ Errors ============ /// @notice Thrown if address has already claimed error AlreadyClaimed(); /// @notice Thrown if address/amount are not part of Merkle tree error NotInMerkle(); /// ============ Constructor ============ /// @notice Creates a new MerkleClaimERC20 contract /// @param _name of token /// @param _symbol of token /// @param _decimals of token /// @param _merkleRoot of claimees constructor( string memory _name, string memory _symbol, uint8 _decimals, uint256 _totalSupply, bytes32 _merkleRoot ) ERC20(_name, _symbol) { _decimals = _decimals; _mint(msg.sender, _totalSupply * 10 ** uint256(decimals())); merkleRoot = _merkleRoot; } /// ============ Events ============ /// @notice Emitted after a successful token claim /// @param to recipient of claim /// @param amount of tokens claimed event Claim(address indexed to, uint256 amount); /// ============ Modifiers ============ /// @notice Modifier to check if address has already claimed tokens modifier notClaimed(address to) { if (hasClaimed[to]) revert AlreadyClaimed(); _; } /// ============ Functions ============ /// @notice Allows claiming tokens if address is part of merkle tree /// @param to address of claimee /// @param amount of tokens owed to claimee /// @param proof merkle proof to prove address and amount are in tree function claim(address to, uint256 amount, bytes32[] calldata proof) external notClaimed(to) { // Verify merkle proof, or revert if not in tree bytes32 leaf = keccak256(abi.encodePacked(to, amount)); bool isValidLeaf = MerkleProof.verify(proof, merkleRoot, leaf); if (!isValidLeaf) revert NotInMerkle(); // Set address to claimed hasClaimed[to] = true; // Transfer tokens to address _transfer(address(this), to, amount); // Emit claim event emit Claim(to, amount); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
{ "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":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"NotInMerkle","type":"error"},{"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200344d3803806200344d8339818101604052810190620000379190620008ef565b848481600390816200004a919062000bf6565b5080600490816200005c919062000bf6565b5050506200007f62000073620000d160201b60201c565b620000d960201b60201c565b620000be33620000946200019f60201b60201c565b60ff16600a620000a5919062000e60565b84620000b2919062000eb1565b620001a860201b60201c565b806080818152505050505050506200113e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200021a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002119062000f5d565b60405180910390fd5b6200022e600083836200031560201b60201c565b806002600082825462000242919062000f7f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f5919062000fcb565b60405180910390a362000311600083836200063160201b60201c565b5050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003ba5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620003fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f39062001038565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200051f57620004636200063660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004d75750620004a86200063660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051090620010aa565b60405180910390fd5b6200062c565b600760009054906101000a900460ff168015620005895750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200062b5760085481620005a9846200066060201b6200093e1760201c565b620005b5919062000f7f565b11158015620005e8575060095481620005d9846200066060201b6200093e1760201c565b620005e5919062000f7f565b10155b6200062a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000621906200111c565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071182620006c6565b810181811067ffffffffffffffff82111715620007335762000732620006d7565b5b80604052505050565b600062000748620006a8565b905062000756828262000706565b919050565b600067ffffffffffffffff821115620007795762000778620006d7565b5b6200078482620006c6565b9050602081019050919050565b60005b83811015620007b157808201518184015260208101905062000794565b60008484015250505050565b6000620007d4620007ce846200075b565b6200073c565b905082815260208101848484011115620007f357620007f2620006c1565b5b6200080084828562000791565b509392505050565b600082601f83011262000820576200081f620006bc565b5b815162000832848260208601620007bd565b91505092915050565b600060ff82169050919050565b62000853816200083b565b81146200085f57600080fd5b50565b600081519050620008738162000848565b92915050565b6000819050919050565b6200088e8162000879565b81146200089a57600080fd5b50565b600081519050620008ae8162000883565b92915050565b6000819050919050565b620008c981620008b4565b8114620008d557600080fd5b50565b600081519050620008e981620008be565b92915050565b600080600080600060a086880312156200090e576200090d620006b2565b5b600086015167ffffffffffffffff8111156200092f576200092e620006b7565b5b6200093d8882890162000808565b955050602086015167ffffffffffffffff811115620009615762000960620006b7565b5b6200096f8882890162000808565b9450506040620009828882890162000862565b935050606062000995888289016200089d565b9250506080620009a888828901620008d8565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a0857607f821691505b60208210810362000a1e5762000a1d620009c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a49565b62000a94868362000a49565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ad762000ad162000acb8462000879565b62000aac565b62000879565b9050919050565b6000819050919050565b62000af38362000ab6565b62000b0b62000b028262000ade565b84845462000a56565b825550505050565b600090565b62000b2262000b13565b62000b2f81848462000ae8565b505050565b5b8181101562000b575762000b4b60008262000b18565b60018101905062000b35565b5050565b601f82111562000ba65762000b708162000a24565b62000b7b8462000a39565b8101602085101562000b8b578190505b62000ba362000b9a8562000a39565b83018262000b34565b50505b505050565b600082821c905092915050565b600062000bcb6000198460080262000bab565b1980831691505092915050565b600062000be6838362000bb8565b9150826002028217905092915050565b62000c0182620009b5565b67ffffffffffffffff81111562000c1d5762000c1c620006d7565b5b62000c298254620009ef565b62000c3682828562000b5b565b600060209050601f83116001811462000c6e576000841562000c59578287015190505b62000c65858262000bd8565b86555062000cd5565b601f19841662000c7e8662000a24565b60005b8281101562000ca85784890151825560018201915060208501945060208101905062000c81565b8683101562000cc8578489015162000cc4601f89168262000bb8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d6b5780860481111562000d435762000d4262000cdd565b5b600185161562000d535780820291505b808102905062000d638562000d0c565b945062000d23565b94509492505050565b60008262000d86576001905062000e59565b8162000d96576000905062000e59565b816001811462000daf576002811462000dba5762000df0565b600191505062000e59565b60ff84111562000dcf5762000dce62000cdd565b5b8360020a91508482111562000de95762000de862000cdd565b5b5062000e59565b5060208310610133831016604e8410600b841016171562000e2a5782820a90508381111562000e245762000e2362000cdd565b5b62000e59565b62000e39848484600162000d19565b9250905081840481111562000e535762000e5262000cdd565b5b81810290505b9392505050565b600062000e6d8262000879565b915062000e7a8362000879565b925062000ea97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d74565b905092915050565b600062000ebe8262000879565b915062000ecb8362000879565b925082820262000edb8162000879565b9150828204841483151762000ef55762000ef462000cdd565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f45601f8362000efc565b915062000f528262000f0d565b602082019050919050565b6000602082019050818103600083015262000f788162000f36565b9050919050565b600062000f8c8262000879565b915062000f998362000879565b925082820190508082111562000fb45762000fb362000cdd565b5b92915050565b62000fc58162000879565b82525050565b600060208201905062000fe2600083018462000fba565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062001020600b8362000efc565b91506200102d8262000fe8565b602082019050919050565b60006020820190508181036000830152620010538162001011565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b60006200109260168362000efc565b91506200109f826200105a565b602082019050919050565b60006020820190508181036000830152620010c58162001083565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006200110460068362000efc565b91506200111182620010cc565b602082019050919050565b600060208201905081810360008301526200113781620010f5565b9050919050565b6080516122ec62001161600039600081816105c9015261079d01526122ec6000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806349bd5a5e116100c35780638da5cb5b1161007c5780638da5cb5b146103cb57806395d89b41146103e9578063a457c2d714610407578063a9059cbb14610437578063dd62ed3e14610467578063f2fde38b1461049757610158565b806349bd5a5e1461030757806370a0823114610325578063715018a61461035557806373b2e80e1461035f578063860a32ec1461038f57806389f9a1d3146103ad57610158565b80632eb4a7ab116101155780632eb4a7ab14610247578063313ce5671461026557806339509351146102835780633aa633aa146102b35780633d13f874146102cf578063404e5129146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806316c02129146101ab57806318160ddd146101db5780631ab99e12146101f957806323b872dd14610217575b600080fd5b6101656104b3565b604051610172919061166c565b60405180910390f35b6101956004803603810190610190919061172c565b610545565b6040516101a29190611787565b60405180910390f35b6101c560048036038101906101c091906117a2565b610568565b6040516101d29190611787565b60405180910390f35b6101e3610588565b6040516101f091906117de565b60405180910390f35b610201610592565b60405161020e91906117de565b60405180910390f35b610231600480360381019061022c91906117f9565b610598565b60405161023e9190611787565b60405180910390f35b61024f6105c7565b60405161025c9190611865565b60405180910390f35b61026d6105eb565b60405161027a919061189c565b60405180910390f35b61029d6004803603810190610298919061172c565b6105f4565b6040516102aa9190611787565b60405180910390f35b6102cd60048036038101906102c891906118e3565b61062b565b005b6102e960048036038101906102e491906119af565b6106a2565b005b61030560048036038101906103009190611a23565b6108b5565b005b61030f610918565b60405161031c9190611a72565b60405180910390f35b61033f600480360381019061033a91906117a2565b61093e565b60405161034c91906117de565b60405180910390f35b61035d610986565b005b610379600480360381019061037491906117a2565b61099a565b6040516103869190611787565b60405180910390f35b6103976109ba565b6040516103a49190611787565b60405180910390f35b6103b56109cd565b6040516103c291906117de565b60405180910390f35b6103d36109d3565b6040516103e09190611a72565b60405180910390f35b6103f16109fd565b6040516103fe919061166c565b60405180910390f35b610421600480360381019061041c919061172c565b610a8f565b60405161042e9190611787565b60405180910390f35b610451600480360381019061044c919061172c565b610b06565b60405161045e9190611787565b60405180910390f35b610481600480360381019061047c9190611a8d565b610b29565b60405161048e91906117de565b60405180910390f35b6104b160048036038101906104ac91906117a2565b610bb0565b005b6060600380546104c290611afc565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90611afc565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b600080610550610c33565b905061055d818585610c3b565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60095481565b6000806105a3610c33565b90506105b0858285610e04565b6105bb858585610e90565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006012905090565b6000806105ff610c33565b90506106208185856106118589610b29565b61061b9190611b5c565b610c3b565b600191505092915050565b610633611106565b83600760006101000a81548160ff02191690831515021790555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816008819055508060098190555050505050565b83600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610727576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000858560405160200161073c929190611bf9565b60405160208183030381529060405280519060200120905060006107c2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f000000000000000000000000000000000000000000000000000000000000000084611184565b9050806107fb576040517f8a585be200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061085e308888610e90565b8673ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4876040516108a491906117de565b60405180910390a250505050505050565b6108bd611106565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098e611106565b610998600061119b565b565b60066020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900460ff1681565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0c90611afc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890611afc565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b5050505050905090565b600080610a9a610c33565b90506000610aa88286610b29565b905083811015610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611c97565b60405180910390fd5b610afa8286868403610c3b565b60019250505092915050565b600080610b11610c33565b9050610b1e818585610e90565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb8611106565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90611d29565b60405180910390fd5b610c308161119b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190611dbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090611e4d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df791906117de565b60405180910390a3505050565b6000610e108484610b29565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e8a5781811015610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390611eb9565b60405180910390fd5b610e898484848403610c3b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690611f4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590611fdd565b60405180910390fd5b610f79838383611261565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff69061206f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ed91906117de565b60405180910390a361110084848461153f565b50505050565b61110e610c33565b73ffffffffffffffffffffffffffffffffffffffff1661112c6109d3565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906120db565b60405180910390fd5b565b6000826111918584611544565b1490509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113055750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90612147565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611451576113a26109d3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061140d57506113de6109d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906121b3565b60405180910390fd5b61153a565b600760009054906101000a900460ff1680156114ba5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561153957600854816114cc8461093e565b6114d69190611b5c565b111580156114f95750600954816114ec8461093e565b6114f69190611b5c565b10155b611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f9061221f565b60405180910390fd5b5b5b505050565b505050565b60008082905060005b845181101561158f5761157a8286838151811061156d5761156c61223f565b5b602002602001015161159a565b915080806115879061226e565b91505061154d565b508091505092915050565b60008183106115b2576115ad82846115c5565b6115bd565b6115bc83836115c5565b5b905092915050565b600082600052816020526040600020905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116165780820151818401526020810190506115fb565b60008484015250505050565b6000601f19601f8301169050919050565b600061163e826115dc565b61164881856115e7565b93506116588185602086016115f8565b61166181611622565b840191505092915050565b600060208201905081810360008301526116868184611633565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c382611698565b9050919050565b6116d3816116b8565b81146116de57600080fd5b50565b6000813590506116f0816116ca565b92915050565b6000819050919050565b611709816116f6565b811461171457600080fd5b50565b60008135905061172681611700565b92915050565b600080604083850312156117435761174261168e565b5b6000611751858286016116e1565b925050602061176285828601611717565b9150509250929050565b60008115159050919050565b6117818161176c565b82525050565b600060208201905061179c6000830184611778565b92915050565b6000602082840312156117b8576117b761168e565b5b60006117c6848285016116e1565b91505092915050565b6117d8816116f6565b82525050565b60006020820190506117f360008301846117cf565b92915050565b6000806000606084860312156118125761181161168e565b5b6000611820868287016116e1565b9350506020611831868287016116e1565b925050604061184286828701611717565b9150509250925092565b6000819050919050565b61185f8161184c565b82525050565b600060208201905061187a6000830184611856565b92915050565b600060ff82169050919050565b61189681611880565b82525050565b60006020820190506118b1600083018461188d565b92915050565b6118c08161176c565b81146118cb57600080fd5b50565b6000813590506118dd816118b7565b92915050565b600080600080608085870312156118fd576118fc61168e565b5b600061190b878288016118ce565b945050602061191c878288016116e1565b935050604061192d87828801611717565b925050606061193e87828801611717565b91505092959194509250565b600080fd5b600080fd5b600080fd5b60008083601f84011261196f5761196e61194a565b5b8235905067ffffffffffffffff81111561198c5761198b61194f565b5b6020830191508360208202830111156119a8576119a7611954565b5b9250929050565b600080600080606085870312156119c9576119c861168e565b5b60006119d7878288016116e1565b94505060206119e887828801611717565b935050604085013567ffffffffffffffff811115611a0957611a08611693565b5b611a1587828801611959565b925092505092959194509250565b60008060408385031215611a3a57611a3961168e565b5b6000611a48858286016116e1565b9250506020611a59858286016118ce565b9150509250929050565b611a6c816116b8565b82525050565b6000602082019050611a876000830184611a63565b92915050565b60008060408385031215611aa457611aa361168e565b5b6000611ab2858286016116e1565b9250506020611ac3858286016116e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1457607f821691505b602082108103611b2757611b26611acd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b67826116f6565b9150611b72836116f6565b9250828201905080821115611b8a57611b89611b2d565b5b92915050565b60008160601b9050919050565b6000611ba882611b90565b9050919050565b6000611bba82611b9d565b9050919050565b611bd2611bcd826116b8565b611baf565b82525050565b6000819050919050565b611bf3611bee826116f6565b611bd8565b82525050565b6000611c058285611bc1565b601482019150611c158284611be2565b6020820191508190509392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c816025836115e7565b9150611c8c82611c25565b604082019050919050565b60006020820190508181036000830152611cb081611c74565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d136026836115e7565b9150611d1e82611cb7565b604082019050919050565b60006020820190508181036000830152611d4281611d06565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611da56024836115e7565b9150611db082611d49565b604082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e376022836115e7565b9150611e4282611ddb565b604082019050919050565b60006020820190508181036000830152611e6681611e2a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ea3601d836115e7565b9150611eae82611e6d565b602082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f356025836115e7565b9150611f4082611ed9565b604082019050919050565b60006020820190508181036000830152611f6481611f28565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fc76023836115e7565b9150611fd282611f6b565b604082019050919050565b60006020820190508181036000830152611ff681611fba565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120596026836115e7565b915061206482611ffd565b604082019050919050565b600060208201905081810360008301526120888161204c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120c56020836115e7565b91506120d08261208f565b602082019050919050565b600060208201905081810360008301526120f4816120b8565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612131600b836115e7565b915061213c826120fb565b602082019050919050565b6000602082019050818103600083015261216081612124565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061219d6016836115e7565b91506121a882612167565b602082019050919050565b600060208201905081810360008301526121cc81612190565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006122096006836115e7565b9150612214826121d3565b602082019050919050565b60006020820190508181036000830152612238816121fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612279826116f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ab576122aa611b2d565b5b60018201905091905056fea26469706673582212200f89d366ba2abe61e571fbcf3c79636831b98432e3737b4bff9650a591fea25e64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000a455c700e017c1f9882cf499b94c74a729db09a5265c5473986293ac79f30ef5f26e0000000000000000000000000000000000000000000000000000000000000006424f4f4d455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424f4f4d45520000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806349bd5a5e116100c35780638da5cb5b1161007c5780638da5cb5b146103cb57806395d89b41146103e9578063a457c2d714610407578063a9059cbb14610437578063dd62ed3e14610467578063f2fde38b1461049757610158565b806349bd5a5e1461030757806370a0823114610325578063715018a61461035557806373b2e80e1461035f578063860a32ec1461038f57806389f9a1d3146103ad57610158565b80632eb4a7ab116101155780632eb4a7ab14610247578063313ce5671461026557806339509351146102835780633aa633aa146102b35780633d13f874146102cf578063404e5129146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806316c02129146101ab57806318160ddd146101db5780631ab99e12146101f957806323b872dd14610217575b600080fd5b6101656104b3565b604051610172919061166c565b60405180910390f35b6101956004803603810190610190919061172c565b610545565b6040516101a29190611787565b60405180910390f35b6101c560048036038101906101c091906117a2565b610568565b6040516101d29190611787565b60405180910390f35b6101e3610588565b6040516101f091906117de565b60405180910390f35b610201610592565b60405161020e91906117de565b60405180910390f35b610231600480360381019061022c91906117f9565b610598565b60405161023e9190611787565b60405180910390f35b61024f6105c7565b60405161025c9190611865565b60405180910390f35b61026d6105eb565b60405161027a919061189c565b60405180910390f35b61029d6004803603810190610298919061172c565b6105f4565b6040516102aa9190611787565b60405180910390f35b6102cd60048036038101906102c891906118e3565b61062b565b005b6102e960048036038101906102e491906119af565b6106a2565b005b61030560048036038101906103009190611a23565b6108b5565b005b61030f610918565b60405161031c9190611a72565b60405180910390f35b61033f600480360381019061033a91906117a2565b61093e565b60405161034c91906117de565b60405180910390f35b61035d610986565b005b610379600480360381019061037491906117a2565b61099a565b6040516103869190611787565b60405180910390f35b6103976109ba565b6040516103a49190611787565b60405180910390f35b6103b56109cd565b6040516103c291906117de565b60405180910390f35b6103d36109d3565b6040516103e09190611a72565b60405180910390f35b6103f16109fd565b6040516103fe919061166c565b60405180910390f35b610421600480360381019061041c919061172c565b610a8f565b60405161042e9190611787565b60405180910390f35b610451600480360381019061044c919061172c565b610b06565b60405161045e9190611787565b60405180910390f35b610481600480360381019061047c9190611a8d565b610b29565b60405161048e91906117de565b60405180910390f35b6104b160048036038101906104ac91906117a2565b610bb0565b005b6060600380546104c290611afc565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90611afc565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b600080610550610c33565b905061055d818585610c3b565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60095481565b6000806105a3610c33565b90506105b0858285610e04565b6105bb858585610e90565b60019150509392505050565b7fc700e017c1f9882cf499b94c74a729db09a5265c5473986293ac79f30ef5f26e81565b60006012905090565b6000806105ff610c33565b90506106208185856106118589610b29565b61061b9190611b5c565b610c3b565b600191505092915050565b610633611106565b83600760006101000a81548160ff02191690831515021790555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816008819055508060098190555050505050565b83600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610727576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000858560405160200161073c929190611bf9565b60405160208183030381529060405280519060200120905060006107c2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507fc700e017c1f9882cf499b94c74a729db09a5265c5473986293ac79f30ef5f26e84611184565b9050806107fb576040517f8a585be200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061085e308888610e90565b8673ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4876040516108a491906117de565b60405180910390a250505050505050565b6108bd611106565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098e611106565b610998600061119b565b565b60066020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900460ff1681565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0c90611afc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890611afc565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b5050505050905090565b600080610a9a610c33565b90506000610aa88286610b29565b905083811015610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611c97565b60405180910390fd5b610afa8286868403610c3b565b60019250505092915050565b600080610b11610c33565b9050610b1e818585610e90565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb8611106565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90611d29565b60405180910390fd5b610c308161119b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190611dbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090611e4d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df791906117de565b60405180910390a3505050565b6000610e108484610b29565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e8a5781811015610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390611eb9565b60405180910390fd5b610e898484848403610c3b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690611f4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590611fdd565b60405180910390fd5b610f79838383611261565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff69061206f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ed91906117de565b60405180910390a361110084848461153f565b50505050565b61110e610c33565b73ffffffffffffffffffffffffffffffffffffffff1661112c6109d3565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906120db565b60405180910390fd5b565b6000826111918584611544565b1490509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113055750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90612147565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611451576113a26109d3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061140d57506113de6109d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906121b3565b60405180910390fd5b61153a565b600760009054906101000a900460ff1680156114ba5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561153957600854816114cc8461093e565b6114d69190611b5c565b111580156114f95750600954816114ec8461093e565b6114f69190611b5c565b10155b611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f9061221f565b60405180910390fd5b5b5b505050565b505050565b60008082905060005b845181101561158f5761157a8286838151811061156d5761156c61223f565b5b602002602001015161159a565b915080806115879061226e565b91505061154d565b508091505092915050565b60008183106115b2576115ad82846115c5565b6115bd565b6115bc83836115c5565b5b905092915050565b600082600052816020526040600020905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116165780820151818401526020810190506115fb565b60008484015250505050565b6000601f19601f8301169050919050565b600061163e826115dc565b61164881856115e7565b93506116588185602086016115f8565b61166181611622565b840191505092915050565b600060208201905081810360008301526116868184611633565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c382611698565b9050919050565b6116d3816116b8565b81146116de57600080fd5b50565b6000813590506116f0816116ca565b92915050565b6000819050919050565b611709816116f6565b811461171457600080fd5b50565b60008135905061172681611700565b92915050565b600080604083850312156117435761174261168e565b5b6000611751858286016116e1565b925050602061176285828601611717565b9150509250929050565b60008115159050919050565b6117818161176c565b82525050565b600060208201905061179c6000830184611778565b92915050565b6000602082840312156117b8576117b761168e565b5b60006117c6848285016116e1565b91505092915050565b6117d8816116f6565b82525050565b60006020820190506117f360008301846117cf565b92915050565b6000806000606084860312156118125761181161168e565b5b6000611820868287016116e1565b9350506020611831868287016116e1565b925050604061184286828701611717565b9150509250925092565b6000819050919050565b61185f8161184c565b82525050565b600060208201905061187a6000830184611856565b92915050565b600060ff82169050919050565b61189681611880565b82525050565b60006020820190506118b1600083018461188d565b92915050565b6118c08161176c565b81146118cb57600080fd5b50565b6000813590506118dd816118b7565b92915050565b600080600080608085870312156118fd576118fc61168e565b5b600061190b878288016118ce565b945050602061191c878288016116e1565b935050604061192d87828801611717565b925050606061193e87828801611717565b91505092959194509250565b600080fd5b600080fd5b600080fd5b60008083601f84011261196f5761196e61194a565b5b8235905067ffffffffffffffff81111561198c5761198b61194f565b5b6020830191508360208202830111156119a8576119a7611954565b5b9250929050565b600080600080606085870312156119c9576119c861168e565b5b60006119d7878288016116e1565b94505060206119e887828801611717565b935050604085013567ffffffffffffffff811115611a0957611a08611693565b5b611a1587828801611959565b925092505092959194509250565b60008060408385031215611a3a57611a3961168e565b5b6000611a48858286016116e1565b9250506020611a59858286016118ce565b9150509250929050565b611a6c816116b8565b82525050565b6000602082019050611a876000830184611a63565b92915050565b60008060408385031215611aa457611aa361168e565b5b6000611ab2858286016116e1565b9250506020611ac3858286016116e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1457607f821691505b602082108103611b2757611b26611acd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b67826116f6565b9150611b72836116f6565b9250828201905080821115611b8a57611b89611b2d565b5b92915050565b60008160601b9050919050565b6000611ba882611b90565b9050919050565b6000611bba82611b9d565b9050919050565b611bd2611bcd826116b8565b611baf565b82525050565b6000819050919050565b611bf3611bee826116f6565b611bd8565b82525050565b6000611c058285611bc1565b601482019150611c158284611be2565b6020820191508190509392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c816025836115e7565b9150611c8c82611c25565b604082019050919050565b60006020820190508181036000830152611cb081611c74565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d136026836115e7565b9150611d1e82611cb7565b604082019050919050565b60006020820190508181036000830152611d4281611d06565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611da56024836115e7565b9150611db082611d49565b604082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e376022836115e7565b9150611e4282611ddb565b604082019050919050565b60006020820190508181036000830152611e6681611e2a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ea3601d836115e7565b9150611eae82611e6d565b602082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f356025836115e7565b9150611f4082611ed9565b604082019050919050565b60006020820190508181036000830152611f6481611f28565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fc76023836115e7565b9150611fd282611f6b565b604082019050919050565b60006020820190508181036000830152611ff681611fba565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120596026836115e7565b915061206482611ffd565b604082019050919050565b600060208201905081810360008301526120888161204c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120c56020836115e7565b91506120d08261208f565b602082019050919050565b600060208201905081810360008301526120f4816120b8565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612131600b836115e7565b915061213c826120fb565b602082019050919050565b6000602082019050818103600083015261216081612124565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061219d6016836115e7565b91506121a882612167565b602082019050919050565b600060208201905081810360008301526121cc81612190565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006122096006836115e7565b9150612214826121d3565b602082019050919050565b60006020820190508181036000830152612238816121fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612279826116f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036122ab576122aa611b2d565b5b60018201905091905056fea26469706673582212200f89d366ba2abe61e571fbcf3c79636831b98432e3737b4bff9650a591fea25e64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000a455c700e017c1f9882cf499b94c74a729db09a5265c5473986293ac79f30ef5f26e0000000000000000000000000000000000000000000000000000000000000006424f4f4d455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424f4f4d45520000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): BOOMER
Arg [1] : _symbol (string): BOOMER
Arg [2] : _decimals (uint8): 18
Arg [3] : _totalSupply (uint256): 42069
Arg [4] : _merkleRoot (bytes32): 0xc700e017c1f9882cf499b94c74a729db09a5265c5473986293ac79f30ef5f26e
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000000a455
Arg [4] : c700e017c1f9882cf499b94c74a729db09a5265c5473986293ac79f30ef5f26e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 424f4f4d45520000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 424f4f4d45520000000000000000000000000000000000000000000000000000
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.