BscScan - Sponsored slots available. Book your slot here!
Contract Overview
Balance:
0 BNB
BNB Value:
$0.00
[ Download CSV Export ]
Contract Name:
VTR
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-04-08 */ //SPDX-License-Identifier: Unlicensed pragma solidity ^0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IBEP20 { /** * @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); } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract VTR is Context, IBEP20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 90000000 * 10**8; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Veterok'; string private _symbol = 'VTR'; uint8 private _decimals = 8; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(9); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
[{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6607222fb4d4ffff1960065560c0604052600760808190526656657465726f6b60c81b60a090815262000036916008919062000166565b50604080518082019091526003808252622b2a2960e91b6020909201918252620000639160099162000166565b50600a805460ff191660081790553480156200007e57600080fd5b5060006200008b62000162565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060065460016000620000e662000162565b6001600160a01b031681526020810191909152604001600020556200010a62000162565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef661ff973cafa80006040518082815260200191505060405180910390a362000202565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b5b80821115620001e75760008155600101620001ec565b611a8880620002126000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610382578063cba0e996146103ae578063dd62ed3e146103d4578063f2cc0c1814610402578063f2fde38b14610428578063f84354f11461044e57610137565b806370a08231146102fc578063715018a6146103225780638da5cb5b1461032a57806395d89b411461034e578063a457c2d71461035657610137565b806323b872dd116100ff57806323b872dd1461023a5780632d83811914610270578063313ce5671461028d57806339509351146102ab5780634549b039146102d757610137565b8063053ab1821461013c57806306fdde031461015b578063095ea7b3146101d857806313114a9d1461021857806318160ddd14610232575b600080fd5b6101596004803603602081101561015257600080fd5b5035610474565b005b61016361054c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019d578181015183820152602001610185565b50505050905090810190601f1680156101ca5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610204600480360360408110156101ee57600080fd5b506001600160a01b0381351690602001356105e2565b604080519115158252519081900360200190f35b610220610600565b60408051918252519081900360200190f35b610220610606565b6102046004803603606081101561025057600080fd5b506001600160a01b03813581169160208101359091169060400135610611565b6102206004803603602081101561028657600080fd5b5035610698565b6102956106fa565b6040805160ff9092168252519081900360200190f35b610204600480360360408110156102c157600080fd5b506001600160a01b038135169060200135610703565b610220600480360360408110156102ed57600080fd5b50803590602001351515610751565b6102206004803603602081101561031257600080fd5b50356001600160a01b03166107e6565b610159610848565b6103326108ea565b604080516001600160a01b039092168252519081900360200190f35b6101636108f9565b6102046004803603604081101561036c57600080fd5b506001600160a01b03813516906020013561095a565b6102046004803603604081101561039857600080fd5b506001600160a01b0381351690602001356109c2565b610204600480360360208110156103c457600080fd5b50356001600160a01b03166109d6565b610220600480360360408110156103ea57600080fd5b506001600160a01b03813581169160200135166109f4565b6101596004803603602081101561041857600080fd5b50356001600160a01b0316610a1f565b6101596004803603602081101561043e57600080fd5b50356001600160a01b0316610ba5565b6101596004803603602081101561046457600080fd5b50356001600160a01b0316610c9d565b600061047e610e5e565b6001600160a01b03811660009081526004602052604090205490915060ff16156104d95760405162461bcd60e51b815260040180806020018281038252602c815260200180611a05602c913960400191505060405180910390fd5b60006104e483610e62565b505050506001600160a01b03831660009081526001602052604090205490915061050e9082610eae565b6001600160a01b0383166000908152600160205260409020556006546105349082610eae565b6006556007546105449084610ef7565b600755505050565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105f66105ef610e5e565b8484610f51565b5060015b92915050565b60075490565b661ff973cafa800090565b600061061e84848461103d565b61068e8461062a610e5e565b6106898560405180606001604052806028815260200161192b602891396001600160a01b038a16600090815260036020526040812090610668610e5e565b6001600160a01b03168152602081019190915260400160002054919061125f565b610f51565b5060019392505050565b60006006548211156106db5760405162461bcd60e51b815260040180806020018281038252602a8152602001806118db602a913960400191505060405180910390fd5b60006106e56112f6565b90506106f18382611319565b9150505b919050565b600a5460ff1690565b60006105f6610710610e5e565b846106898560036000610721610e5e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610ef7565b6000661ff973cafa80008311156107af576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816107cd5760006107bf84610e62565b509294506105fa9350505050565b60006107d884610e62565b509194506105fa9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561082657506001600160a01b0381166000908152600260205260409020546106f5565b6001600160a01b0382166000908152600160205260409020546105fa90610698565b610850610e5e565b6000546001600160a01b039081169116146108a0576040805162461bcd60e51b81526020600482018190526024820152600080516020611974833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b60006105f6610967610e5e565b84610689856040518060600160405280602581526020016119e06025913960036000610991610e5e565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061125f565b60006105f66109cf610e5e565b848461103d565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a27610e5e565b6000546001600160a01b03908116911614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611974833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610ae5576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b3f576001600160a01b038116600090815260016020526040902054610b2590610698565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bad610e5e565b6000546001600160a01b03908116911614610bfd576040805162461bcd60e51b81526020600482018190526024820152600080516020611974833981519152604482015290519081900360640190fd5b6001600160a01b038116610c425760405162461bcd60e51b81526004018080602001828103825260268152602001806119056026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ca5610e5e565b6000546001600160a01b03908116911614610cf5576040805162461bcd60e51b81526020600482018190526024820152600080516020611974833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d62576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e5a57816001600160a01b031660058281548110610d8657fe5b6000918252602090912001546001600160a01b03161415610e5257600580546000198101908110610db357fe5b600091825260209091200154600580546001600160a01b039092169183908110610dd957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e2b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e5a565b600101610d65565b5050565b3390565b6000806000806000806000610e768861135b565b915091506000610e846112f6565b90506000806000610e968c868661138e565b919e909d50909b509599509397509395505050505050565b6000610ef083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061125f565b9392505050565b600082820183811015610ef0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316610f965760405162461bcd60e51b81526004018080602001828103825260248152602001806118b76024913960400191505060405180910390fd5b6001600160a01b038216610fdb5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a316022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110825760405162461bcd60e51b81526004018080602001828103825260258152602001806118926025913960400191505060405180910390fd5b6001600160a01b0382166110c75760405162461bcd60e51b81526004018080602001828103825260238152602001806119bd6023913960400191505060405180910390fd5b600081116111065760405162461bcd60e51b81526004018080602001828103825260298152602001806119946029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561114757506001600160a01b03821660009081526004602052604090205460ff16155b1561115c576111578383836113ca565b61125a565b6001600160a01b03831660009081526004602052604090205460ff1615801561119d57506001600160a01b03821660009081526004602052604090205460ff165b156111ad576111578383836114e1565b6001600160a01b03831660009081526004602052604090205460ff161580156111ef57506001600160a01b03821660009081526004602052604090205460ff16155b156111ff57611157838383611587565b6001600160a01b03831660009081526004602052604090205460ff16801561123f57506001600160a01b03821660009081526004602052604090205460ff165b1561124f576111578383836115c8565b61125a838383611587565b505050565b600081848411156112ee5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112b357818101518382015260200161129b565b50505050905090810190601f1680156112e05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611303611638565b90925090506113128282611319565b9250505090565b6000610ef083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506117af565b60008080611375600961136f866064611319565b90611814565b905060006113838583610eae565b935090915050915091565b600080808061139d8786611814565b905060006113ab8787611814565b905060006113b98383610eae565b929992985090965090945050505050565b60008060008060006113db86610e62565b6001600160a01b038d166000908152600260205260409020549499509297509095509350915061140b9087610eae565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461143a9086610eae565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546114699085610ef7565b6001600160a01b03881660009081526001602052604090205561148c838261186d565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006114f286610e62565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115229086610eae565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546115589083610ef7565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546114699085610ef7565b600080600080600061159886610e62565b6001600160a01b038d166000908152600160205260409020549499509297509095509350915061143a9086610eae565b60008060008060006115d986610e62565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116099087610eae565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115229086610eae565b6006546000908190661ff973cafa8000825b6005548110156117735782600160006005848154811061166657fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806116cb57508160026000600584815481106116a457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156116e757600654661ff973cafa8000945094505050506117ab565b61172760016000600584815481106116fb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610eae565b9250611769600260006005848154811061173d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610eae565b915060010161164a565b5060065461178890661ff973cafa8000611319565b8210156117a557600654661ff973cafa80009350935050506117ab565b90925090505b9091565b600081836117fe5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112b357818101518382015260200161129b565b50600083858161180a57fe5b0495945050505050565b600082611823575060006105fa565b8282028284828161183057fe5b0414610ef05760405162461bcd60e51b81526004018080602001828103825260218152602001806119536021913960400191505060405180910390fd5b60065461187a9083610eae565b60065560075461188a9082610ef7565b600755505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e42455032303a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212207bd85a1820f884941e1390508801079d6cd399817f85f1eeb39788ba6a735c1664736f6c634300060c0033
Deployed ByteCode Sourcemap
15607:10146:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18560:376;;;;;;;;;;;;;;;;-1:-1:-1;18560:376:0;;:::i;:::-;;16442:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17354:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17354:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18465:87;;;:::i;:::-;;;;;;;;;;;;;;;;16719:95;;;:::i;17523:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17523:313:0;;;;;;;;;;;;;;;;;:::i;19386:253::-;;;;;;;;;;;;;;;;-1:-1:-1;19386:253:0;;:::i;16628:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17844:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17844:218:0;;;;;;;;:::i;18944:434::-;;;;;;;;;;;;;;;;-1:-1:-1;18944:434:0;;;;;;;;;:::i;16822:198::-;;;;;;;;;;;;;;;;-1:-1:-1;16822:198:0;-1:-1:-1;;;;;16822:198:0;;:::i;15049:148::-;;;:::i;14407:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14407:79:0;;;;;;;;;;;;;;16533:87;;;:::i;18070:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18070:269:0;;;;;;;;:::i;17028:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17028:167:0;;;;;;;;:::i;18347:110::-;;;;;;;;;;;;;;;;-1:-1:-1;18347:110:0;-1:-1:-1;;;;;18347:110:0;;:::i;17203:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17203:143:0;;;;;;;;;;:::i;19647:332::-;;;;;;;;;;;;;;;;-1:-1:-1;19647:332:0;-1:-1:-1;;;;;19647:332:0;;:::i;15352:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15352:244:0;-1:-1:-1;;;;;15352:244:0;;:::i;19987:478::-;;;;;;;;;;;;;;;;-1:-1:-1;19987:478:0;-1:-1:-1;;;;;19987:478:0;;:::i;18560:376::-;18612:14;18629:12;:10;:12::i;:::-;-1:-1:-1;;;;;18661:19:0;;;;;;:11;:19;;;;;;18612:29;;-1:-1:-1;18661:19:0;;18660:20;18652:77;;;;-1:-1:-1;;;18652:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18741:15;18764:19;18775:7;18764:10;:19::i;:::-;-1:-1:-1;;;;;;;;;18812:15:0;;;;;;:7;:15;;;;;;18740:43;;-1:-1:-1;18812:28:0;;18740:43;18812:19;:28::i;:::-;-1:-1:-1;;;;;18794:15:0;;;;;;:7;:15;;;;;:46;18861:7;;:20;;18873:7;18861:11;:20::i;:::-;18851:7;:30;18905:10;;:23;;18920:7;18905:14;:23::i;:::-;18892:10;:36;-1:-1:-1;;;18560:376:0:o;16442:83::-;16512:5;16505:12;;;;;;;;-1:-1:-1;;16505:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16479:13;;16505:12;;16512:5;;16505:12;;16512:5;16505:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16442:83;:::o;17354:161::-;17429:4;17446:39;17455:12;:10;:12::i;:::-;17469:7;17478:6;17446:8;:39::i;:::-;-1:-1:-1;17503:4:0;17354:161;;;;;:::o;18465:87::-;18534:10;;18465:87;:::o;16719:95::-;16077:16;16719:95;:::o;17523:313::-;17621:4;17638:36;17648:6;17656:9;17667:6;17638:9;:36::i;:::-;17685:121;17694:6;17702:12;:10;:12::i;:::-;17716:89;17754:6;17716:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17716:19:0;;;;;;:11;:19;;;;;;17736:12;:10;:12::i;:::-;-1:-1:-1;;;;;17716:33:0;;;;;;;;;;;;-1:-1:-1;17716:33:0;;;:89;:37;:89::i;:::-;17685:8;:121::i;:::-;-1:-1:-1;17824:4:0;17523:313;;;;;:::o;19386:253::-;19452:7;19491;;19480;:18;;19472:73;;;;-1:-1:-1;;;19472:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19556:19;19579:10;:8;:10::i;:::-;19556:33;-1:-1:-1;19607:24:0;:7;19556:33;19607:11;:24::i;:::-;19600:31;;;19386:253;;;;:::o;16628:83::-;16694:9;;;;16628:83;:::o;17844:218::-;17932:4;17949:83;17958:12;:10;:12::i;:::-;17972:7;17981:50;18020:10;17981:11;:25;17993:12;:10;:12::i;:::-;-1:-1:-1;;;;;17981:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17981:25:0;;;:34;;;;;;;;;;;:38;:50::i;18944:434::-;19034:7;16077:16;19062:7;:18;;19054:62;;;;;-1:-1:-1;;;19054:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19132:17;19127:244;;19167:15;19190:19;19201:7;19190:10;:19::i;:::-;-1:-1:-1;19166:43:0;;-1:-1:-1;19224:14:0;;-1:-1:-1;;;;19224:14:0;19127:244;19273:23;19303:19;19314:7;19303:10;:19::i;:::-;-1:-1:-1;19271:51:0;;-1:-1:-1;19337:22:0;;-1:-1:-1;;;;19337:22:0;16822:198;-1:-1:-1;;;;;16912:20:0;;16888:7;16912:20;;;:11;:20;;;;;;;;16908:49;;;-1:-1:-1;;;;;;16941:16:0;;;;;;:7;:16;;;;;;16934:23;;16908:49;-1:-1:-1;;;;;16995:16:0;;;;;;:7;:16;;;;;;16975:37;;:19;:37::i;15049:148::-;14629:12;:10;:12::i;:::-;14619:6;;-1:-1:-1;;;;;14619:6:0;;;:22;;;14611:67;;;;;-1:-1:-1;;;14611:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14611:67:0;;;;;;;;;;;;;;;15156:1:::1;15140:6:::0;;15119:40:::1;::::0;-1:-1:-1;;;;;15140:6:0;;::::1;::::0;15119:40:::1;::::0;15156:1;;15119:40:::1;15187:1;15170:19:::0;;-1:-1:-1;;;;;;15170:19:0::1;::::0;;15049:148::o;14407:79::-;14445:7;14472:6;-1:-1:-1;;;;;14472:6:0;14407:79;:::o;16533:87::-;16605:7;16598:14;;;;;;;;-1:-1:-1;;16598:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16572:13;;16598:14;;16605:7;;16598:14;;16605:7;16598:14;;;;;;;;;;;;;;;;;;;;;;;;18070:269;18163:4;18180:129;18189:12;:10;:12::i;:::-;18203:7;18212:96;18251:15;18212:96;;;;;;;;;;;;;;;;;:11;:25;18224:12;:10;:12::i;:::-;-1:-1:-1;;;;;18212:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18212:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17028:167::-;17106:4;17123:42;17133:12;:10;:12::i;:::-;17147:9;17158:6;17123:9;:42::i;18347:110::-;-1:-1:-1;;;;;18429:20:0;18405:4;18429:20;;;:11;:20;;;;;;;;;18347:110::o;17203:143::-;-1:-1:-1;;;;;17311:18:0;;;17284:7;17311:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17203:143::o;19647:332::-;14629:12;:10;:12::i;:::-;14619:6;;-1:-1:-1;;;;;14619:6:0;;;:22;;;14611:67;;;;;-1:-1:-1;;;14611:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14611:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19729:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;19728:21;19720:61;;;::::0;;-1:-1:-1;;;19720:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;19795:16:0;::::1;19814:1;19795:16:::0;;;:7:::1;:16;::::0;;;;;:20;19792:108:::1;;-1:-1:-1::0;;;;;19871:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;19851:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;19832:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;19792:108:::1;-1:-1:-1::0;;;;;19910:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;19910:27:0::1;19933:4;19910:27:::0;;::::1;::::0;;;19948:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;19948:23:0::1;::::0;;::::1;::::0;;19647:332::o;15352:244::-;14629:12;:10;:12::i;:::-;14619:6;;-1:-1:-1;;;;;14619:6:0;;;:22;;;14611:67;;;;;-1:-1:-1;;;14611:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14611:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15441:22:0;::::1;15433:73;;;;-1:-1:-1::0;;;15433:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15543:6;::::0;;15522:38:::1;::::0;-1:-1:-1;;;;;15522:38:0;;::::1;::::0;15543:6;::::1;::::0;15522:38:::1;::::0;::::1;15571:6;:17:::0;;-1:-1:-1;;;;;;15571:17:0::1;-1:-1:-1::0;;;;;15571:17:0;;;::::1;::::0;;;::::1;::::0;;15352:244::o;19987:478::-;14629:12;:10;:12::i;:::-;14619:6;;-1:-1:-1;;;;;14619:6:0;;;:22;;;14611:67;;;;;-1:-1:-1;;;14611:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14611:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20068:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;20060:60;;;::::0;;-1:-1:-1;;;20060:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20136:9;20131:327;20155:9;:16:::0;20151:20;::::1;20131:327;;;20213:7;-1:-1:-1::0;;;;;20197:23:0::1;:9;20207:1;20197:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;20197:12:0::1;:23;20193:254;;;20256:9;20266:16:::0;;-1:-1:-1;;20266:20:0;;;20256:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;20241:9:::1;:12:::0;;-1:-1:-1;;;;;20256:31:0;;::::1;::::0;20251:1;;20241:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;20241:46:0::1;-1:-1:-1::0;;;;;20241:46:0;;::::1;;::::0;;20306:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;20345:11:::1;:20:::0;;;;:28;;-1:-1:-1;;20345:28:0::1;::::0;;20392:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;20392:15:0;;;;;-1:-1:-1;;;;;;20392:15:0::1;::::0;;;;;20426:5:::1;;20193:254;20173:3;;20131:327;;;;19987:478:::0;:::o;102:106::-;190:10;102:106;:::o;24019:411::-;24078:7;24087;24096;24105;24114;24135:23;24160:12;24176:20;24188:7;24176:11;:20::i;:::-;24134:62;;;;24207:19;24230:10;:8;:10::i;:::-;24207:33;;24252:15;24269:23;24294:12;24310:39;24322:7;24331:4;24337:11;24310;:39::i;:::-;24251:98;;;;-1:-1:-1;24251:98:0;;-1:-1:-1;24400:15:0;;-1:-1:-1;24417:4:0;;-1:-1:-1;24019:411:0;;-1:-1:-1;;;;;;24019:411:0:o;3822:136::-;3880:7;3907:43;3911:1;3914;3907:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3900:50;3822:136;-1:-1:-1;;;3822:136:0:o;3358:181::-;3416:7;3448:5;;;3472:6;;;;3464:46;;;;;-1:-1:-1;;;3464:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20473:337;-1:-1:-1;;;;;20566:19:0;;20558:68;;;;-1:-1:-1;;;20558:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20645:21:0;;20637:68;;;;-1:-1:-1;;;20637:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20718:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20770:32;;;;;;;;;;;;;;;;;20473:337;;;:::o;20818:931::-;-1:-1:-1;;;;;20915:20:0;;20907:70;;;;-1:-1:-1;;;20907:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20996:23:0;;20988:71;;;;-1:-1:-1;;;20988:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21087:1;21078:6;:10;21070:64;;;;-1:-1:-1;;;21070:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21149:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;21173:22:0;;;;;;:11;:22;;;;;;;;21172:23;21149:46;21145:597;;;21212:48;21234:6;21242:9;21253:6;21212:21;:48::i;:::-;21145:597;;;-1:-1:-1;;;;;21283:19:0;;;;;;:11;:19;;;;;;;;21282:20;:46;;;;-1:-1:-1;;;;;;21306:22:0;;;;;;:11;:22;;;;;;;;21282:46;21278:464;;;21345:46;21365:6;21373:9;21384:6;21345:19;:46::i;21278:464::-;-1:-1:-1;;;;;21414:19:0;;;;;;:11;:19;;;;;;;;21413:20;:47;;;;-1:-1:-1;;;;;;21438:22:0;;;;;;:11;:22;;;;;;;;21437:23;21413:47;21409:333;;;21477:44;21495:6;21503:9;21514:6;21477:17;:44::i;21409:333::-;-1:-1:-1;;;;;21543:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;21566:22:0;;;;;;:11;:22;;;;;;;;21543:45;21539:203;;;21605:48;21627:6;21635:9;21646:6;21605:21;:48::i;21539:203::-;21686:44;21704:6;21712:9;21723:6;21686:17;:44::i;:::-;20818:931;;;:::o;4261:192::-;4347:7;4383:12;4375:6;;;;4367:29;;;;-1:-1:-1;;;4367:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4419:5:0;;;4261:192::o;25018:163::-;25059:7;25080:15;25097;25116:19;:17;:19::i;:::-;25079:56;;-1:-1:-1;25079:56:0;-1:-1:-1;25153:20:0;25079:56;;25153:11;:20::i;:::-;25146:27;;;;25018:163;:::o;5659:132::-;5717:7;5744:39;5748:1;5751;5744:39;;;;;;;;;;;;;;;;;:3;:39::i;24438:230::-;24498:7;;;24542:23;24563:1;24542:16;:7;24554:3;24542:11;:16::i;:::-;:20;;:23::i;:::-;24527:38;-1:-1:-1;24576:23:0;24602:17;:7;24527:38;24602:11;:17::i;:::-;24576:43;-1:-1:-1;24655:4:0;;-1:-1:-1;;24438:230:0;;;:::o;24676:334::-;24771:7;;;;24827:24;:7;24839:11;24827;:24::i;:::-;24809:42;-1:-1:-1;24862:12:0;24877:21;:4;24886:11;24877:8;:21::i;:::-;24862:36;-1:-1:-1;24909:23:0;24935:17;:7;24862:36;24935:11;:17::i;:::-;24971:7;;;;-1:-1:-1;24997:4:0;;-1:-1:-1;24676:334:0;;-1:-1:-1;;;;;24676:334:0:o;22754:509::-;22857:15;22874:23;22899:12;22913:23;22938:12;22954:19;22965:7;22954:10;:19::i;:::-;-1:-1:-1;;;;;23002:15:0;;;;;;:7;:15;;;;;;22856:117;;-1:-1:-1;22856:117:0;;-1:-1:-1;22856:117:0;;-1:-1:-1;22856:117:0;-1:-1:-1;22856:117:0;-1:-1:-1;23002:28:0;;23022:7;23002:19;:28::i;:::-;-1:-1:-1;;;;;22984:15:0;;;;;;:7;:15;;;;;;;;:46;;;;23059:7;:15;;;;:28;;23079:7;23059:19;:28::i;:::-;-1:-1:-1;;;;;23041:15:0;;;;;;;:7;:15;;;;;;:46;;;;23119:18;;;;;;;:39;;23142:15;23119:22;:39::i;:::-;-1:-1:-1;;;;;23098:18:0;;;;;;:7;:18;;;;;:60;23172:23;23184:4;23190;23172:11;:23::i;:::-;23228:9;-1:-1:-1;;;;;23211:44:0;23220:6;-1:-1:-1;;;;;23211:44:0;;23239:15;23211:44;;;;;;;;;;;;;;;;;;22754:509;;;;;;;;:::o;22217:529::-;22318:15;22335:23;22360:12;22374:23;22399:12;22415:19;22426:7;22415:10;:19::i;:::-;-1:-1:-1;;;;;22463:15:0;;;;;;:7;:15;;;;;;22317:117;;-1:-1:-1;22317:117:0;;-1:-1:-1;22317:117:0;;-1:-1:-1;22317:117:0;-1:-1:-1;22317:117:0;-1:-1:-1;22463:28:0;;22317:117;22463:19;:28::i;:::-;-1:-1:-1;;;;;22445:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;22523:18;;;;;:7;:18;;;;;:39;;22546:15;22523:22;:39::i;:::-;-1:-1:-1;;;;;22502:18:0;;;;;;:7;:18;;;;;;;;:60;;;;22594:7;:18;;;;:39;;22617:15;22594:22;:39::i;21757:452::-;21856:15;21873:23;21898:12;21912:23;21937:12;21953:19;21964:7;21953:10;:19::i;:::-;-1:-1:-1;;;;;22001:15:0;;;;;;:7;:15;;;;;;21855:117;;-1:-1:-1;21855:117:0;;-1:-1:-1;21855:117:0;;-1:-1:-1;21855:117:0;-1:-1:-1;21855:117:0;-1:-1:-1;22001:28:0;;21855:117;22001:19;:28::i;23271:585::-;23374:15;23391:23;23416:12;23430:23;23455:12;23471:19;23482:7;23471:10;:19::i;:::-;-1:-1:-1;;;;;23519:15:0;;;;;;:7;:15;;;;;;23373:117;;-1:-1:-1;23373:117:0;;-1:-1:-1;23373:117:0;;-1:-1:-1;23373:117:0;-1:-1:-1;23373:117:0;-1:-1:-1;23519:28:0;;23539:7;23519:19;:28::i;:::-;-1:-1:-1;;;;;23501:15:0;;;;;;:7;:15;;;;;;;;:46;;;;23576:7;:15;;;;:28;;23596:7;23576:19;:28::i;25189:561::-;25286:7;;25239;;;;16077:16;25239:7;25346:289;25370:9;:16;25366:20;;25346:289;;;25436:7;25412;:21;25420:9;25430:1;25420:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25420:12:0;25412:21;;;;;;;;;;;;;:31;;:66;;;25471:7;25447;:21;25455:9;25465:1;25455:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25455:12:0;25447:21;;;;;;;;;;;;;:31;25412:66;25408:97;;;25488:7;;16077:16;25480:25;;;;;;;;;25408:97;25530:34;25542:7;:21;25550:9;25560:1;25550:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25550:12:0;25542:21;;;;;;;;;;;;;25530:7;;:11;:34::i;:::-;25520:44;;25589:34;25601:7;:21;25609:9;25619:1;25609:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25609:12:0;25601:21;;;;;;;;;;;;;25589:7;;:11;:34::i;:::-;25579:44;-1:-1:-1;25388:3:0;;25346:289;;;-1:-1:-1;25659:7:0;;:20;;16077:16;25659:11;:20::i;:::-;25649:7;:30;25645:61;;;25689:7;;16077:16;25681:25;;;;;;;;25645:61;25725:7;;-1:-1:-1;25734:7:0;-1:-1:-1;25189:561:0;;;:::o;6287:278::-;6373:7;6408:12;6401:5;6393:28;;;;-1:-1:-1;;;6393:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6432:9;6448:1;6444;:5;;;;;;;6287:278;-1:-1:-1;;;;;6287:278:0:o;4712:471::-;4770:7;5015:6;5011:47;;-1:-1:-1;5045:1:0;5038:8;;5011:47;5082:5;;;5086:1;5082;:5;:1;5106:5;;;;;:10;5098:56;;;;-1:-1:-1;;;5098:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23864:147;23942:7;;:17;;23954:4;23942:11;:17::i;:::-;23932:7;:27;23983:10;;:20;;23998:4;23983:14;:20::i;:::-;23970:10;:33;-1:-1:-1;;23864:147:0:o
Swarm Source
ipfs://7bd85a1820f884941e1390508801079d6cd399817f85f1eeb39788ba6a735c16
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.