ERC-20
Overview
Max Total Supply
299.81 PTC
Holders
42
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pumptonic
Compiler Version
v0.6.0+commit.26b70077
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-10 */ pragma solidity 0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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 virtual view returns (address payable) { return msg.sender; } function _msgData() internal virtual view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 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 ); } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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 Ownable, IERC20 { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @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 = 18; } /** * @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 override view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public virtual override view 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 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 {} } contract Pumptonic is ERC20 { using SafeMath for uint256; string private _name = "Pumptonic"; string private _symbol = "PTC"; uint256 private _decimals = 18; uint256 public sold; uint256 public rate = 5; uint256 public maxBuy = 5 * 10**_decimals; uint256 public burnRate = 100; uint256 public presale = 150 * 10**_decimals; uint256 private _totalSupply = 300 * 10**_decimals; mapping(address => uint256) public purchased; constructor() public ERC20(_name, _symbol) { _setupDecimals(uint8(_decimals)); _mint(_msgSender(), _totalSupply); _transfer(_msgSender(), address(this), presale); } receive() external payable { require(preValidatePurchase() == true); uint256 _buyAmount = buyAmount(); sold = sold.add(_buyAmount); purchased[msg.sender] = purchased[msg.sender].add(_buyAmount); _transfer(address(this), msg.sender,_buyAmount ); payable(owner()).transfer(msg.value); } function burn(address from, uint256 amount) public onlyOwner { _burn(from, amount); } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. * - burn specifc amount */ function transfer(address recipient, uint256 amount) public override returns (bool) { uint256 amountToBurn = msg.sender != owner() ? burnAmount(amount) : 0; uint256 amountToTransfer = amount.sub(amountToBurn); // burn _burn(msg.sender, amountToBurn); _transfer(_msgSender(), recipient, amountToTransfer); 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`. * - burn specifc amount */ function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { uint256 amountToBurn = msg.sender != owner() ? burnAmount(amount) : 0; uint256 amountToTransfer = amount.sub(amountToBurn); _burn(sender, amountToBurn); _transfer(sender, recipient, amountToTransfer); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); } function buyAmount() private view returns (uint256) { return (msg.value.mul(rate)); } function burnAmount(uint256 amount) private view returns (uint256) { uint256 amountafter = amount.mul(burnRate).div(10000); amountafter = amountafter > 0 ? amountafter : 1; return amountafter; } function preValidatePurchase() private view returns (bool) { require(msg.value > 0, "[Buy] Etheres cant be zero"); require( msg.value <= maxBuy, "[Buy] Etheres should not be greater than maximum amount" ); require( (purchased[msg.sender].add(buyAmount())) <= maxBuy, "[Buy] Already purchased" ); require(sold <= presale, "[Buy] Not enough tokens"); return true; } function destroy() external onlyOwner { selfdestruct(payable(owner())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"destroy","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":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600960808190526850756d70746f6e696360b81b60a09081526200002c91600791906200066a565b506040805180820190915260038082526250544360e81b602090920191825262000059916008916200066a565b5060126009556005600b55674563918244f40000600c556064600d55680821ab0d4414980000600e55681043561a8829300000600f553480156200009c57600080fd5b506007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620001275780601f10620000fb5761010080835404028352916020019162000127565b820191906000526020600020905b8154815290600101906020018083116200010957829003601f168201915b505060088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815295509193509150830182828015620001b95780601f106200018d57610100808354040283529160200191620001b9565b820191906000526020600020905b8154815290600101906020018083116200019b57829003601f168201915b50505050506000620001d0620002c660201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200022f9060049060208501906200066a565b508051620002459060059060208401906200066a565b50506006805460ff19166012179055506009546200026c906001600160e01b03620002cb16565b62000295620002836001600160e01b03620002c616565b600f546001600160e01b03620002e116565b620002c0620002ac6001600160e01b03620002c616565b600e5430906001600160e01b03620003ec16565b6200070c565b335b90565b6006805460ff191660ff92909216919091179055565b6001600160a01b0382166200033d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000354600083836001600160e01b036200056816565b62000370816003546200056d60201b6200078d1790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620003a59183906200078d6200056d821b17901c565b6001600160a01b038316600081815260016020908152604080832094909455835185815293519293919260008051602062001d0f8339815191529281900390910190a35050565b6001600160a01b038316620004335760405162461bcd60e51b815260040180806020018281038252602581526020018062001d2f6025913960400191505060405180910390fd5b6001600160a01b0382166200047a5760405162461bcd60e51b815260040180806020018281038252602381526020018062001cc66023913960400191505060405180910390fd5b620004908383836001600160e01b036200056816565b620004dd8160405180606001604052806026815260200162001ce9602691396001600160a01b03861660009081526001602090815260409091205492919062000fdb620005cf821b17901c565b6001600160a01b03808516600090815260016020908152604080832094909455918516815291909120546200051d9183906200078d6200056d821b17901c565b6001600160a01b03808416600081815260016020908152604091829020949094558051858152905191939287169260008051602062001d0f83398151915292918290030190a3505050565b505050565b600082820183811015620005c8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008184841115620006625760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620006265781810151838201526020016200060c565b50505050905090810190601f168015620006545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006ad57805160ff1916838001178555620006dd565b82800160010185558215620006dd579182015b82811115620006dd578251825591602001919060010190620006c0565b50620006eb929150620006ef565b5090565b620002c891905b80821115620006eb5760008155600101620006f6565b6115aa806200071c6000396000f3fe6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d7146104f4578063a9059cbb1461052d578063bed9985014610566578063dd62ed3e1461057b578063f2fde38b146105b6578063fdea8e0b146105e9576101fa565b8063715018a61461044957806383197ef0146104605780638da5cb5b1461047557806395d89b41146104a65780639dc29fac146104bb576101fa565b80632c4e722e116100fd5780632c4e722e14610355578063313ce5671461036a5780633950935114610395578063522fe98e146103ce57806370a082311461040157806370db69d614610434576101fa565b806302c7e7af146101ff57806306fdde0314610226578063095ea7b3146102b057806318160ddd146102fd57806323b872dd14610312576101fa565b366101fa576101466105fe565b151560011461015457600080fd5b600061015e610771565b600a54909150610174908263ffffffff61078d16565b600a5533600090815260106020526040902054610197908263ffffffff61078d16565b336000818152601060205260409020919091556101b6903090836107f0565b6101be610959565b6001600160a01b03166108fc349081150290604051600060405180830381858888f193505050501580156101f6573d6000803e3d6000fd5b5050005b600080fd5b34801561020b57600080fd5b50610214610968565b60408051918252519081900360200190f35b34801561023257600080fd5b5061023b61096e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027557818101518382015260200161025d565b50505050905090810190601f1680156102a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102bc57600080fd5b506102e9600480360360408110156102d357600080fd5b506001600160a01b038135169060200135610a04565b604080519115158252519081900360200190f35b34801561030957600080fd5b50610214610a21565b34801561031e57600080fd5b506102e96004803603606081101561033557600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b34801561036157600080fd5b50610214610b05565b34801561037657600080fd5b5061037f610b0b565b6040805160ff9092168252519081900360200190f35b3480156103a157600080fd5b506102e9600480360360408110156103b857600080fd5b506001600160a01b038135169060200135610b14565b3480156103da57600080fd5b50610214600480360360208110156103f157600080fd5b50356001600160a01b0316610b68565b34801561040d57600080fd5b506102146004803603602081101561042457600080fd5b50356001600160a01b0316610b7a565b34801561044057600080fd5b50610214610b95565b34801561045557600080fd5b5061045e610b9b565b005b34801561046c57600080fd5b5061045e610c3d565b34801561048157600080fd5b5061048a610959565b604080516001600160a01b039092168252519081900360200190f35b3480156104b257600080fd5b5061023b610ca8565b3480156104c757600080fd5b5061045e600480360360408110156104de57600080fd5b506001600160a01b038135169060200135610d09565b34801561050057600080fd5b506102e96004803603604081101561051757600080fd5b506001600160a01b038135169060200135610d6f565b34801561053957600080fd5b506102e96004803603604081101561055057600080fd5b506001600160a01b038135169060200135610ddd565b34801561057257600080fd5b50610214610e4e565b34801561058757600080fd5b506102146004803603604081101561059e57600080fd5b506001600160a01b0381358116916020013516610e54565b3480156105c257600080fd5b5061045e600480360360208110156105d957600080fd5b50356001600160a01b0316610e7f565b3480156105f557600080fd5b50610214610f77565b6000803411610654576040805162461bcd60e51b815260206004820152601a60248201527f5b4275795d20457468657265732063616e74206265207a65726f000000000000604482015290519081900360640190fd5b600c543411156106955760405162461bcd60e51b81526004018080602001828103825260378152602001806114206037913960400191505060405180910390fd5b600c546106bf6106a3610771565b336000908152601060205260409020549063ffffffff61078d16565b1115610712576040805162461bcd60e51b815260206004820152601760248201527f5b4275795d20416c726561647920707572636861736564000000000000000000604482015290519081900360640190fd5b600e54600a54111561076b576040805162461bcd60e51b815260206004820152601760248201527f5b4275795d204e6f7420656e6f75676820746f6b656e73000000000000000000604482015290519081900360640190fd5b50600190565b6000610788600b5434610f7d90919063ffffffff16565b905090565b6000828201838110156107e7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6001600160a01b0383166108355760405162461bcd60e51b81526004018080602001828103825260258152602001806115076025913960400191505060405180910390fd5b6001600160a01b03821661087a5760405162461bcd60e51b81526004018080602001828103825260238152602001806113936023913960400191505060405180910390fd5b610885838383610fd6565b6108c881604051806060016040528060268152602001611457602691396001600160a01b038616600090815260016020526040902054919063ffffffff610fdb16565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108fd908263ffffffff61078d16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000546001600160a01b031690565b600a5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a18610a11611072565b8484611076565b50600192915050565b60035490565b600080610a32610959565b6001600160a01b0316336001600160a01b03161415610a52576000610a5b565b610a5b83611162565b90506000610a6f848363ffffffff6111a616565b9050610a7b86836111e8565b610a868686836107f0565b610afc86610a92611072565b610af78760405180606001604052806028815260200161149e602891396001600160a01b038c16600090815260026020526040812090610ad0611072565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610fdb16565b611076565b50509392505050565b600b5481565b60065460ff1690565b6000610a18610b21611072565b84610af78560026000610b32611072565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61078d16565b60106020526000908152604090205481565b6001600160a01b031660009081526001602052604090205490565b600c5481565b610ba3611072565b6000546001600160a01b03908116911614610bf3576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610c45611072565b6000546001600160a01b03908116911614610c95576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b610c9d610959565b6001600160a01b0316ff5b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fa5780601f106109cf576101008083540402835291602001916109fa565b610d11611072565b6000546001600160a01b03908116911614610d61576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b610d6b82826111e8565b5050565b6000610a18610d7c611072565b84610af7856040518060600160405280602581526020016115506025913960026000610da6611072565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fdb16565b600080610de8610959565b6001600160a01b0316336001600160a01b03161415610e08576000610e11565b610e1183611162565b90506000610e25848363ffffffff6111a616565b9050610e3133836111e8565b610e43610e3c611072565b86836107f0565b506001949350505050565b600d5481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610e87611072565b6000546001600160a01b03908116911614610ed7576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b6001600160a01b038116610f1c5760405162461bcd60e51b81526004018080602001828103825260268152602001806113d86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600e5481565b600082610f8c575060006107ea565b82820282848281610f9957fe5b04146107e75760405162461bcd60e51b815260040180806020018281038252602181526020018061147d6021913960400191505060405180910390fd5b505050565b6000818484111561106a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561102f578181015183820152602001611017565b50505050905090810190601f16801561105c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b3390565b6001600160a01b0383166110bb5760405162461bcd60e51b815260040180806020018281038252602481526020018061152c6024913960400191505060405180910390fd5b6001600160a01b0382166111005760405162461bcd60e51b81526004018080602001828103825260228152602001806113fe6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008061118c612710611180600d5486610f7d90919063ffffffff16565b9063ffffffff6112f016565b90506000811161119d57600161119f565b805b9392505050565b60006107e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fdb565b6001600160a01b03821661122d5760405162461bcd60e51b81526004018080602001828103825260218152602001806114e66021913960400191505060405180910390fd5b61123982600083610fd6565b61127c816040518060600160405280602281526020016113b6602291396001600160a01b038516600090815260016020526040902054919063ffffffff610fdb16565b6001600160a01b0383166000908152600160205260409020556003546112a8908263ffffffff6111a616565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006107e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506000818361137c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561102f578181015183820152602001611017565b50600083858161138857fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735b4275795d20457468657265732073686f756c64206e6f742062652067726561746572207468616e206d6178696d756d20616d6f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da5dc32eb975478a068d35f95dac82b4e8c4fc8850bc53117f2c06c70fb9974264736f6c6343000600003345524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373
Deployed Bytecode
0x6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d7146104f4578063a9059cbb1461052d578063bed9985014610566578063dd62ed3e1461057b578063f2fde38b146105b6578063fdea8e0b146105e9576101fa565b8063715018a61461044957806383197ef0146104605780638da5cb5b1461047557806395d89b41146104a65780639dc29fac146104bb576101fa565b80632c4e722e116100fd5780632c4e722e14610355578063313ce5671461036a5780633950935114610395578063522fe98e146103ce57806370a082311461040157806370db69d614610434576101fa565b806302c7e7af146101ff57806306fdde0314610226578063095ea7b3146102b057806318160ddd146102fd57806323b872dd14610312576101fa565b366101fa576101466105fe565b151560011461015457600080fd5b600061015e610771565b600a54909150610174908263ffffffff61078d16565b600a5533600090815260106020526040902054610197908263ffffffff61078d16565b336000818152601060205260409020919091556101b6903090836107f0565b6101be610959565b6001600160a01b03166108fc349081150290604051600060405180830381858888f193505050501580156101f6573d6000803e3d6000fd5b5050005b600080fd5b34801561020b57600080fd5b50610214610968565b60408051918252519081900360200190f35b34801561023257600080fd5b5061023b61096e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027557818101518382015260200161025d565b50505050905090810190601f1680156102a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102bc57600080fd5b506102e9600480360360408110156102d357600080fd5b506001600160a01b038135169060200135610a04565b604080519115158252519081900360200190f35b34801561030957600080fd5b50610214610a21565b34801561031e57600080fd5b506102e96004803603606081101561033557600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b34801561036157600080fd5b50610214610b05565b34801561037657600080fd5b5061037f610b0b565b6040805160ff9092168252519081900360200190f35b3480156103a157600080fd5b506102e9600480360360408110156103b857600080fd5b506001600160a01b038135169060200135610b14565b3480156103da57600080fd5b50610214600480360360208110156103f157600080fd5b50356001600160a01b0316610b68565b34801561040d57600080fd5b506102146004803603602081101561042457600080fd5b50356001600160a01b0316610b7a565b34801561044057600080fd5b50610214610b95565b34801561045557600080fd5b5061045e610b9b565b005b34801561046c57600080fd5b5061045e610c3d565b34801561048157600080fd5b5061048a610959565b604080516001600160a01b039092168252519081900360200190f35b3480156104b257600080fd5b5061023b610ca8565b3480156104c757600080fd5b5061045e600480360360408110156104de57600080fd5b506001600160a01b038135169060200135610d09565b34801561050057600080fd5b506102e96004803603604081101561051757600080fd5b506001600160a01b038135169060200135610d6f565b34801561053957600080fd5b506102e96004803603604081101561055057600080fd5b506001600160a01b038135169060200135610ddd565b34801561057257600080fd5b50610214610e4e565b34801561058757600080fd5b506102146004803603604081101561059e57600080fd5b506001600160a01b0381358116916020013516610e54565b3480156105c257600080fd5b5061045e600480360360208110156105d957600080fd5b50356001600160a01b0316610e7f565b3480156105f557600080fd5b50610214610f77565b6000803411610654576040805162461bcd60e51b815260206004820152601a60248201527f5b4275795d20457468657265732063616e74206265207a65726f000000000000604482015290519081900360640190fd5b600c543411156106955760405162461bcd60e51b81526004018080602001828103825260378152602001806114206037913960400191505060405180910390fd5b600c546106bf6106a3610771565b336000908152601060205260409020549063ffffffff61078d16565b1115610712576040805162461bcd60e51b815260206004820152601760248201527f5b4275795d20416c726561647920707572636861736564000000000000000000604482015290519081900360640190fd5b600e54600a54111561076b576040805162461bcd60e51b815260206004820152601760248201527f5b4275795d204e6f7420656e6f75676820746f6b656e73000000000000000000604482015290519081900360640190fd5b50600190565b6000610788600b5434610f7d90919063ffffffff16565b905090565b6000828201838110156107e7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6001600160a01b0383166108355760405162461bcd60e51b81526004018080602001828103825260258152602001806115076025913960400191505060405180910390fd5b6001600160a01b03821661087a5760405162461bcd60e51b81526004018080602001828103825260238152602001806113936023913960400191505060405180910390fd5b610885838383610fd6565b6108c881604051806060016040528060268152602001611457602691396001600160a01b038616600090815260016020526040902054919063ffffffff610fdb16565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108fd908263ffffffff61078d16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000546001600160a01b031690565b600a5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a18610a11611072565b8484611076565b50600192915050565b60035490565b600080610a32610959565b6001600160a01b0316336001600160a01b03161415610a52576000610a5b565b610a5b83611162565b90506000610a6f848363ffffffff6111a616565b9050610a7b86836111e8565b610a868686836107f0565b610afc86610a92611072565b610af78760405180606001604052806028815260200161149e602891396001600160a01b038c16600090815260026020526040812090610ad0611072565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610fdb16565b611076565b50509392505050565b600b5481565b60065460ff1690565b6000610a18610b21611072565b84610af78560026000610b32611072565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61078d16565b60106020526000908152604090205481565b6001600160a01b031660009081526001602052604090205490565b600c5481565b610ba3611072565b6000546001600160a01b03908116911614610bf3576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610c45611072565b6000546001600160a01b03908116911614610c95576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b610c9d610959565b6001600160a01b0316ff5b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fa5780601f106109cf576101008083540402835291602001916109fa565b610d11611072565b6000546001600160a01b03908116911614610d61576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b610d6b82826111e8565b5050565b6000610a18610d7c611072565b84610af7856040518060600160405280602581526020016115506025913960026000610da6611072565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610fdb16565b600080610de8610959565b6001600160a01b0316336001600160a01b03161415610e08576000610e11565b610e1183611162565b90506000610e25848363ffffffff6111a616565b9050610e3133836111e8565b610e43610e3c611072565b86836107f0565b506001949350505050565b600d5481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610e87611072565b6000546001600160a01b03908116911614610ed7576040805162461bcd60e51b815260206004820181905260248201526000805160206114c6833981519152604482015290519081900360640190fd5b6001600160a01b038116610f1c5760405162461bcd60e51b81526004018080602001828103825260268152602001806113d86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600e5481565b600082610f8c575060006107ea565b82820282848281610f9957fe5b04146107e75760405162461bcd60e51b815260040180806020018281038252602181526020018061147d6021913960400191505060405180910390fd5b505050565b6000818484111561106a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561102f578181015183820152602001611017565b50505050905090810190601f16801561105c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b3390565b6001600160a01b0383166110bb5760405162461bcd60e51b815260040180806020018281038252602481526020018061152c6024913960400191505060405180910390fd5b6001600160a01b0382166111005760405162461bcd60e51b81526004018080602001828103825260228152602001806113fe6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008061118c612710611180600d5486610f7d90919063ffffffff16565b9063ffffffff6112f016565b90506000811161119d57600161119f565b805b9392505050565b60006107e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fdb565b6001600160a01b03821661122d5760405162461bcd60e51b81526004018080602001828103825260218152602001806114e66021913960400191505060405180910390fd5b61123982600083610fd6565b61127c816040518060600160405280602281526020016113b6602291396001600160a01b038516600090815260016020526040902054919063ffffffff610fdb16565b6001600160a01b0383166000908152600160205260409020556003546112a8908263ffffffff6111a616565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006107e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506000818361137c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561102f578181015183820152602001611017565b50600083858161138857fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735b4275795d20457468657265732073686f756c64206e6f742062652067726561746572207468616e206d6178696d756d20616d6f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da5dc32eb975478a068d35f95dac82b4e8c4fc8850bc53117f2c06c70fb9974264736f6c63430006000033
Deployed Bytecode Sourcemap
22952:3869:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23698:21;:19;:21::i;:::-;:29;;23723:4;23698:29;23690:38;;;;;;23739:18;23760:11;:9;:11::i;:::-;23789:4;;23739:32;;-1:-1:-1;23789:20:0;;23739:32;23789:20;:8;:20;:::i;:::-;23782:4;:27;23854:10;23844:21;;;;:9;:21;;;;;;:37;;23870:10;23844:37;:25;:37;:::i;:::-;23830:10;23820:21;;;;:9;:21;;;;;:61;;;;23892:48;;23910:4;;23928:10;23892:9;:48::i;:::-;23959:7;:5;:7::i;:::-;-1:-1:-1;;;;;23951:25:0;:36;23977:9;23951:36;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23951:36:0;23652:343;22952:3869;;;;;23139:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23139:19:0;;;:::i;:::-;;;;;;;;;;;;;;;;13474:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13474: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;13474:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15671:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15671:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15671:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14549:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14549:100:0;;;:::i;25265:618::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25265:618:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25265:618:0;;;;;;;;;;;;;;;;;:::i;23165:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23165:23:0;;;:::i;14401:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14401:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17226:300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17226:300:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17226:300:0;;;;;;;;:::i;23391:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23391:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23391:44:0;-1:-1:-1;;;;;23391:44:0;;:::i;14712:119::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14712:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14712:119:0;-1:-1:-1;;;;;14712:119:0;;:::i;23196:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23196:41:0;;;:::i;10825:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10825:148:0;;;:::i;:::-;;26731:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26731:87:0;;;:::i;10183:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10183:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;10183:79:0;;;;;;;;;;;;;;13676:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13676:87:0;;;:::i;24003:99::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24003:99:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24003:99:0;;;;;;;;:::i;18029:400::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18029:400:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18029:400:0;;;;;;;;:::i;24345:416::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24345:416:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24345:416:0;;;;;;;;:::i;23244:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23244:29:0;;;:::i;15323:201::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15323:201:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15323:201:0;;;;;;;;;;:::i;11128:281::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11128:281:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11128:281:0;-1:-1:-1;;;;;11128:281:0;;:::i;23281:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23281:44:0;;;:::i;26232:491::-;26285:4;26322:1;26310:9;:13;26302:52;;;;;-1:-1:-1;;;26302:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:6;;26389:9;:19;;26367:124;;;;-1:-1:-1;;;26367:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26570:6;;26527:38;26553:11;:9;:11::i;:::-;26537:10;26527:21;;;;:9;:21;;;;;;;:38;:25;:38;:::i;:::-;26526:50;;26504:123;;;;;-1:-1:-1;;;26504:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26656:7;;26648:4;;:15;;26640:51;;;;;-1:-1:-1;;;26640:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26711:4:0;26232:491;:::o;25891:99::-;25934:7;25962:19;25976:4;;25962:9;:13;;:19;;;;:::i;:::-;25954:28;;25891:99;:::o;1763:181::-;1821:7;1853:5;;;1877:6;;;;1869:46;;;;;-1:-1:-1;;;1869:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935:1;-1:-1:-1;1763:181:0;;;;;:::o;18919:610::-;-1:-1:-1;;;;;19059:20:0;;19051:70;;;;-1:-1:-1;;;19051:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19140:23:0;;19132:71;;;;-1:-1:-1;;;19132:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19216:47;19237:6;19245:9;19256:6;19216:20;:47::i;:::-;19296:108;19332:6;19296:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19296:17:0;;;;;;:9;:17;;;;;;;:108;;:21;:108;:::i;:::-;-1:-1:-1;;;;;19276:17:0;;;;;;;:9;:17;;;;;;:128;;;;19438:20;;;;;;;:32;;19463:6;19438:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;19415:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;19486:35;;;;;;;19415:20;;19486:35;;;;;;;;;;;;;18919:610;;;:::o;10183:79::-;10221:7;10248:6;-1:-1:-1;;;;;10248:6:0;10183:79;:::o;23139:19::-;;;;:::o;13474:83::-;13544:5;13537:12;;;;;;;;-1:-1:-1;;13537:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13511:13;;13537:12;;13544:5;;13537:12;;13544:5;13537:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13474:83;:::o;15671:210::-;15790:4;15812:39;15821:12;:10;:12::i;:::-;15835:7;15844:6;15812:8;:39::i;:::-;-1:-1:-1;15869:4:0;15671:210;;;;:::o;14549:100::-;14629:12;;14549:100;:::o;25265:618::-;25397:4;25414:20;25451:7;:5;:7::i;:::-;-1:-1:-1;;;;;25437:21:0;:10;-1:-1:-1;;;;;25437:21:0;;;:46;;25482:1;25437:46;;;25461:18;25472:6;25461:10;:18::i;:::-;25414:69;-1:-1:-1;25496:24:0;25523;:6;25414:69;25523:24;:10;:24;:::i;:::-;25496:51;;25560:27;25566:6;25574:12;25560:5;:27::i;:::-;25598:46;25608:6;25616:9;25627:16;25598:9;:46::i;:::-;25655:220;25678:6;25699:12;:10;:12::i;:::-;25726:138;25782:6;25726:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25726:19:0;;;;;;:11;:19;;;;;;25746:12;:10;:12::i;:::-;-1:-1:-1;;;;;25726:33:0;;;;;;;;;;;;-1:-1:-1;25726:33:0;;;:138;;:37;:138;:::i;:::-;25655:8;:220::i;:::-;25265:618;;;;;;;:::o;23165:23::-;;;;:::o;14401:83::-;14467:9;;;;14401:83;:::o;17226:300::-;17341:4;17363:133;17386:12;:10;:12::i;:::-;17413:7;17435:50;17474:10;17435:11;:25;17447:12;:10;:12::i;:::-;-1:-1:-1;;;;;17435:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17435:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;23391:44::-;;;;;;;;;;;;;:::o;14712:119::-;-1:-1:-1;;;;;14805:18:0;14778:7;14805:18;;;:9;:18;;;;;;;14712:119::o;23196:41::-;;;;:::o;10825:148::-;10405:12;:10;:12::i;:::-;10395:6;;-1:-1:-1;;;;;10395:6:0;;;:22;;;10387:67;;;;;-1:-1:-1;;;10387:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10387:67:0;;;;;;;;;;;;;;;10932:1:::1;10916:6:::0;;10895:40:::1;::::0;-1:-1:-1;;;;;10916:6:0;;::::1;::::0;10895:40:::1;::::0;10932:1;;10895:40:::1;10963:1;10946:19:::0;;-1:-1:-1;;;;;;10946:19:0::1;::::0;;10825:148::o;26731:87::-;10405:12;:10;:12::i;:::-;10395:6;;-1:-1:-1;;;;;10395:6:0;;;:22;;;10387:67;;;;;-1:-1:-1;;;10387:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10387:67:0;;;;;;;;;;;;;;;26801:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;26780:30:0::1;;13676:87:::0;13748:7;13741:14;;;;;;;;-1:-1:-1;;13741:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13715:13;;13741:14;;13748:7;;13741:14;;13748:7;13741:14;;;;;;;;;;;;;;;;;;;;;;;;24003:99;10405:12;:10;:12::i;:::-;10395:6;;-1:-1:-1;;;;;10395:6:0;;;:22;;;10387:67;;;;;-1:-1:-1;;;10387:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10387:67:0;;;;;;;;;;;;;;;24075:19:::1;24081:4;24087:6;24075:5;:19::i;:::-;24003:99:::0;;:::o;18029:400::-;18149:4;18171:228;18194:12;:10;:12::i;:::-;18221:7;18243:145;18300:15;18243:145;;;;;;;;;;;;;;;;;:11;:25;18255:12;:10;:12::i;:::-;-1:-1:-1;;;;;18243:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18243:25:0;;;:34;;;;;;;;;;;:145;;:38;:145;:::i;24345:416::-;24450:4;24472:20;24509:7;:5;:7::i;:::-;-1:-1:-1;;;;;24495:21:0;:10;-1:-1:-1;;;;;24495:21:0;;;:46;;24540:1;24495:46;;;24519:18;24530:6;24519:10;:18::i;:::-;24472:69;-1:-1:-1;24554:24:0;24581;:6;24472:69;24581:24;:10;:24;:::i;:::-;24554:51;;24635:31;24641:10;24653:12;24635:5;:31::i;:::-;24679:52;24689:12;:10;:12::i;:::-;24703:9;24714:16;24679:9;:52::i;:::-;-1:-1:-1;24749:4:0;;24345:416;-1:-1:-1;;;;24345:416:0:o;23244:29::-;;;;:::o;15323:201::-;-1:-1:-1;;;;;15489:18:0;;;15457:7;15489:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15323:201::o;11128:281::-;10405:12;:10;:12::i;:::-;10395:6;;-1:-1:-1;;;;;10395:6:0;;;:22;;;10387:67;;;;;-1:-1:-1;;;10387:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10387:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11231:22:0;::::1;11209:110;;;;-1:-1:-1::0;;;11209:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11356:6;::::0;;11335:38:::1;::::0;-1:-1:-1;;;;;11335:38:0;;::::1;::::0;11356:6;::::1;::::0;11335:38:::1;::::0;::::1;11384:6;:17:::0;;-1:-1:-1;;;;;;11384:17:0::1;-1:-1:-1::0;;;;;11384:17:0;;;::::1;::::0;;;::::1;::::0;;11128:281::o;23281:44::-;;;;:::o;3151:471::-;3209:7;3454:6;3450:47;;-1:-1:-1;3484:1:0;3477:8;;3450:47;3521:5;;;3525:1;3521;:5;:1;3545:5;;;;;:10;3537:56;;;;-1:-1:-1;;;3537:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22820:125;;;;:::o;2666:226::-;2786:7;2822:12;2814:6;;;;2806:29;;;;-1:-1:-1;;;2806: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;2806:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2858:5:0;;;2666:226::o;569:106::-;657:10;569:106;:::o;21415:380::-;-1:-1:-1;;;;;21551:19:0;;21543:68;;;;-1:-1:-1;;;21543:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21630:21:0;;21622:68;;;;-1:-1:-1;;;21622:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21703:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21755:32;;;;;;;;;;;;;;;;;21415:380;;;:::o;25998:226::-;26056:7;26076:19;26098:31;26123:5;26098:20;26109:8;;26098:6;:10;;:20;;;;:::i;:::-;:24;:31;:24;:31;:::i;:::-;26076:53;;26168:1;26154:11;:15;:33;;26186:1;26154:33;;;26172:11;26154:33;26140:47;25998:226;-1:-1:-1;;;25998:226:0:o;2227:136::-;2285:7;2312:43;2316:1;2319;2312:43;;;;;;;;;;;;;;;;;:3;:43::i;20522:455::-;-1:-1:-1;;;;;20606:21:0;;20598:67;;;;-1:-1:-1;;;20598:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20678:49;20699:7;20716:1;20720:6;20678:20;:49::i;:::-;20761:105;20798:6;20761:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20761:18:0;;;;;;:9;:18;;;;;;;:105;;:22;:105;:::i;:::-;-1:-1:-1;;;;;20740:18:0;;;;;;:9;:18;;;;;:126;20892:12;;:24;;20909:6;20892:24;:16;:24;:::i;:::-;20877:12;:39;20932:37;;;;;;;;20958:1;;-1:-1:-1;;;;;20932:37:0;;;;;;;;;;;;20522:455;;:::o;4098:132::-;4156:7;4183:39;4187:1;4190;4183:39;;;;;;;;;;;;;;;;;4846:7;4881:12;4874:5;4866:28;;;;-1:-1:-1;;;4866:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4866:28:0;;4905:9;4921:1;4917;:5;;;;;;;4726:312;-1:-1:-1;;;;;4726:312:0:o
Swarm Source
ipfs://da5dc32eb975478a068d35f95dac82b4e8c4fc8850bc53117f2c06c70fb99742
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.