Contract Overview
[ Download CSV Export ]
Contract Name:
DestructionTokenV3
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: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /* TABLE ERROR REFERENCE: ERR1: The sender is on the blacklist. Please contact to support. ERR2: The recipient is on the blacklist. Please contact to support. ERR3: User cannot send more than allowed. ERR4: User is not operator. ERR5: User is excluded from antibot system. ERR6: Bot address is already on the blacklist. ERR7: The expiration time has to be greater than 0. ERR8: Bot address is not found on the blacklist. ERR9: Address cant be 0. */ // DestructionToken contract DestructionTokenV3 is ERC20, Ownable { event OperatorTransferred(address indexed previousOperator, address indexed newOperator); event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event HoldingAmountRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event AntiBotWorkingStatus(address indexed operator, bool previousStatus, bool newStatus); event AddBotAddress(address indexed botAddress); event RemoveBotAddress(address indexed botAddress); event ExcludedOperatorsUpdated(address indexed operatorAddress, bool previousStatus, bool newStatus); event ExcludedHoldersUpdated(address indexed holderAddress, bool previousStatus, bool newStatus); using SafeMath for uint256; ///@dev Max transfer amount rate. (default is 3% of total supply) uint16 public maxUserTransferAmountRate = 300; ///@dev Max holding rate. (default is 9% of total supply) uint16 public maxUserHoldAmountRate = 900; ///@dev Length of blacklist addressess uint256 public blacklistLength; ///@dev Enable|Disable antiBot bool public antiBotWorking; ///@dev Exclude operators from antiBot system mapping(address => bool) private _excludedOperatorsFromAntiBot; ///@dev Exclude holders from antiBot system mapping(address => bool) private _excludedHoldersFromAntiBot; ///@dev mapping store blacklist. address=>ExpirationTime mapping(address => uint256) private _blacklist; address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // operator role address internal _operator; // MODIFIERS modifier antiBot(address _sender, address _recipient, uint256 _amount) { //check blacklist require(!blacklistCheck(_sender), "ERR1"); require(!blacklistCheck(_recipient), "ERR2"); // This code will be disabled after launch and before farming if (antiBotWorking){ // check if sender|recipient has a tx amount is within the allowed limits if (_isNotOperatorExcludedFromAntiBot(_sender)){ if(_isNotOperatorExcludedFromAntiBot(_recipient)) require(_amount <= _maxUserTransferAmount(), "ERR3"); } } _; } modifier onlyOperator() { require(_operator == _msgSender(), "ERR4"); _; } constructor() ERC20('DESTRUCTION', 'DESTRUCTION') { // Exclude operator addresses, lps, etc from antibot system _excludedOperatorsFromAntiBot[msg.sender] = true; _excludedOperatorsFromAntiBot[address(0)] = true; _excludedOperatorsFromAntiBot[address(this)] = true; _excludedOperatorsFromAntiBot[BURN_ADDRESS] = true; _operator = _msgSender(); } function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } //INTERNALS /// @dev overrides transfer function to use antibot system function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override antiBot(_sender, _recipient, _amount) { // Autodetect is sender is a BOT // This code will be disabled after launch and before farming if (antiBotWorking){ // check if sender|recipient has a tx amount is within the allowed limits if (_isNotHolderExcludedFromAntiBot(_sender)){ if(_isNotOperatorExcludedFromAntiBot(_sender)){ if (balanceOf(_sender) > _maxUserHoldAmount()) { _addBotAddressToBlackList(_sender, type(uint256).max); return; } } } } super._transfer(_sender, _recipient, _amount); } /// @dev internal function to add address to blacklist. function _addBotAddressToBlackList(address _botAddress, uint256 _expirationTime) internal { require(_isNotHolderExcludedFromAntiBot(_botAddress), "ERR5"); require(_isNotOperatorExcludedFromAntiBot(_botAddress), "ERR5"); require(_blacklist[_botAddress] == 0, "ERR6"); require(_expirationTime > 0, "ERR7"); _blacklist[_botAddress] = _expirationTime; blacklistLength = blacklistLength.add(1); emit AddBotAddress(_botAddress); } ///@dev internal function to remove address from blacklist. function _removeBotAddressToBlackList(address _botAddress) internal { require(_blacklist[_botAddress] > 0, "ERR8"); delete _blacklist[_botAddress]; blacklistLength = blacklistLength.sub(1); emit RemoveBotAddress(_botAddress); } ///@dev Check if the address is excluded from antibot system. function _isNotHolderExcludedFromAntiBot(address _userAddress) internal view returns(bool) { return(!_excludedHoldersFromAntiBot[_userAddress]); } ///@dev Check if the address is excluded from antibot system. function _isNotOperatorExcludedFromAntiBot(address _userAddress) internal view returns(bool) { return(!_excludedOperatorsFromAntiBot[_userAddress]); } ///@dev Max user transfer allowed function _maxUserTransferAmount() internal view returns (uint256) { return totalSupply().mul(maxUserTransferAmountRate).div(10000); } ///@dev Max user Holding allowed function _maxUserHoldAmount() internal view returns (uint256) { return totalSupply().mul(maxUserHoldAmountRate).div(10000); } // PUBLICS ///@dev Max user transfer allowed function maxUserTransferAmount() external view returns (uint256) { return _maxUserTransferAmount(); } ///@dev Max user Holding allowed function maxUserHoldAmount() external view returns (uint256) { return _maxUserHoldAmount(); } ///@dev check if the address is in the blacklist or expired function blacklistCheck(address botAddress) public view returns(bool){ if(_blacklist[botAddress] > 0) return _blacklist[botAddress] > block.timestamp; else return false; } ///@dev check if the address is in the blacklist or not function blacklistCheckExpirationTime(address botAddress) public view returns(uint256){ return _blacklist[botAddress]; } // EXTERNALS ///@dev Update operator address status function updateOperatorsFromAntiBot(address _operatorAddress, bool _status) external onlyOwner { require(_operatorAddress != address(0), "ERR9"); emit ExcludedOperatorsUpdated(_operatorAddress, _excludedOperatorsFromAntiBot[_operatorAddress], _status); _excludedOperatorsFromAntiBot[_operatorAddress] = _status; } ///@dev Update operator address status function updateHoldersFromAntiBot(address _holderAddress, bool _status) external onlyOwner { require(_holderAddress != address(0), "ERR9"); emit ExcludedHoldersUpdated(_holderAddress, _excludedHoldersFromAntiBot[_holderAddress], _status); _excludedHoldersFromAntiBot[_holderAddress] = _status; } ///@dev Update operator address function transferOperator(address newOperator) external onlyOperator { require(newOperator != address(0), "ERR9"); emit OperatorTransferred(_operator, newOperator); _operator = newOperator; } function operator() external view returns (address) { return _operator; } ///@dev Updates the max holding amount. function updateMaxUserHoldAmountRate(uint16 _maxUserHoldAmountRate) external onlyOwner { require(_maxUserHoldAmountRate >= 500); require(_maxUserHoldAmountRate <= 10000); emit TransferTaxRateUpdated(_msgSender(), maxUserHoldAmountRate, _maxUserHoldAmountRate); maxUserHoldAmountRate = _maxUserHoldAmountRate; } ///@dev Updates the max user transfer amount. function updateMaxUserTransferAmountRate(uint16 _maxUserTransferAmountRate) external onlyOwner { require(_maxUserTransferAmountRate >= 50); require(_maxUserTransferAmountRate <= 10000); emit HoldingAmountRateUpdated(_msgSender(), maxUserHoldAmountRate, _maxUserTransferAmountRate); maxUserTransferAmountRate = _maxUserTransferAmountRate; } ///@dev Update the antiBotWorking status: ENABLE|DISABLE. function updateStatusAntiBotWorking(bool _status) external onlyOwner { emit AntiBotWorkingStatus(_msgSender(), antiBotWorking, _status); antiBotWorking = _status; } ///@dev Add an address to the blacklist. Only the owner can add. Owner is the address of the Governance contract. function addBotAddress(address _botAddress, uint256 _expirationTime) external onlyOwner { _addBotAddressToBlackList(_botAddress, _expirationTime); } ///@dev Remove an address from the blacklist. Only the owner can remove. Owner is the address of the Governance contract. function removeBotAddress(address botAddress) external onlyOperator { _removeBotAddressToBlackList(botAddress); } ///@dev Add multi address to the blacklist. Only the owner can add. Owner is the address of the Governance contract. function addBotAddressBatch(address[] memory _addresses, uint256 _expirationTime) external onlyOwner { require(_addresses.length > 0); for(uint i=0;i<_addresses.length;i++){ _addBotAddressToBlackList(_addresses[i], _expirationTime); } } ///@dev Remove multi address from the blacklist. Only the owner can remove. Owner is the address of the Governance contract. function removeBotAddressBatch(address[] memory _addresses) external onlyOperator { require(_addresses.length > 0); for(uint i=0;i<_addresses.length;i++){ _removeBotAddressToBlackList(_addresses[i]); } } ///@dev Check if the address is excluded from antibot system. function isExcludedOperatorFromAntiBot(address _userAddress) external view returns(bool) { return(_excludedOperatorsFromAntiBot[_userAddress]); } ///@dev Check if the address is excluded from antibot system. function isExcludedHolderFromAntiBot(address _userAddress) external view returns(bool) { return(_excludedHoldersFromAntiBot[_userAddress]); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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 guidelines: functions revert instead * of 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT 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); }
{ "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":"botAddress","type":"address"}],"name":"AddBotAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"previousStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"AntiBotWorkingStatus","type":"event"},{"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":"holderAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"previousStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"ExcludedHoldersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operatorAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"previousStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"ExcludedOperatorsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"HoldingAmountRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"botAddress","type":"address"}],"name":"RemoveBotAddress","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":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"TransferTaxRateUpdated","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_botAddress","type":"address"},{"internalType":"uint256","name":"_expirationTime","type":"uint256"}],"name":"addBotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_expirationTime","type":"uint256"}],"name":"addBotAddressBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotWorking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"botAddress","type":"address"}],"name":"blacklistCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botAddress","type":"address"}],"name":"blacklistCheckExpirationTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistLength","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":"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":"_userAddress","type":"address"}],"name":"isExcludedHolderFromAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"isExcludedOperatorFromAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserHoldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserHoldAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserTransferAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botAddress","type":"address"}],"name":"removeBotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeBotAddressBatch","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holderAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateHoldersFromAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxUserHoldAmountRate","type":"uint16"}],"name":"updateMaxUserHoldAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxUserTransferAmountRate","type":"uint16"}],"name":"updateMaxUserTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operatorAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateOperatorsFromAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateStatusAntiBotWorking","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261012c600560146101000a81548161ffff021916908361ffff160217905550610384600560166101000a81548161ffff021916908361ffff1602179055503480156200004f57600080fd5b506040518060400160405280600b81526020017f4445535452554354494f4e0000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f4445535452554354494f4e0000000000000000000000000000000000000000008152508160039080519060200190620000d492919062000396565b508060049080519060200190620000ed92919062000396565b5050506200011062000104620002c860201b60201c565b620002d060201b60201c565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000282620002c860201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ab565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003a49062000446565b90600052602060002090601f016020900481019282620003c8576000855562000414565b82601f10620003e357805160ff191683800117855562000414565b8280016001018555821562000414579182015b8281111562000413578251825591602001919060010190620003f6565b5b50905062000423919062000427565b5090565b5b808211156200044257600081600090555060010162000428565b5090565b600060028204905060018216806200045f57607f821691505b602082108114156200047657620004756200047c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b2880620004bb6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637eacb31f11610130578063a9059cbb116100b8578063d3e88a6d1161007c578063d3e88a6d14610676578063dd62ed3e14610694578063e912d5d0146106c4578063f2fde38b146106e2578063fccc2813146106fe57610227565b8063a9059cbb146105c0578063ab871e39146105f0578063b8de216a1461060e578063c31f35371461063e578063c5ce14bd1461065a57610227565b80639346afac116100ff5780639346afac14610508578063957230fc1461052657806395d89b4114610556578063a41719e114610574578063a457c2d71461059057610227565b80637eacb31f14610496578063886a4964146104b25780638ad4774e146104ce5780638da5cb5b146104ea57610227565b806339509351116101b3578063580afc9311610182578063580afc93146104065780636c3eec871461042257806370a082311461043e578063715018a61461046e5780637bfd4c141461047857610227565b8063395093511461037e57806340c10f19146103ae5780634985a9bf146103ca578063570ca735146103e857610227565b806323b872dd116101fa57806323b872dd146102c8578063240879a6146102f857806329605e7714610328578063313ce5671461034457806332b284501461036257610227565b806306fdde031461022c578063095ea7b31461024a57806318160ddd1461027a5780631a099ec614610298575b600080fd5b61023461071c565b6040516102419190612fbc565b60405180910390f35b610264600480360381019061025f9190612b0e565b6107ae565b6040516102719190612f78565b60405180910390f35b6102826107cc565b60405161028f9190613282565b60405180910390f35b6102b260048036038101906102ad9190612a1e565b6107d6565b6040516102bf9190612f78565b60405180910390f35b6102e260048036038101906102dd9190612a83565b61082c565b6040516102ef9190612f78565b60405180910390f35b610312600480360381019061030d9190612a1e565b610924565b60405161031f9190613282565b60405180910390f35b610342600480360381019061033d9190612a1e565b61096d565b005b61034c610b34565b604051610359919061329d565b60405180910390f35b61037c60048036038101906103779190612b4a565b610b3d565b005b61039860048036038101906103939190612b0e565b610c4e565b6040516103a59190612f78565b60405180910390f35b6103c860048036038101906103c39190612b0e565b610cfa565b005b6103d2610d84565b6040516103df919061323e565b60405180910390f35b6103f0610d98565b6040516103fd9190612f5d565b60405180910390f35b610420600480360381019061041b9190612ad2565b610dc2565b005b61043c60048036038101906104379190612ad2565b610fa5565b005b61045860048036038101906104539190612a1e565b611188565b6040516104659190613282565b60405180910390f35b6104766111d0565b005b610480611258565b60405161048d9190612f78565b60405180910390f35b6104b060048036038101906104ab9190612b0e565b61126b565b005b6104cc60048036038101906104c79190612c08565b6112f5565b005b6104e860048036038101906104e39190612c08565b61141d565b005b6104f2611546565b6040516104ff9190612f5d565b60405180910390f35b610510611570565b60405161051d9190613282565b60405180910390f35b610540600480360381019061053b9190612a1e565b611576565b60405161054d9190612f78565b60405180910390f35b61055e6115cc565b60405161056b9190612fbc565b60405180910390f35b61058e60048036038101906105899190612bdf565b61165e565b005b6105aa60048036038101906105a59190612b0e565b61175d565b6040516105b79190612f78565b60405180910390f35b6105da60048036038101906105d59190612b0e565b611848565b6040516105e79190612f78565b60405180910390f35b6105f8611866565b6040516106059190613282565b60405180910390f35b61062860048036038101906106239190612a1e565b611875565b6040516106359190612f78565b60405180910390f35b61065860048036038101906106539190612a1e565b611911565b005b610674600480360381019061066f9190612b8b565b6119b4565b005b61067e611aac565b60405161068b9190613282565b60405180910390f35b6106ae60048036038101906106a99190612a47565b611abb565b6040516106bb9190613282565b60405180910390f35b6106cc611b42565b6040516106d9919061323e565b60405180910390f35b6106fc60048036038101906106f79190612a1e565b611b56565b005b610706611c4e565b6040516107139190612f5d565b60405180910390f35b60606003805461072b906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610757906134e2565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b60006107c26107bb611c54565b8484611c5c565b6001905092915050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610839848484611e27565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610884611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb906130fe565b60405180910390fd5b61091885610910611c54565b858403611c5c565b60019150509392505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610975611c54565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb906131de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b9061309e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b610b45611c54565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906131de565b60405180910390fd5b6000815111610be257600080fd5b60005b8151811015610c4a57610c37828281518110610c2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611fc8565b8080610c4290613545565b915050610be5565b5050565b6000610cf0610c5b611c54565b848460016000610c69611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ceb9190613325565b611c5c565b6001905092915050565b610d02611c54565b73ffffffffffffffffffffffffffffffffffffffff16610d20611546565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061311e565b60405180910390fd5b610d8082826120ef565b5050565b600560169054906101000a900461ffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dca611c54565b73ffffffffffffffffffffffffffffffffffffffff16610de8611546565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061311e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061309e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167f2339437c6b42f3afaaf891b97b41548cd9053ea15cc7d25f61a3847df3f5466f600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683604051610f42929190612f93565b60405180910390a280600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610fad611c54565b73ffffffffffffffffffffffffffffffffffffffff16610fcb611546565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110189061311e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061309e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167f2d4bfd4989fea4ac3c39303668427eed0c18dbfed1348a1673e3c3fe7da94f5c600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683604051611125929190612f93565b60405180910390a280600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111d8611c54565b73ffffffffffffffffffffffffffffffffffffffff166111f6611546565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112439061311e565b60405180910390fd5b611256600061224f565b565b600760009054906101000a900460ff1681565b611273611c54565b73ffffffffffffffffffffffffffffffffffffffff16611291611546565b73ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de9061311e565b60405180910390fd5b6112f18282612315565b5050565b6112fd611c54565b73ffffffffffffffffffffffffffffffffffffffff1661131b611546565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061311e565b60405180910390fd5b60328161ffff16101561138357600080fd5b6127108161ffff16111561139657600080fd5b61139e611c54565b73ffffffffffffffffffffffffffffffffffffffff167fa1f42c31b39507cc7c12f1e5b568733dc230f07669d464d117e10afd68672d8f600560169054906101000a900461ffff16836040516113f5929190613259565b60405180910390a280600560146101000a81548161ffff021916908361ffff16021790555050565b611425611c54565b73ffffffffffffffffffffffffffffffffffffffff16611443611546565b73ffffffffffffffffffffffffffffffffffffffff1614611499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114909061311e565b60405180910390fd5b6101f48161ffff1610156114ac57600080fd5b6127108161ffff1611156114bf57600080fd5b6114c7611c54565b73ffffffffffffffffffffffffffffffffffffffff167fe9d5c8ee2a65d4fb859c680669d8f902172d53e3f15f9f11108a31bbada4b70b600560169054906101000a900461ffff168360405161151e929190613259565b60405180910390a280600560166101000a81548161ffff021916908361ffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600480546115db906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611607906134e2565b80156116545780601f1061162957610100808354040283529160200191611654565b820191906000526020600020905b81548152906001019060200180831161163757829003601f168201915b5050505050905090565b611666611c54565b73ffffffffffffffffffffffffffffffffffffffff16611684611546565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d19061311e565b60405180910390fd5b6116e2611c54565b73ffffffffffffffffffffffffffffffffffffffff167fa34cba28f3f10d02c13bf08b425b49843728e3f08ae85fc51837fe4d1b8a98fb600760009054906101000a900460ff1683604051611738929190612f93565b60405180910390a280600760006101000a81548160ff02191690831515021790555050565b6000806001600061176c611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906131be565b60405180910390fd5b61183d611834611c54565b85858403611c5c565b600191505092915050565b600061185c611855611c54565b8484611e27565b6001905092915050565b6000611870612511565b905090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156119075742600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905061190c565b600090505b919050565b611919611c54565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f906131de565b60405180910390fd5b6119b181611fc8565b50565b6119bc611c54565b73ffffffffffffffffffffffffffffffffffffffff166119da611546565b73ffffffffffffffffffffffffffffffffffffffff1614611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a279061311e565b60405180910390fd5b6000825111611a3e57600080fd5b60005b8251811015611aa757611a94838281518110611a86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183612315565b8080611a9f90613545565b915050611a41565b505050565b6000611ab661255a565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560149054906101000a900461ffff1681565b611b5e611c54565b73ffffffffffffffffffffffffffffffffffffffff16611b7c611546565b73ffffffffffffffffffffffffffffffffffffffff1614611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc99061311e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990612ffe565b60405180910390fd5b611c4b8161224f565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc39061317e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d339061301e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e1a9190613282565b60405180910390a3505050565b828282611e3383611875565b15611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a9061313e565b60405180910390fd5b611e7c82611875565b15611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906130be565b60405180910390fd5b600760009054906101000a900460ff1615611f3a57611eda836125a3565b15611f3957611ee8826125a3565b15611f3857611ef5612511565b811115611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e906131fe565b60405180910390fd5b5b5b5b600760009054906101000a900460ff1615611fb457611f58866125fa565b15611fb357611f66866125a3565b15611fb257611f7361255a565b611f7c87611188565b1115611fb157611fac867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612315565b611fc0565b5b5b5b611fbf868686612651565b5b505050505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161204a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612041906130de565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090556120a360016006546128d290919063ffffffff16565b6006819055508073ffffffffffffffffffffffffffffffffffffffff167f063b75f31173405e3368ee31dcd46f9fcad55506fe60df52822ea3de911250ca60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121569061321e565b60405180910390fd5b61216b600083836128e8565b806002600082825461217d9190613325565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d29190613325565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122379190613282565b60405180910390a361224b600083836128ed565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231e826125fa565b61235d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123549061319e565b60405180910390fd5b612366826125a3565b6123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c9061319e565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e9061303e565b60405180910390fd5b6000811161246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061307e565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124c460016006546128f290919063ffffffff16565b6006819055508173ffffffffffffffffffffffffffffffffffffffff167f740abab4fbb839e2d91ef17f9d4457b7c73c0923b94db70c82b2d235fc9acbba60405160405180910390a25050565b6000612555612710612547600560149054906101000a900461ffff1661ffff166125396107cc565b61290890919063ffffffff16565b61291e90919063ffffffff16565b905090565b600061259e612710612590600560169054906101000a900461ffff1661ffff166125826107cc565b61290890919063ffffffff16565b61291e90919063ffffffff16565b905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b89061315e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890612fde565b60405180910390fd5b61273c8383836128e8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b99061305e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128559190613325565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128b99190613282565b60405180910390a36128cc8484846128ed565b50505050565b600081836128e09190613406565b905092915050565b505050565b505050565b600081836129009190613325565b905092915050565b6000818361291691906133ac565b905092915050565b6000818361292c919061337b565b905092915050565b6000612947612942846132dd565b6132b8565b9050808382526020820190508285602086028201111561296657600080fd5b60005b85811015612996578161297c88826129a0565b845260208401935060208301925050600181019050612969565b5050509392505050565b6000813590506129af81613a96565b92915050565b600082601f8301126129c657600080fd5b81356129d6848260208601612934565b91505092915050565b6000813590506129ee81613aad565b92915050565b600081359050612a0381613ac4565b92915050565b600081359050612a1881613adb565b92915050565b600060208284031215612a3057600080fd5b6000612a3e848285016129a0565b91505092915050565b60008060408385031215612a5a57600080fd5b6000612a68858286016129a0565b9250506020612a79858286016129a0565b9150509250929050565b600080600060608486031215612a9857600080fd5b6000612aa6868287016129a0565b9350506020612ab7868287016129a0565b9250506040612ac886828701612a09565b9150509250925092565b60008060408385031215612ae557600080fd5b6000612af3858286016129a0565b9250506020612b04858286016129df565b9150509250929050565b60008060408385031215612b2157600080fd5b6000612b2f858286016129a0565b9250506020612b4085828601612a09565b9150509250929050565b600060208284031215612b5c57600080fd5b600082013567ffffffffffffffff811115612b7657600080fd5b612b82848285016129b5565b91505092915050565b60008060408385031215612b9e57600080fd5b600083013567ffffffffffffffff811115612bb857600080fd5b612bc4858286016129b5565b9250506020612bd585828601612a09565b9150509250929050565b600060208284031215612bf157600080fd5b6000612bff848285016129df565b91505092915050565b600060208284031215612c1a57600080fd5b6000612c28848285016129f4565b91505092915050565b612c3a8161343a565b82525050565b612c498161344c565b82525050565b6000612c5a82613309565b612c648185613314565b9350612c748185602086016134af565b612c7d8161364a565b840191505092915050565b6000612c95602383613314565b9150612ca08261365b565b604082019050919050565b6000612cb8602683613314565b9150612cc3826136aa565b604082019050919050565b6000612cdb602283613314565b9150612ce6826136f9565b604082019050919050565b6000612cfe600483613314565b9150612d0982613748565b602082019050919050565b6000612d21602683613314565b9150612d2c82613771565b604082019050919050565b6000612d44600483613314565b9150612d4f826137c0565b602082019050919050565b6000612d67600483613314565b9150612d72826137e9565b602082019050919050565b6000612d8a600483613314565b9150612d9582613812565b602082019050919050565b6000612dad600483613314565b9150612db88261383b565b602082019050919050565b6000612dd0602883613314565b9150612ddb82613864565b604082019050919050565b6000612df3602083613314565b9150612dfe826138b3565b602082019050919050565b6000612e16600483613314565b9150612e21826138dc565b602082019050919050565b6000612e39602583613314565b9150612e4482613905565b604082019050919050565b6000612e5c602483613314565b9150612e6782613954565b604082019050919050565b6000612e7f600483613314565b9150612e8a826139a3565b602082019050919050565b6000612ea2602583613314565b9150612ead826139cc565b604082019050919050565b6000612ec5600483613314565b9150612ed082613a1b565b602082019050919050565b6000612ee8600483613314565b9150612ef382613a44565b602082019050919050565b6000612f0b601f83613314565b9150612f1682613a6d565b602082019050919050565b612f2a81613458565b82525050565b612f398161349d565b82525050565b612f4881613486565b82525050565b612f5781613490565b82525050565b6000602082019050612f726000830184612c31565b92915050565b6000602082019050612f8d6000830184612c40565b92915050565b6000604082019050612fa86000830185612c40565b612fb56020830184612c40565b9392505050565b60006020820190508181036000830152612fd68184612c4f565b905092915050565b60006020820190508181036000830152612ff781612c88565b9050919050565b6000602082019050818103600083015261301781612cab565b9050919050565b6000602082019050818103600083015261303781612cce565b9050919050565b6000602082019050818103600083015261305781612cf1565b9050919050565b6000602082019050818103600083015261307781612d14565b9050919050565b6000602082019050818103600083015261309781612d37565b9050919050565b600060208201905081810360008301526130b781612d5a565b9050919050565b600060208201905081810360008301526130d781612d7d565b9050919050565b600060208201905081810360008301526130f781612da0565b9050919050565b6000602082019050818103600083015261311781612dc3565b9050919050565b6000602082019050818103600083015261313781612de6565b9050919050565b6000602082019050818103600083015261315781612e09565b9050919050565b6000602082019050818103600083015261317781612e2c565b9050919050565b6000602082019050818103600083015261319781612e4f565b9050919050565b600060208201905081810360008301526131b781612e72565b9050919050565b600060208201905081810360008301526131d781612e95565b9050919050565b600060208201905081810360008301526131f781612eb8565b9050919050565b6000602082019050818103600083015261321781612edb565b9050919050565b6000602082019050818103600083015261323781612efe565b9050919050565b60006020820190506132536000830184612f21565b92915050565b600060408201905061326e6000830185612f30565b61327b6020830184612f30565b9392505050565b60006020820190506132976000830184612f3f565b92915050565b60006020820190506132b26000830184612f4e565b92915050565b60006132c26132d3565b90506132ce8282613514565b919050565b6000604051905090565b600067ffffffffffffffff8211156132f8576132f761361b565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061333082613486565b915061333b83613486565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133705761336f61358e565b5b828201905092915050565b600061338682613486565b915061339183613486565b9250826133a1576133a06135bd565b5b828204905092915050565b60006133b782613486565b91506133c283613486565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133fb576133fa61358e565b5b828202905092915050565b600061341182613486565b915061341c83613486565b92508282101561342f5761342e61358e565b5b828203905092915050565b600061344582613466565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006134a882613458565b9050919050565b60005b838110156134cd5780820151818401526020810190506134b2565b838111156134dc576000848401525b50505050565b600060028204905060018216806134fa57607f821691505b6020821081141561350e5761350d6135ec565b5b50919050565b61351d8261364a565b810181811067ffffffffffffffff8211171561353c5761353b61361b565b5b80604052505050565b600061355082613486565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135835761358261358e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552523600000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552523700000000000000000000000000000000000000000000000000000000600082015250565b7f4552523900000000000000000000000000000000000000000000000000000000600082015250565b7f4552523200000000000000000000000000000000000000000000000000000000600082015250565b7f4552523800000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552523100000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552523500000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f4552523400000000000000000000000000000000000000000000000000000000600082015250565b7f4552523300000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613a9f8161343a565b8114613aaa57600080fd5b50565b613ab68161344c565b8114613ac157600080fd5b50565b613acd81613458565b8114613ad857600080fd5b50565b613ae481613486565b8114613aef57600080fd5b5056fea2646970667358221220c9952dcb5aa4fc090f286f32324da1ae5ea54483b6ef3979e52155a1a48c9c4e64736f6c63430008040033
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.