Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Dynamite
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-16 */ // File: @openzeppelin/contracts-ethereum-package/contracts/Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ 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 use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been 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; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol 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. */ contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } 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; } uint256[50] private __gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @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); } // File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol 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) { // Solidity only automatically asserts when dividing by 0 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/contracts-ethereum-package/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @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 {ERC20MinterPauser}. * * 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 ERC20UpgradeSafe is Initializable, ContextUpgradeSafe, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @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. */ function __ERC20_init(string memory name, string memory symbol) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name, symbol); } function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer { _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 view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } uint256[44] private __gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @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 OwnableUpgradeSafe is Initializable, ContextUpgradeSafe { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { 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; } uint256[49] private __gap; } // File: contracts/Dynamite.sol pragma solidity ^0.6.0; contract Dynamite is ERC20UpgradeSafe, OwnableUpgradeSafe { address[] public canTransfer; function initialize() public initializer { canTransfer.push(msg.sender); ERC20UpgradeSafe.__ERC20_init("Dynamite", "DNMT"); OwnableUpgradeSafe.__Ownable_init(); } modifier Transferable { require(IsTransferable(msg.sender), "Dynamite: is not allowed"); _; } function mint(address _to, uint256 _amount) public Transferable { _mint(_to, _amount); } function burnFrom(address _from, uint256 _amount) public Transferable { _burn(_from, _amount); } function transfer(address recipient, uint256 amount) public Transferable virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { return true; } /* Read functions */ function IsTransferable(address recipient) public view returns (bool) { bool Transferable = false; for (uint i = 0; i < canTransfer.length; i++) { if (canTransfer[i] == recipient) { Transferable = true; i = canTransfer.length; } } return Transferable; } /* Owner methods */ function addCanTransfer(address account) public onlyOwner { canTransfer.push(account); } function removeCanTransfer(address account) public onlyOwner { address[] memory OldcanTransfer = canTransfer; delete canTransfer; for (uint256 i = 0; i < OldcanTransfer.length; i++) { if (OldcanTransfer[i] != account) { canTransfer.push(OldcanTransfer[i]); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"recipient","type":"address"}],"name":"IsTransferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addCanTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"canTransfer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeCanTransfer","outputs":[],"stateMutability":"nonpayable","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
608060405234801561001057600080fd5b506129b8806100206000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610566578063a457c2d7146105e9578063a9059cbb1461064d578063db973986146106b1578063dd62ed3e1461070b578063f2fde38b1461078357610137565b806370a0823114610478578063715018a6146104d057806379cc6790146104da5780638129fc1c146105285780638da5cb5b1461053257610137565b8063313ce567116100ff578063313ce56714610309578063395093511461032a57806340c10f191461038e5780634d4f6ea9146103dc5780636ef8b5411461043457610137565b806306fdde031461013c578063095ea7b3146101bf578063101aab781461022357806318160ddd1461026757806323b872dd14610285575b600080fd5b6101446107c7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610869565b60405180821515815260200191505060405180910390f35b6102656004803603602081101561023957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610887565b005b61026f6109b7565b6040518082815260200191505060405180910390f35b6102f16004803603606081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109c1565b60405180821515815260200191505060405180910390f35b6103116109ce565b604051808260ff16815260200191505060405180910390f35b6103766004803603604081101561034057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e5565b60405180821515815260200191505060405180910390f35b6103da600480360360408110156103a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a98565b005b610408600480360360208110156103f257600080fd5b8101908080359060200190929190505050610b21565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b5d565b005b6104ba6004803603602081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d9b565b6040518082815260200191505060405180910390f35b6104d8610de4565b005b610526600480360360408110156104f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f6f565b005b610530610ff8565b005b61053a6111d5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61056e6111ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105ae578082015181840152602081019050610593565b50505050905090810190601f1680156105db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610635600480360360408110156105ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112a1565b60405180821515815260200191505060405180910390f35b6106996004803603604081101561066357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061136e565b60405180821515815260200191505060405180910390f35b6106f3600480360360208110156106c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611407565b60405180821515815260200191505060405180910390f35b61076d6004803603604081101561072157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114ad565b6040518082815260200191505060405180910390f35b6107c56004803603602081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611534565b005b606060688054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b600061087d610876611744565b848461174c565b6001905092915050565b61088f611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60c9819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000606754905090565b6000600190509392505050565b6000606a60009054906101000a900460ff16905090565b6000610a8e6109f2611744565b84610a898560666000610a03611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194390919063ffffffff16565b61174c565b6001905092915050565b610aa133611407565b610b13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f44796e616d6974653a206973206e6f7420616c6c6f776564000000000000000081525060200191505060405180910390fd5b610b1d82826119cb565b5050565b60c98181548110610b2e57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b65611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b606060c9805480602002602001604051908101604052809291908181526020018280548015610cab57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c61575b5050505050905060c96000610cc09190612754565b60005b8151811015610d96578273ffffffffffffffffffffffffffffffffffffffff16828281518110610cef57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614610d895760c9828281518110610d2057fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8080600101915050610cc3565b505050565b6000606560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dec611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610f7833611407565b610fea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f44796e616d6974653a206973206e6f7420616c6c6f776564000000000000000081525060200191505060405180910390fd5b610ff48282611b94565b5050565b600060019054906101000a900460ff16806110175750611016611d5a565b5b8061102d575060008054906101000a900460ff16155b611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff1615905080156110d2576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b60c9339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111a96040518060400160405280600881526020017f44796e616d6974650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444e4d5400000000000000000000000000000000000000000000000000000000815250611d71565b6111b1611e83565b80156111d25760008060016101000a81548160ff0219169083151502179055505b50565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060698054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112975780601f1061126c57610100808354040283529160200191611297565b820191906000526020600020905b81548152906001019060200180831161127a57829003601f168201915b5050505050905090565b60006113646112ae611744565b8461135f8560405180606001604052806025815260200161295e60259139606660006112d8611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f919092919063ffffffff16565b61174c565b6001905092915050565b600061137933611407565b6113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f44796e616d6974653a206973206e6f7420616c6c6f776564000000000000000081525060200191505060405180910390fd5b6113fd6113f6611744565b8484612051565b6001905092915050565b6000806000905060005b60c9805490508110156114a3578373ffffffffffffffffffffffffffffffffffffffff1660c9828154811061144257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611496576001915060c98054905090505b8080600101915050611411565b5080915050919050565b6000606660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61153c611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611684576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128586026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061293a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061287e6022913960400191505060405180910390fd5b80606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808284019050838110156119c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611a7a60008383612316565b611a8f8160675461194390919063ffffffff16565b606781905550611ae781606560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194390919063ffffffff16565b606560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128f46021913960400191505060405180910390fd5b611c2682600083612316565b611c928160405180606001604052806022815260200161283660229139606560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f919092919063ffffffff16565b606560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cea8160675461231b90919063ffffffff16565b606781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000803090506000813b9050600081149250505090565b600060019054906101000a900460ff1680611d905750611d8f611d5a565b5b80611da6575060008054906101000a900460ff16155b611dfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611e4b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611e53612365565b611e5d8383612463565b8015611e7e5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680611ea25750611ea1611d5a565b5b80611eb8575060008054906101000a900460ff16155b611f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611f5d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611f65612365565b611f6d6125ad565b8015611f8e5760008060016101000a81548160ff0219169083151502179055505b50565b600083831115829061203e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612003578082015181840152602081019050611fe8565b50505050905090810190601f1680156120305780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129156025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128136023913960400191505060405180910390fd5b612168838383612316565b6121d4816040518060600160405280602681526020016128a060269139606560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f919092919063ffffffff16565b606560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061226981606560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194390919063ffffffff16565b606560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b600061235d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f91565b905092915050565b600060019054906101000a900460ff16806123845750612383611d5a565b5b8061239a575060008054906101000a900460ff16155b6123ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561243f576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156124605760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806124825750612481611d5a565b5b80612498575060008054906101000a900460ff16155b6124ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561253d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260689080519060200190612553929190612775565b50816069908051906020019061256a929190612775565b506012606a60006101000a81548160ff021916908360ff16021790555080156125a85760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff16806125cc57506125cb611d5a565b5b806125e2575060008054906101000a900460ff16155b612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612687576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6000612691611744565b905080609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080156127515760008060016101000a81548160ff0219169083151502179055505b50565b508054600082559060005260206000209081019061277291906127f5565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127b657805160ff19168380011785556127e4565b828001600101855582156127e4579182015b828111156127e35782518255916020019190600101906127c8565b5b5090506127f191906127f5565b5090565b5b8082111561280e5760008160009055506001016127f6565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d7e53a466921e64f3e77dd7c0a0ada621bd17d69057c02d08a2c341da47fc42e64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610566578063a457c2d7146105e9578063a9059cbb1461064d578063db973986146106b1578063dd62ed3e1461070b578063f2fde38b1461078357610137565b806370a0823114610478578063715018a6146104d057806379cc6790146104da5780638129fc1c146105285780638da5cb5b1461053257610137565b8063313ce567116100ff578063313ce56714610309578063395093511461032a57806340c10f191461038e5780634d4f6ea9146103dc5780636ef8b5411461043457610137565b806306fdde031461013c578063095ea7b3146101bf578063101aab781461022357806318160ddd1461026757806323b872dd14610285575b600080fd5b6101446107c7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610869565b60405180821515815260200191505060405180910390f35b6102656004803603602081101561023957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610887565b005b61026f6109b7565b6040518082815260200191505060405180910390f35b6102f16004803603606081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109c1565b60405180821515815260200191505060405180910390f35b6103116109ce565b604051808260ff16815260200191505060405180910390f35b6103766004803603604081101561034057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e5565b60405180821515815260200191505060405180910390f35b6103da600480360360408110156103a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a98565b005b610408600480360360208110156103f257600080fd5b8101908080359060200190929190505050610b21565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b5d565b005b6104ba6004803603602081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d9b565b6040518082815260200191505060405180910390f35b6104d8610de4565b005b610526600480360360408110156104f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f6f565b005b610530610ff8565b005b61053a6111d5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61056e6111ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105ae578082015181840152602081019050610593565b50505050905090810190601f1680156105db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610635600480360360408110156105ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112a1565b60405180821515815260200191505060405180910390f35b6106996004803603604081101561066357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061136e565b60405180821515815260200191505060405180910390f35b6106f3600480360360208110156106c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611407565b60405180821515815260200191505060405180910390f35b61076d6004803603604081101561072157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114ad565b6040518082815260200191505060405180910390f35b6107c56004803603602081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611534565b005b606060688054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b600061087d610876611744565b848461174c565b6001905092915050565b61088f611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60c9819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000606754905090565b6000600190509392505050565b6000606a60009054906101000a900460ff16905090565b6000610a8e6109f2611744565b84610a898560666000610a03611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194390919063ffffffff16565b61174c565b6001905092915050565b610aa133611407565b610b13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f44796e616d6974653a206973206e6f7420616c6c6f776564000000000000000081525060200191505060405180910390fd5b610b1d82826119cb565b5050565b60c98181548110610b2e57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b65611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b606060c9805480602002602001604051908101604052809291908181526020018280548015610cab57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c61575b5050505050905060c96000610cc09190612754565b60005b8151811015610d96578273ffffffffffffffffffffffffffffffffffffffff16828281518110610cef57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614610d895760c9828281518110610d2057fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8080600101915050610cc3565b505050565b6000606560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dec611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610f7833611407565b610fea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f44796e616d6974653a206973206e6f7420616c6c6f776564000000000000000081525060200191505060405180910390fd5b610ff48282611b94565b5050565b600060019054906101000a900460ff16806110175750611016611d5a565b5b8061102d575060008054906101000a900460ff16155b611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff1615905080156110d2576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b60c9339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111a96040518060400160405280600881526020017f44796e616d6974650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444e4d5400000000000000000000000000000000000000000000000000000000815250611d71565b6111b1611e83565b80156111d25760008060016101000a81548160ff0219169083151502179055505b50565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060698054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112975780601f1061126c57610100808354040283529160200191611297565b820191906000526020600020905b81548152906001019060200180831161127a57829003601f168201915b5050505050905090565b60006113646112ae611744565b8461135f8560405180606001604052806025815260200161295e60259139606660006112d8611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f919092919063ffffffff16565b61174c565b6001905092915050565b600061137933611407565b6113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f44796e616d6974653a206973206e6f7420616c6c6f776564000000000000000081525060200191505060405180910390fd5b6113fd6113f6611744565b8484612051565b6001905092915050565b6000806000905060005b60c9805490508110156114a3578373ffffffffffffffffffffffffffffffffffffffff1660c9828154811061144257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611496576001915060c98054905090505b8080600101915050611411565b5080915050919050565b6000606660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61153c611744565b73ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611684576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128586026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061293a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061287e6022913960400191505060405180910390fd5b80606660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808284019050838110156119c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611a7a60008383612316565b611a8f8160675461194390919063ffffffff16565b606781905550611ae781606560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194390919063ffffffff16565b606560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128f46021913960400191505060405180910390fd5b611c2682600083612316565b611c928160405180606001604052806022815260200161283660229139606560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f919092919063ffffffff16565b606560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cea8160675461231b90919063ffffffff16565b606781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000803090506000813b9050600081149250505090565b600060019054906101000a900460ff1680611d905750611d8f611d5a565b5b80611da6575060008054906101000a900460ff16155b611dfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611e4b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611e53612365565b611e5d8383612463565b8015611e7e5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff1680611ea25750611ea1611d5a565b5b80611eb8575060008054906101000a900460ff16155b611f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015611f5d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611f65612365565b611f6d6125ad565b8015611f8e5760008060016101000a81548160ff0219169083151502179055505b50565b600083831115829061203e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612003578082015181840152602081019050611fe8565b50505050905090810190601f1680156120305780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129156025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128136023913960400191505060405180910390fd5b612168838383612316565b6121d4816040518060600160405280602681526020016128a060269139606560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f919092919063ffffffff16565b606560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061226981606560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461194390919063ffffffff16565b606560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b600061235d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f91565b905092915050565b600060019054906101000a900460ff16806123845750612383611d5a565b5b8061239a575060008054906101000a900460ff16155b6123ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561243f576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156124605760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806124825750612481611d5a565b5b80612498575060008054906101000a900460ff16155b6124ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561253d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260689080519060200190612553929190612775565b50816069908051906020019061256a929190612775565b506012606a60006101000a81548160ff021916908360ff16021790555080156125a85760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff16806125cc57506125cb611d5a565b5b806125e2575060008054906101000a900460ff16155b612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806128c6602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612687576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6000612691611744565b905080609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080156127515760008060016101000a81548160ff0219169083151502179055505b50565b508054600082559060005260206000209081019061277291906127f5565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127b657805160ff19168380011785556127e4565b828001600101855582156127e4579182015b828111156127e35782518255916020019190600101906127c8565b5b5090506127f191906127f5565b5090565b5b8082111561280e5760008160009055506001016127f6565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d7e53a466921e64f3e77dd7c0a0ada621bd17d69057c02d08a2c341da47fc42e64736f6c634300060c0033
Deployed Bytecode Sourcemap
28496:1908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17013:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19119:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29945:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18088:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29350:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17940:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20492:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28926:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28563:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30055:346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18251:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27842:148;;;:::i;:::-;;29036:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28600:194;;;:::i;:::-;;27200:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17215:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21213:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29154:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29542:354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18821:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28145:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17013:83;17050:13;17083:5;17076:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17013:83;:::o;19119:169::-;19202:4;19219:39;19228:12;:10;:12::i;:::-;19242:7;19251:6;19219:8;:39::i;:::-;19276:4;19269:11;;19119:169;;;;:::o;29945:102::-;27422:12;:10;:12::i;:::-;27412:22;;:6;;;;;;;;;;;:22;;;27404:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30014:11:::1;30031:7;30014:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29945:102:::0;:::o;18088:100::-;18141:7;18168:12;;18161:19;;18088:100;:::o;29350:142::-;29456:4;29480;29473:11;;29350:142;;;;;:::o;17940:83::-;17981:5;18006:9;;;;;;;;;;;17999:16;;17940:83;:::o;20492:218::-;20580:4;20597:83;20606:12;:10;:12::i;:::-;20620:7;20629:50;20668:10;20629:11;:25;20641:12;:10;:12::i;:::-;20629:25;;;;;;;;;;;;;;;:34;20655:7;20629:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20597:8;:83::i;:::-;20698:4;20691:11;;20492:218;;;;:::o;28926:102::-;28843:26;28858:10;28843:14;:26::i;:::-;28835:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29001:19:::1;29007:3;29012:7;29001:5;:19::i;:::-;28926:102:::0;;:::o;28563:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30055:346::-;27422:12;:10;:12::i;:::-;27412:22;;:6;;;;;;;;;;;:22;;;27404:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30127:31:::1;30161:11;30127:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30190:11;;30183:18;;;;:::i;:::-;30217:9;30212:182;30236:14;:21;30232:1;:25;30212:182;;;30304:7;30283:28;;:14;30298:1;30283:17;;;;;;;;;;;;;;:28;;;30279:104;;30332:11;30349:14;30364:1;30349:17;;;;;;;;;;;;;;30332:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30279:104;30259:3;;;;;;;30212:182;;;;27482:1;30055:346:::0;:::o;18251:119::-;18317:7;18344:9;:18;18354:7;18344:18;;;;;;;;;;;;;;;;18337:25;;18251:119;;;:::o;27842:148::-;27422:12;:10;:12::i;:::-;27412:22;;:6;;;;;;;;;;;:22;;;27404:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27949:1:::1;27912:40;;27933:6;;;;;;;;;;;27912:40;;;;;;;;;;;;27980:1;27963:6;;:19;;;;;;;;;;;;;;;;;;27842:148::o:0;29036:110::-;28843:26;28858:10;28843:14;:26::i;:::-;28835:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29117:21:::1;29123:5;29130:7;29117:5;:21::i;:::-;29036:110:::0;;:::o;28600:194::-;1136:12;;;;;;;;;;;:31;;;;1152:15;:13;:15::i;:::-;1136:31;:47;;;;1172:11;;;;;;;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;;;;;;1265:13;1243:35;;1289:14;1285:83;;;1329:4;1314:12;;:19;;;;;;;;;;;;;;;;;;1356:4;1342:11;;:18;;;;;;;;;;;;;;;;;;1285:83;28652:11:::1;28669:10;28652:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28691:49;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:29:::1;:49::i;:::-;28751:35;:33;:35::i;:::-;1390:14:::0;1386:57;;;1430:5;1415:12;;:20;;;;;;;;;;;;;;;;;;1386:57;28600:194;:::o;27200:79::-;27238:7;27265:6;;;;;;;;;;;27258:13;;27200:79;:::o;17215:87::-;17254:13;17287:7;17280:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17215:87;:::o;21213:269::-;21306:4;21323:129;21332:12;:10;:12::i;:::-;21346:7;21355:96;21394:15;21355:96;;;;;;;;;;;;;;;;;:11;:25;21367:12;:10;:12::i;:::-;21355:25;;;;;;;;;;;;;;;:34;21381:7;21355:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21323:8;:129::i;:::-;21470:4;21463:11;;21213:269;;;;:::o;29154:188::-;29253:4;28843:26;28858:10;28843:14;:26::i;:::-;28835:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29270:42:::1;29280:12;:10;:12::i;:::-;29294:9;29305:6;29270:9;:42::i;:::-;29330:4;29323:11;;29154:188:::0;;;;:::o;29542:354::-;29606:4;29623:17;29643:5;29623:25;;29664:6;29659:200;29680:11;:18;;;;29676:1;:22;29659:200;;;29742:9;29724:27;;:11;29736:1;29724:14;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;29720:128;;;29787:4;29772:19;;29814:11;:18;;;;29810:22;;29720:128;29700:3;;;;;;;29659:200;;;;29876:12;29869:19;;;29542:354;;;:::o;18821:151::-;18910:7;18937:11;:18;18949:5;18937:18;;;;;;;;;;;;;;;:27;18956:7;18937:27;;;;;;;;;;;;;;;;18930:34;;18821:151;;;;:::o;28145:244::-;27422:12;:10;:12::i;:::-;27412:22;;:6;;;;;;;;;;;:22;;;27404:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28254:1:::1;28234:22;;:8;:22;;;;28226:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28344:8;28315:38;;28336:6;;;;;;;;;;;28315:38;;;;;;;;;;;;28373:8;28364:6;;:17;;;;;;;;;;;;;;;;;;28145:244:::0;:::o;3167:106::-;3220:15;3255:10;3248:17;;3167:106;:::o;24360:346::-;24479:1;24462:19;;:5;:19;;;;24454:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24560:1;24541:21;;:7;:21;;;;24533:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24644:6;24614:11;:18;24626:5;24614:18;;;;;;;;;;;;;;;:27;24633:7;24614:27;;;;;;;;;;;;;;;:36;;;;24682:7;24666:32;;24675:5;24666:32;;;24691:6;24666:32;;;;;;;;;;;;;;;;;;24360:346;;;:::o;7321:181::-;7379:7;7399:9;7415:1;7411;:5;7399:17;;7440:1;7435;:6;;7427:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7493:1;7486:8;;;7321:181;;;;:::o;22792:378::-;22895:1;22876:21;;:7;:21;;;;22868:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22946:49;22975:1;22979:7;22988:6;22946:20;:49::i;:::-;23023:24;23040:6;23023:12;;:16;;:24;;;;:::i;:::-;23008:12;:39;;;;23079:30;23102:6;23079:9;:18;23089:7;23079:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23058:9;:18;23068:7;23058:18;;;;;;;;;;;;;;;:51;;;;23146:7;23125:37;;23142:1;23125:37;;;23155:6;23125:37;;;;;;;;;;;;;;;;;;22792:378;;:::o;23502:418::-;23605:1;23586:21;;:7;:21;;;;23578:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23658:49;23679:7;23696:1;23700:6;23658:20;:49::i;:::-;23741:68;23764:6;23741:68;;;;;;;;;;;;;;;;;:9;:18;23751:7;23741:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;23720:9;:18;23730:7;23720:18;;;;;;;;;;;;;;;:89;;;;23835:24;23852:6;23835:12;;:16;;:24;;;;:::i;:::-;23820:12;:39;;;;23901:1;23875:37;;23884:7;23875:37;;;23905:6;23875:37;;;;;;;;;;;;;;;;;;23502:418;;:::o;1537:508::-;1584:4;1931:12;1954:4;1931:28;;1966:10;2012:4;2000:17;1994:23;;2038:1;2032:2;:7;2025:14;;;;1537:508;:::o;16572:177::-;1136:12;;;;;;;;;;;:31;;;;1152:15;:13;:15::i;:::-;1136:31;:47;;;;1172:11;;;;;;;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;;;;;;1265:13;1243:35;;1289:14;1285:83;;;1329:4;1314:12;;:19;;;;;;;;;;;;;;;;;;1356:4;1342:11;;:18;;;;;;;;;;;;;;;;;;1285:83;16668:26:::1;:24;:26::i;:::-;16705:36;16728:4;16734:6;16705:22;:36::i;:::-;1390:14:::0;1386:57;;;1430:5;1415:12;;:20;;;;;;;;;;;;;;;;;;1386:57;16572:177;;;:::o;26778:129::-;1136:12;;;;;;;;;;;:31;;;;1152:15;:13;:15::i;:::-;1136:31;:47;;;;1172:11;;;;;;;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;;;;;;1265:13;1243:35;;1289:14;1285:83;;;1329:4;1314:12;;:19;;;;;;;;;;;;;;;;;;1356:4;1342:11;;:18;;;;;;;;;;;;;;;;;;1285:83;26836:26:::1;:24;:26::i;:::-;26873;:24;:26::i;:::-;1390:14:::0;1386:57;;;1430:5;1415:12;;:20;;;;;;;;;;;;;;;;;;1386:57;26778:129;:::o;8208:192::-;8294:7;8327:1;8322;:6;;8330:12;8314:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8354:9;8370:1;8366;:5;8354:17;;8391:1;8384:8;;;8208:192;;;;;:::o;21972:539::-;22096:1;22078:20;;:6;:20;;;;22070:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22180:1;22159:23;;:9;:23;;;;22151:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22235:47;22256:6;22264:9;22275:6;22235:20;:47::i;:::-;22315:71;22337:6;22315:71;;;;;;;;;;;;;;;;;:9;:17;22325:6;22315:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22295:9;:17;22305:6;22295:17;;;;;;;;;;;;;;;:91;;;;22420:32;22445:6;22420:9;:20;22430:9;22420:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22397:9;:20;22407:9;22397:20;;;;;;;;;;;;;;;:55;;;;22485:9;22468:35;;22477:6;22468:35;;;22496:6;22468:35;;;;;;;;;;;;;;;;;;21972:539;;;:::o;25731:92::-;;;;:::o;7777:136::-;7835:7;7862:43;7866:1;7869;7862:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7855:50;;7777:136;;;;:::o;3088:69::-;1136:12;;;;;;;;;;;:31;;;;1152:15;:13;:15::i;:::-;1136:31;:47;;;;1172:11;;;;;;;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;;;;;;1265:13;1243:35;;1289:14;1285:83;;;1329:4;1314:12;;:19;;;;;;;;;;;;;;;;;;1356:4;1342:11;;:18;;;;;;;;;;;;;;;;;;1285:83;1390:14;1386:57;;;1430:5;1415:12;;:20;;;;;;;;;;;;;;;;;;1386:57;3088:69;:::o;16757:184::-;1136:12;;;;;;;;;;;:31;;;;1152:15;:13;:15::i;:::-;1136:31;:47;;;;1172:11;;;;;;;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;;;;;;1265:13;1243:35;;1289:14;1285:83;;;1329:4;1314:12;;:19;;;;;;;;;;;;;;;;;;1356:4;1342:11;;:18;;;;;;;;;;;;;;;;;;1285:83;16875:4:::1;16867:5;:12;;;;;;;;;;;;:::i;:::-;;16900:6;16890:7;:16;;;;;;;;;;;;:::i;:::-;;16929:2;16917:9;;:14;;;;;;;;;;;;;;;;;;1390::::0;1386:57;;;1430:5;1415:12;;:20;;;;;;;;;;;;;;;;;;1386:57;16757:184;;;:::o;26915:202::-;1136:12;;;;;;;;;;;:31;;;;1152:15;:13;:15::i;:::-;1136:31;:47;;;;1172:11;;;;;;;;;;1171:12;1136:47;1128:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243:19;1266:12;;;;;;;;;;;1265:13;1243:35;;1289:14;1285:83;;;1329:4;1314:12;;:19;;;;;;;;;;;;;;;;;;1356:4;1342:11;;:18;;;;;;;;;;;;;;;;;;1285:83;26987:17:::1;27007:12;:10;:12::i;:::-;26987:32;;27039:9;27030:6;;:18;;;;;;;;;;;;;;;;;;27097:9;27064:43;;27093:1;27064:43;;;;;;;;;;;;1376:1;1390:14:::0;1386:57;;;1430:5;1415:12;;:20;;;;;;;;;;;;;;;;;;1386:57;26915:202;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://d7e53a466921e64f3e77dd7c0a0ada621bd17d69057c02d08a2c341da47fc42e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.