More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 583 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Increase Allowan... | 44791304 | 18 days ago | IN | 0 BNB | 0.00023403 | ||||
Mint | 44791126 | 18 days ago | IN | 0 BNB | 0.00011936 | ||||
Initialize | 44791125 | 18 days ago | IN | 0 BNB | 0.00013191 | ||||
Initialize | 44791124 | 18 days ago | IN | 0 BNB | 0.00013203 | ||||
0x2bf2fd69 | 44790168 | 18 days ago | IN | 0 BNB | 0.00010896 | ||||
Change Admin | 44755889 | 19 days ago | IN | 0 BNB | 0.00010829 | ||||
Transfer Ownersh... | 44411628 | 31 days ago | IN | 0 BNB | 0.00003606 | ||||
Transfer Ownersh... | 44411605 | 31 days ago | IN | 0 BNB | 0.00003606 | ||||
Mint | 44411481 | 31 days ago | IN | 0 BNB | 0.00003571 | ||||
Mint | 44411403 | 31 days ago | IN | 0 BNB | 0.0000357 | ||||
Transfer | 42137222 | 110 days ago | IN | 0 BNB | 0.00007426 | ||||
Transfer | 42137142 | 110 days ago | IN | 0 BNB | 0.00007426 | ||||
Transfer | 42137124 | 110 days ago | IN | 0 BNB | 0.00007426 | ||||
Transfer | 42137095 | 110 days ago | IN | 0 BNB | 0.0000744 | ||||
Approve | 41919877 | 118 days ago | IN | 0 BNB | 0.00013861 | ||||
Approve | 41405916 | 136 days ago | IN | 0 BNB | 0.00002646 | ||||
Approve | 41405667 | 136 days ago | IN | 0 BNB | 0.00004636 | ||||
Transfer Ownersh... | 41094240 | 147 days ago | IN | 0 BNB | 0.00002404 | ||||
Mint | 41094225 | 147 days ago | IN | 0 BNB | 0.00002383 | ||||
Initialize | 41094206 | 147 days ago | IN | 0 BNB | 0.00002638 | ||||
Approve | 40006041 | 184 days ago | IN | 0 BNB | 0.00008728 | ||||
Approve | 40005992 | 184 days ago | IN | 0 BNB | 0.00013858 | ||||
Approve | 39369258 | 207 days ago | IN | 0 BNB | 0.00013858 | ||||
Approve | 39351357 | 207 days ago | IN | 0 BNB | 0.00013858 | ||||
Approve | 38860626 | 224 days ago | IN | 0 BNB | 0.00002629 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471334 | 1393 days ago | 0 BNB | ||||
5471332 | 1393 days ago | 0 BNB | ||||
5471332 | 1393 days ago | 0 BNB | ||||
5471332 | 1393 days ago | 0 BNB | ||||
5471331 | 1393 days ago | 0 BNB | ||||
5471331 | 1393 days ago | 0 BNB | ||||
5471329 | 1393 days ago | 0 BNB | ||||
5471329 | 1393 days ago | 0 BNB | ||||
5471328 | 1393 days ago | 0 BNB | ||||
5471328 | 1393 days ago | 0 BNB | ||||
5471328 | 1393 days ago | 0 BNB | ||||
5471326 | 1393 days ago | 0 BNB | ||||
5471326 | 1393 days ago | 0 BNB | ||||
5471326 | 1393 days ago | 0 BNB | ||||
5471326 | 1393 days ago | 0 BNB | ||||
5471326 | 1393 days ago | 0 BNB |
Loading...
Loading
Contract Name:
BEP20TokenImplementation
Compiler Version
v0.6.4+commit.1dca32f3
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2020-09-29 */ // File: contracts/IBEP20.sol pragma solidity ^0.6.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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); } // File: openzeppelin-solidity/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT 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 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; } } // File: openzeppelin-solidity/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @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; } } // File: openzeppelin-solidity/contracts/proxy/Initializable.sol // SPDX-License-Identifier: MIT pragma solidity >=0.4.24 <0.7.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; // solhint-disable-next-line no-inline-assembly assembly { cs := extcodesize(self) } return cs == 0; } } // File: contracts/BEP20TokenImplementation.sol pragma solidity ^0.6.0; contract BEP20TokenImplementation is Context, IBEP20, Initializable { using SafeMath for uint256; 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 private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); bool private _mintable; constructor() public { } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev sets initials supply and the owner */ function initialize(string memory name, string memory symbol, uint8 decimals, uint256 amount, bool mintable, address owner) public initializer { _owner = owner; _name = name; _symbol = symbol; _decimals = decimals; _mintable = mintable; _mint(owner, amount); } /** * @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 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 onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Returns if the token is mintable or not */ function mintable() external view returns (bool) { return _mintable; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return _owner; } /** * @dev Returns the token decimals. */ function decimals() external override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external override view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external override view returns (string memory) { return _name; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() external override view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) external override view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) external override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * 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) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: 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 {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner * - `_mintable` must be true */ function mint(uint256 amount) public onlyOwner returns (bool) { require(_mintable, "this token is not mintable"); _mint(_msgSender(), amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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 { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: 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 { require(account != address(0), "BEP20: mint to the zero address"); _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 { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: 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 { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance")); } }
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":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"address","name":"owner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506113ca806100206000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610310578063a9059cbb1461033c578063dd62ed3e14610368578063ef3ebcb814610396578063f2fde38b146104e257610116565b8063715018a6146102bd578063893d20e8146102c757806395d89b41146102eb578063a0712d68146102f357610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806342966c68146102725780634bf365df1461028f57806370a082311461029757610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b610123610508565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561059f565b604080519115158252519081900360200190f35b6101e06105bc565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356105c2565b61023061064f565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610658565b6101c46004803603602081101561028857600080fd5b50356106ac565b6101c46106c7565b6101e0600480360360208110156102ad57600080fd5b50356001600160a01b03166106d7565b6102c56106f2565b005b6102cf6107b1565b604080516001600160a01b039092168252519081900360200190f35b6101236107c5565b6101c46004803603602081101561030957600080fd5b5035610826565b6101c46004803603604081101561032657600080fd5b506001600160a01b038135169060200135610906565b6101c46004803603604081101561035257600080fd5b506001600160a01b038135169060200135610974565b6101e06004803603604081101561037e57600080fd5b506001600160a01b0381358116916020013516610988565b6102c5600480360360c08110156103ac57600080fd5b8101906020810181356401000000008111156103c757600080fd5b8201836020820111156103d957600080fd5b803590602001918460018302840111640100000000831117156103fb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561044e57600080fd5b82018360208201111561046057600080fd5b8035906020019184600183028401116401000000008311171561048257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff169250506020810135906040810135151590606001356001600160a01b03166109b3565b6102c5600480360360208110156104f857600080fd5b50356001600160a01b0316610acd565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b505050505090505b90565b60006105b36105ac610be8565b8484610bec565b50600192915050565b60035490565b60006105cf848484610cd8565b610645846105db610be8565b6106408560405180606001604052806028815260200161126c602891396001600160a01b038a16600090815260026020526040812090610619610be8565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610e3616565b610bec565b5060019392505050565b60065460ff1690565b60006105b3610665610be8565b846106408560026000610676610be8565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ecd16565b60006106bf6106b9610be8565b83610f2e565b506001919050565b600654600160a81b900460ff1690565b6001600160a01b031660009081526001602052604090205490565b6106fa610be8565b60065461010090046001600160a01b03908116911614610761576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b60065461010090046001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105945780601f1061056957610100808354040283529160200191610594565b6000610830610be8565b60065461010090046001600160a01b03908116911614610897576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600654600160a81b900460ff166108f5576040805162461bcd60e51b815260206004820152601a60248201527f7468697320746f6b656e206973206e6f74206d696e7461626c65000000000000604482015290519081900360640190fd5b6106bf610900610be8565b8361102a565b60006105b3610913610be8565b846106408560405180606001604052806025815260200161130b602591396002600061093d610be8565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610e3616565b60006105b3610981610be8565b8484610cd8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600054610100900460ff16806109cc57506109cc61111c565b806109da575060005460ff16155b610a155760405162461bcd60e51b815260040180806020018281038252602e815260200180611294602e913960400191505060405180910390fd5b600054610100900460ff16158015610a40576000805460ff1961ff0019909116610100171660011790555b60068054610100600160a81b0319166101006001600160a01b038516021790558651610a739060049060208a0190611164565b508551610a87906005906020890190611164565b506006805460ff191660ff87161760ff60a81b1916600160a81b85151502179055610ab2828561102a565b8015610ac4576000805461ff00191690555b50505050505050565b610ad5610be8565b60065461010090046001600160a01b03908116911614610b3c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610b815760405162461bcd60e51b81526004018080602001828103825260268152602001806112466026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316610c315760405162461bcd60e51b81526004018080602001828103825260248152602001806112226024913960400191505060405180910390fd5b6001600160a01b038216610c765760405162461bcd60e51b81526004018080602001828103825260228152602001806113736022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d1d5760405162461bcd60e51b81526004018080602001828103825260258152602001806111fd6025913960400191505060405180910390fd5b6001600160a01b038216610d625760405162461bcd60e51b81526004018080602001828103825260238152602001806112e86023913960400191505060405180910390fd5b610da5816040518060600160405280602681526020016112c2602691396001600160a01b038616600090815260016020526040902054919063ffffffff610e3616565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610dda908263ffffffff610ecd16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ec55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e8a578181015183820152602001610e72565b50505050905090810190601f168015610eb75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f27576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610f735760405162461bcd60e51b81526004018080602001828103825260218152602001806113306021913960400191505060405180910390fd5b610fb681604051806060016040528060228152602001611351602291396001600160a01b038516600090815260016020526040902054919063ffffffff610e3616565b6001600160a01b038316600090815260016020526040902055600354610fe2908263ffffffff61112216565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216611085576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354611098908263ffffffff610ecd16565b6003556001600160a01b0382166000908152600160205260409020546110c4908263ffffffff610ecd16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b303b1590565b6000610f2783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e36565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106111a557805160ff19168380011785556111d2565b828001600101855582156111d2579182015b828111156111d25782518255916020019190600101906111b7565b506111de9291506111e2565b5090565b61059c91905b808211156111de57600081556001016111e856fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656442455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122079ec087c3324e340dfa24a2a4165bf4bb91f00f90d16be07217ae12ea13b4d0b64736f6c63430006040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610310578063a9059cbb1461033c578063dd62ed3e14610368578063ef3ebcb814610396578063f2fde38b146104e257610116565b8063715018a6146102bd578063893d20e8146102c757806395d89b41146102eb578063a0712d68146102f357610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806342966c68146102725780634bf365df1461028f57806370a082311461029757610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b610123610508565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561059f565b604080519115158252519081900360200190f35b6101e06105bc565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356105c2565b61023061064f565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610658565b6101c46004803603602081101561028857600080fd5b50356106ac565b6101c46106c7565b6101e0600480360360208110156102ad57600080fd5b50356001600160a01b03166106d7565b6102c56106f2565b005b6102cf6107b1565b604080516001600160a01b039092168252519081900360200190f35b6101236107c5565b6101c46004803603602081101561030957600080fd5b5035610826565b6101c46004803603604081101561032657600080fd5b506001600160a01b038135169060200135610906565b6101c46004803603604081101561035257600080fd5b506001600160a01b038135169060200135610974565b6101e06004803603604081101561037e57600080fd5b506001600160a01b0381358116916020013516610988565b6102c5600480360360c08110156103ac57600080fd5b8101906020810181356401000000008111156103c757600080fd5b8201836020820111156103d957600080fd5b803590602001918460018302840111640100000000831117156103fb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561044e57600080fd5b82018360208201111561046057600080fd5b8035906020019184600183028401116401000000008311171561048257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff169250506020810135906040810135151590606001356001600160a01b03166109b3565b6102c5600480360360208110156104f857600080fd5b50356001600160a01b0316610acd565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b505050505090505b90565b60006105b36105ac610be8565b8484610bec565b50600192915050565b60035490565b60006105cf848484610cd8565b610645846105db610be8565b6106408560405180606001604052806028815260200161126c602891396001600160a01b038a16600090815260026020526040812090610619610be8565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610e3616565b610bec565b5060019392505050565b60065460ff1690565b60006105b3610665610be8565b846106408560026000610676610be8565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ecd16565b60006106bf6106b9610be8565b83610f2e565b506001919050565b600654600160a81b900460ff1690565b6001600160a01b031660009081526001602052604090205490565b6106fa610be8565b60065461010090046001600160a01b03908116911614610761576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b60065461010090046001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105945780601f1061056957610100808354040283529160200191610594565b6000610830610be8565b60065461010090046001600160a01b03908116911614610897576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600654600160a81b900460ff166108f5576040805162461bcd60e51b815260206004820152601a60248201527f7468697320746f6b656e206973206e6f74206d696e7461626c65000000000000604482015290519081900360640190fd5b6106bf610900610be8565b8361102a565b60006105b3610913610be8565b846106408560405180606001604052806025815260200161130b602591396002600061093d610be8565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610e3616565b60006105b3610981610be8565b8484610cd8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600054610100900460ff16806109cc57506109cc61111c565b806109da575060005460ff16155b610a155760405162461bcd60e51b815260040180806020018281038252602e815260200180611294602e913960400191505060405180910390fd5b600054610100900460ff16158015610a40576000805460ff1961ff0019909116610100171660011790555b60068054610100600160a81b0319166101006001600160a01b038516021790558651610a739060049060208a0190611164565b508551610a87906005906020890190611164565b506006805460ff191660ff87161760ff60a81b1916600160a81b85151502179055610ab2828561102a565b8015610ac4576000805461ff00191690555b50505050505050565b610ad5610be8565b60065461010090046001600160a01b03908116911614610b3c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610b815760405162461bcd60e51b81526004018080602001828103825260268152602001806112466026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316610c315760405162461bcd60e51b81526004018080602001828103825260248152602001806112226024913960400191505060405180910390fd5b6001600160a01b038216610c765760405162461bcd60e51b81526004018080602001828103825260228152602001806113736022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d1d5760405162461bcd60e51b81526004018080602001828103825260258152602001806111fd6025913960400191505060405180910390fd5b6001600160a01b038216610d625760405162461bcd60e51b81526004018080602001828103825260238152602001806112e86023913960400191505060405180910390fd5b610da5816040518060600160405280602681526020016112c2602691396001600160a01b038616600090815260016020526040902054919063ffffffff610e3616565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610dda908263ffffffff610ecd16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ec55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e8a578181015183820152602001610e72565b50505050905090810190601f168015610eb75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f27576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610f735760405162461bcd60e51b81526004018080602001828103825260218152602001806113306021913960400191505060405180910390fd5b610fb681604051806060016040528060228152602001611351602291396001600160a01b038516600090815260016020526040902054919063ffffffff610e3616565b6001600160a01b038316600090815260016020526040902055600354610fe2908263ffffffff61112216565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216611085576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354611098908263ffffffff610ecd16565b6003556001600160a01b0382166000908152600160205260409020546110c4908263ffffffff610ecd16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b303b1590565b6000610f2783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e36565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106111a557805160ff19168380011785556111d2565b828001600101855582156111d2579182015b828111156111d25782518255916020019190600101906111b7565b506111de9291506111e2565b5090565b61059c91905b808211156111de57600081556001016111e856fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656442455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122079ec087c3324e340dfa24a2a4165bf4bb91f00f90d16be07217ae12ea13b4d0b64736f6c63430006040033
Deployed Bytecode Sourcemap
12296:10320:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12296:10320:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;15029:94: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;15029:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16206:163;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16206:163:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15187:102;;;:::i;:::-;;;;;;;;;;;;;;;;16840:315;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16840:315:0;;;;;;;;;;;;;;;;;:::i;14711:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17563:210;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17563:210:0;;;;;;;;:::i;19067:120::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19067:120:0;;:::i;14399:84::-;;;:::i;15351:121::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15351:121:0;-1:-1:-1;;;;;15351:121:0;;:::i;13789:140::-;;;:::i;:::-;;14551:93;;;:::i;:::-;;;;-1:-1:-1;;;;;14551:93:0;;;;;;;;;;;;;;14870:98;;;:::i;18789:189::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18789:189:0;;:::i;18275:261::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18275:261:0;;;;;;;;:::i;15684:169::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15684:169:0;;;;;;;;:::i;15915:145::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15915:145:0;;;;;;;;;;:::i;13125:319::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;13125:319:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;13125:319:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;13125:319:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;13125:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;13125:319:0;;;;;;;;-1:-1:-1;13125:319:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;13125:319:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;13125:319:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;13125:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;13125:319:0;;-1:-1:-1;;;13125:319:0;;;;;-1:-1:-1;;13125:319:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13125:319:0;;:::i;14084:236::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14084:236:0;-1:-1:-1;;;;;14084:236:0;;:::i;15029:94::-;15110:5;15103:12;;;;;;;;-1:-1:-1;;15103:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15077:13;;15103:12;;15110:5;;15103:12;;15110:5;15103:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15029:94;;:::o;16206:163::-;16283:4;16300:39;16309:12;:10;:12::i;:::-;16323:7;16332:6;16300:8;:39::i;:::-;-1:-1:-1;16357:4:0;16206:163;;;;:::o;15187:102::-;15269:12;;15187:102;:::o;16840:315::-;16940:4;16957:36;16967:6;16975:9;16986:6;16957:9;:36::i;:::-;17004:121;17013:6;17021:12;:10;:12::i;:::-;17035:89;17073:6;17035:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17035:19:0;;;;;;:11;:19;;;;;;17055:12;:10;:12::i;:::-;-1:-1:-1;;;;;17035:33:0;;;;;;;;;;;;-1:-1:-1;17035:33:0;;;:89;;:37;:89;:::i;:::-;17004:8;:121::i;:::-;-1:-1:-1;17143:4:0;16840:315;;;;;:::o;14711:94::-;14788:9;;;;14711:94;:::o;17563:210::-;17643:4;17660:83;17669:12;:10;:12::i;:::-;17683:7;17692:50;17731:10;17692:11;:25;17704:12;:10;:12::i;:::-;-1:-1:-1;;;;;17692:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17692:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;19067:120::-;19113:4;19130:27;19136:12;:10;:12::i;:::-;19150:6;19130:5;:27::i;:::-;-1:-1:-1;19175:4:0;19067:120;;;:::o;14399:84::-;14466:9;;-1:-1:-1;;;14466:9:0;;;;;14399:84::o;15351:121::-;-1:-1:-1;;;;;15446:18:0;15419:7;15446:18;;;:9;:18;;;;;;;15351:121::o;13789:140::-;12982:12;:10;:12::i;:::-;12972:6;;;;;-1:-1:-1;;;;;12972:6:0;;;:22;;;12964:67;;;;;-1:-1:-1;;;12964:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13872:6:::1;::::0;13851:40:::1;::::0;13888:1:::1;::::0;13872:6:::1;::::0;::::1;-1:-1:-1::0;;;;;13872:6:0::1;::::0;13851:40:::1;::::0;13888:1;;13851:40:::1;13902:6;:19:::0;;-1:-1:-1;;;;;;13902:19:0::1;::::0;;13789:140::o;14551:93::-;14630:6;;;;;-1:-1:-1;;;;;14630:6:0;;14551:93::o;14870:98::-;14953:7;14946:14;;;;;;;;-1:-1:-1;;14946:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14920:13;;14946:14;;14953:7;;14946:14;;14953:7;14946:14;;;;;;;;;;;;;;;;;;;;;;;;18789:189;18845:4;12982:12;:10;:12::i;:::-;12972:6;;;;;-1:-1:-1;;;;;12972:6:0;;;:22;;;12964:67;;;;;-1:-1:-1;;;12964:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18870:9:::1;::::0;-1:-1:-1;;;18870:9:0;::::1;;;18862:48;;;::::0;;-1:-1:-1;;;18862:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;18921:27;18927:12;:10;:12::i;:::-;18941:6;18921:5;:27::i;18275:261::-:0;18360:4;18377:129;18386:12;:10;:12::i;:::-;18400:7;18409:96;18448:15;18409:96;;;;;;;;;;;;;;;;;:11;:25;18421:12;:10;:12::i;:::-;-1:-1:-1;;;;;18409:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18409:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;15684:169::-;15764:4;15781:42;15791:12;:10;:12::i;:::-;15805:9;15816:6;15781:9;:42::i;15915:145::-;-1:-1:-1;;;;;16025:18:0;;;15998:7;16025:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15915:145::o;13125:319::-;11143:13;;;;;;;;:33;;;11160:16;:14;:16::i;:::-;11143:50;;;-1:-1:-1;11181:12:0;;;;11180:13;11143:50;11135:109;;;;-1:-1:-1;;;11135:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11257:19;11280:13;;;;;;11279:14;11304:101;;;;11339:13;:20;;-1:-1:-1;;;;11339:20:0;;;;;11374:19;11355:4;11374:19;;;11304:101;13279:6:::1;:14:::0;;-1:-1:-1;;;;;;13279:14:0::1;;-1:-1:-1::0;;;;;13279:14:0;::::1;;;::::0;;13304:12;;::::1;::::0;:5:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;13327:16:0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;13354:9:0::1;:20:::0;;-1:-1:-1;;13354:20:0::1;;::::0;::::1;;-1:-1:-1::0;;;;13385:20:0::1;-1:-1:-1::0;;;13385:20:0;::::1;;;;::::0;;13416::::1;13422:5:::0;13429:6;13416:5:::1;:20::i;:::-;11435:14:::0;11431:68;;;11482:5;11466:21;;-1:-1:-1;;11466:21:0;;;11431:68;13125:319;;;;;;;:::o;14084:236::-;12982:12;:10;:12::i;:::-;12972:6;;;;;-1:-1:-1;;;;;12972:6:0;;;:22;;;12964:67;;;;;-1:-1:-1;;;12964:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14165:22:0;::::1;14157:73;;;;-1:-1:-1::0;;;14157:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14267:6;::::0;14246:38:::1;::::0;-1:-1:-1;;;;;14246:38:0;;::::1;::::0;14267:6:::1;::::0;::::1;;::::0;14246:38:::1;::::0;;;::::1;14295:6;:17:::0;;-1:-1:-1;;;;;14295:17:0;;::::1;;;-1:-1:-1::0;;;;;;14295:17:0;;::::1;::::0;;;::::1;::::0;;14084:236::o;3838:106::-;3926:10;3838:106;:::o;21857:338::-;-1:-1:-1;;;;;21951:19:0;;21943:68;;;;-1:-1:-1;;;21943:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22030:21:0;;22022:68;;;;-1:-1:-1;;;22022:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22103:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22155:32;;;;;;;;;;;;;;;;;21857:338;;;:::o;19677:471::-;-1:-1:-1;;;;;19775:20:0;;19767:70;;;;-1:-1:-1;;;19767:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19856:23:0;;19848:71;;;;-1:-1:-1;;;19848:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19952;19974:6;19952:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19952:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;19932:17:0;;;;;;;:9;:17;;;;;;:91;;;;20057:20;;;;;;;:32;;20082:6;20057:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;20034:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;20105:35;;;;;;;20034:20;;20105:35;;;;;;;;;;;;;19677:471;;;:::o;6059:192::-;6145:7;6181:12;6173:6;;;;6165:29;;;;-1:-1:-1;;;6165: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;6165:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6217:5:0;;;6059:192::o;5156:181::-;5214:7;5246:5;;;5270:6;;;;5262:46;;;;;-1:-1:-1;;;5262:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5328:1;5156:181;-1:-1:-1;;;5156:181:0:o;21069:348::-;-1:-1:-1;;;;;21145:21:0;;21137:67;;;;-1:-1:-1;;;21137:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21238:68;21261:6;21238:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21238:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;21217:18:0;;;;;;:9;:18;;;;;:89;21332:12;;:24;;21349:6;21332:24;:16;:24;:::i;:::-;21317:12;:39;21372:37;;;;;;;;21398:1;;-1:-1:-1;;;;;21372:37:0;;;;;;;;;;;;21069:348;;:::o;20429:308::-;-1:-1:-1;;;;;20505:21:0;;20497:65;;;;;-1:-1:-1;;;20497:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20590:12;;:24;;20607:6;20590:24;:16;:24;:::i;:::-;20575:12;:39;-1:-1:-1;;;;;20646:18:0;;;;;;:9;:18;;;;;;:30;;20669:6;20646:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;20625:18:0;;;;;;:9;:18;;;;;;;;:51;;;;20692:37;;;;;;;20625:18;;;;20692:37;;;;;;;;;;20429:308;;:::o;11599:604::-;12041:4;12152:17;12188:7;11599:604;:::o;5620:136::-;5678:7;5705:43;5709:1;5712;5705:43;;;;;;;;;;;;;;;;;:3;:43::i;12296:10320::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12296:10320:0;;;-1:-1:-1;12296:10320:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://79ec087c3324e340dfa24a2a4165bf4bb91f00f90d16be07217ae12ea13b4d0b
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.