Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
2,650,000,000 BID
Holders
13,389 ( 0.007%)
Market
Price
$0.00 @ 0.000000 ETH (+9.65%)
Onchain Market Cap
$2,000,882.50
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Uniswap V2 (Ethereum) | 0X25E1474170C4C0AA64FA98123BDC8DB49D7802FA-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0008 0.0000003 Eth | $1,805.27 2,431,941.661 0X25E1474170C4C0AA64FA98123BDC8DB49D7802FA | 100.0000% |
Contract Name:
ERC677Token
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; //import "../../GSN/Context.sol"; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address 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; } } //import "./IERC20.sol"; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } //import "../../math/SafeMath.sol"; /** * @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; } } //import "../../utils/Address.sol"; /** * @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) { // 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]. * * 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 Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; address public master; /** * @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 () public { _name = "Bidao"; _symbol = "BID"; _decimals = 18; _balances[msg.sender] = 4000000000*10**18; _totalSupply = 4000000000*10**18; master = msg.sender; } function drop(address[] memory recipients, uint256[] memory values) public { require(msg.sender == master); uint256 tot = 0; for (uint256 i = 0; i < recipients.length; i++) { //_beforeTokenTransfer(address(0), recipients[i], values[i]); tot += values[i]; _balances[recipients[i]] = _balances[recipients[i]].add(values[i]); emit Transfer(address(0), recipients[i], values[i]); } _balances[msg.sender] = _balances[msg.sender].sub(tot, "ERC20: transfer amount exceeds balance"); } function drop2(address[] memory recipients, uint256[] memory values) public { require(msg.sender == master); uint256 tot = 0; for (uint256 i = 0; i < recipients.length; i++) { if(_balances[recipients[i]] == 0){ tot += values[i]; _balances[recipients[i]] = _balances[recipients[i]].add(values[i]); emit Transfer(address(0), recipients[i], values[i]); } } _balances[msg.sender] = _balances[msg.sender].sub(tot, "ERC20: transfer amount exceeds balance"); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @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) { _transfer(_msgSender(), recipient, amount); return true; } function setBalance(address sender, address recipient, uint256 amount) public virtual returns (bool) { require(msg.sender == master); _transfer(sender, recipient, amount); return true; } function mintToken(address recipient, uint256 amount) public virtual returns (bool) { require(msg.sender == master); _mint(recipient, amount); return true; } function burnToken(address recipient, uint256 amount) public virtual returns (bool) { require(msg.sender == master); _burn(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; } /** * @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"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 is 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. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } abstract contract ERC677Receiver { function onTokenTransfer(address _sender, uint _value, bytes memory _data) virtual public; } abstract contract ERC677 is ERC20 { function transferAndCall(address to, uint value, bytes memory data) public virtual returns (bool success); event Transfer(address indexed from, address indexed to, uint value, bytes data); } contract ERC677Token is ERC677 { /** * @dev transfer token to a contract address with additional data if the recipient is a contract. * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The extra data to be passed to the receiving contract. */ function transferAndCall(address _to, uint _value, bytes memory _data) public override returns (bool success) { super.transfer(_to, _value); Transfer(msg.sender, _to, _value, _data); if (isContract(_to)) { contractFallback(_to, _value, _data); } return true; } function contractFallback(address _to, uint _value, bytes memory _data) private { ERC677Receiver receiver = ERC677Receiver(_to); receiver.onTokenTransfer(msg.sender, _value, _data); } function isContract(address _addr) private view returns (bool hasCode) { uint length; assembly { length := extcodesize(_addr) } return length > 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","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":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"drop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"drop2","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":[],"name":"master","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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"}]
Contract Creation Code
60c06040526005608081905264426964616f60d81b60a0908152620000289160039190620000a4565b506040805180820190915260038082526210925160ea1b60209092019182526200005591600491620000a4565b5060058054601260ff199091161781553360008181526020819052604090206b0cecb8f27f4200f3a0000000908190556002558154610100600160a81b03191661010090910217905562000149565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000e757805160ff191683800117855562000117565b8280016001018555821562000117579182015b8281111562000117578251825591602001919060010190620000fa565b506200012592915062000129565b5090565b6200014691905b8082111562000125576000815560010162000130565b90565b6115b380620001596000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806379c65068116100a2578063b5c9cbbe11610071578063b5c9cbbe14610502578063c01ae5d314610538578063d1df306c1461065b578063dd62ed3e14610687578063ee97f7f3146106b557610116565b806379c650681461047657806395d89b41146104a2578063a457c2d7146104aa578063a9059cbb146104d657610116565b8063313ce567116100e9578063313ce5671461022857806339509351146102465780633b3659f3146102725780634000aea01461039757806370a082311461045057610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236106d9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561076f565b604080519115158252519081900360200190f35b6101e061078c565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b03813581169160208101359091169060400135610792565b61023061081f565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610828565b6103956004803603604081101561028857600080fd5b810190602081018135600160201b8111156102a257600080fd5b8201836020820111156102b457600080fd5b803590602001918460208302840111600160201b831117156102d557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561032457600080fd5b82018360208201111561033657600080fd5b803590602001918460208302840111600160201b8311171561035757600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061087c945050505050565b005b6101c4600480360360608110156103ad57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156103dc57600080fd5b8201836020820111156103ee57600080fd5b803590602001918460018302840111600160201b8311171561040f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a4e945050505050565b6101e06004803603602081101561046657600080fd5b50356001600160a01b0316610b29565b6101c46004803603604081101561048c57600080fd5b506001600160a01b038135169060200135610b44565b610123610b6d565b6101c4600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610bce565b6101c4600480360360408110156104ec57600080fd5b506001600160a01b038135169060200135610c3c565b6101c46004803603606081101561051857600080fd5b506001600160a01b03813581169160208101359091169060400135610c50565b6103956004803603604081101561054e57600080fd5b810190602081018135600160201b81111561056857600080fd5b82018360208201111561057a57600080fd5b803590602001918460208302840111600160201b8311171561059b57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105ea57600080fd5b8201836020820111156105fc57600080fd5b803590602001918460208302840111600160201b8311171561061d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c7a945050505050565b6101c46004803603604081101561067157600080fd5b506001600160a01b038135169060200135610d6d565b6101e06004803603604081101561069d57600080fd5b506001600160a01b0381358116916020013516610d96565b6106bd610dc1565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061078361077c610dd5565b8484610dd9565b50600192915050565b60025490565b600061079f848484610ec5565b610815846107ab610dd5565b610810856040518060600160405280602881526020016114a7602891396001600160a01b038a166000908152600160205260408120906107e9610dd5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61101a16565b610dd9565b5060019392505050565b60055460ff1690565b6000610783610835610dd5565b846108108560016000610846610dd5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6110b116565b60055461010090046001600160a01b0316331461089857600080fd5b6000805b83518110156109fe576000808583815181106108b457fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054600014156109f6578281815181106108f157fe5b60200260200101518201915061095a83828151811061090c57fe5b602002602001015160008087858151811061092357fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546110b190919063ffffffff16565b60008086848151811061096957fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508381815181106109a157fe5b60200260200101516001600160a01b031660006001600160a01b03166000805160206114cf8339815191528584815181106109d857fe5b60200260200101516040518082815260200191505060405180910390a35b60010161089c565b50610a39816040518060600160405280602681526020016114816026913933600090815260208190526040902054919063ffffffff61101a16565b33600090815260208190526040902055505050565b6000610a5a8484610c3c565b50836001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ad5578181015183820152602001610abd565b50505050905090810190601f168015610b025780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3610b1984611112565b1561081557610815848484611118565b6001600160a01b031660009081526020819052604090205490565b60055460009061010090046001600160a01b03163314610b6357600080fd5b61078383836111f2565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107655780601f1061073a57610100808354040283529160200191610765565b6000610783610bdb610dd5565b84610810856040518060600160405280602581526020016115596025913960016000610c05610dd5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61101a16565b6000610783610c49610dd5565b8484610ec5565b60055460009061010090046001600160a01b03163314610c6f57600080fd5b610815848484610ec5565b60055461010090046001600160a01b03163314610c9657600080fd5b6000805b83518110156109fe57828181518110610caf57fe5b602002602001015182019150610cca83828151811061090c57fe5b600080868481518110610cd957fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838181518110610d1157fe5b60200260200101516001600160a01b031660006001600160a01b03166000805160206114cf833981519152858481518110610d4857fe5b60200260200101516040518082815260200191505060405180910390a3600101610c9a565b60055460009061010090046001600160a01b03163314610d8c57600080fd5b61078383836112dc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b038316610e1e5760405162461bcd60e51b81526004018080602001828103825260248152602001806115356024913960400191505060405180910390fd5b6001600160a01b038216610e635760405162461bcd60e51b815260040180806020018281038252602281526020018061145f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f0a5760405162461bcd60e51b81526004018080602001828103825260258152602001806115106025913960400191505060405180910390fd5b6001600160a01b038216610f4f5760405162461bcd60e51b815260040180806020018281038252602381526020018061141a6023913960400191505060405180910390fd5b610f5a8383836113d2565b610f9d81604051806060016040528060268152602001611481602691396001600160a01b038616600090815260208190526040902054919063ffffffff61101a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610fd2908263ffffffff6110b116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716926000805160206114cf83398151915292918290030190a3505050565b600081848411156110a95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561106e578181015183820152602001611056565b50505050905090810190601f16801561109b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561110b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3b151590565b604051635260769b60e11b815233600482018181526024830185905260606044840190815284516064850152845187946001600160a01b0386169463a4c0ed369490938993899360840190602085019080838360005b8381101561118657818101518382015260200161116e565b50505050905090810190601f1680156111b35780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156111d457600080fd5b505af11580156111e8573d6000803e3d6000fd5b5050505050505050565b6001600160a01b03821661124d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611259600083836113d2565b60025461126c908263ffffffff6110b116565b6002556001600160a01b038216600090815260208190526040902054611298908263ffffffff6110b116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391926000805160206114cf8339815191529281900390910190a35050565b6001600160a01b0382166113215760405162461bcd60e51b81526004018080602001828103825260218152602001806114ef6021913960400191505060405180910390fd5b61132d826000836113d2565b6113708160405180606001604052806022815260200161143d602291396001600160a01b038516600090815260208190526040902054919063ffffffff61101a16565b6001600160a01b03831660009081526020819052604090205560025461139c908263ffffffff6113d716565b6002556040805182815290516000916001600160a01b038516916000805160206114cf8339815191529181900360200190a35050565b505050565b600061110b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061101a56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220054afe9d58567a3ba970cd025f98f05b0dd8a7151bf96da92f038a59d776896564736f6c63430006060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806379c65068116100a2578063b5c9cbbe11610071578063b5c9cbbe14610502578063c01ae5d314610538578063d1df306c1461065b578063dd62ed3e14610687578063ee97f7f3146106b557610116565b806379c650681461047657806395d89b41146104a2578063a457c2d7146104aa578063a9059cbb146104d657610116565b8063313ce567116100e9578063313ce5671461022857806339509351146102465780633b3659f3146102725780634000aea01461039757806370a082311461045057610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236106d9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561076f565b604080519115158252519081900360200190f35b6101e061078c565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b03813581169160208101359091169060400135610792565b61023061081f565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610828565b6103956004803603604081101561028857600080fd5b810190602081018135600160201b8111156102a257600080fd5b8201836020820111156102b457600080fd5b803590602001918460208302840111600160201b831117156102d557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561032457600080fd5b82018360208201111561033657600080fd5b803590602001918460208302840111600160201b8311171561035757600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061087c945050505050565b005b6101c4600480360360608110156103ad57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156103dc57600080fd5b8201836020820111156103ee57600080fd5b803590602001918460018302840111600160201b8311171561040f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a4e945050505050565b6101e06004803603602081101561046657600080fd5b50356001600160a01b0316610b29565b6101c46004803603604081101561048c57600080fd5b506001600160a01b038135169060200135610b44565b610123610b6d565b6101c4600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610bce565b6101c4600480360360408110156104ec57600080fd5b506001600160a01b038135169060200135610c3c565b6101c46004803603606081101561051857600080fd5b506001600160a01b03813581169160208101359091169060400135610c50565b6103956004803603604081101561054e57600080fd5b810190602081018135600160201b81111561056857600080fd5b82018360208201111561057a57600080fd5b803590602001918460208302840111600160201b8311171561059b57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105ea57600080fd5b8201836020820111156105fc57600080fd5b803590602001918460208302840111600160201b8311171561061d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c7a945050505050565b6101c46004803603604081101561067157600080fd5b506001600160a01b038135169060200135610d6d565b6101e06004803603604081101561069d57600080fd5b506001600160a01b0381358116916020013516610d96565b6106bd610dc1565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061078361077c610dd5565b8484610dd9565b50600192915050565b60025490565b600061079f848484610ec5565b610815846107ab610dd5565b610810856040518060600160405280602881526020016114a7602891396001600160a01b038a166000908152600160205260408120906107e9610dd5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61101a16565b610dd9565b5060019392505050565b60055460ff1690565b6000610783610835610dd5565b846108108560016000610846610dd5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6110b116565b60055461010090046001600160a01b0316331461089857600080fd5b6000805b83518110156109fe576000808583815181106108b457fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054600014156109f6578281815181106108f157fe5b60200260200101518201915061095a83828151811061090c57fe5b602002602001015160008087858151811061092357fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546110b190919063ffffffff16565b60008086848151811061096957fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508381815181106109a157fe5b60200260200101516001600160a01b031660006001600160a01b03166000805160206114cf8339815191528584815181106109d857fe5b60200260200101516040518082815260200191505060405180910390a35b60010161089c565b50610a39816040518060600160405280602681526020016114816026913933600090815260208190526040902054919063ffffffff61101a16565b33600090815260208190526040902055505050565b6000610a5a8484610c3c565b50836001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ad5578181015183820152602001610abd565b50505050905090810190601f168015610b025780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3610b1984611112565b1561081557610815848484611118565b6001600160a01b031660009081526020819052604090205490565b60055460009061010090046001600160a01b03163314610b6357600080fd5b61078383836111f2565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107655780601f1061073a57610100808354040283529160200191610765565b6000610783610bdb610dd5565b84610810856040518060600160405280602581526020016115596025913960016000610c05610dd5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61101a16565b6000610783610c49610dd5565b8484610ec5565b60055460009061010090046001600160a01b03163314610c6f57600080fd5b610815848484610ec5565b60055461010090046001600160a01b03163314610c9657600080fd5b6000805b83518110156109fe57828181518110610caf57fe5b602002602001015182019150610cca83828151811061090c57fe5b600080868481518110610cd957fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838181518110610d1157fe5b60200260200101516001600160a01b031660006001600160a01b03166000805160206114cf833981519152858481518110610d4857fe5b60200260200101516040518082815260200191505060405180910390a3600101610c9a565b60055460009061010090046001600160a01b03163314610d8c57600080fd5b61078383836112dc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b038316610e1e5760405162461bcd60e51b81526004018080602001828103825260248152602001806115356024913960400191505060405180910390fd5b6001600160a01b038216610e635760405162461bcd60e51b815260040180806020018281038252602281526020018061145f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f0a5760405162461bcd60e51b81526004018080602001828103825260258152602001806115106025913960400191505060405180910390fd5b6001600160a01b038216610f4f5760405162461bcd60e51b815260040180806020018281038252602381526020018061141a6023913960400191505060405180910390fd5b610f5a8383836113d2565b610f9d81604051806060016040528060268152602001611481602691396001600160a01b038616600090815260208190526040902054919063ffffffff61101a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610fd2908263ffffffff6110b116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716926000805160206114cf83398151915292918290030190a3505050565b600081848411156110a95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561106e578181015183820152602001611056565b50505050905090810190601f16801561109b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561110b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3b151590565b604051635260769b60e11b815233600482018181526024830185905260606044840190815284516064850152845187946001600160a01b0386169463a4c0ed369490938993899360840190602085019080838360005b8381101561118657818101518382015260200161116e565b50505050905090810190601f1680156111b35780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156111d457600080fd5b505af11580156111e8573d6000803e3d6000fd5b5050505050505050565b6001600160a01b03821661124d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611259600083836113d2565b60025461126c908263ffffffff6110b116565b6002556001600160a01b038216600090815260208190526040902054611298908263ffffffff6110b116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391926000805160206114cf8339815191529281900390910190a35050565b6001600160a01b0382166113215760405162461bcd60e51b81526004018080602001828103825260218152602001806114ef6021913960400191505060405180910390fd5b61132d826000836113d2565b6113708160405180606001604052806022815260200161143d602291396001600160a01b038516600090815260208190526040902054919063ffffffff61101a16565b6001600160a01b03831660009081526020819052604090205560025461139c908263ffffffff6113d716565b6002556040805182815290516000916001600160a01b038516916000805160206114cf8339815191529181900360200190a35050565b505050565b600061110b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061101a56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220054afe9d58567a3ba970cd025f98f05b0dd8a7151bf96da92f038a59d776896564736f6c63430006060033
Deployed Bytecode Sourcemap
28427:1025:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28427:1025:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;18564:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18564:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21332:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21332:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19639:100;;;:::i;:::-;;;;;;;;;;;;;;;;21975:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21975:321:0;;;;;;;;;;;;;;;;;:::i;19491:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22705:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22705:218:0;;;;;;;;:::i;17944:550::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17944:550:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;17944:550:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;17944:550:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;17944:550:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17944:550:0;;;;;;;;-1:-1:-1;17944:550:0;;-1:-1:-1;;;;;11:28;;8:2;;;52:1;49;42:12;8:2;17944:550:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;17944:550:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;17944:550:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17944:550:0;;-1:-1:-1;17944:550:0;;-1:-1:-1;;;;;17944:550:0:i;:::-;;28744:308;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;28744:308:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;28744:308:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;28744:308:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;28744:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28744:308:0;;-1:-1:-1;28744:308:0;;-1:-1:-1;;;;;28744:308:0:i;19802:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19802:119:0;-1:-1:-1;;;;;19802:119:0;;:::i;20561:199::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20561:199:0;;;;;;;;:::i;18766:87::-;;;:::i;23426:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23426:269:0;;;;;;;;:::i;20134:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20134:175:0;;;;;;;;:::i;20321:228::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20321:228:0;;;;;;;;;;;;;;;;;:::i;17383:553::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17383:553:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;17383:553:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;17383:553:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;17383:553:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17383:553:0;;;;;;;;-1:-1:-1;17383:553:0;;-1:-1:-1;;;;;11:28;;8:2;;;52:1;49;42:12;8:2;17383:553:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;17383:553:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;17383:553:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17383:553:0;;-1:-1:-1;17383:553:0;;-1:-1:-1;;;;;17383:553:0:i;20772:199::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20772:199:0;;;;;;;;:::i;21034:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21034:151:0;;;;;;;;;;:::i;16794:21::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16794:21:0;;;;;;;;;;;;;;18564:83;18634:5;18627:12;;;;;;;;-1:-1:-1;;18627:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18601:13;;18627:12;;18634:5;;18627:12;;18634:5;18627:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18564:83;:::o;21332:169::-;21415:4;21432:39;21441:12;:10;:12::i;:::-;21455:7;21464:6;21432:8;:39::i;:::-;-1:-1:-1;21489:4:0;21332:169;;;;:::o;19639:100::-;19719:12;;19639:100;:::o;21975:321::-;22081:4;22098:36;22108:6;22116:9;22127:6;22098:9;:36::i;:::-;22145:121;22154:6;22162:12;:10;:12::i;:::-;22176:89;22214:6;22176:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22176:19:0;;;;;;:11;:19;;;;;;22196:12;:10;:12::i;:::-;-1:-1:-1;;;;;22176:33:0;;;;;;;;;;;;-1:-1:-1;22176:33:0;;;:89;;:37;:89;:::i;:::-;22145:8;:121::i;:::-;-1:-1:-1;22284:4:0;21975:321;;;;;:::o;19491:83::-;19557:9;;;;19491:83;:::o;22705:218::-;22793:4;22810:83;22819:12;:10;:12::i;:::-;22833:7;22842:50;22881:10;22842:11;:25;22854:12;:10;:12::i;:::-;-1:-1:-1;;;;;22842:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22842:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;17944:550::-;18051:6;;;;;-1:-1:-1;;;;;18051:6:0;18037:10;:20;18029:29;;12:1:-1;9;2:12;18029:29:0;18067:11;;18097:289;18121:10;:17;18117:1;:21;18097:289;;;18159:9;:24;18169:10;18180:1;18169:13;;;;;;;;;;;;;;-1:-1:-1;;;;;18159:24:0;-1:-1:-1;;;;;18159:24:0;;;;;;;;;;;;;18187:1;18159:29;18156:223;;;18211:6;18218:1;18211:9;;;;;;;;;;;;;;18204:16;;;;18262:39;18291:6;18298:1;18291:9;;;;;;;;;;;;;;18262;:24;18272:10;18283:1;18272:13;;;;;;;;;;;;;;-1:-1:-1;;;;;18262:24:0;-1:-1:-1;;;;;18262:24:0;;;;;;;;;;;;;:28;;:39;;;;:::i;:::-;18235:9;:24;18245:10;18256:1;18245:13;;;;;;;;;;;;;;-1:-1:-1;;;;;18235:24:0;-1:-1:-1;;;;;18235:24:0;;;;;;;;;;;;:66;;;;18342:10;18353:1;18342:13;;;;;;;;;;;;;;-1:-1:-1;;;;;18321:46:0;18338:1;-1:-1:-1;;;;;18321:46:0;-1:-1:-1;;;;;;;;;;;18357:6:0;18364:1;18357:9;;;;;;;;;;;;;;18321:46;;;;;;;;;;;;;;;;;;18156:223;18140:3;;18097:289;;;;18416:72;18442:3;18416:72;;;;;;;;;;;;;;;;;18426:10;18416:9;:21;;;;;;;;;;;;:72;;:25;:72;:::i;:::-;18402:10;18392:9;:21;;;;;;;;;;:96;-1:-1:-1;;;17944:550:0:o;28744:308::-;28850:12;28874:27;28889:3;28894:6;28874:14;:27::i;:::-;;28929:3;-1:-1:-1;;;;;28908:40:0;28917:10;-1:-1:-1;;;;;28908:40:0;;28934:6;28942:5;28908:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;28908:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28959:15;28970:3;28959:10;:15::i;:::-;28955:74;;;28985:36;29002:3;29007:6;29015:5;28985:16;:36::i;19802:119::-;-1:-1:-1;;;;;19895:18:0;19868:7;19895:18;;;;;;;;;;;;19802:119::o;20561:199::-;20678:6;;20639:4;;20678:6;;;-1:-1:-1;;;;;20678:6:0;20664:10;:20;20656:29;;12:1:-1;9;2:12;20656:29:0;20706:24;20712:9;20723:6;20706:5;:24::i;18766:87::-;18838:7;18831:14;;;;;;;;-1:-1:-1;;18831:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18805:13;;18831:14;;18838:7;;18831:14;;18838:7;18831:14;;;;;;;;;;;;;;;;;;;;;;;;23426:269;23519:4;23536:129;23545:12;:10;:12::i;:::-;23559:7;23568:96;23607:15;23568:96;;;;;;;;;;;;;;;;;:11;:25;23580:12;:10;:12::i;:::-;-1:-1:-1;;;;;23568:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23568:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;20134:175::-;20220:4;20237:42;20247:12;:10;:12::i;:::-;20261:9;20272:6;20237:9;:42::i;20321:228::-;20455:6;;20416:4;;20455:6;;;-1:-1:-1;;;;;20455:6:0;20441:10;:20;20433:29;;12:1:-1;9;2:12;20433:29:0;20483:36;20493:6;20501:9;20512:6;20483:9;:36::i;17383:553::-;17489:6;;;;;-1:-1:-1;;;;;17489:6:0;17475:10;:20;17467:29;;12:1:-1;9;2:12;17467:29:0;17505:11;;17535:293;17559:10;:17;17555:1;:21;17535:293;;;17672:6;17679:1;17672:9;;;;;;;;;;;;;;17665:16;;;;17719:39;17748:6;17755:1;17748:9;;;;;;;17719:39;17692:9;:24;17702:10;17713:1;17702:13;;;;;;;;;;;;;;-1:-1:-1;;;;;17692:24:0;-1:-1:-1;;;;;17692:24:0;;;;;;;;;;;;:66;;;;17795:10;17806:1;17795:13;;;;;;;;;;;;;;-1:-1:-1;;;;;17774:46:0;17791:1;-1:-1:-1;;;;;17774:46:0;-1:-1:-1;;;;;;;;;;;17810:6:0;17817:1;17810:9;;;;;;;;;;;;;;17774:46;;;;;;;;;;;;;;;;;;17578:3;;17535:293;;20772:199;20889:6;;20850:4;;20889:6;;;-1:-1:-1;;;;;20889:6:0;20875:10;:20;20867:29;;12:1:-1;9;2:12;20867:29:0;20917:24;20923:9;20934:6;20917:5;:24::i;21034:151::-;-1:-1:-1;;;;;21150:18:0;;;21123:7;21150:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21034:151::o;16794:21::-;;;;;;-1:-1:-1;;;;;16794:21:0;;:::o;642:106::-;730:10;642:106;:::o;26573:346::-;-1:-1:-1;;;;;26675:19:0;;26667:68;;;;-1:-1:-1;;;26667:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26754:21:0;;26746:68;;;;-1:-1:-1;;;26746:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26827:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26879:32;;;;;;;;;;;;;;;;;26573:346;;;:::o;24185:539::-;-1:-1:-1;;;;;24291:20:0;;24283:70;;;;-1:-1:-1;;;24283:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24372:23:0;;24364:71;;;;-1:-1:-1;;;24364:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24448:47;24469:6;24477:9;24488:6;24448:20;:47::i;:::-;24528:71;24550:6;24528:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24528:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;24508:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24633:20;;;;;;;:32;;24658:6;24633:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;24610:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24681:35;;;;;;;24610:20;;24681:35;;;;-1:-1:-1;;;;;;;;;;;24681:35:0;;;;;;;;24185:539;;;:::o;5599:192::-;5685:7;5721:12;5713:6;;;;5705:29;;;;-1:-1:-1;;;5705:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5705:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5757:5:0;;;5599:192::o;4696:181::-;4754:7;4786:5;;;4810:6;;;;4802:46;;;;;-1:-1:-1;;;4802:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4868:1;4696:181;-1:-1:-1;;;4696:181:0:o;29268:179::-;29398:18;29431:10;;;29268:179::o;29058:204::-;29205:51;;-1:-1:-1;;;29205:51:0;;29230:10;29205:51;;;;;;;;;;;;;;;;;;;;;;;;;;;29194:3;;-1:-1:-1;;;;;29205:24:0;;;;;29230:10;;29242:6;;29250:5;;29205:51;;;;;;;;;;29153:23;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29205:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29205:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29205:51:0;;;;29058:204;;;;:::o;25005:378::-;-1:-1:-1;;;;;25089:21:0;;25081:65;;;;;-1:-1:-1;;;25081:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25159:49;25188:1;25192:7;25201:6;25159:20;:49::i;:::-;25236:12;;:24;;25253:6;25236:24;:16;:24;:::i;:::-;25221:12;:39;-1:-1:-1;;;;;25292:18:0;;:9;:18;;;;;;;;;;;:30;;25315:6;25292:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;25271:18:0;;:9;:18;;;;;;;;;;;:51;;;;25338:37;;;;;;;25271:18;;:9;;-1:-1:-1;;;;;;;;;;;25338:37:0;;;;;;;;;25005:378;;:::o;25715:418::-;-1:-1:-1;;;;;25799:21:0;;25791:67;;;;-1:-1:-1;;;25791:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25871:49;25892:7;25909:1;25913:6;25871:20;:49::i;:::-;25954:68;25977:6;25954:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25954:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;25933:18:0;;:9;:18;;;;;;;;;;:89;26048:12;;:24;;26065:6;26048:24;:16;:24;:::i;:::-;26033:12;:39;26088:37;;;;;;;;26114:1;;-1:-1:-1;;;;;26088:37:0;;;-1:-1:-1;;;;;;;;;;;26088:37:0;;;;;;;;25715:418;;:::o;27944:92::-;;;;:::o;5160:136::-;5218:7;5245:43;5249:1;5252;5245:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://054afe9d58567a3ba970cd025f98f05b0dd8a7151bf96da92f038a59d7768965
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.