[ Download CSV Export ]
OVERVIEW
MINT MARBLE enables content created in the virtual world and the real world to be capitalized and expanded into added value in all lives on and off.Contract Name:
MintMarble
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; // import "hardhat/console.sol"; contract BlackList is Ownable { mapping(address => bool) public isBlacklisted; function blackList(address _user) public onlyOwner { require(!isBlacklisted[_user], "user already blacklisted"); isBlacklisted[_user] = true; // emit events as well } function removeFromBlacklist(address _user) public onlyOwner { require(isBlacklisted[_user], "user already whitelisted"); isBlacklisted[_user] = false; // emit events as well } } //ERC20 토큰 전송시 해당 물량을 특정 기간동안 락업하는 기능을 추가한다. //각 전송 마다 전송된 물량의 전부를 락업한다. contract LockBalance { struct LockInfo { uint256 amount; uint256 releaseTime; } mapping(address => LockInfo[]) private _lockInfo; function getLockedBalance(address _addr) public view returns (uint256) { uint256 totalLocked = 0; for (uint256 i = 0; i < _lockInfo[_addr].length; i++) { // console.log(_lockInfo[_addr][i].releaseTime, block.timestamp); if (_lockInfo[_addr][i].releaseTime > block.timestamp) totalLocked += _lockInfo[_addr][i].amount; } return totalLocked; } function addLockinfo( address to, uint256 amount, uint256 releaseTime ) internal { //remove released lockinfos uint256 lockCount = 0; for (uint256 i = 0; i < _lockInfo[to].length; i++) { if (i > lockCount) { _lockInfo[to][lockCount] = _lockInfo[to][i]; } if (_lockInfo[to][i].releaseTime > block.timestamp) { lockCount++; } } uint256 removeCount = _lockInfo[to].length - lockCount; if (lockCount == 0) delete _lockInfo[to]; else if (removeCount > 0) { for (uint256 i = 0; i < removeCount; i++) _lockInfo[to].pop(); } //add lockinfo if release time if (releaseTime > block.timestamp) _lockInfo[to].push(LockInfo(amount, releaseTime)); } } contract MintMarble is ERC20, Ownable, Pausable, BlackList, LockBalance { constructor() ERC20("Mint Marble", "MIM") { uint256 amount = 20_0000_0000 * 10**decimals(); _mint(_msgSender(), amount); } function stop() public onlyOwner { _pause(); } function start() public onlyOwner { _unpause(); } function burn(uint256 amount) public { _burn(msg.sender, amount); } //Don't accept ETH or BNB receive() external payable { revert("Don't accept ETH or BNB"); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); require(!isBlacklisted[from], "blacklisted from"); require(!isBlacklisted[to], "blacklisted to"); if (from != address(0)) { //not minting uint256 locked = getLockedBalance(from); uint256 accountBalance = balanceOf(from); require(accountBalance - locked >= amount, "Timelock: some balance has locked."); } } function transferWithLocked( address to, uint256 amount, uint256 releaseTime ) public returns (bool) { transfer(to, amount); addLockinfo(to, amount, releaseTime); return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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 (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 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":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"_user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"_addr","type":"address"}],"name":"getLockedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stop","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"name":"transferWithLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4d696e74204d6172626c650000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d494d0000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620007e7565b508060049080519060200190620000af929190620007e7565b505050620000d2620000c66200014860201b60201c565b6200015060201b60201c565b6000600560146101000a81548160ff0219169083151502179055506000620000ff6200021660201b60201c565b600a6200010d919062000afb565b63773594006200011e919062000c38565b905062000141620001346200014860201b60201c565b826200021f60201b60201c565b5062000ef3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028990620009d1565b60405180910390fd5b620002a6600083836200039860201b60201c565b8060026000828254620002ba919062000a43565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000311919062000a43565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000378919062000a15565b60405180910390a36200039460008383620005dd60201b60201c565b5050565b620003b0838383620005e260201b6200107b1760201c565b620003c0620005e760201b60201c565b1562000403576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fa90620009f3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000493576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048a906200096b565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000523576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051a906200098d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620005d85760006200056b84620005fe60201b60201c565b9050600062000580856200079f60201b60201c565b905082828262000591919062000c99565b1015620005d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005cc90620009af565b60405180910390fd5b50505b505050565b505050565b505050565b6000600560149054906101000a900460ff16905090565b6000806000905060005b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015620007955742600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110620006cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001015411156200077f57600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081815481106200075d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020160000154826200077c919062000a43565b91505b80806200078c9062000d21565b91505062000608565b5080915050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620007f59062000ceb565b90600052602060002090601f01602090048101928262000819576000855562000865565b82601f106200083457805160ff191683800117855562000865565b8280016001018555821562000865579182015b828111156200086457825182559160200191906001019062000847565b5b50905062000874919062000878565b5090565b5b808211156200089357600081600090555060010162000879565b5090565b6000620008a660108362000a32565b9150620008b38262000dda565b602082019050919050565b6000620008cd600e8362000a32565b9150620008da8262000e03565b602082019050919050565b6000620008f460228362000a32565b9150620009018262000e2c565b604082019050919050565b60006200091b601f8362000a32565b9150620009288262000e7b565b602082019050919050565b600062000942602a8362000a32565b91506200094f8262000ea4565b604082019050919050565b620009658162000cd4565b82525050565b60006020820190508181036000830152620009868162000897565b9050919050565b60006020820190508181036000830152620009a881620008be565b9050919050565b60006020820190508181036000830152620009ca81620008e5565b9050919050565b60006020820190508181036000830152620009ec816200090c565b9050919050565b6000602082019050818103600083015262000a0e8162000933565b9050919050565b600060208201905062000a2c60008301846200095a565b92915050565b600082825260208201905092915050565b600062000a508262000cd4565b915062000a5d8362000cd4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a955762000a9462000d6f565b5b828201905092915050565b6000808291508390505b600185111562000af25780860481111562000aca5762000ac962000d6f565b5b600185161562000ada5780820291505b808102905062000aea8562000dcd565b945062000aaa565b94509492505050565b600062000b088262000cd4565b915062000b158362000cde565b925062000b447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b4c565b905092915050565b60008262000b5e576001905062000c31565b8162000b6e576000905062000c31565b816001811462000b87576002811462000b925762000bc8565b600191505062000c31565b60ff84111562000ba75762000ba662000d6f565b5b8360020a91508482111562000bc15762000bc062000d6f565b5b5062000c31565b5060208310610133831016604e8410600b841016171562000c025782820a90508381111562000bfc5762000bfb62000d6f565b5b62000c31565b62000c11848484600162000aa0565b9250905081840481111562000c2b5762000c2a62000d6f565b5b81810290505b9392505050565b600062000c458262000cd4565b915062000c528362000cd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c8e5762000c8d62000d6f565b5b828202905092915050565b600062000ca68262000cd4565b915062000cb38362000cd4565b92508282101562000cc95762000cc862000d6f565b5b828203905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000d0457607f821691505b6020821081141562000d1b5762000d1a62000d9e565b5b50919050565b600062000d2e8262000cd4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000d645762000d6362000d6f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f626c61636b6c69737465642066726f6d00000000000000000000000000000000600082015250565b7f626c61636b6c697374656420746f000000000000000000000000000000000000600082015250565b7f54696d656c6f636b3a20736f6d652062616c616e636520686173206c6f636b6560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b612f078062000f036000396000f3fe6080604052600436106101445760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb146104a2578063be9a6555146104df578063c4086893146104f6578063dd62ed3e14610533578063f2fde38b14610570578063fe575a871461059957610184565b806370a082311461037e578063715018a6146103bb5780638da5cb5b146103d257806395d89b41146103fd578063a43660b514610428578063a457c2d71461046557610184565b8063313ce56711610108578063313ce56714610270578063395093511461029b57806342966c68146102d85780634838d16514610301578063537df3b61461032a5780635c975abb1461035357610184565b806306fdde031461018957806307da68f5146101b4578063095ea7b3146101cb57806318160ddd1461020857806323b872dd1461023357610184565b36610184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161017b9061257f565b60405180910390fd5b600080fd5b34801561019557600080fd5b5061019e6105d6565b6040516101ab91906124dd565b60405180910390f35b3480156101c057600080fd5b506101c9610668565b005b3480156101d757600080fd5b506101f260048036038101906101ed91906120c2565b6106ee565b6040516101ff91906124c2565b60405180910390f35b34801561021457600080fd5b5061021d610711565b60405161022a919061277f565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190612073565b61071b565b60405161026791906124c2565b60405180910390f35b34801561027c57600080fd5b5061028561074a565b604051610292919061279a565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906120c2565b610753565b6040516102cf91906124c2565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa919061214d565b61078a565b005b34801561030d57600080fd5b506103286004803603810190610323919061200e565b610797565b005b34801561033657600080fd5b50610351600480360381019061034c919061200e565b6108fb565b005b34801561035f57600080fd5b50610368610a5e565b60405161037591906124c2565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a0919061200e565b610a75565b6040516103b2919061277f565b60405180910390f35b3480156103c757600080fd5b506103d0610abd565b005b3480156103de57600080fd5b506103e7610b45565b6040516103f491906124a7565b60405180910390f35b34801561040957600080fd5b50610412610b6f565b60405161041f91906124dd565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a91906120fe565b610c01565b60405161045c91906124c2565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906120c2565b610c24565b60405161049991906124c2565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906120c2565b610c9b565b6040516104d691906124c2565b60405180910390f35b3480156104eb57600080fd5b506104f4610cbe565b005b34801561050257600080fd5b5061051d6004803603810190610518919061200e565b610d44565b60405161052a919061277f565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612037565b610edc565b604051610567919061277f565b60405180910390f35b34801561057c57600080fd5b506105976004803603810190610592919061200e565b610f63565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061200e565b61105b565b6040516105cd91906124c2565b60405180910390f35b6060600380546105e5906128e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610611906128e3565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b610670611080565b73ffffffffffffffffffffffffffffffffffffffff1661068e610b45565b73ffffffffffffffffffffffffffffffffffffffff16146106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db906126bf565b60405180910390fd5b6106ec611088565b565b6000806106f9611080565b905061070681858561112b565b600191505092915050565b6000600254905090565b600080610726611080565b90506107338582856112f6565b61073e858585611382565b60019150509392505050565b60006012905090565b60008061075e611080565b905061077f8185856107708589610edc565b61077a91906127d1565b61112b565b600191505092915050565b6107943382611603565b50565b61079f611080565b73ffffffffffffffffffffffffffffffffffffffff166107bd610b45565b73ffffffffffffffffffffffffffffffffffffffff1614610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906126bf565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108979061263f565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610903611080565b73ffffffffffffffffffffffffffffffffffffffff16610921610b45565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e906126bf565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa9061265f565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac5611080565b73ffffffffffffffffffffffffffffffffffffffff16610ae3610b45565b73ffffffffffffffffffffffffffffffffffffffff1614610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906126bf565b60405180910390fd5b610b4360006117da565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b7e906128e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa906128e3565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b5050505050905090565b6000610c0d8484610c9b565b50610c198484846118a0565b600190509392505050565b600080610c2f611080565b90506000610c3d8286610edc565b905083811015610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061273f565b60405180910390fd5b610c8f828686840361112b565b60019250505092915050565b600080610ca6611080565b9050610cb3818585611382565b600191505092915050565b610cc6611080565b73ffffffffffffffffffffffffffffffffffffffff16610ce4610b45565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906126bf565b60405180910390fd5b610d42611ce1565b565b6000806000905060005b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610ed25742600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610e10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101541115610ebf57600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208181548110610e9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016000015482610ebc91906127d1565b91505b8080610eca90612915565b915050610d4e565b5080915050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f6b611080565b73ffffffffffffffffffffffffffffffffffffffff16610f89610b45565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906126bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110469061259f565b60405180910390fd5b611058816117da565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b505050565b600033905090565b611090610a5e565b156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c79061261f565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611114611080565b60405161112191906124a7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061271f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906125bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112e9919061277f565b60405180910390a3505050565b60006113028484610edc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461137c578181101561136e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611365906125df565b60405180910390fd5b61137b848484840361112b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e9906126ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114599061251f565b60405180910390fd5b61146d838383611d83565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea906125ff565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158691906127d1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ea919061277f565b60405180910390a36115fd848484611f94565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a906126df565b60405180910390fd5b61167f82600083611d83565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc9061255f565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461175c9190612827565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117c1919061277f565b60405180910390a36117d583600084611f94565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611aca5781811115611a1857600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061196d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106119f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020160008201548160000155600182015481600101559050505b42600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110611a90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101541115611ab7578180611ab390612915565b9250505b8080611ac290612915565b9150506118a4565b50600081600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611b1b9190612827565b90506000821415611b7657600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611b719190611f99565b611c3e565b6000811115611c3d5760005b81811015611c3b57600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480611bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558080611c3390612915565b915050611b82565b505b5b42831115611cda57600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550505b5050505050565b611ce9610a5e565b611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f9061253f565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d6c611080565b604051611d7991906124a7565b60405180910390a1565b611d8e83838361107b565b611d96610a5e565b15611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061275f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a906124ff565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee79061267f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f8f576000611f2f84610d44565b90506000611f3c85610a75565b9050828282611f4b9190612827565b1015611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f839061269f565b60405180910390fd5b50505b505050565b505050565b5080546000825560020290600052602060002090810190611fba9190611fbd565b50565b5b80821115611fe057600080820160009055600182016000905550600201611fbe565b5090565b600081359050611ff381612ea3565b92915050565b60008135905061200881612eba565b92915050565b60006020828403121561202057600080fd5b600061202e84828501611fe4565b91505092915050565b6000806040838503121561204a57600080fd5b600061205885828601611fe4565b925050602061206985828601611fe4565b9150509250929050565b60008060006060848603121561208857600080fd5b600061209686828701611fe4565b93505060206120a786828701611fe4565b92505060406120b886828701611ff9565b9150509250925092565b600080604083850312156120d557600080fd5b60006120e385828601611fe4565b92505060206120f485828601611ff9565b9150509250929050565b60008060006060848603121561211357600080fd5b600061212186828701611fe4565b935050602061213286828701611ff9565b925050604061214386828701611ff9565b9150509250925092565b60006020828403121561215f57600080fd5b600061216d84828501611ff9565b91505092915050565b61217f8161285b565b82525050565b61218e8161286d565b82525050565b600061219f826127b5565b6121a981856127c0565b93506121b98185602086016128b0565b6121c2816129bc565b840191505092915050565b60006121da6010836127c0565b91506121e5826129cd565b602082019050919050565b60006121fd6023836127c0565b9150612208826129f6565b604082019050919050565b60006122206014836127c0565b915061222b82612a45565b602082019050919050565b60006122436022836127c0565b915061224e82612a6e565b604082019050919050565b60006122666017836127c0565b915061227182612abd565b602082019050919050565b60006122896026836127c0565b915061229482612ae6565b604082019050919050565b60006122ac6022836127c0565b91506122b782612b35565b604082019050919050565b60006122cf601d836127c0565b91506122da82612b84565b602082019050919050565b60006122f26026836127c0565b91506122fd82612bad565b604082019050919050565b60006123156010836127c0565b915061232082612bfc565b602082019050919050565b60006123386018836127c0565b915061234382612c25565b602082019050919050565b600061235b6018836127c0565b915061236682612c4e565b602082019050919050565b600061237e600e836127c0565b915061238982612c77565b602082019050919050565b60006123a16022836127c0565b91506123ac82612ca0565b604082019050919050565b60006123c46020836127c0565b91506123cf82612cef565b602082019050919050565b60006123e76021836127c0565b91506123f282612d18565b604082019050919050565b600061240a6025836127c0565b915061241582612d67565b604082019050919050565b600061242d6024836127c0565b915061243882612db6565b604082019050919050565b60006124506025836127c0565b915061245b82612e05565b604082019050919050565b6000612473602a836127c0565b915061247e82612e54565b604082019050919050565b61249281612899565b82525050565b6124a1816128a3565b82525050565b60006020820190506124bc6000830184612176565b92915050565b60006020820190506124d76000830184612185565b92915050565b600060208201905081810360008301526124f78184612194565b905092915050565b60006020820190508181036000830152612518816121cd565b9050919050565b60006020820190508181036000830152612538816121f0565b9050919050565b6000602082019050818103600083015261255881612213565b9050919050565b6000602082019050818103600083015261257881612236565b9050919050565b6000602082019050818103600083015261259881612259565b9050919050565b600060208201905081810360008301526125b88161227c565b9050919050565b600060208201905081810360008301526125d88161229f565b9050919050565b600060208201905081810360008301526125f8816122c2565b9050919050565b60006020820190508181036000830152612618816122e5565b9050919050565b6000602082019050818103600083015261263881612308565b9050919050565b600060208201905081810360008301526126588161232b565b9050919050565b600060208201905081810360008301526126788161234e565b9050919050565b6000602082019050818103600083015261269881612371565b9050919050565b600060208201905081810360008301526126b881612394565b9050919050565b600060208201905081810360008301526126d8816123b7565b9050919050565b600060208201905081810360008301526126f8816123da565b9050919050565b60006020820190508181036000830152612718816123fd565b9050919050565b6000602082019050818103600083015261273881612420565b9050919050565b6000602082019050818103600083015261275881612443565b9050919050565b6000602082019050818103600083015261277881612466565b9050919050565b60006020820190506127946000830184612489565b92915050565b60006020820190506127af6000830184612498565b92915050565b600081519050919050565b600082825260208201905092915050565b60006127dc82612899565b91506127e783612899565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561281c5761281b61295e565b5b828201905092915050565b600061283282612899565b915061283d83612899565b9250828210156128505761284f61295e565b5b828203905092915050565b600061286682612879565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156128ce5780820151818401526020810190506128b3565b838111156128dd576000848401525b50505050565b600060028204905060018216806128fb57607f821691505b6020821081141561290f5761290e61298d565b5b50919050565b600061292082612899565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129535761295261295e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f626c61636b6c69737465642066726f6d00000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f6e27742061636365707420455448206f7220424e42000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f7573657220616c726561647920626c61636b6c69737465640000000000000000600082015250565b7f7573657220616c72656164792077686974656c69737465640000000000000000600082015250565b7f626c61636b6c697374656420746f000000000000000000000000000000000000600082015250565b7f54696d656c6f636b3a20736f6d652062616c616e636520686173206c6f636b6560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b612eac8161285b565b8114612eb757600080fd5b50565b612ec381612899565b8114612ece57600080fd5b5056fea2646970667358221220671777750cc196c95beedde6bfef4ee1c81bf3c02e595bb86d1d1550c717849d64736f6c63430008040033
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.