ERC-20
Overview
Max Total Supply
1,000,000,000 AI3D
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
21,043,660.850370186 AI3DValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AI3D
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-05-04 */ // https://www.ai3-d.com/?etherscan // https://t.me/AI3D_Portal // https://twitter.com/AI3D_X // https://www.reddit.com/r/AI3D_0x/ // https://medium.com/@AI3D // https://github.com/ai3ddev // Reach the Top with AI in the Crypto World // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(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; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface ERC20 { /** * @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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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; } } /** * @dev Collection of functions related to the address type */ 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); } } } } /** * @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. */ contract Ownable is Context { address public _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @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 AI3D is Context, ERC20, 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; string private _NAME; string private _SYMBOL; uint256 private _DECIMALS; address public FeeAddress; uint256 private _MAX = ~uint256(0); uint256 private _DECIMALFACTOR; uint256 private _GRANULARITY = 100; uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; uint256 private _tBurnTotal; uint256 private _tCharityTotal; uint256 public _TAX_FEE; uint256 public _BURN_FEE; uint256 public _CHARITY_FEE; // Track original fees to bypass fees for charity account uint256 private ORIG_TAX_FEE; uint256 private ORIG_BURN_FEE; uint256 private ORIG_CHARITY_FEE; constructor (string memory _name, string memory _symbol, uint256 _decimals, uint256 _supply, uint256 _txFee,uint256 _burnFee,uint256 _charityFee,address _FeeAddress,address tokenOwner,address service) payable { _NAME = _name; _SYMBOL = _symbol; _DECIMALS = _decimals; _DECIMALFACTOR = 10 ** _DECIMALS; _tTotal =_supply * _DECIMALFACTOR; _rTotal = (_MAX - (_MAX % _tTotal)); _TAX_FEE = _txFee* 100; _BURN_FEE = _burnFee * 100; _CHARITY_FEE = _charityFee* 100; ORIG_TAX_FEE = _TAX_FEE; ORIG_BURN_FEE = _BURN_FEE; ORIG_CHARITY_FEE = _CHARITY_FEE; FeeAddress = _FeeAddress; _owner = tokenOwner; _rOwned[tokenOwner] = _rTotal; payable(service).transfer(msg.value); emit Transfer(address(0),tokenOwner, _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 uint8(_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, "TOKEN20: 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, "TOKEN20: 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 totalBurn() public view returns (uint256) { return _tBurnTotal; } function totalCharity() public view returns (uint256) { return _tCharityTotal; } function deliver(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 included"); 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 setAsCharityAccount(address account) external onlyOwner() { FeeAddress = account; } function updateFee(uint256 _txFee,uint256 _burnFee,uint256 _charityFee) onlyOwner() public{ require(_txFee < 100 && _burnFee < 100 && _charityFee < 100); _TAX_FEE = _txFee* 100; _BURN_FEE = _burnFee * 100; _CHARITY_FEE = _charityFee* 100; ORIG_TAX_FEE = _TAX_FEE; ORIG_BURN_FEE = _BURN_FEE; ORIG_CHARITY_FEE = _CHARITY_FEE; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "TOKEN20: approve from the zero address"); require(spender != address(0), "TOKEN20: 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), "TOKEN20: transfer from the zero address"); require(recipient != address(0), "TOKEN20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); // Remove fees for transfers to and from charity account or to excluded account bool takeFee = true; if (FeeAddress == sender || FeeAddress == recipient || _isExcluded[recipient]) { takeFee = false; } if (!takeFee) removeAllFee(); 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); } if (!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _standardTransferContent(sender, recipient, rAmount, rTransferAmount); _sendToCharity(tCharity, sender); _reflectFee(rFee, rBurn, tFee, tBurn, tCharity); emit Transfer(sender, recipient, tTransferAmount); } function _standardTransferContent(address sender, address recipient, uint256 rAmount, uint256 rTransferAmount) private { _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _excludedFromTransferContent(sender, recipient, tTransferAmount, rAmount, rTransferAmount); _sendToCharity(tCharity, sender); _reflectFee(rFee, rBurn, tFee, tBurn, tCharity); emit Transfer(sender, recipient, tTransferAmount); } function _excludedFromTransferContent(address sender, address recipient, uint256 tTransferAmount, uint256 rAmount, uint256 rTransferAmount) private { _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _excludedToTransferContent(sender, recipient, tAmount, rAmount, rTransferAmount); _sendToCharity(tCharity, sender); _reflectFee(rFee, rBurn, tFee, tBurn, tCharity); emit Transfer(sender, recipient, tTransferAmount); } function _excludedToTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 rTransferAmount) private { _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _bothTransferContent(sender, recipient, tAmount, rAmount, tTransferAmount, rTransferAmount); _sendToCharity(tCharity, sender); _reflectFee(rFee, rBurn, tFee, tBurn, tCharity); emit Transfer(sender, recipient, tTransferAmount); } function _bothTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 tTransferAmount, uint256 rTransferAmount) private { _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); } function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn, uint256 tCharity) private { _rTotal = _rTotal.sub(rFee).sub(rBurn); _tFeeTotal = _tFeeTotal.add(tFee); _tBurnTotal = _tBurnTotal.add(tBurn); _tCharityTotal = _tCharityTotal.add(tCharity); _tTotal = _tTotal.sub(tBurn); emit Transfer(address(this), address(0), tBurn); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tFee, uint256 tBurn, uint256 tCharity) = _getTBasics(tAmount, _TAX_FEE, _BURN_FEE, _CHARITY_FEE); uint256 tTransferAmount = getTTransferAmount(tAmount, tFee, tBurn, tCharity); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rFee) = _getRBasics(tAmount, tFee, currentRate); uint256 rTransferAmount = _getRTransferAmount(rAmount, rFee, tBurn, tCharity, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tCharity); } function _getTBasics(uint256 tAmount, uint256 taxFee, uint256 burnFee, uint256 charityFee) private view returns (uint256, uint256, uint256) { uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100); uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100); uint256 tCharity = ((tAmount.mul(charityFee)).div(_GRANULARITY)).div(100); return (tFee, tBurn, tCharity); } function getTTransferAmount(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tCharity) private pure returns (uint256) { return tAmount.sub(tFee).sub(tBurn).sub(tCharity); } function _getRBasics(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); return (rAmount, rFee); } function _getRTransferAmount(uint256 rAmount, uint256 rFee, uint256 tBurn, uint256 tCharity, uint256 currentRate) private pure returns (uint256) { uint256 rBurn = tBurn.mul(currentRate); uint256 rCharity = tCharity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rCharity); return rTransferAmount; } 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); } function _sendToCharity(uint256 tCharity, address sender) private { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[FeeAddress] = _rOwned[FeeAddress].add(rCharity); _tOwned[FeeAddress] = _tOwned[FeeAddress].add(tCharity); emit Transfer(sender, FeeAddress, tCharity); } function removeAllFee() private { if(_TAX_FEE == 0 && _BURN_FEE == 0 && _CHARITY_FEE == 0) return; ORIG_TAX_FEE = _TAX_FEE; ORIG_BURN_FEE = _BURN_FEE; ORIG_CHARITY_FEE = _CHARITY_FEE; _TAX_FEE = 0; _BURN_FEE = 0; _CHARITY_FEE = 0; } function restoreAllFee() private { _TAX_FEE = ORIG_TAX_FEE; _BURN_FEE = ORIG_BURN_FEE; _CHARITY_FEE = ORIG_CHARITY_FEE; } function _getTaxFee() private view returns(uint256) { return _TAX_FEE; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"service","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CHARITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"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"},{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"setAsCharityAccount","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":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCharity","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"},{"inputs":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600019600a556064600c55604051620026373803806200263783398101604081905262000031916200028c565b60066200003f8b82620003ef565b5060076200004e8a82620003ef565b5060088890556200006188600a620005d0565b600b819055620000729088620005e5565b600d819055600a54620000869190620005ff565b600a5462000095919062000622565b600e55620000a5866064620005e5565b601255620000b5856064620005e5565b601355620000c5846064620005e5565b6014819055601254601555601354601655601755600980546001600160a01b038086166001600160a01b03199283161790925560008054858416921682178155600e5491815260016020526040808220929092559051918316913480156108fc0292909190818181858888f1935050505015801562000148573d6000803e3d6000fd5b50816001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040516200019291815260200190565b60405180910390a35050505050505050505062000638565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d257600080fd5b81516001600160401b0380821115620001ef57620001ef620001aa565b604051601f8301601f19908116603f011681019082821181831017156200021a576200021a620001aa565b816040528381526020925086838588010111156200023757600080fd5b600091505b838210156200025b57858201830151818301840152908201906200023c565b600093810190920192909252949350505050565b80516001600160a01b03811681146200028757600080fd5b919050565b6000806000806000806000806000806101408b8d031215620002ad57600080fd5b8a516001600160401b0380821115620002c557600080fd5b620002d38e838f01620001c0565b9b5060208d0151915080821115620002ea57600080fd5b50620002f98d828e01620001c0565b99505060408b0151975060608b0151965060808b0151955060a08b0151945060c08b015193506200032d60e08c016200026f565b92506200033e6101008c016200026f565b91506200034f6101208c016200026f565b90509295989b9194979a5092959850565b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ea57600081815260208120601f850160051c81016020861015620003c55750805b601f850160051c820191505b81811015620003e657828155600101620003d1565b5050505b505050565b81516001600160401b038111156200040b576200040b620001aa565b62000423816200041c845462000360565b846200039c565b602080601f8311600181146200045b5760008415620004425750858301515b600019600386901b1c1916600185901b178555620003e6565b600085815260208120601f198616915b828110156200048c578886015182559484019460019091019084016200046b565b5085821015620004ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000512578160001904821115620004f657620004f6620004bb565b808516156200050457918102915b93841c9390800290620004d6565b509250929050565b6000826200052b57506001620005ca565b816200053a57506000620005ca565b81600181146200055357600281146200055e576200057e565b6001915050620005ca565b60ff841115620005725762000572620004bb565b50506001821b620005ca565b5060208310610133831016604e8410600b8410161715620005a3575081810a620005ca565b620005af8383620004d1565b8060001904821115620005c657620005c6620004bb565b0290505b92915050565b6000620005de83836200051a565b9392505050565b8082028115828204841417620005ca57620005ca620004bb565b6000826200061d57634e487b7160e01b600052601260045260246000fd5b500690565b81810381811115620005ca57620005ca620004bb565b611fef80620006486000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122096e4018fd7595720305b658a1a940a98987beb2cee2a00d79d338bced6c3adf064736f6c63430008110033000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c94560000000000000000000000000000000000000000000000000000000000000004414933440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044149334400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637b7e8bac11610104578063b5862428116100a2578063f2cc0c1811610071578063f2cc0c18146103eb578063f2fde38b146103fe578063f84354f114610411578063fc061a4f1461042457600080fd5b8063b586242814610375578063cba0e9961461037e578063d608b3b2146103aa578063dd62ed3e146103b257600080fd5b8063a457c2d7116100de578063a457c2d714610333578063a9059cbb14610346578063ae9dd5e014610359578063b2bdfa7b1461036257600080fd5b80637b7e8bac146102ef5780638da5cb5b1461031a57806395d89b411461032b57600080fd5b8063395093511161017c578063457bdf6c1161014b578063457bdf6c146102b857806370a08231146102cb578063715018a6146102de57806377ef7993146102e657600080fd5b806339509351146102755780633bd5d173146102885780633c9f861d1461029d5780634549b039146102a557600080fd5b806318160ddd116101b857806318160ddd1461023257806323b872dd1461023a5780632d8381191461024d578063313ce5671461026057600080fd5b806306fdde03146101df578063095ea7b3146101fd57806313114a9d14610220575b600080fd5b6101e7610437565b6040516101f49190611ca7565b60405180910390f35b61021061020b366004611d11565b6104c9565b60405190151581526020016101f4565b600f545b6040519081526020016101f4565b600d54610224565b610210610248366004611d3b565b6104e0565b61022461025b366004611d77565b610549565b60085460405160ff90911681526020016101f4565b610210610283366004611d11565b6105d2565b61029b610296366004611d77565b610608565b005b601054610224565b6102246102b3366004611d90565b6106f4565b61029b6102c6366004611dc5565b610783565b6102246102d9366004611dc5565b6107cf565b61029b61082e565b61022460135481565b600954610302906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6000546001600160a01b0316610302565b6101e76108a2565b610210610341366004611d11565b6108b1565b610210610354366004611d11565b610900565b61022460145481565b600054610302906001600160a01b031681565b61022460125481565b61021061038c366004611dc5565b6001600160a01b031660009081526004602052604090205460ff1690565b601154610224565b6102246103c0366004611de0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61029b6103f9366004611dc5565b61090d565b61029b61040c366004611dc5565b610a60565b61029b61041f366004611dc5565b610b4a565b61029b610432366004611e13565b610d00565b60606006805461044690611e3f565b80601f016020809104026020016040519081016040528092919081815260200182805461047290611e3f565b80156104bf5780601f10610494576101008083540402835291602001916104bf565b820191906000526020600020905b8154815290600101906020018083116104a257829003601f168201915b5050505050905090565b60006104d6338484610d8f565b5060015b92915050565b60006104ed848484610eb7565b61053f843361053a856040518060600160405280602a8152602001611f90602a91396001600160a01b038a16600090815260036020908152604080832033845290915290205491906111be565b610d8f565b5060019392505050565b6000600e548211156105b55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006105bf6111f8565b90506105cb838261121b565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104d691859061053a908661125d565b3360008181526004602052604090205460ff161561067d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016105ac565b6000610688836112bc565b5050506001600160a01b0386166000908152600160205260409020549394506106b693925084915050611340565b6001600160a01b038316600090815260016020526040902055600e546106dc9082611340565b600e55600f546106ec908461125d565b600f55505050565b6000600d548311156107485760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016105ac565b81610768576000610758846112bc565b509496506104da95505050505050565b6000610773846112bc565b509396506104da95505050505050565b6000546001600160a01b031633146107ad5760405162461bcd60e51b81526004016105ac90611e79565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526004602052604081205460ff161561080c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546104da90610549565b6000546001600160a01b031633146108585760405162461bcd60e51b81526004016105ac90611e79565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606007805461044690611e3f565b60006104d6338461053a85604051806060016040528060278152602001611f69602791393360009081526003602090815260408083206001600160a01b038d16845290915290205491906111be565b60006104d6338484610eb7565b6000546001600160a01b031633146109375760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16156109a05760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016105ac565b6001600160a01b038116600090815260016020526040902054156109fa576001600160a01b0381166000908152600160205260409020546109e090610549565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610b745760405162461bcd60e51b81526004016105ac90611e79565b6001600160a01b03811660009081526004602052604090205460ff16610bdc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016105ac565b60005b600554811015610cfc57816001600160a01b031660058281548110610c0657610c06611eae565b6000918252602090912001546001600160a01b031603610cea5760058054610c3090600190611eda565b81548110610c4057610c40611eae565b600091825260209091200154600580546001600160a01b039092169183908110610c6c57610c6c611eae565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610cc457610cc4611eed565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610cf481611f03565b915050610bdf565b5050565b6000546001600160a01b03163314610d2a5760405162461bcd60e51b81526004016105ac90611e79565b606483108015610d3a5750606482105b8015610d465750606481105b610d4f57600080fd5b610d5a836064611f1c565b601255610d68826064611f1c565b601355610d76816064611f1c565b6014819055601254601555601354601655601755505050565b6001600160a01b038316610df45760405162461bcd60e51b815260206004820152602660248201527f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016105ac565b6001600160a01b038216610e565760405162461bcd60e51b8152602060048201526024808201527f544f4b454e32303a20617070726f766520746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ac565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1d5760405162461bcd60e51b815260206004820152602760248201527f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f206044820152666164647265737360c81b60648201526084016105ac565b6001600160a01b038216610f815760405162461bcd60e51b815260206004820152602560248201527f544f4b454e32303a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105ac565b60008111610fe35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ac565b6009546001906001600160a01b038581169116148061100f57506009546001600160a01b038481169116145b8061103257506001600160a01b03831660009081526004602052604090205460ff165b1561103b575060005b8061104857611048611382565b6001600160a01b03841660009081526004602052604090205460ff16801561108957506001600160a01b03831660009081526004602052604090205460ff16155b1561109e576110998484846113c7565b61119c565b6001600160a01b03841660009081526004602052604090205460ff161580156110df57506001600160a01b03831660009081526004602052604090205460ff165b156110ef5761109984848461148b565b6001600160a01b03841660009081526004602052604090205460ff1615801561113157506001600160a01b03831660009081526004602052604090205460ff16155b15611141576110998484846114dd565b6001600160a01b03841660009081526004602052604090205460ff16801561118157506001600160a01b03831660009081526004602052604090205460ff165b156111915761109984848461152e565b61119c8484846114dd565b806111b8576111b8601554601255601654601355601754601455565b50505050565b600081848411156111e25760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611eda565b95945050505050565b6000806000611205611581565b9092509050611214828261121b565b9250505090565b60006105cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611703565b60008061126a8385611f33565b9050838110156105cb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105ac565b6000806000806000806000806000806112dd8b601254601354601454611731565b92509250925060006112f18c8585856117b0565b905060006112fd6111f8565b905060008061130d8f88856117c8565b91509150600061132083838989886117f2565b929e50919c509a5091985093965091945092505050919395979092949650565b60006105cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b6012541580156113925750601354155b801561139e5750601454155b156113a557565b6012805460155560138054601655601480546017556000928390559082905555565b60006113d16111f8565b905060008060008060008060006113e7896112bc565b9650965096509650965096509650600061140a898461182e90919063ffffffff16565b90506114198c8c8c8b8b6118b0565b611423828d611954565b6114308682868686611a35565b8a6001600160a01b03168c6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161147591815260200190565b60405180910390a3505050505050505050505050565b60006114956111f8565b905060008060008060008060006114ab896112bc565b965096509650965096509650965060006114ce898461182e90919063ffffffff16565b90506114198c8c878b8b611ad0565b60006114e76111f8565b905060008060008060008060006114fd896112bc565b96509650965096509650965096506000611520898461182e90919063ffffffff16565b90506114198c8c8a8a611b58565b60006115386111f8565b9050600080600080600080600061154e896112bc565b96509650965096509650965096506000611571898461182e90919063ffffffff16565b90506114198c8c8c8b898c611bcc565b600e54600d546000918291825b6005548110156116d3578260016000600584815481106115b0576115b0611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061161b57508160026000600584815481106115f4576115f4611eae565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561163157600e54600d54945094505050509091565b611677600160006005848154811061164b5761164b611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611340565b92506116bf600260006005848154811061169357611693611eae565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611340565b9150806116cb81611f03565b91505061158e565b50600d54600e546116e39161121b565b8210156116fa57600e54600d549350935050509091565b90939092509050565b600081836117245760405162461bcd60e51b81526004016105ac9190611ca7565b5060006111ef8486611f46565b60008060008061175b6064611755600c546117558b8d61182e90919063ffffffff16565b9061121b565b9050600061177d6064611755600c546117558b8e61182e90919063ffffffff16565b9050600061179f6064611755600c546117558b8f61182e90919063ffffffff16565b929a91995091975095505050505050565b60006111ef826117c285818989611340565b90611340565b600080806117d6868561182e565b905060006117e4868661182e565b919791965090945050505050565b6000806117ff858461182e565b9050600061180d858561182e565b90506000611821826117c285818d8d611340565b9998505050505050505050565b600082600003611840575060006104da565b600061184c8385611f1c565b9050826118598583611f46565b146105cb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105ac565b6001600160a01b0385166000908152600260205260409020546118d39084611340565b6001600160a01b0386166000908152600260209081526040808320939093556001905220546119029083611340565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611931908261125d565b6001600160a01b0390941660009081526001602052604090209390935550505050565b600061195e6111f8565b9050600061196c848361182e565b6009546001600160a01b0316600090815260016020526040902054909150611994908261125d565b600980546001600160a01b0390811660009081526001602090815260408083209590955592549091168152600290915220546119d0908561125d565b600980546001600160a01b03908116600090815260026020908152604091829020949094559154915187815291811692908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b611a4e846117c287600e5461134090919063ffffffff16565b600e55600f54611a5e908461125d565b600f55601054611a6e908361125d565b601055601154611a7e908261125d565b601155600d54611a8e9083611340565b600d5560405182815260009030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6001600160a01b038516600090815260016020526040902054611af39083611340565b6001600160a01b03808716600090815260016020908152604080832094909455918716815260029091522054611b29908461125d565b6001600160a01b038516600090815260026020908152604080832093909355600190522054611931908261125d565b6001600160a01b038416600090815260016020526040902054611b7b9083611340565b6001600160a01b038086166000908152600160205260408082209390935590851681522054611baa908261125d565b6001600160a01b03909316600090815260016020526040902092909255505050565b6001600160a01b038616600090815260026020526040902054611bef9085611340565b6001600160a01b038716600090815260026020908152604080832093909355600190522054611c1e9084611340565b6001600160a01b03808816600090815260016020908152604080832094909455918816815260029091522054611c54908361125d565b6001600160a01b038616600090815260026020908152604080832093909355600190522054611c83908261125d565b6001600160a01b039095166000908152600160205260409020949094555050505050565b600060208083528351808285015260005b81811015611cd457858101830151858201604001528201611cb8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611d0c57600080fd5b919050565b60008060408385031215611d2457600080fd5b611d2d83611cf5565b946020939093013593505050565b600080600060608486031215611d5057600080fd5b611d5984611cf5565b9250611d6760208501611cf5565b9150604084013590509250925092565b600060208284031215611d8957600080fd5b5035919050565b60008060408385031215611da357600080fd5b8235915060208301358015158114611dba57600080fd5b809150509250929050565b600060208284031215611dd757600080fd5b6105cb82611cf5565b60008060408385031215611df357600080fd5b611dfc83611cf5565b9150611e0a60208401611cf5565b90509250929050565b600080600060608486031215611e2857600080fd5b505081359360208301359350604090920135919050565b600181811c90821680611e5357607f821691505b602082108103611e7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156104da576104da611ec4565b634e487b7160e01b600052603160045260246000fd5b600060018201611f1557611f15611ec4565b5060010190565b80820281158282048414176104da576104da611ec4565b808201808211156104da576104da611ec4565b600082611f6357634e487b7160e01b600052601260045260246000fd5b50049056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122096e4018fd7595720305b658a1a940a98987beb2cee2a00d79d338bced6c3adf064736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c94560000000000000000000000000000000000000000000000000000000000000004414933440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044149334400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): AI3D
Arg [1] : _symbol (string): AI3D
Arg [2] : _decimals (uint256): 9
Arg [3] : _supply (uint256): 1000000000
Arg [4] : _txFee (uint256): 0
Arg [5] : _burnFee (uint256): 0
Arg [6] : _charityFee (uint256): 0
Arg [7] : _FeeAddress (address): 0xd8EA51e8Fdc66975a85cEa2A0b0Bc1e48E7C9456
Arg [8] : tokenOwner (address): 0xd8EA51e8Fdc66975a85cEa2A0b0Bc1e48E7C9456
Arg [9] : service (address): 0xd8EA51e8Fdc66975a85cEa2A0b0Bc1e48E7C9456
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456
Arg [8] : 000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456
Arg [9] : 000000000000000000000000d8ea51e8fdc66975a85cea2a0b0bc1e48e7c9456
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 4149334400000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 4149334400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16809:16242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18701:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19620:161;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;19620:161:0;1004:187:1;20741:87:0;20810:10;;20741:87;;;1342:25:1;;;1330:2;1315:18;20741:87:0;1196:177:1;18985:95:0;19065:7;;18985:95;;19789:315;;;;;;:::i;:::-;;:::i;21874:253::-;;;;;;:::i;:::-;;:::i;18887:90::-;18959:9;;18887:90;;2068:4:1;2056:17;;;2038:36;;2026:2;2011:18;18887:90:0;1896:184:1;20112:218:0;;;;;;:::i;:::-;;:::i;21042:378::-;;;;;;:::i;:::-;;:::i;:::-;;20840:88;20909:11;;20840:88;;21428:438;;;;;;:::i;:::-;;:::i;22961:100::-;;;;;;:::i;:::-;;:::i;19088:198::-;;;;;;:::i;:::-;;:::i;16255:148::-;;;:::i;17657:27::-;;;;;;17285:25;;;;;-1:-1:-1;;;;;17285:25:0;;;;;;-1:-1:-1;;;;;2786:32:1;;;2768:51;;2756:2;2741:18;17285:25:0;2622:203:1;15613:79:0;15651:7;15678:6;-1:-1:-1;;;;;15678:6:0;15613:79;;18792:87;;;:::i;20338:271::-;;;;;;:::i;:::-;;:::i;19294:167::-;;;;;;:::i;:::-;;:::i;17691:27::-;;;;;;15416:21;;;;;-1:-1:-1;;;;;15416:21:0;;;17623:27;;;;;;20617:110;;;;;;:::i;:::-;-1:-1:-1;;;;;20699:20:0;20675:4;20699:20;;;:11;:20;;;;;;;;;20617:110;20940:94;21012:14;;20940:94;;19469:143;;;;;;:::i;:::-;-1:-1:-1;;;;;19577:18:0;;;19550:7;19577:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19469:143;22135:332;;;;;;:::i;:::-;;:::i;16558:244::-;;;;;;:::i;:::-;;:::i;22475:478::-;;;;;;:::i;:::-;;:::i;23069:361::-;;;;;;:::i;:::-;;:::i;18701:83::-;18738:13;18771:5;18764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18701:83;:::o;19620:161::-;19695:4;19712:39;436:10;19735:7;19744:6;19712:8;:39::i;:::-;-1:-1:-1;19769:4:0;19620:161;;;;;:::o;19789:315::-;19887:4;19904:36;19914:6;19922:9;19933:6;19904:9;:36::i;:::-;19951:123;19960:6;436:10;19982:91;20020:6;19982:91;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19982:19:0;;;;;;:11;:19;;;;;;;;436:10;19982:33;;;;;;;;;;:37;:91::i;:::-;19951:8;:123::i;:::-;-1:-1:-1;20092:4:0;19789:315;;;;;:::o;21874:253::-;21940:7;21979;;21968;:18;;21960:73;;;;-1:-1:-1;;;21960:73:0;;4003:2:1;21960:73:0;;;3985:21:1;4042:2;4022:18;;;4015:30;4081:34;4061:18;;;4054:62;-1:-1:-1;;;4132:18:1;;;4125:40;4182:19;;21960:73:0;;;;;;;;;22044:19;22067:10;:8;:10::i;:::-;22044:33;-1:-1:-1;22095:24:0;:7;22044:33;22095:11;:24::i;:::-;22088:31;21874:253;-1:-1:-1;;;21874:253:0:o;20112:218::-;436:10;20200:4;20249:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20249:34:0;;;;;;;;;;20200:4;;20217:83;;20240:7;;20249:50;;20288:10;20249:38;:50::i;21042:378::-;436:10;21094:14;21143:19;;;:11;:19;;;;;;;;21142:20;21134:77;;;;-1:-1:-1;;;21134:77:0;;4414:2:1;21134:77:0;;;4396:21:1;4453:2;4433:18;;;4426:30;4492:34;4472:18;;;4465:62;-1:-1:-1;;;4543:18:1;;;4536:42;4595:19;;21134:77:0;4212:408:1;21134:77:0;21223:15;21248:19;21259:7;21248:10;:19::i;:::-;-1:-1:-1;;;;;;;;21296:15:0;;;;;;:7;:15;;;;;;21222:45;;-1:-1:-1;21296:28:0;;:15;-1:-1:-1;21222:45:0;;-1:-1:-1;;21296:19:0;:28::i;:::-;-1:-1:-1;;;;;21278:15:0;;;;;;:7;:15;;;;;:46;21345:7;;:20;;21357:7;21345:11;:20::i;:::-;21335:7;:30;21389:10;;:23;;21404:7;21389:14;:23::i;:::-;21376:10;:36;-1:-1:-1;;;21042:378:0:o;21428:438::-;21518:7;21557;;21546;:18;;21538:62;;;;-1:-1:-1;;;21538:62:0;;4827:2:1;21538:62:0;;;4809:21:1;4866:2;4846:18;;;4839:30;4905:33;4885:18;;;4878:61;4956:18;;21538:62:0;4625:355:1;21538:62:0;21616:17;21611:248;;21651:15;21676:19;21687:7;21676:10;:19::i;:::-;-1:-1:-1;21650:45:0;;-1:-1:-1;21710:14:0;;-1:-1:-1;;;;;;21710:14:0;21611:248;21759:23;21791:19;21802:7;21791:10;:19::i;:::-;-1:-1:-1;21757:53:0;;-1:-1:-1;21825:22:0;;-1:-1:-1;;;;;;21825:22:0;22961:100;15825:6;;-1:-1:-1;;;;;15825:6:0;436:10;15825:22;15817:67;;;;-1:-1:-1;;;15817:67:0;;;;;;;:::i;:::-;23033:10:::1;:20:::0;;-1:-1:-1;;;;;;23033:20:0::1;-1:-1:-1::0;;;;;23033:20:0;;;::::1;::::0;;;::::1;::::0;;22961:100::o;19088:198::-;-1:-1:-1;;;;;19178:20:0;;19154:7;19178:20;;;:11;:20;;;;;;;;19174:49;;;-1:-1:-1;;;;;;19207:16:0;;;;;:7;:16;;;;;;;19088:198::o;19174:49::-;-1:-1:-1;;;;;19261:16:0;;;;;;:7;:16;;;;;;19241:37;;:19;:37::i;16255:148::-;15825:6;;-1:-1:-1;;;;;15825:6:0;436:10;15825:22;15817:67;;;;-1:-1:-1;;;15817:67:0;;;;;;;:::i;:::-;16362:1:::1;16346:6:::0;;16325:40:::1;::::0;-1:-1:-1;;;;;16346:6:0;;::::1;::::0;16325:40:::1;::::0;16362:1;;16325:40:::1;16393:1;16376:19:::0;;-1:-1:-1;;;;;;16376:19:0::1;::::0;;16255:148::o;18792:87::-;18831:13;18864:7;18857:14;;;;;:::i;20338:271::-;20431:4;20448:131;436:10;20471:7;20480:98;20519:15;20480:98;;;;;;;;;;;;;;;;;436:10;20480:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20480:34:0;;;;;;;;;;;;:38;:98::i;19294:167::-;19372:4;19389:42;436:10;19413:9;19424:6;19389:9;:42::i;22135:332::-;15825:6;;-1:-1:-1;;;;;15825:6:0;436:10;15825:22;15817:67;;;;-1:-1:-1;;;15817:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22217:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22216:21;22208:61;;;::::0;-1:-1:-1;;;22208:61:0;;5548:2:1;22208:61:0::1;::::0;::::1;5530:21:1::0;5587:2;5567:18;;;5560:30;5626:29;5606:18;;;5599:57;5673:18;;22208:61:0::1;5346:351:1::0;22208:61:0::1;-1:-1:-1::0;;;;;22283:16:0;::::1;22302:1;22283:16:::0;;;:7:::1;:16;::::0;;;;;:20;22280:108:::1;;-1:-1:-1::0;;;;;22359:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22339:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22320:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22280:108:::1;-1:-1:-1::0;;;;;22398:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22398:27:0::1;22421:4;22398:27:::0;;::::1;::::0;;;22436:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22436:23:0::1;::::0;;::::1;::::0;;22135:332::o;16558:244::-;15825:6;;-1:-1:-1;;;;;15825:6:0;436:10;15825:22;15817:67;;;;-1:-1:-1;;;15817:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16647:22:0;::::1;16639:73;;;::::0;-1:-1:-1;;;16639:73:0;;5904:2:1;16639:73:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:36;6079:19;;16639:73:0::1;5702:402:1::0;16639:73:0::1;16749:6;::::0;;16728:38:::1;::::0;-1:-1:-1;;;;;16728:38:0;;::::1;::::0;16749:6;::::1;::::0;16728:38:::1;::::0;::::1;16777:6;:17:::0;;-1:-1:-1;;;;;;16777:17:0::1;-1:-1:-1::0;;;;;16777:17:0;;;::::1;::::0;;;::::1;::::0;;16558:244::o;22475:478::-;15825:6;;-1:-1:-1;;;;;15825:6:0;436:10;15825:22;15817:67;;;;-1:-1:-1;;;15817:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22556:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22548:60;;;::::0;-1:-1:-1;;;22548:60:0;;6311:2:1;22548:60:0::1;::::0;::::1;6293:21:1::0;6350:2;6330:18;;;6323:30;6389:29;6369:18;;;6362:57;6436:18;;22548:60:0::1;6109:351:1::0;22548:60:0::1;22624:9;22619:327;22643:9;:16:::0;22639:20;::::1;22619:327;;;22701:7;-1:-1:-1::0;;;;;22685:23:0::1;:9;22695:1;22685:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22685:12:0::1;:23:::0;22681:254:::1;;22744:9;22754:16:::0;;:20:::1;::::0;22773:1:::1;::::0;22754:20:::1;:::i;:::-;22744:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;22729:9:::1;:12:::0;;-1:-1:-1;;;;;22744:31:0;;::::1;::::0;22739:1;;22729:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22729:46:0::1;-1:-1:-1::0;;;;;22729:46:0;;::::1;;::::0;;22794:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22833:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22833:28:0::1;::::0;;22880:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22880:15:0;;;;;-1:-1:-1;;;;;;22880:15:0::1;::::0;;;;;22619:327:::1;22475:478:::0;:::o;22681:254::-:1;22661:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22619:327;;;;22475:478:::0;:::o;23069:361::-;15825:6;;-1:-1:-1;;;;;15825:6:0;436:10;15825:22;15817:67;;;;-1:-1:-1;;;15817:67:0;;;;;;;:::i;:::-;23181:3:::1;23172:6;:12;:30;;;;;23199:3;23188:8;:14;23172:30;:51;;;;;23220:3;23206:11;:17;23172:51;23164:60;;;::::0;::::1;;23246:11;:6:::0;23254:3:::1;23246:11;:::i;:::-;23235:8;:22:::0;23281:14:::1;:8:::0;23292:3:::1;23281:14;:::i;:::-;23269:9;:26:::0;23315:16:::1;:11:::0;23328:3:::1;23315:16;:::i;:::-;23300:12;:31:::0;;;23351:8:::1;::::0;23336:12:::1;:23:::0;23380:9:::1;::::0;23364:13:::1;:25:::0;23394:16:::1;:31:::0;-1:-1:-1;;;23069:361:0:o;23447:341::-;-1:-1:-1;;;;;23540:19:0;;23532:70;;;;-1:-1:-1;;;23532:70:0;;7509:2:1;23532:70:0;;;7491:21:1;7548:2;7528:18;;;7521:30;7587:34;7567:18;;;7560:62;-1:-1:-1;;;7638:18:1;;;7631:36;7684:19;;23532:70:0;7307:402:1;23532:70:0;-1:-1:-1;;;;;23621:21:0;;23613:70;;;;-1:-1:-1;;;23613:70:0;;7916:2:1;23613:70:0;;;7898:21:1;7955:2;7935:18;;;7928:30;7994:34;7974:18;;;7967:62;-1:-1:-1;;;8045:18:1;;;8038:34;8089:19;;23613:70:0;7714:400:1;23613:70:0;-1:-1:-1;;;;;23696:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23748:32;;1342:25:1;;;23748:32:0;;1315:18:1;23748:32:0;;;;;;;23447:341;;;:::o;23796:1290::-;-1:-1:-1;;;;;23893:20:0;;23885:72;;;;-1:-1:-1;;;23885:72:0;;8321:2:1;23885:72:0;;;8303:21:1;8360:2;8340:18;;;8333:30;8399:34;8379:18;;;8372:62;-1:-1:-1;;;8450:18:1;;;8443:37;8497:19;;23885:72:0;8119:403:1;23885:72:0;-1:-1:-1;;;;;23976:23:0;;23968:73;;;;-1:-1:-1;;;23968:73:0;;8729:2:1;23968:73:0;;;8711:21:1;8768:2;8748:18;;;8741:30;8807:34;8787:18;;;8780:62;-1:-1:-1;;;8858:18:1;;;8851:35;8903:19;;23968:73:0;8527:401:1;23968:73:0;24069:1;24060:6;:10;24052:64;;;;-1:-1:-1;;;24052:64:0;;9135:2:1;24052:64:0;;;9117:21:1;9174:2;9154:18;;;9147:30;9213:34;9193:18;;;9186:62;-1:-1:-1;;;9264:18:1;;;9257:39;9313:19;;24052:64:0;8933:405:1;24052:64:0;24252:10;;24233:4;;-1:-1:-1;;;;;24252:20:0;;;:10;;:20;;:47;;-1:-1:-1;24276:10:0;;-1:-1:-1;;;;;24276:23:0;;;:10;;:23;24252:47;:73;;;-1:-1:-1;;;;;;24303:22:0;;;;;;:11;:22;;;;;;;;24252:73;24248:121;;;-1:-1:-1;24352:5:0;24248:121;24386:7;24381:28;;24395:14;:12;:14::i;:::-;-1:-1:-1;;;;;24444:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;24468:22:0;;;;;;:11;:22;;;;;;;;24467:23;24444:46;24440:597;;;24507:48;24529:6;24537:9;24548:6;24507:21;:48::i;:::-;24440:597;;;-1:-1:-1;;;;;24578:19:0;;;;;;:11;:19;;;;;;;;24577:20;:46;;;;-1:-1:-1;;;;;;24601:22:0;;;;;;:11;:22;;;;;;;;24577:46;24573:464;;;24640:46;24660:6;24668:9;24679:6;24640:19;:46::i;24573:464::-;-1:-1:-1;;;;;24709:19:0;;;;;;:11;:19;;;;;;;;24708:20;:47;;;;-1:-1:-1;;;;;;24733:22:0;;;;;;:11;:22;;;;;;;;24732:23;24708:47;24704:333;;;24772:44;24790:6;24798:9;24809:6;24772:17;:44::i;24704:333::-;-1:-1:-1;;;;;24838:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;24861:22:0;;;;;;:11;:22;;;;;;;;24838:45;24834:203;;;24900:48;24922:6;24930:9;24941:6;24900:21;:48::i;24834:203::-;24981:44;24999:6;25007:9;25018:6;24981:17;:44::i;:::-;25054:7;25049:29;;25063:15;32848:12;;32837:8;:23;32883:13;;32871:9;:25;32922:16;;32907:12;:31;32793:153;25063:15;23874:1212;23796:1290;;;:::o;5158:192::-;5244:7;5280:12;5272:6;;;;5264:29;;;;-1:-1:-1;;;5264:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5304:9:0;5316:5;5320:1;5316;:5;:::i;:::-;5304:17;5158:192;-1:-1:-1;;;;;5158:192:0:o;31355:163::-;31396:7;31417:15;31434;31453:19;:17;:19::i;:::-;31416:56;;-1:-1:-1;31416:56:0;-1:-1:-1;31490:20:0;31416:56;;31490:11;:20::i;:::-;31483:27;;;;31355:163;:::o;6556:132::-;6614:7;6641:39;6645:1;6648;6641:39;;;;;;;;;;;;;;;;;:3;:39::i;4255:181::-;4313:7;;4345:5;4349:1;4345;:5;:::i;:::-;4333:17;;4374:1;4369;:6;;4361:46;;;;-1:-1:-1;;;4361:46:0;;9675:2:1;4361:46:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:29;9733:18;;;9726:57;9800:18;;4361:46:0;9473:351:1;29406:652:0;29465:7;29474;29483;29492;29501;29510;29519;29540:12;29554:13;29569:16;29589:55;29601:7;29610:8;;29620:9;;29631:12;;29589:11;:55::i;:::-;29539:105;;;;;;29655:23;29681:50;29700:7;29709:4;29715:5;29722:8;29681:18;:50::i;:::-;29655:76;;29742:19;29765:10;:8;:10::i;:::-;29742:33;;29787:15;29804:12;29820:39;29832:7;29841:4;29847:11;29820;:39::i;:::-;29786:73;;;;29870:23;29896:64;29916:7;29925:4;29931:5;29938:8;29948:11;29896:19;:64::i;:::-;29979:7;;-1:-1:-1;29870:90:0;;-1:-1:-1;30005:4:0;-1:-1:-1;30011:15:0;;-1:-1:-1;30028:4:0;;-1:-1:-1;30034:5:0;;-1:-1:-1;30041:8:0;-1:-1:-1;;;29406:652:0;;;;;;;;;:::o;4719:136::-;4777:7;4804:43;4808:1;4811;4804:43;;;;;;;;;;;;;;;;;:3;:43::i;32461:320::-;32507:8;;:13;:31;;;;-1:-1:-1;32524:9:0;;:14;32507:31;:52;;;;-1:-1:-1;32542:12:0;;:17;32507:52;32504:64;;;32461:320::o;32504:64::-;32603:8;;;32588:12;:23;32638:9;;;32622:13;:25;32677:12;;;32658:16;:31;-1:-1:-1;32710:12:0;;;;32733:13;;;;32757:16;32461:320::o;26971:606::-;27073:19;27096:10;:8;:10::i;:::-;27073:33;;27118:15;27135:23;27160:12;27174:23;27199:12;27213:13;27228:16;27248:19;27259:7;27248:10;:19::i;:::-;27117:150;;;;;;;;;;;;;;27278:13;27295:22;27305:11;27295:5;:9;;:22;;;;:::i;:::-;27278:39;;27328:80;27355:6;27363:9;27374:7;27383;27392:15;27328:26;:80::i;:::-;27419:32;27434:8;27444:6;27419:14;:32::i;:::-;27462:47;27474:4;27480:5;27487:4;27493:5;27500:8;27462:11;:47::i;:::-;27542:9;-1:-1:-1;;;;;27525:44:0;27534:6;-1:-1:-1;;;;;27525:44:0;;27553:15;27525:44;;;;1342:25:1;;1330:2;1315:18;;1196:177;27525:44:0;;;;;;;;27062:515;;;;;;;;;26971:606;;;:::o;25964:622::-;26064:19;26087:10;:8;:10::i;:::-;26064:33;;26109:15;26126:23;26151:12;26165:23;26190:12;26204:13;26219:16;26239:19;26250:7;26239:10;:19::i;:::-;26108:150;;;;;;;;;;;;;;26269:13;26286:22;26296:11;26286:5;:9;;:22;;;;:::i;:::-;26269:39;;26319:90;26348:6;26356:9;26367:15;26384:7;26393:15;26319:28;:90::i;25094:591::-;25192:19;25215:10;:8;:10::i;:::-;25192:33;;25237:15;25254:23;25279:12;25293:23;25318:12;25332:13;25347:16;25367:19;25378:7;25367:10;:19::i;:::-;25236:150;;;;;;;;;;;;;;25397:13;25414:22;25424:11;25414:5;:9;;:22;;;;:::i;:::-;25397:39;;25447:69;25472:6;25480:9;25491:7;25500:15;25447:24;:69::i;27930:619::-;28032:19;28055:10;:8;:10::i;:::-;28032:33;;28077:15;28094:23;28119:12;28133:23;28158:12;28172:13;28187:16;28207:19;28218:7;28207:10;:19::i;:::-;28076:150;;;;;;;;;;;;;;28237:13;28254:22;28264:11;28254:5;:9;;:22;;;;:::i;:::-;28237:39;;28287:91;28308:6;28316:9;28327:7;28336;28345:15;28362;28287:20;:91::i;31526:561::-;31623:7;;31659;;31576;;;;;31683:289;31707:9;:16;31703:20;;31683:289;;;31773:7;31749;:21;31757:9;31767:1;31757:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31757:12:0;31749:21;;;;;;;;;;;;;:31;;:66;;;31808:7;31784;:21;31792:9;31802:1;31792:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31792:12:0;31784:21;;;;;;;;;;;;;:31;31749:66;31745:97;;;31825:7;;31834;;31817:25;;;;;;;31526:561;;:::o;31745:97::-;31867:34;31879:7;:21;31887:9;31897:1;31887:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31887:12:0;31879:21;;;;;;;;;;;;;31867:7;;:11;:34::i;:::-;31857:44;;31926:34;31938:7;:21;31946:9;31956:1;31946:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31946:12:0;31938:21;;;;;;;;;;;;;31926:7;;:11;:34::i;:::-;31916:44;-1:-1:-1;31725:3:0;;;;:::i;:::-;;;;31683:289;;;-1:-1:-1;32008:7:0;;31996;;:20;;:11;:20::i;:::-;31986:7;:30;31982:61;;;32026:7;;32035;;32018:25;;;;;;31526:561;;:::o;31982:61::-;32062:7;;32071;;-1:-1:-1;31526:561:0;-1:-1:-1;31526:561:0:o;7184:278::-;7270:7;7305:12;7298:5;7290:28;;;;-1:-1:-1;;;7290:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7329:9:0;7341:5;7345:1;7341;:5;:::i;30070:427::-;30183:7;30192;30201;30221:12;30236:50;30282:3;30237:39;30263:12;;30238:19;30250:6;30238:7;:11;;:19;;;;:::i;:::-;30237:25;;:39::i;30236:50::-;30221:65;;30297:13;30313:51;30360:3;30314:40;30341:12;;30315:20;30327:7;30315;:11;;:20;;;;:::i;30313:51::-;30297:67;;30375:16;30394:54;30444:3;30395:43;30425:12;;30396:23;30408:10;30396:7;:11;;:23;;;;:::i;30394:54::-;30467:4;;30473:5;;-1:-1:-1;30467:4:0;;-1:-1:-1;30070:427:0;-1:-1:-1;;;;;;30070:427:0:o;30509:191::-;30623:7;30650:42;30683:8;30650:28;30672:5;30650:28;:7;30662:4;30650:11;:17::i;:::-;:21;;:28::i;30712:254::-;30807:7;;;30854:24;:7;30866:11;30854;:24::i;:::-;30836:42;-1:-1:-1;30889:12:0;30904:21;:4;30913:11;30904:8;:21::i;:::-;30944:7;;;;-1:-1:-1;30712:254:0;;-1:-1:-1;;;;;30712:254:0:o;30978:369::-;31114:7;;31150:22;:5;31160:11;31150:9;:22::i;:::-;31134:38;-1:-1:-1;31183:16:0;31202:25;:8;31215:11;31202:12;:25::i;:::-;31183:44;-1:-1:-1;31238:23:0;31264:42;31183:44;31264:28;31286:5;31264:28;:7;31276:4;31264:11;:17::i;:42::-;31238:68;30978:369;-1:-1:-1;;;;;;;;;30978:369:0:o;5609:471::-;5667:7;5912:1;5917;5912:6;5908:47;;-1:-1:-1;5942:1:0;5935:8;;5908:47;5967:9;5979:5;5983:1;5979;:5;:::i;:::-;5967:17;-1:-1:-1;6012:1:0;6003:5;6007:1;5967:17;6003:5;:::i;:::-;:10;5995:56;;;;-1:-1:-1;;;5995:56:0;;10253:2:1;5995:56:0;;;10235:21:1;10292:2;10272:18;;;10265:30;10331:34;10311:18;;;10304:62;-1:-1:-1;;;10382:18:1;;;10375:31;10423:19;;5995:56:0;10051:397:1;27589:333:0;-1:-1:-1;;;;;27756:15:0;;;;;;:7;:15;;;;;;:28;;27776:7;27756:19;:28::i;:::-;-1:-1:-1;;;;;27738:15:0;;;;;;:7;:15;;;;;;;;:46;;;;27813:7;:15;;;;:28;;27833:7;27813:19;:28::i;:::-;-1:-1:-1;;;;;27795:15:0;;;;;;;:7;:15;;;;;;:46;;;;27873:18;;;;;;;:39;;27896:15;27873:22;:39::i;:::-;-1:-1:-1;;;;;27852:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;27589:333:0:o;32095:358::-;32172:19;32194:10;:8;:10::i;:::-;32172:32;-1:-1:-1;32215:16:0;32234:25;:8;32172:32;32234:12;:25::i;:::-;32300:10;;-1:-1:-1;;;;;32300:10:0;32292:19;;;;:7;:19;;;;;;32215:44;;-1:-1:-1;32292:33:0;;32215:44;32292:23;:33::i;:::-;32278:10;;;-1:-1:-1;;;;;32278:10:0;;;32270:19;;;;:7;:19;;;;;;;;:55;;;;32366:10;;;;;32358:19;;:7;:19;;;;;:33;;32382:8;32358:23;:33::i;:::-;32344:10;;;-1:-1:-1;;;;;32344:10:0;;;32336:19;;;;:7;:19;;;;;;;;;:55;;;;32424:10;;32407:38;;1342:25:1;;;32424:10:0;;;;32407:38;;;;;;1315:18:1;32407:38:0;;;;;;;32161:292;;32095:358;;:::o;28992:400::-;29118:28;29140:5;29118:17;29130:4;29118:7;;:11;;:17;;;;:::i;:28::-;29108:7;:38;29170:10;;:20;;29185:4;29170:14;:20::i;:::-;29157:10;:33;29215:11;;:22;;29231:5;29215:15;:22::i;:::-;29201:11;:36;29265:14;;:28;;29284:8;29265:18;:28::i;:::-;29248:14;:45;29314:7;;:18;;29326:5;29314:11;:18::i;:::-;29304:7;:28;29342:42;;1342:25:1;;;29374:1:0;;29359:4;;29342:42;;1330:2:1;1315:18;29342:42:0;;;;;;;28992:400;;;;;:::o;26598:359::-;-1:-1:-1;;;;;26775:15:0;;;;;;:7;:15;;;;;;:28;;26795:7;26775:19;:28::i;:::-;-1:-1:-1;;;;;26757:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;26835:18;;;;;:7;:18;;;;;:39;;26858:15;26835:22;:39::i;:::-;-1:-1:-1;;;;;26814:18:0;;;;;;:7;:18;;;;;;;;:60;;;;26906:7;:18;;;;:39;;26929:15;26906:22;:39::i;25697:255::-;-1:-1:-1;;;;;25845:15:0;;;;;;:7;:15;;;;;;:28;;25865:7;25845:19;:28::i;:::-;-1:-1:-1;;;;;25827:15:0;;;;;;;:7;:15;;;;;;:46;;;;25905:18;;;;;;;:39;;25928:15;25905:22;:39::i;:::-;-1:-1:-1;;;;;25884:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;25697:255:0:o;28561:423::-;-1:-1:-1;;;;;28747:15:0;;;;;;:7;:15;;;;;;:28;;28767:7;28747:19;:28::i;:::-;-1:-1:-1;;;;;28729:15:0;;;;;;:7;:15;;;;;;;;:46;;;;28804:7;:15;;;;:28;;28824:7;28804:19;:28::i;:::-;-1:-1:-1;;;;;28786:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;28864:18;;;;;:7;:18;;;;;:39;;28887:15;28864:22;:39::i;:::-;-1:-1:-1;;;;;28843:18:0;;;;;;:7;:18;;;;;;;;:60;;;;28935:7;:18;;;;:39;;28958:15;28935:22;:39::i;:::-;-1:-1:-1;;;;;28914:18:0;;;;;;;:7;:18;;;;;:60;;;;-1:-1:-1;;;;;28561:423:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;2085:341::-;2150:6;2158;2211:2;2199:9;2190:7;2186:23;2182:32;2179:52;;;2227:1;2224;2217:12;2179:52;2263:9;2250:23;2240:33;;2323:2;2312:9;2308:18;2295:32;2370:5;2363:13;2356:21;2349:5;2346:32;2336:60;;2392:1;2389;2382:12;2336:60;2415:5;2405:15;;;2085:341;;;;;:::o;2431:186::-;2490:6;2543:2;2531:9;2522:7;2518:23;2514:32;2511:52;;;2559:1;2556;2549:12;2511:52;2582:29;2601:9;2582:29;:::i;2830:260::-;2898:6;2906;2959:2;2947:9;2938:7;2934:23;2930:32;2927:52;;;2975:1;2972;2965:12;2927:52;2998:29;3017:9;2998:29;:::i;:::-;2988:39;;3046:38;3080:2;3069:9;3065:18;3046:38;:::i;:::-;3036:48;;2830:260;;;;;:::o;3095:316::-;3172:6;3180;3188;3241:2;3229:9;3220:7;3216:23;3212:32;3209:52;;;3257:1;3254;3247:12;3209:52;-1:-1:-1;;3280:23:1;;;3350:2;3335:18;;3322:32;;-1:-1:-1;3401:2:1;3386:18;;;3373:32;;3095:316;-1:-1:-1;3095:316:1:o;3416:380::-;3495:1;3491:12;;;;3538;;;3559:61;;3613:4;3605:6;3601:17;3591:27;;3559:61;3666:2;3658:6;3655:14;3635:18;3632:38;3629:161;;3712:10;3707:3;3703:20;3700:1;3693:31;3747:4;3744:1;3737:15;3775:4;3772:1;3765:15;3629:161;;3416:380;;;:::o;4985:356::-;5187:2;5169:21;;;5206:18;;;5199:30;5265:34;5260:2;5245:18;;5238:62;5332:2;5317:18;;4985:356::o;6465:127::-;6526:10;6521:3;6517:20;6514:1;6507:31;6557:4;6554:1;6547:15;6581:4;6578:1;6571:15;6597:127;6658:10;6653:3;6649:20;6646:1;6639:31;6689:4;6686:1;6679:15;6713:4;6710:1;6703:15;6729:128;6796:9;;;6817:11;;;6814:37;;;6831:18;;:::i;6862:127::-;6923:10;6918:3;6914:20;6911:1;6904:31;6954:4;6951:1;6944:15;6978:4;6975:1;6968:15;6994:135;7033:3;7054:17;;;7051:43;;7074:18;;:::i;:::-;-1:-1:-1;7121:1:1;7110:13;;6994:135::o;7134:168::-;7207:9;;;7238;;7255:15;;;7249:22;;7235:37;7225:71;;7276:18;;:::i;9343:125::-;9408:9;;;9429:10;;;9426:36;;;9442:18;;:::i;9829:217::-;9869:1;9895;9885:132;;9939:10;9934:3;9930:20;9927:1;9920:31;9974:4;9971:1;9964:15;10002:4;9999:1;9992:15;9885:132;-1:-1:-1;10031:9:1;;9829:217::o
Swarm Source
ipfs://96e4018fd7595720305b658a1a940a98987beb2cee2a00d79d338bced6c3adf0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.