Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,810.502325980172514164 WABEWT
Holders
53
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
20 WABEWTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WrappedToken
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-17 */ // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <0.8.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/contracts/access/[email protected] pragma solidity ^0.7.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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.7.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.7.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/math/[email protected] pragma solidity ^0.7.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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/token/ERC20/[email protected] pragma solidity ^0.7.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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; 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. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 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 virtual { _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 { } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.7.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File contracts/interfaces/IERC2612Permit.sol pragma solidity 0.7.6; /** * @dev Interface of the ERC2612 standard as defined in the EIP. * * Adds the {permit} method, which can be used to change one's * {IERC20-allowance} without having to send a transaction, by signing a * message. This allows users to spend tokens without having to hold Ether. * * See https://eips.ethereum.org/EIPS/eip-2612. */ interface IERC2612Permit { /** * @dev Sets `_amount` as the allowance of `_spender` over `_owner`'s tokens, * given `_owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `_owner` cannot be the zero address. * - `_spender` cannot be the zero address. * - `_deadline` must be a timestamp in the future. * - `_v`, `_r` and `_s` must be a valid `secp256k1` signature from `_owner` * over the EIP712-formatted function arguments. * - the signature must use ``_owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address _owner, address _spender, uint256 _amount, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) external; /** * @dev Returns the current ERC2612 nonce for `_owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``_owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address _owner) external view returns (uint256); } // File contracts/ERC20Permit.sol pragma solidity 0.7.6; /** * @dev Extension of {ERC20} that allows token holders to use their tokens * without sending any transactions by setting {IERC20-allowance} with a * signature using the {permit} method, and then spend them via * {IERC20-transferFrom}. * * The {permit} signature mechanism conforms to the {IERC2612Permit} interface. */ abstract contract ERC20Permit is ERC20, IERC2612Permit { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // Mapping of ChainID to domain separators. This is a very gas efficient way // to not recalculate the domain separator on every call, while still // automatically detecting ChainID changes. mapping(uint256 => bytes32) public domainSeparators; constructor() { _updateDomainSeparator(); } /** * @dev See {IERC2612Permit-permit}. * * If https://eips.ethereum.org/EIPS/eip-1344[ChainID] ever changes, the * EIP712 Domain Separator is automatically recalculated. */ function permit( address _owner, address _spender, uint256 _amount, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) public virtual override { require(block.timestamp <= _deadline, "ERC20Permit: expired _deadline"); // Assembly for more efficiently computing: // bytes32 hashStruct = keccak256( // abi.encode( // _PERMIT_TYPEHASH, // _owner, // _spender, // _amount, // nonces[_owner].current(), // _deadline // ) // ); bytes32 hashStruct; Counters.Counter storage nonceCounter = _nonces[_owner]; uint256 nonce = nonceCounter.current(); assembly { // Load free memory pointer let memPtr := mload(64) // keccak256("Permit(address _owner,address _spender,uint256 value,uint256 nonce,uint256 _deadline)") mstore(memPtr, 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9) mstore(add(memPtr, 32), _owner) mstore(add(memPtr, 64), _spender) mstore(add(memPtr, 96), _amount) mstore(add(memPtr, 128), nonce) mstore(add(memPtr, 160), _deadline) hashStruct := keccak256(memPtr, 192) } bytes32 eip712DomainHash = _domainSeparator(); // Assembly for more efficient computing: // bytes32 hash = keccak256( // abi.encodePacked(uint16(0x1901), eip712DomainHash, hashStruct) // ); bytes32 hash; assembly { // Load free memory pointer let memPtr := mload(64) mstore(memPtr, 0x1901000000000000000000000000000000000000000000000000000000000000) // EIP191 header mstore(add(memPtr, 2), eip712DomainHash) // EIP712 domain hash mstore(add(memPtr, 34), hashStruct) // Hash of struct hash := keccak256(memPtr, 66) } address signer = _recover(hash, _v, _r, _s); require(signer == _owner, "ERC20Permit: invalid signature"); nonceCounter.increment(); _approve(_owner, _spender, _amount); } /** * @dev See {IERC2612Permit-nonces}. */ function nonces(address _owner) public override view returns (uint256) { return _nonces[_owner].current(); } function _updateDomainSeparator() private returns (bytes32) { uint256 chainID = _chainID(); // no need for assembly, running very rarely bytes32 newDomainSeparator = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name())), // ERC-20 Name keccak256(bytes("1")), // Version chainID, address(this) ) ); domainSeparators[chainID] = newDomainSeparator; return newDomainSeparator; } // Returns the domain separator, updating it if chainID changes function _domainSeparator() private returns (bytes32) { bytes32 domainSeparator = domainSeparators[_chainID()]; if (domainSeparator != 0x00) { return domainSeparator; } return _updateDomainSeparator(); } function _chainID() private pure returns (uint256) { uint256 chainID; assembly { chainID := chainid() } return chainID; } function _recover( bytes32 _hash, uint8 _v, bytes32 _r, bytes32 _s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if ( uint256(_s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 ) { revert("ECDSA: invalid signature '_s' value"); } if (_v != 27 && _v != 28) { revert("ECDSA: invalid signature '_v' value"); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(_hash, _v, _r, _s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } } // File contracts/WrappedToken.sol pragma solidity 0.7.6; contract WrappedToken is ERC20Permit, Pausable, Ownable { using SafeMath for uint256; /** * @notice Construct a new WrappedToken contract * @param _tokenName The EIP-20 token name * @param _tokenSymbol The EIP-20 token symbol */ constructor( string memory _tokenName, string memory _tokenSymbol, uint8 decimals ) ERC20(_tokenName, _tokenSymbol) { super._setupDecimals(decimals); } /** * @notice Mints `_amount` of tokens to the `_account` address * @param _account The address to which the tokens will be minted * @param _amount The _amount to be minted */ function mint(address _account, uint256 _amount) public onlyOwner { super._mint(_account, _amount); } /** * @notice Burns `_amount` of tokens from the `_account` address * @param _account The address from which the tokens will be burned * @param _amount The _amount to be burned */ function burnFrom(address _account, uint256 _amount) public onlyOwner { uint256 decreasedAllowance = allowance(_account, _msgSender()).sub( _amount, "ERC20: burn amount exceeds allowance" ); _approve(_account, _msgSender(), decreasedAllowance); _burn(_account, _amount); } /// @notice Pauses the contract function pause() public onlyOwner { super._pause(); } /// @notice Unpauses the contract function unpause() public onlyOwner { super._unpause(); } function _beforeTokenTransfer(address from, address to, uint256 _amount) internal virtual override { super._beforeTokenTransfer(from, to, _amount); require(!paused(), "WrappedToken: token transfer while paused"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"domainSeparators","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"address","name":"_account","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"permit","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001dc438038062001dc4833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260209081015185519093508592508491620001bd9160039185019062000401565b508051620001d390600490602084019062000401565b50506005805460ff1916601217905550620001ed62000279565b506008805460ff1916905560006200020462000349565b60088054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000270816200034d60201b62000d041760201c565b505050620004ad565b6000806200028662000363565b905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620002b562000367565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c0909301815282519282019290922060009485526007909152922082905550905090565b3390565b6005805460ff191660ff92909216919091179055565b4690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015620003f75780601f10620003cb57610100808354040283529160200191620003f7565b820191906000526020600020905b815481529060010190602001808311620003d957829003601f168201915b5050505050905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000439576000855562000484565b82601f106200045457805160ff191683800117855562000484565b8280016001018555821562000484579182015b828111156200048457825182559160200191906001019062000467565b506200049292915062000496565b5090565b5b8082111562000492576000815560010162000497565b61190780620004bd6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806379cc6790116100b857806399740a181161007c57806399740a1814610390578063a457c2d7146103ad578063a9059cbb146103d9578063d505accf14610405578063dd62ed3e14610456578063f2fde38b1461048457610142565b806379cc67901461030a5780637ecebe00146103365780638456cb591461035c5780638da5cb5b1461036457806395d89b411461038857610142565b8063395093511161010a57806339509351146102725780633f4ba83a1461029e57806340c10f19146102a85780635c975abb146102d457806370a08231146102dc578063715018a61461030257610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e578063313ce56714610254575b600080fd5b61014f6104aa565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610541565b604080519115158252519081900360200190f35b61020c61055e565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b03813581169160208101359091169060400135610564565b61025c6105eb565b6040805160ff9092168252519081900360200190f35b6101f06004803603604081101561028857600080fd5b506001600160a01b0381351690602001356105f4565b6102a6610642565b005b6102a6600480360360408110156102be57600080fd5b506001600160a01b0381351690602001356106ae565b6101f061071e565b61020c600480360360208110156102f257600080fd5b50356001600160a01b0316610727565b6102a6610742565b6102a66004803603604081101561032057600080fd5b506001600160a01b0381351690602001356107f4565b61020c6004803603602081101561034c57600080fd5b50356001600160a01b03166108b0565b6102a66108d7565b61036c610941565b604080516001600160a01b039092168252519081900360200190f35b61014f610955565b61020c600480360360208110156103a657600080fd5b50356109b6565b6101f0600480360360408110156103c357600080fd5b506001600160a01b0381351690602001356109c8565b6101f0600480360360408110156103ef57600080fd5b506001600160a01b038135169060200135610a30565b6102a6600480360360e081101561041b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610a44565b61020c6004803603604081101561046c57600080fd5b506001600160a01b0381358116916020013516610bcb565b6102a66004803603602081101561049a57600080fd5b50356001600160a01b0316610bf6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105365780601f1061050b57610100808354040283529160200191610536565b820191906000526020600020905b81548152906001019060200180831161051957829003601f168201915b505050505090505b90565b600061055561054e610d1a565b8484610d1e565b50600192915050565b60025490565b6000610571848484610e0a565b6105e18461057d610d1a565b6105dc856040518060600160405280602881526020016117d7602891396001600160a01b038a166000908152600160205260408120906105bb610d1a565b6001600160a01b031681526020810191909152604001600020549190610f65565b610d1e565b5060019392505050565b60055460ff1690565b6000610555610601610d1a565b846105dc8560016000610612610d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610ffc565b61064a610d1a565b6001600160a01b031661065b610941565b6001600160a01b0316146106a4576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6106ac61105d565b565b6106b6610d1a565b6001600160a01b03166106c7610941565b6001600160a01b031614610710576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b61071a82826110fd565b5050565b60085460ff1690565b6001600160a01b031660009081526020819052604090205490565b61074a610d1a565b6001600160a01b031661075b610941565b6001600160a01b0316146107a4576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b60085460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360088054610100600160a81b0319169055565b6107fc610d1a565b6001600160a01b031661080d610941565b6001600160a01b031614610856576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b600061088d8260405180606001604052806024815260200161181f6024913961088686610881610d1a565b610bcb565b9190610f65565b90506108a18361089b610d1a565b83610d1e565b6108ab83836111ed565b505050565b6001600160a01b03811660009081526006602052604081206108d1906112e9565b92915050565b6108df610d1a565b6001600160a01b03166108f0610941565b6001600160a01b031614610939576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6106ac6112ed565b60085461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105365780601f1061050b57610100808354040283529160200191610536565b60076020526000908152604090205481565b60006105556109d5610d1a565b846105dc856040518060600160405280602581526020016118ad60259139600160006109ff610d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610f65565b6000610555610a3d610d1a565b8484610e0a565b83421115610a99576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a2065787069726564205f646561646c696e650000604482015290519081900360640190fd5b6001600160a01b038716600090815260066020526040812081610abb826112e9565b90506040517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981528a60208201528960408201528860608201528160808201528760a082015260c081209350506000610b12611370565b60405161190160f01b81526002810182905260228101869052604290209091506000610b40828a8a8a6113ad565b90508c6001600160a01b0316816001600160a01b031614610ba8576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b610bb18561152f565b610bbc8d8d8d610d1e565b50505050505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bfe610d1a565b6001600160a01b0316610c0f610941565b6001600160a01b031614610c58576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6001600160a01b038116610c9d5760405162461bcd60e51b81526004018080602001828103825260268152602001806116fa6026913960400191505060405180910390fd5b6008546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005805460ff191660ff92909216919091179055565b3390565b6001600160a01b038316610d635760405162461bcd60e51b81526004018080602001828103825260248152602001806118896024913960400191505060405180910390fd5b6001600160a01b038216610da85760405162461bcd60e51b81526004018080602001828103825260228152602001806117206022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e4f5760405162461bcd60e51b81526004018080602001828103825260258152602001806118646025913960400191505060405180910390fd5b6001600160a01b038216610e945760405162461bcd60e51b81526004018080602001828103825260238152602001806116b56023913960400191505060405180910390fd5b610e9f838383611538565b610edc81604051806060016040528060268152602001611742602691396001600160a01b0386166000908152602081905260409020549190610f65565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f0b9082610ffc565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ff45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fb9578181015183820152602001610fa1565b50505050905090810190601f168015610fe65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611056576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61106561071e565b6110ad576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110e0610d1a565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611158576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61116460008383611538565b6002546111719082610ffc565b6002556001600160a01b0382166000908152602081905260409020546111979082610ffc565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166112325760405162461bcd60e51b81526004018080602001828103825260218152602001806118436021913960400191505060405180910390fd5b61123e82600083611538565b61127b816040518060600160405280602281526020016116d8602291396001600160a01b0385166000908152602081905260409020549190610f65565b6001600160a01b0383166000908152602081905260409020556002546112a19082611587565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b5490565b6112f561071e565b1561133a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110e0610d1a565b6000806007600061137f6115e4565b81526020810191909152604001600020549050801561139f57905061053e565b6113a76115e8565b91505090565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561140e5760405162461bcd60e51b815260040180806020018281038252602381526020018061178b6023913960400191505060405180910390fd5b8360ff16601b1415801561142657508360ff16601c14155b156114625760405162461bcd60e51b81526004018080602001828103825260238152602001806117686023913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156114be573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611526576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b80546001019055565b6115438383836108ab565b61154b61071e565b156108ab5760405162461bcd60e51b81526004018080602001828103825260298152602001806117ae6029913960400191505060405180910390fd5b6000828211156115de576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b4690565b6000806115f36115e4565b905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6116206104aa565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c090930181528251928201929092206000948552600790915292208290555090509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e617475726520275f76272076616c756545434453413a20696e76616c6964207369676e617475726520275f73272076616c756557726170706564546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aef013998bf653b2f2368b782657c7b1be45d91fd1a47649e31c91786fac64c564736f6c63430007060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000275772617070656420416c6c69616e636542726964676520456e657267792057656220546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065741424557540000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806379cc6790116100b857806399740a181161007c57806399740a1814610390578063a457c2d7146103ad578063a9059cbb146103d9578063d505accf14610405578063dd62ed3e14610456578063f2fde38b1461048457610142565b806379cc67901461030a5780637ecebe00146103365780638456cb591461035c5780638da5cb5b1461036457806395d89b411461038857610142565b8063395093511161010a57806339509351146102725780633f4ba83a1461029e57806340c10f19146102a85780635c975abb146102d457806370a08231146102dc578063715018a61461030257610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e578063313ce56714610254575b600080fd5b61014f6104aa565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610541565b604080519115158252519081900360200190f35b61020c61055e565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b03813581169160208101359091169060400135610564565b61025c6105eb565b6040805160ff9092168252519081900360200190f35b6101f06004803603604081101561028857600080fd5b506001600160a01b0381351690602001356105f4565b6102a6610642565b005b6102a6600480360360408110156102be57600080fd5b506001600160a01b0381351690602001356106ae565b6101f061071e565b61020c600480360360208110156102f257600080fd5b50356001600160a01b0316610727565b6102a6610742565b6102a66004803603604081101561032057600080fd5b506001600160a01b0381351690602001356107f4565b61020c6004803603602081101561034c57600080fd5b50356001600160a01b03166108b0565b6102a66108d7565b61036c610941565b604080516001600160a01b039092168252519081900360200190f35b61014f610955565b61020c600480360360208110156103a657600080fd5b50356109b6565b6101f0600480360360408110156103c357600080fd5b506001600160a01b0381351690602001356109c8565b6101f0600480360360408110156103ef57600080fd5b506001600160a01b038135169060200135610a30565b6102a6600480360360e081101561041b57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610a44565b61020c6004803603604081101561046c57600080fd5b506001600160a01b0381358116916020013516610bcb565b6102a66004803603602081101561049a57600080fd5b50356001600160a01b0316610bf6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105365780601f1061050b57610100808354040283529160200191610536565b820191906000526020600020905b81548152906001019060200180831161051957829003601f168201915b505050505090505b90565b600061055561054e610d1a565b8484610d1e565b50600192915050565b60025490565b6000610571848484610e0a565b6105e18461057d610d1a565b6105dc856040518060600160405280602881526020016117d7602891396001600160a01b038a166000908152600160205260408120906105bb610d1a565b6001600160a01b031681526020810191909152604001600020549190610f65565b610d1e565b5060019392505050565b60055460ff1690565b6000610555610601610d1a565b846105dc8560016000610612610d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610ffc565b61064a610d1a565b6001600160a01b031661065b610941565b6001600160a01b0316146106a4576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6106ac61105d565b565b6106b6610d1a565b6001600160a01b03166106c7610941565b6001600160a01b031614610710576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b61071a82826110fd565b5050565b60085460ff1690565b6001600160a01b031660009081526020819052604090205490565b61074a610d1a565b6001600160a01b031661075b610941565b6001600160a01b0316146107a4576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b60085460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360088054610100600160a81b0319169055565b6107fc610d1a565b6001600160a01b031661080d610941565b6001600160a01b031614610856576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b600061088d8260405180606001604052806024815260200161181f6024913961088686610881610d1a565b610bcb565b9190610f65565b90506108a18361089b610d1a565b83610d1e565b6108ab83836111ed565b505050565b6001600160a01b03811660009081526006602052604081206108d1906112e9565b92915050565b6108df610d1a565b6001600160a01b03166108f0610941565b6001600160a01b031614610939576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6106ac6112ed565b60085461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105365780601f1061050b57610100808354040283529160200191610536565b60076020526000908152604090205481565b60006105556109d5610d1a565b846105dc856040518060600160405280602581526020016118ad60259139600160006109ff610d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610f65565b6000610555610a3d610d1a565b8484610e0a565b83421115610a99576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a2065787069726564205f646561646c696e650000604482015290519081900360640190fd5b6001600160a01b038716600090815260066020526040812081610abb826112e9565b90506040517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981528a60208201528960408201528860608201528160808201528760a082015260c081209350506000610b12611370565b60405161190160f01b81526002810182905260228101869052604290209091506000610b40828a8a8a6113ad565b90508c6001600160a01b0316816001600160a01b031614610ba8576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b610bb18561152f565b610bbc8d8d8d610d1e565b50505050505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610bfe610d1a565b6001600160a01b0316610c0f610941565b6001600160a01b031614610c58576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6001600160a01b038116610c9d5760405162461bcd60e51b81526004018080602001828103825260268152602001806116fa6026913960400191505060405180910390fd5b6008546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005805460ff191660ff92909216919091179055565b3390565b6001600160a01b038316610d635760405162461bcd60e51b81526004018080602001828103825260248152602001806118896024913960400191505060405180910390fd5b6001600160a01b038216610da85760405162461bcd60e51b81526004018080602001828103825260228152602001806117206022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e4f5760405162461bcd60e51b81526004018080602001828103825260258152602001806118646025913960400191505060405180910390fd5b6001600160a01b038216610e945760405162461bcd60e51b81526004018080602001828103825260238152602001806116b56023913960400191505060405180910390fd5b610e9f838383611538565b610edc81604051806060016040528060268152602001611742602691396001600160a01b0386166000908152602081905260409020549190610f65565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f0b9082610ffc565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ff45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fb9578181015183820152602001610fa1565b50505050905090810190601f168015610fe65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611056576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61106561071e565b6110ad576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110e0610d1a565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611158576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61116460008383611538565b6002546111719082610ffc565b6002556001600160a01b0382166000908152602081905260409020546111979082610ffc565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166112325760405162461bcd60e51b81526004018080602001828103825260218152602001806118436021913960400191505060405180910390fd5b61123e82600083611538565b61127b816040518060600160405280602281526020016116d8602291396001600160a01b0385166000908152602081905260409020549190610f65565b6001600160a01b0383166000908152602081905260409020556002546112a19082611587565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b5490565b6112f561071e565b1561133a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110e0610d1a565b6000806007600061137f6115e4565b81526020810191909152604001600020549050801561139f57905061053e565b6113a76115e8565b91505090565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561140e5760405162461bcd60e51b815260040180806020018281038252602381526020018061178b6023913960400191505060405180910390fd5b8360ff16601b1415801561142657508360ff16601c14155b156114625760405162461bcd60e51b81526004018080602001828103825260238152602001806117686023913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156114be573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611526576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b80546001019055565b6115438383836108ab565b61154b61071e565b156108ab5760405162461bcd60e51b81526004018080602001828103825260298152602001806117ae6029913960400191505060405180910390fd5b6000828211156115de576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b4690565b6000806115f36115e4565b905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6116206104aa565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c090930181528251928201929092206000948552600790915292208290555090509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e617475726520275f76272076616c756545434453413a20696e76616c6964207369676e617475726520275f73272076616c756557726170706564546f6b656e3a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220aef013998bf653b2f2368b782657c7b1be45d91fd1a47649e31c91786fac64c564736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000275772617070656420416c6c69616e636542726964676520456e657267792057656220546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065741424557540000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Wrapped AllianceBridge Energy Web Token
Arg [1] : _tokenSymbol (string): WABEWT
Arg [2] : decimals (uint8): 18
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [4] : 5772617070656420416c6c69616e636542726964676520456e65726779205765
Arg [5] : 6220546f6b656e00000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 5741424557540000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36976:1882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18031:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20177:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20177:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19130:108;;;:::i;:::-;;;;;;;;;;;;;;;;20828:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20828:321:0;;;;;;;;;;;;;;;;;:::i;18974:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21558:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21558:218:0;;;;;;;;:::i;38537:71::-;;;:::i;:::-;;37657:115;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37657:115:0;;;;;;;;:::i;4396:86::-;;;:::i;19301:127::-;;;;;;;;;;;;;;;;-1:-1:-1;19301:127:0;-1:-1:-1;;;;;19301:127:0;;:::i;2759:148::-;;;:::i;37989:389::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37989:389:0;;;;;;;;:::i;33969:122::-;;;;;;;;;;;;;;;;-1:-1:-1;33969:122:0;-1:-1:-1;;;;;33969:122:0;;:::i;38423:67::-;;;:::i;2108:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2108:87:0;;;;;;;;;;;;;;18241:95;;;:::i;31163:51::-;;;;;;;;;;;;;;;;-1:-1:-1;31163:51:0;;:::i;22279:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22279:269:0;;;;;;;;:::i;19641:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19641:175:0;;;;;;;;:::i;31497:2404::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31497:2404:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19879:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19879:151:0;;;;;;;;;;:::i;3062:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3062:244:0;-1:-1:-1;;;;;3062:244:0;;:::i;18031:91::-;18109:5;18102:12;;;;;;;;-1:-1:-1;;18102:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18076:13;;18102:12;;18109:5;;18102:12;;18109:5;18102:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18031:91;;:::o;20177:169::-;20260:4;20277:39;20286:12;:10;:12::i;:::-;20300:7;20309:6;20277:8;:39::i;:::-;-1:-1:-1;20334:4:0;20177:169;;;;:::o;19130:108::-;19218:12;;19130:108;:::o;20828:321::-;20934:4;20951:36;20961:6;20969:9;20980:6;20951:9;:36::i;:::-;20998:121;21007:6;21015:12;:10;:12::i;:::-;21029:89;21067:6;21029:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21029:19:0;;;;;;:11;:19;;;;;;21049:12;:10;:12::i;:::-;-1:-1:-1;;;;;21029:33:0;;;;;;;;;;;;-1:-1:-1;21029:33:0;;;:89;:37;:89::i;:::-;20998:8;:121::i;:::-;-1:-1:-1;21137:4:0;20828:321;;;;;:::o;18974:91::-;19048:9;;;;18974:91;:::o;21558:218::-;21646:4;21663:83;21672:12;:10;:12::i;:::-;21686:7;21695:50;21734:10;21695:11;:25;21707:12;:10;:12::i;:::-;-1:-1:-1;;;;;21695:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21695:25:0;;;:34;;;;;;;;;;;:38;:50::i;38537:71::-;2339:12;:10;:12::i;:::-;-1:-1:-1;;;;;2328:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2328:23:0;;2320:68;;;;;-1:-1:-1;;;2320:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2320:68:0;;;;;;;;;;;;;;;38584:16:::1;:14;:16::i;:::-;38537:71::o:0;37657:115::-;2339:12;:10;:12::i;:::-;-1:-1:-1;;;;;2328:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2328:23:0;;2320:68;;;;;-1:-1:-1;;;2320:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2320:68:0;;;;;;;;;;;;;;;37734:30:::1;37746:8;37756:7;37734:11;:30::i;:::-;37657:115:::0;;:::o;4396:86::-;4467:7;;;;4396:86;:::o;19301:127::-;-1:-1:-1;;;;;19402:18:0;19375:7;19402:18;;;;;;;;;;;;19301:127::o;2759:148::-;2339:12;:10;:12::i;:::-;-1:-1:-1;;;;;2328:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2328:23:0;;2320:68;;;;;-1:-1:-1;;;2320:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2320:68:0;;;;;;;;;;;;;;;2850:6:::1;::::0;2829:40:::1;::::0;2866:1:::1;::::0;2850:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2850:6:0::1;::::0;2829:40:::1;::::0;2866:1;;2829:40:::1;2880:6;:19:::0;;-1:-1:-1;;;;;;2880:19:0::1;::::0;;2759:148::o;37989:389::-;2339:12;:10;:12::i;:::-;-1:-1:-1;;;;;2328:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2328:23:0;;2320:68;;;;;-1:-1:-1;;;2320:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2320:68:0;;;;;;;;;;;;;;;38093:26:::1;38135:135;38191:7;38135:135;;;;;;;;;;;;;;;;;:33;38145:8;38155:12;:10;:12::i;:::-;38135:9;:33::i;:::-;:37:::0;:135;:37:::1;:135::i;:::-;38093:177;;38283:52;38292:8;38302:12;:10;:12::i;:::-;38316:18;38283:8;:52::i;:::-;38346:24;38352:8;38362:7;38346:5;:24::i;:::-;2399:1;37989:389:::0;;:::o;33969:122::-;-1:-1:-1;;;;;34058:15:0;;34031:7;34058:15;;;:7;:15;;;;;:25;;:23;:25::i;:::-;34051:32;33969:122;-1:-1:-1;;33969:122:0:o;38423:67::-;2339:12;:10;:12::i;:::-;-1:-1:-1;;;;;2328:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2328:23:0;;2320:68;;;;;-1:-1:-1;;;2320:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2320:68:0;;;;;;;;;;;;;;;38468:14:::1;:12;:14::i;2108:87::-:0;2181:6;;;;;-1:-1:-1;;;;;2181:6:0;;2108:87::o;18241:95::-;18321:7;18314:14;;;;;;;;-1:-1:-1;;18314:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18288:13;;18314:14;;18321:7;;18314:14;;18321:7;18314:14;;;;;;;;;;;;;;;;;;;;;;;;31163:51;;;;;;;;;;;;;:::o;22279:269::-;22372:4;22389:129;22398:12;:10;:12::i;:::-;22412:7;22421:96;22460:15;22421:96;;;;;;;;;;;;;;;;;:11;:25;22433:12;:10;:12::i;:::-;-1:-1:-1;;;;;22421:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22421:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19641:175::-;19727:4;19744:42;19754:12;:10;:12::i;:::-;19768:9;19779:6;19744:9;:42::i;31497:2404::-;31749:9;31730:15;:28;;31722:71;;;;;-1:-1:-1;;;31722:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32236:15:0;;32167:18;32236:15;;;:7;:15;;;;;32167:18;32278:22;32236:15;32278:20;:22::i;:::-;32262:38;;32398:2;32392:9;32547:66;32539:6;32532:82;32652:6;32647:2;32639:6;32635:15;32628:31;32697:8;32692:2;32684:6;32680:15;32673:33;32744:7;32739:2;32731:6;32727:15;32720:32;32791:5;32785:3;32777:6;32773:16;32766:31;32836:9;32830:3;32822:6;32818:16;32811:35;32894:3;32886:6;32876:22;32862:36;;;32921:24;32948:18;:16;:18::i;:::-;33274:2;33268:9;-1:-1:-1;;;33293:82:0;;33426:1;33414:14;;33407:40;;;33545:2;33533:15;;33526:35;;;33669:2;33651:21;;32921:45;;-1:-1:-1;33164:12:0;33712:26;33651:21;33727:2;33731;33735;33712:8;:26::i;:::-;33695:43;;33769:6;-1:-1:-1;;;;;33759:16:0;:6;-1:-1:-1;;;;;33759:16:0;;33751:59;;;;;-1:-1:-1;;;33751:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33823:24;:12;:22;:24::i;:::-;33858:35;33867:6;33875:8;33885:7;33858:8;:35::i;:::-;31497:2404;;;;;;;;;;;;;:::o;19879:151::-;-1:-1:-1;;;;;19995:18:0;;;19968:7;19995:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19879:151::o;3062:244::-;2339:12;:10;:12::i;:::-;-1:-1:-1;;;;;2328:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2328:23:0;;2320:68;;;;;-1:-1:-1;;;2320:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2320:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3151:22:0;::::1;3143:73;;;;-1:-1:-1::0;;;3143:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3253:6;::::0;3232:38:::1;::::0;-1:-1:-1;;;;;3232:38:0;;::::1;::::0;3253:6:::1;::::0;::::1;;::::0;3232:38:::1;::::0;;;::::1;3281:6;:17:::0;;-1:-1:-1;;;;;3281:17:0;;::::1;;;-1:-1:-1::0;;;;;;3281:17:0;;::::1;::::0;;;::::1;::::0;;3062:244::o;26104:98::-;26173:9;:21;;-1:-1:-1;;26173:21:0;;;;;;;;;;;;26104:98::o;647:106::-;735:10;647:106;:::o;25426:346::-;-1:-1:-1;;;;;25528:19:0;;25520:68;;;;-1:-1:-1;;;25520:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25607:21:0;;25599:68;;;;-1:-1:-1;;;25599:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25680:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25732:32;;;;;;;;;;;;;;;;;25426:346;;;:::o;23038:539::-;-1:-1:-1;;;;;23144:20:0;;23136:70;;;;-1:-1:-1;;;23136:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23225:23:0;;23217:71;;;;-1:-1:-1;;;23217:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23301:47;23322:6;23330:9;23341:6;23301:20;:47::i;:::-;23381:71;23403:6;23381:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23381:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23361:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23486:20;;;;;;;:32;;23511:6;23486:24;:32::i;:::-;-1:-1:-1;;;;;23463:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23534:35;;;;;;;23463:20;;23534:35;;;;;;;;;;;;;23038:539;;;:::o;14027:166::-;14113:7;14149:12;14141:6;;;;14133:29;;;;-1:-1:-1;;;14133:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14180:5:0;;;14027:166::o;11200:179::-;11258:7;11290:5;;;11314:6;;;;11306:46;;;;;-1:-1:-1;;;11306:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11370:1;11200:179;-1:-1:-1;;;11200:179:0:o;5455:120::-;4999:8;:6;:8::i;:::-;4991:41;;;;;-1:-1:-1;;;4991:41:0;;;;;;;;;;;;-1:-1:-1;;;4991:41:0;;;;;;;;;;;;;;;5514:7:::1;:15:::0;;-1:-1:-1;;5514:15:0::1;::::0;;5545:22:::1;5554:12;:10;:12::i;:::-;5545:22;::::0;;-1:-1:-1;;;;;5545:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;5455:120::o:0;23859:378::-;-1:-1:-1;;;;;23943:21:0;;23935:65;;;;;-1:-1:-1;;;23935:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24013:49;24042:1;24046:7;24055:6;24013:20;:49::i;:::-;24090:12;;:24;;24107:6;24090:16;:24::i;:::-;24075:12;:39;-1:-1:-1;;;;;24146:18:0;;:9;:18;;;;;;;;;;;:30;;24169:6;24146:22;:30::i;:::-;-1:-1:-1;;;;;24125:18:0;;:9;:18;;;;;;;;;;;:51;;;;24192:37;;;;;;;24125:18;;:9;;24192:37;;;;;;;;;;23859:378;;:::o;24570:418::-;-1:-1:-1;;;;;24654:21:0;;24646:67;;;;-1:-1:-1;;;24646:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24726:49;24747:7;24764:1;24768:6;24726:20;:49::i;:::-;24809:68;24832:6;24809:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24809:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;24788:18:0;;:9;:18;;;;;;;;;;:89;24903:12;;:24;;24920:6;24903:16;:24::i;:::-;24888:12;:39;24943:37;;;;;;;;24969:1;;-1:-1:-1;;;;;24943:37:0;;;;;;;;;;;;24570:418;;:::o;28032:114::-;28124:14;;28032:114::o;5196:118::-;4722:8;:6;:8::i;:::-;4721:9;4713:38;;;;;-1:-1:-1;;;4713:38:0;;;;;;;;;;;;-1:-1:-1;;;4713:38:0;;;;;;;;;;;;;;;5256:7:::1;:14:::0;;-1:-1:-1;;5256:14:0::1;5266:4;5256:14;::::0;;5286:20:::1;5293:12;:10;:12::i;34860:261::-:0;34905:7;34925:23;34951:16;:28;34968:10;:8;:10::i;:::-;34951:28;;;;;;;;;;;-1:-1:-1;34951:28:0;;;-1:-1:-1;34996:23:0;;34992:78;;35043:15;-1:-1:-1;35036:22:0;;34992:78;35089:24;:22;:24::i;:::-;35082:31;;;34860:261;:::o;35314:1585::-;35447:7;36395:66;36368:93;;36350:195;;;36488:45;;-1:-1:-1;;;36488:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36350:195;36561:2;:8;;36567:2;36561:8;;:20;;;;;36573:2;:8;;36579:2;36573:8;;36561:20;36557:98;;;36598:45;;-1:-1:-1;;;36598:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36557:98;36752:14;36769:28;36779:5;36786:2;36790;36794;36769:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36769:28:0;;-1:-1:-1;;36769:28:0;;;-1:-1:-1;;;;;;;36816:20:0;;36808:57;;;;;-1:-1:-1;;;36808:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36885:6;35314:1585;-1:-1:-1;;;;;35314:1585:0:o;28154:181::-;28308:19;;28326:1;28308:19;;;28154:181::o;38616:239::-;38726:45;38753:4;38759:2;38763:7;38726:26;:45::i;:::-;38793:8;:6;:8::i;:::-;38792:9;38784:63;;;;-1:-1:-1;;;38784:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11662:158;11720:7;11753:1;11748;:6;;11740:49;;;;;-1:-1:-1;;;11740:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11807:5:0;;;11662:158::o;35129:177::-;35252:9;35129:177;:::o;34099:684::-;34150:7;34170:15;34188:10;:8;:10::i;:::-;34170:28;;34265:26;34347:135;34517:6;:4;:6::i;:::-;34501:24;;;;;;;34569:10;;;;;;;;;;;-1:-1:-1;;;34569:10:0;;;;34318:349;;;;;;;;;;;;;;;;34559:21;34318:349;;;;;;;;;;34647:4;34318:349;;;;;;;;;;;;;;;;;;;;;;;;34294:384;;;;;;;;;-1:-1:-1;34691:25:0;;;:16;:25;;;;;:46;;;-1:-1:-1;34294:384:0;-1:-1:-1;34099:684:0;:::o
Swarm Source
ipfs://aef013998bf653b2f2368b782657c7b1be45d91fd1a47649e31c91786fac64c5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.