ERC-20
Overview
Max Total Supply
150,485,640.912192501003222398 FAITH
Holders
1,686
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4.216254970657296172 FAITHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Faith
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IMINT { function mint(address receiver, uint amount) external; } contract Faith is ERC20("Faith", "FAITH"), Ownable { IERC20 public love; uint public lovePerBlock; uint public lastMintBlock; uint public faithFeePercent; address public feeReceiver; bool public active; constructor(IERC20 _love) Ownable() { love = _love; active = true; lovePerBlock = 200 * 10 ** 18; faithFeePercent = 10; lastMintBlock = block.number; feeReceiver = msg.sender; } modifier onlyActive() { require(active, "Faith: Not active"); _; } function enter(uint256 _amount) public onlyActive { snap(); uint256 totalLove = love.balanceOf(address(this)); uint256 totalShares = totalSupply(); if (totalShares == 0 || totalLove == 0) { _mint(msg.sender, _amount); } else { uint256 what = (_amount * totalShares) / totalLove; uint256 faithToMint = what * (100 - faithFeePercent) / 100; uint256 faithFeeToMint = what - faithToMint; _mint(msg.sender, what); _mint(feeReceiver, faithFeeToMint); } love.transferFrom(msg.sender, address(this), _amount); } function leave(uint256 _share) public onlyActive { snap(); uint256 totalShares = totalSupply(); uint256 what = (_share * love.balanceOf(address(this))) / totalShares; _burn(msg.sender, _share); love.transfer(msg.sender, what); } function snap() internal { if(block.number == lastMintBlock) { return; } IMINT(address(love)).mint(address(this), lovePerBlock * (block.number - lastMintBlock)); lastMintBlock = block.number; } function flipActive() external onlyOwner { active = !active; } function updateLovePerBlock(uint _lovePerBlock) external onlyOwner { snap(); lovePerBlock = _lovePerBlock; } function updateFeeReceiver(address _feeReceiver) external onlyOwner { feeReceiver = _feeReceiver; } function updateFaithFeePercent(uint _faithFeePercent) external onlyOwner { require (_faithFeePercent <= 100, "Faith: Fee percent must be less than or equal to 100"); faithFeePercent = _faithFeePercent; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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":"contract IERC20","name":"_love","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"faithFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipActive","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":"lastMintBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"love","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lovePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_faithFeePercent","type":"uint256"}],"name":"updateFaithFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"updateFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lovePerBlock","type":"uint256"}],"name":"updateLovePerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002cd738038062002cd78339818101604052810190620000379190620002f8565b6040518060400160405280600581526020017f46616974680000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46414954480000000000000000000000000000000000000000000000000000008152508160039081620000b49190620005a4565b508060049081620000c69190620005a4565b505050620000e9620000dd620001ac60201b60201c565b620001b460201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff021916908315150217905550680ad78ebc5ac6200000600781905550600a6009819055504360088190555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200068b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002ac826200027f565b9050919050565b6000620002c0826200029f565b9050919050565b620002d281620002b3565b8114620002de57600080fd5b50565b600081519050620002f281620002c7565b92915050565b6000602082840312156200031157620003106200027a565b5b60006200032184828501620002e1565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ac57607f821691505b602082108103620003c257620003c162000364565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200042c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ed565b620004388683620003ed565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004856200047f620004798462000450565b6200045a565b62000450565b9050919050565b6000819050919050565b620004a18362000464565b620004b9620004b0826200048c565b848454620003fa565b825550505050565b600090565b620004d0620004c1565b620004dd81848462000496565b505050565b5b818110156200050557620004f9600082620004c6565b600181019050620004e3565b5050565b601f82111562000554576200051e81620003c8565b6200052984620003dd565b8101602085101562000539578190505b620005516200054885620003dd565b830182620004e2565b50505b505050565b600082821c905092915050565b6000620005796000198460080262000559565b1980831691505092915050565b600062000594838362000566565b9150826002028217905092915050565b620005af826200032a565b67ffffffffffffffff811115620005cb57620005ca62000335565b5b620005d7825462000393565b620005e482828562000509565b600060209050601f8311600181146200061c576000841562000607578287015190505b62000613858262000586565b86555062000683565b601f1984166200062c86620003c8565b60005b8281101562000656578489015182556001820191506020850194506020810190506200062f565b8683101562000676578489015162000672601f89168262000566565b8355505b6001600288020188555050505b505050505050565b61263c806200069b6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806395d89b41116100de578063c69bebe411610097578063dd62ed3e11610071578063dd62ed3e14610461578063dff5323114610491578063f298ca5c146104af578063f2fde38b146104cd5761018e565b8063c69bebe41461040b578063ca57600a14610427578063d8eff485146104455761018e565b806395d89b41146103355780639cf5c3f514610353578063a457c2d714610371578063a59f3e0c146103a1578063a9059cbb146103bd578063b3f00674146103ed5761018e565b8063313ce5671161014b57806367dfd4c91161012557806367dfd4c9146102c157806370a08231146102dd578063715018a61461030d5780638da5cb5b146103175761018e565b8063313ce56714610269578063395093511461028757806352d939e3146102b75761018e565b806302fb0c5e1461019357806306fdde03146101b1578063095ea7b3146101cf57806318160ddd146101ff57806323b872dd1461021d57806323bf382e1461024d575b600080fd5b61019b6104e9565b6040516101a89190611876565b60405180910390f35b6101b96104fc565b6040516101c69190611921565b60405180910390f35b6101e960048036038101906101e491906119dc565b61058e565b6040516101f69190611876565b60405180910390f35b6102076105b1565b6040516102149190611a2b565b60405180910390f35b61023760048036038101906102329190611a46565b6105bb565b6040516102449190611876565b60405180910390f35b61026760048036038101906102629190611a99565b6105ea565b005b610271610640565b60405161027e9190611ae2565b60405180910390f35b6102a1600480360381019061029c91906119dc565b610649565b6040516102ae9190611876565b60405180910390f35b6102bf610680565b005b6102db60048036038101906102d69190611a99565b6106b4565b005b6102f760048036038101906102f29190611afd565b61087d565b6040516103049190611a2b565b60405180910390f35b6103156108c5565b005b61031f6108d9565b60405161032c9190611b39565b60405180910390f35b61033d610903565b60405161034a9190611921565b60405180910390f35b61035b610995565b6040516103689190611a2b565b60405180910390f35b61038b600480360381019061038691906119dc565b61099b565b6040516103989190611876565b60405180910390f35b6103bb60048036038101906103b69190611a99565b610a12565b005b6103d760048036038101906103d291906119dc565b610c6f565b6040516103e49190611876565b60405180910390f35b6103f5610c92565b6040516104029190611b39565b60405180910390f35b61042560048036038101906104209190611afd565b610cb8565b005b61042f610d04565b60405161043c9190611a2b565b60405180910390f35b61045f600480360381019061045a9190611a99565b610d0a565b005b61047b60048036038101906104769190611b54565b610d24565b6040516104889190611a2b565b60405180910390f35b610499610dab565b6040516104a69190611bf3565b60405180910390f35b6104b7610dd1565b6040516104c49190611a2b565b60405180910390f35b6104e760048036038101906104e29190611afd565b610dd7565b005b600a60149054906101000a900460ff1681565b60606003805461050b90611c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461053790611c3d565b80156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b600080610599610e5a565b90506105a6818585610e62565b600191505092915050565b6000600254905090565b6000806105c6610e5a565b90506105d385828561102b565b6105de8585856110b7565b60019150509392505050565b6105f261132d565b6064811115610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d90611ce0565b60405180910390fd5b8060098190555050565b60006012905090565b600080610654610e5a565b90506106758185856106668589610d24565b6106709190611d2f565b610e62565b600191505092915050565b61068861132d565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff16610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90611daf565b60405180910390fd5b61070b6113ab565b60006107156105b1565b9050600081600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107759190611b39565b602060405180830381865afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b69190611de4565b846107c19190611e11565b6107cb9190611e82565b90506107d73384611468565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610834929190611eb3565b6020604051808303816000875af1158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190611f08565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108cd61132d565b6108d76000611635565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091290611c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90611c3d565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60085481565b6000806109a6610e5a565b905060006109b48286610d24565b9050838110156109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090611fa7565b60405180910390fd5b610a068286868403610e62565b60019250505092915050565b600a60149054906101000a900460ff16610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890611daf565b60405180910390fd5b610a696113ab565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ac69190611b39565b602060405180830381865afa158015610ae3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b079190611de4565b90506000610b136105b1565b90506000811480610b245750600082145b15610b3857610b3333846116fb565b610bc7565b6000828285610b479190611e11565b610b519190611e82565b9050600060646009546064610b669190611fc7565b83610b719190611e11565b610b7b9190611e82565b905060008183610b8b9190611fc7565b9050610b9733846116fb565b610bc3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826116fb565b5050505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401610c2693929190611ffb565b6020604051808303816000875af1158015610c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c699190611f08565b50505050565b600080610c7a610e5a565b9050610c878185856110b7565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cc061132d565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b610d1261132d565b610d1a6113ab565b8060078190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b610ddf61132d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e45906120a4565b60405180910390fd5b610e5781611635565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890612136565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f37906121c8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161101e9190611a2b565b60405180910390a3505050565b60006110378484610d24565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b157818110156110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90612234565b60405180910390fd5b6110b08484848403610e62565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d906122c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90612358565b60405180910390fd5b6111a0838383611851565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906123ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113149190611a2b565b60405180910390a3611327848484611856565b50505050565b611335610e5a565b73ffffffffffffffffffffffffffffffffffffffff166113536108d9565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090612456565b60405180910390fd5b565b60085443031561146657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930600854436114029190611fc7565b60075461140f9190611e11565b6040518363ffffffff1660e01b815260040161142c929190611eb3565b600060405180830381600087803b15801561144657600080fd5b505af115801561145a573d6000803e3d6000fd5b50505050436008819055505b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce906124e8565b60405180910390fd5b6114e382600083611851565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115609061257a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161c9190611a2b565b60405180910390a361163083600084611856565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361176a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611761906125e6565b60405180910390fd5b61177660008383611851565b80600260008282546117889190611d2f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118399190611a2b565b60405180910390a361184d60008383611856565b5050565b505050565b505050565b60008115159050919050565b6118708161185b565b82525050565b600060208201905061188b6000830184611867565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118cb5780820151818401526020810190506118b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006118f382611891565b6118fd818561189c565b935061190d8185602086016118ad565b611916816118d7565b840191505092915050565b6000602082019050818103600083015261193b81846118e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061197382611948565b9050919050565b61198381611968565b811461198e57600080fd5b50565b6000813590506119a08161197a565b92915050565b6000819050919050565b6119b9816119a6565b81146119c457600080fd5b50565b6000813590506119d6816119b0565b92915050565b600080604083850312156119f3576119f2611943565b5b6000611a0185828601611991565b9250506020611a12858286016119c7565b9150509250929050565b611a25816119a6565b82525050565b6000602082019050611a406000830184611a1c565b92915050565b600080600060608486031215611a5f57611a5e611943565b5b6000611a6d86828701611991565b9350506020611a7e86828701611991565b9250506040611a8f868287016119c7565b9150509250925092565b600060208284031215611aaf57611aae611943565b5b6000611abd848285016119c7565b91505092915050565b600060ff82169050919050565b611adc81611ac6565b82525050565b6000602082019050611af76000830184611ad3565b92915050565b600060208284031215611b1357611b12611943565b5b6000611b2184828501611991565b91505092915050565b611b3381611968565b82525050565b6000602082019050611b4e6000830184611b2a565b92915050565b60008060408385031215611b6b57611b6a611943565b5b6000611b7985828601611991565b9250506020611b8a85828601611991565b9150509250929050565b6000819050919050565b6000611bb9611bb4611baf84611948565b611b94565b611948565b9050919050565b6000611bcb82611b9e565b9050919050565b6000611bdd82611bc0565b9050919050565b611bed81611bd2565b82525050565b6000602082019050611c086000830184611be4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c5557607f821691505b602082108103611c6857611c67611c0e565b5b50919050565b7f46616974683a204665652070657263656e74206d757374206265206c6573732060008201527f7468616e206f7220657175616c20746f20313030000000000000000000000000602082015250565b6000611cca60348361189c565b9150611cd582611c6e565b604082019050919050565b60006020820190508181036000830152611cf981611cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d3a826119a6565b9150611d45836119a6565b9250828201905080821115611d5d57611d5c611d00565b5b92915050565b7f46616974683a204e6f7420616374697665000000000000000000000000000000600082015250565b6000611d9960118361189c565b9150611da482611d63565b602082019050919050565b60006020820190508181036000830152611dc881611d8c565b9050919050565b600081519050611dde816119b0565b92915050565b600060208284031215611dfa57611df9611943565b5b6000611e0884828501611dcf565b91505092915050565b6000611e1c826119a6565b9150611e27836119a6565b9250828202611e35816119a6565b91508282048414831517611e4c57611e4b611d00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e8d826119a6565b9150611e98836119a6565b925082611ea857611ea7611e53565b5b828204905092915050565b6000604082019050611ec86000830185611b2a565b611ed56020830184611a1c565b9392505050565b611ee58161185b565b8114611ef057600080fd5b50565b600081519050611f0281611edc565b92915050565b600060208284031215611f1e57611f1d611943565b5b6000611f2c84828501611ef3565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f9160258361189c565b9150611f9c82611f35565b604082019050919050565b60006020820190508181036000830152611fc081611f84565b9050919050565b6000611fd2826119a6565b9150611fdd836119a6565b9250828203905081811115611ff557611ff4611d00565b5b92915050565b60006060820190506120106000830186611b2a565b61201d6020830185611b2a565b61202a6040830184611a1c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061208e60268361189c565b915061209982612032565b604082019050919050565b600060208201905081810360008301526120bd81612081565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061212060248361189c565b915061212b826120c4565b604082019050919050565b6000602082019050818103600083015261214f81612113565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b260228361189c565b91506121bd82612156565b604082019050919050565b600060208201905081810360008301526121e1816121a5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061221e601d8361189c565b9150612229826121e8565b602082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122b060258361189c565b91506122bb82612254565b604082019050919050565b600060208201905081810360008301526122df816122a3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061234260238361189c565b915061234d826122e6565b604082019050919050565b6000602082019050818103600083015261237181612335565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123d460268361189c565b91506123df82612378565b604082019050919050565b60006020820190508181036000830152612403816123c7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061244060208361189c565b915061244b8261240a565b602082019050919050565b6000602082019050818103600083015261246f81612433565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006124d260218361189c565b91506124dd82612476565b604082019050919050565b60006020820190508181036000830152612501816124c5565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061256460228361189c565b915061256f82612508565b604082019050919050565b6000602082019050818103600083015261259381612557565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006125d0601f8361189c565b91506125db8261259a565b602082019050919050565b600060208201905081810360008301526125ff816125c3565b905091905056fea264697066735822122072ce44eb3aac26ad1d98f26d0e1accd56f21b4564637b6b7a552a2cd27b3dd6464736f6c63430008110033000000000000000000000000b22c05cedbf879a661fcc566b5a759d005cf7b4c
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806395d89b41116100de578063c69bebe411610097578063dd62ed3e11610071578063dd62ed3e14610461578063dff5323114610491578063f298ca5c146104af578063f2fde38b146104cd5761018e565b8063c69bebe41461040b578063ca57600a14610427578063d8eff485146104455761018e565b806395d89b41146103355780639cf5c3f514610353578063a457c2d714610371578063a59f3e0c146103a1578063a9059cbb146103bd578063b3f00674146103ed5761018e565b8063313ce5671161014b57806367dfd4c91161012557806367dfd4c9146102c157806370a08231146102dd578063715018a61461030d5780638da5cb5b146103175761018e565b8063313ce56714610269578063395093511461028757806352d939e3146102b75761018e565b806302fb0c5e1461019357806306fdde03146101b1578063095ea7b3146101cf57806318160ddd146101ff57806323b872dd1461021d57806323bf382e1461024d575b600080fd5b61019b6104e9565b6040516101a89190611876565b60405180910390f35b6101b96104fc565b6040516101c69190611921565b60405180910390f35b6101e960048036038101906101e491906119dc565b61058e565b6040516101f69190611876565b60405180910390f35b6102076105b1565b6040516102149190611a2b565b60405180910390f35b61023760048036038101906102329190611a46565b6105bb565b6040516102449190611876565b60405180910390f35b61026760048036038101906102629190611a99565b6105ea565b005b610271610640565b60405161027e9190611ae2565b60405180910390f35b6102a1600480360381019061029c91906119dc565b610649565b6040516102ae9190611876565b60405180910390f35b6102bf610680565b005b6102db60048036038101906102d69190611a99565b6106b4565b005b6102f760048036038101906102f29190611afd565b61087d565b6040516103049190611a2b565b60405180910390f35b6103156108c5565b005b61031f6108d9565b60405161032c9190611b39565b60405180910390f35b61033d610903565b60405161034a9190611921565b60405180910390f35b61035b610995565b6040516103689190611a2b565b60405180910390f35b61038b600480360381019061038691906119dc565b61099b565b6040516103989190611876565b60405180910390f35b6103bb60048036038101906103b69190611a99565b610a12565b005b6103d760048036038101906103d291906119dc565b610c6f565b6040516103e49190611876565b60405180910390f35b6103f5610c92565b6040516104029190611b39565b60405180910390f35b61042560048036038101906104209190611afd565b610cb8565b005b61042f610d04565b60405161043c9190611a2b565b60405180910390f35b61045f600480360381019061045a9190611a99565b610d0a565b005b61047b60048036038101906104769190611b54565b610d24565b6040516104889190611a2b565b60405180910390f35b610499610dab565b6040516104a69190611bf3565b60405180910390f35b6104b7610dd1565b6040516104c49190611a2b565b60405180910390f35b6104e760048036038101906104e29190611afd565b610dd7565b005b600a60149054906101000a900460ff1681565b60606003805461050b90611c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461053790611c3d565b80156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b600080610599610e5a565b90506105a6818585610e62565b600191505092915050565b6000600254905090565b6000806105c6610e5a565b90506105d385828561102b565b6105de8585856110b7565b60019150509392505050565b6105f261132d565b6064811115610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d90611ce0565b60405180910390fd5b8060098190555050565b60006012905090565b600080610654610e5a565b90506106758185856106668589610d24565b6106709190611d2f565b610e62565b600191505092915050565b61068861132d565b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff16610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90611daf565b60405180910390fd5b61070b6113ab565b60006107156105b1565b9050600081600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107759190611b39565b602060405180830381865afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b69190611de4565b846107c19190611e11565b6107cb9190611e82565b90506107d73384611468565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610834929190611eb3565b6020604051808303816000875af1158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190611f08565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108cd61132d565b6108d76000611635565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091290611c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90611c3d565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60085481565b6000806109a6610e5a565b905060006109b48286610d24565b9050838110156109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090611fa7565b60405180910390fd5b610a068286868403610e62565b60019250505092915050565b600a60149054906101000a900460ff16610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890611daf565b60405180910390fd5b610a696113ab565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ac69190611b39565b602060405180830381865afa158015610ae3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b079190611de4565b90506000610b136105b1565b90506000811480610b245750600082145b15610b3857610b3333846116fb565b610bc7565b6000828285610b479190611e11565b610b519190611e82565b9050600060646009546064610b669190611fc7565b83610b719190611e11565b610b7b9190611e82565b905060008183610b8b9190611fc7565b9050610b9733846116fb565b610bc3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826116fb565b5050505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401610c2693929190611ffb565b6020604051808303816000875af1158015610c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c699190611f08565b50505050565b600080610c7a610e5a565b9050610c878185856110b7565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cc061132d565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b610d1261132d565b610d1a6113ab565b8060078190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b610ddf61132d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e45906120a4565b60405180910390fd5b610e5781611635565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890612136565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f37906121c8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161101e9190611a2b565b60405180910390a3505050565b60006110378484610d24565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b157818110156110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90612234565b60405180910390fd5b6110b08484848403610e62565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d906122c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90612358565b60405180910390fd5b6111a0838383611851565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906123ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113149190611a2b565b60405180910390a3611327848484611856565b50505050565b611335610e5a565b73ffffffffffffffffffffffffffffffffffffffff166113536108d9565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090612456565b60405180910390fd5b565b60085443031561146657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930600854436114029190611fc7565b60075461140f9190611e11565b6040518363ffffffff1660e01b815260040161142c929190611eb3565b600060405180830381600087803b15801561144657600080fd5b505af115801561145a573d6000803e3d6000fd5b50505050436008819055505b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce906124e8565b60405180910390fd5b6114e382600083611851565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611569576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115609061257a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161c9190611a2b565b60405180910390a361163083600084611856565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361176a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611761906125e6565b60405180910390fd5b61177660008383611851565b80600260008282546117889190611d2f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118399190611a2b565b60405180910390a361184d60008383611856565b5050565b505050565b505050565b60008115159050919050565b6118708161185b565b82525050565b600060208201905061188b6000830184611867565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118cb5780820151818401526020810190506118b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006118f382611891565b6118fd818561189c565b935061190d8185602086016118ad565b611916816118d7565b840191505092915050565b6000602082019050818103600083015261193b81846118e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061197382611948565b9050919050565b61198381611968565b811461198e57600080fd5b50565b6000813590506119a08161197a565b92915050565b6000819050919050565b6119b9816119a6565b81146119c457600080fd5b50565b6000813590506119d6816119b0565b92915050565b600080604083850312156119f3576119f2611943565b5b6000611a0185828601611991565b9250506020611a12858286016119c7565b9150509250929050565b611a25816119a6565b82525050565b6000602082019050611a406000830184611a1c565b92915050565b600080600060608486031215611a5f57611a5e611943565b5b6000611a6d86828701611991565b9350506020611a7e86828701611991565b9250506040611a8f868287016119c7565b9150509250925092565b600060208284031215611aaf57611aae611943565b5b6000611abd848285016119c7565b91505092915050565b600060ff82169050919050565b611adc81611ac6565b82525050565b6000602082019050611af76000830184611ad3565b92915050565b600060208284031215611b1357611b12611943565b5b6000611b2184828501611991565b91505092915050565b611b3381611968565b82525050565b6000602082019050611b4e6000830184611b2a565b92915050565b60008060408385031215611b6b57611b6a611943565b5b6000611b7985828601611991565b9250506020611b8a85828601611991565b9150509250929050565b6000819050919050565b6000611bb9611bb4611baf84611948565b611b94565b611948565b9050919050565b6000611bcb82611b9e565b9050919050565b6000611bdd82611bc0565b9050919050565b611bed81611bd2565b82525050565b6000602082019050611c086000830184611be4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c5557607f821691505b602082108103611c6857611c67611c0e565b5b50919050565b7f46616974683a204665652070657263656e74206d757374206265206c6573732060008201527f7468616e206f7220657175616c20746f20313030000000000000000000000000602082015250565b6000611cca60348361189c565b9150611cd582611c6e565b604082019050919050565b60006020820190508181036000830152611cf981611cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d3a826119a6565b9150611d45836119a6565b9250828201905080821115611d5d57611d5c611d00565b5b92915050565b7f46616974683a204e6f7420616374697665000000000000000000000000000000600082015250565b6000611d9960118361189c565b9150611da482611d63565b602082019050919050565b60006020820190508181036000830152611dc881611d8c565b9050919050565b600081519050611dde816119b0565b92915050565b600060208284031215611dfa57611df9611943565b5b6000611e0884828501611dcf565b91505092915050565b6000611e1c826119a6565b9150611e27836119a6565b9250828202611e35816119a6565b91508282048414831517611e4c57611e4b611d00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e8d826119a6565b9150611e98836119a6565b925082611ea857611ea7611e53565b5b828204905092915050565b6000604082019050611ec86000830185611b2a565b611ed56020830184611a1c565b9392505050565b611ee58161185b565b8114611ef057600080fd5b50565b600081519050611f0281611edc565b92915050565b600060208284031215611f1e57611f1d611943565b5b6000611f2c84828501611ef3565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f9160258361189c565b9150611f9c82611f35565b604082019050919050565b60006020820190508181036000830152611fc081611f84565b9050919050565b6000611fd2826119a6565b9150611fdd836119a6565b9250828203905081811115611ff557611ff4611d00565b5b92915050565b60006060820190506120106000830186611b2a565b61201d6020830185611b2a565b61202a6040830184611a1c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061208e60268361189c565b915061209982612032565b604082019050919050565b600060208201905081810360008301526120bd81612081565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061212060248361189c565b915061212b826120c4565b604082019050919050565b6000602082019050818103600083015261214f81612113565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b260228361189c565b91506121bd82612156565b604082019050919050565b600060208201905081810360008301526121e1816121a5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061221e601d8361189c565b9150612229826121e8565b602082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122b060258361189c565b91506122bb82612254565b604082019050919050565b600060208201905081810360008301526122df816122a3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061234260238361189c565b915061234d826122e6565b604082019050919050565b6000602082019050818103600083015261237181612335565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123d460268361189c565b91506123df82612378565b604082019050919050565b60006020820190508181036000830152612403816123c7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061244060208361189c565b915061244b8261240a565b602082019050919050565b6000602082019050818103600083015261246f81612433565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006124d260218361189c565b91506124dd82612476565b604082019050919050565b60006020820190508181036000830152612501816124c5565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061256460228361189c565b915061256f82612508565b604082019050919050565b6000602082019050818103600083015261259381612557565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006125d0601f8361189c565b91506125db8261259a565b602082019050919050565b600060208201905081810360008301526125ff816125c3565b905091905056fea264697066735822122072ce44eb3aac26ad1d98f26d0e1accd56f21b4564637b6b7a552a2cd27b3dd6464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b22c05cedbf879a661fcc566b5a759d005cf7b4c
-----Decoded View---------------
Arg [0] : _love (address): 0xB22C05CeDbF879a661fcc566B5a759d005Cf7b4C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b22c05cedbf879a661fcc566b5a759d005cf7b4c
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.