Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Music
Overview
Max Total Supply
99,998,700.117154 UOP
Holders
401 (0.00%)
Market
Price
$0.10 @ 0.000031 ETH
Onchain Market Cap
$10,157,398.91
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
100 UOPValue
$10.16 ( ~0.00308546726381063 Eth) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UOP
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /* * @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; } } 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"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.6.2; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.6.2; /** * @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); } pragma solidity ^0.6.2; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.6.2; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 internal _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, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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"); _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 {} /** * @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"); _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_; } } pragma solidity ^0.6.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { revert("ECDSA: invalid signature length"); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } // 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; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * replicates the behavior of the * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`] * JSON-RPC method. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } } contract UOP is ERC20, Ownable { using ECDSA for bytes32; constructor() ERC20("Utopia Open Platform", "UOP", 18) public { _operatorApproved[msg.sender] = true; _mint(0x08Ca29489282DF3daE9e6654A567daAfe2EF93a1, 100000000000000000000000000); transferOwnership(0x08Ca29489282DF3daE9e6654A567daAfe2EF93a1); } uint256 private _maxTotalSupply = 100000000000000000000000000; uint256 constant chainId = 1; address verifyingContract = address(this); string private constant EIP712_DOMAIN = "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"; string private constant FORWARD_DATA_TYPE = "ForwardData(address from,address to,uint256 value,uint256 nonce)"; bytes32 private constant EIP712_DOMAIN_TYPEHASH = keccak256(abi.encodePacked(EIP712_DOMAIN)); bytes32 private constant FORWARD_DATA_TYPEHASH = keccak256(abi.encodePacked(FORWARD_DATA_TYPE)); bytes32 private DOMAIN_SEPARATOR = keccak256(abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256("UOP token"), keccak256("1"), chainId, verifyingContract )); struct ForwardData { address from; address to; uint256 value; uint256 nonce; } // Nonces of senders, used to prevent replay attacks mapping(address => uint256) private nonces; mapping (address => bool) private _operatorApproved; modifier onlyOperator() { require(_operatorApproved[msg.sender], "Operator: not allowed"); _; } function getNonce(address from) public view returns (uint256) { return nonces[from]; } function _verifyNonce(address account, uint256 nonce) internal view { require(nonces[account] == nonce, "nonce mismatch"); } function _verifySig(ForwardData memory data, bytes memory sig) internal view { bytes32 digest = hashForwardData(data); require(digest.recover(sig) == data.from, "UOP: signature mismatch"); } function _updateNonce(address account) internal { nonces[account]++; } function hashForwardData(ForwardData memory data) private view returns(bytes32) { return keccak256(abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode( FORWARD_DATA_TYPEHASH, data.from, data.to, data.value, data.nonce )) )); } function getMaxTotalSupply() external view returns (uint256) { return _maxTotalSupply; } function approveOperator(address _operator) external onlyOwner { _operatorApproved[_operator] = true; } function disableOperator(address _operator) external onlyOwner { _operatorApproved[_operator] = false; } function isOperator(address _operator) external view returns (bool) { return _operatorApproved[_operator]; } function mint(address account, uint256 amount) external onlyOwner { _mint(account, amount); } function mintForBridge(address account, uint256 amount, uint commission, uint userNonce) external onlyOperator { _verifyNonce(account, userNonce); _updateNonce(account); _mint(account, amount); _mint(msg.sender, commission); } function burnForBridge(address account, uint256 amount) external onlyOperator { _burn(account, amount); } function burn(address account, uint256 amount) external onlyOwner { _burn(account, amount); } function transferNoFee(address _from, address _to, uint256 _value, uint256 _nonce, uint256 fee, bytes calldata sig) external returns (bool) { ForwardData memory data = ForwardData(_from, _to, _value, _nonce); _verifyNonce(data.from, data.nonce); _verifySig(data, sig); _updateNonce(data.from); require(data.to != address(0)); _balances[data.from] = _balances[data.from].sub(data.value, "ERC20: transfer amount exceeds balance"); _balances[data.to] = _balances[data.to].add(data.value); _balances[data.from] = _balances[data.from].sub(fee, "ERC20: transfer amount exceeds balance"); _balances[msg.sender] = _balances[msg.sender].add(fee); emit Transfer(data.from, data.to, data.value); return true; } function _mint(address account, uint256 amount) internal override { require(account != address(0), "ERC20: mint to the zero address"); require(_totalSupply.add(amount) <= _maxTotalSupply, "ERC20: minting more then MaxTotalSupply"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"approveOperator","outputs":[],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnForBridge","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":"address","name":"_operator","type":"address"}],"name":"disableOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"commission","type":"uint256"},{"internalType":"uint256","name":"userNonce","type":"uint256"}],"name":"mintForBridge","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":[],"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":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"transferNoFee","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
6a52b7d2dcc80cd2e4000000600655600780546001600160a01b031916301790556101006040526052608081815290620021eb60a0396040516020018082805190602001908083835b60208310620000695780518252601f19909201916020918201910162000048565b51815160209384036101000a60001901801990921691161790526040805192909401828103601f19018352808552825192820192909220600754838301919091527f126b7d0142c9dce7ce44b2fd95c978a1e35c3df4d111a51d333a9722a7752fa6838601527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152600160808401526001600160a01b031660a0808401919091528451808403909101815260c09092019093528051920191909120600855503491505080156200013c57600080fd5b506040518060400160405280601481526020017f55746f706961204f70656e20506c6174666f726d000000000000000000000000815250604051806040016040528060038152602001620554f560ec1b81525060128260039080519060200190620001a992919062000566565b508151620001bf90600490602085019062000566565b506005805460ff191660ff929092169190911790555060009050620001e362000292565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000906000805160206200223d833981519152908290a350336000908152600a60205260409020805460ff191660011790556200026d7308ca29489282df3dae9e6654a567daafe2ef93a16a52b7d2dcc80cd2e400000062000296565b6200028c7308ca29489282df3dae9e6654a567daafe2ef93a1620003f5565b62000602565b3390565b6001600160a01b038216620002f2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60065462000311826002546200050460201b62000f431790919060201c565b1115620003505760405162461bcd60e51b8152600401808060200182810382526027815260200180620021c46027913960400191505060405180910390fd5b6200036c816002546200050460201b62000f431790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200039f91839062000f4362000504821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620003ff62000292565b60055461010090046001600160a01b0390811691161462000467576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116620004ae5760405162461bcd60e51b81526004018080602001828103825260268152602001806200219e6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416906000805160206200223d83398151915290600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156200055f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005a957805160ff1916838001178555620005d9565b82800160010185558215620005d9579182015b82811115620005d9578251825591602001919060010190620005bc565b50620005e7929150620005eb565b5090565b5b80821115620005e75760008155600101620005ec565b611b8c80620006126000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636d70f7ae116100c35780639dc29fac1161007c5780639dc29fac146104b6578063a457c2d7146104e2578063a9059cbb1461050e578063dd62ed3e1461053a578063f2fde38b14610568578063f56408ed1461058e57610158565b80636d70f7ae1461040a57806370a0823114610430578063715018a6146104565780638da5cb5b1461045e57806395d89b41146104825780639b07c1171461048a57610158565b80632d0335ab116101155780632d0335ab1461032e578063313ce56714610354578063395093511461037257806340c10f191461039e578063579984c7146103ca5780635db30bb11461040257610158565b80630330f18c1461015d57806306fdde031461020d578063095ea7b31461028a57806318160ddd146102b657806323b872dd146102d0578063242cae9f14610306575b600080fd5b6101f9600480360360c081101561017357600080fd5b6001600160a01b0382358116926020810135909116916040820135916060810135916080820135919081019060c0810160a08201356401000000008111156101ba57600080fd5b8201836020820111156101cc57600080fd5b803590602001918460018302840111640100000000831117156101ee57600080fd5b5090925090506105b4565b604080519115158252519081900360200190f35b6102156107ca565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024f578181015183820152602001610237565b50505050905090810190601f16801561027c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156102a057600080fd5b506001600160a01b038135169060200135610860565b6102be61087d565b60408051918252519081900360200190f35b6101f9600480360360608110156102e657600080fd5b506001600160a01b03813581169160208101359091169060400135610883565b61032c6004803603602081101561031c57600080fd5b50356001600160a01b031661090a565b005b6102be6004803603602081101561034457600080fd5b50356001600160a01b031661098b565b61035c6109a6565b6040805160ff9092168252519081900360200190f35b6101f96004803603604081101561038857600080fd5b506001600160a01b0381351690602001356109af565b61032c600480360360408110156103b457600080fd5b506001600160a01b0381351690602001356109fd565b61032c600480360360808110156103e057600080fd5b506001600160a01b038135169060208101359060408101359060600135610a68565b6102be610af1565b6101f96004803603602081101561042057600080fd5b50356001600160a01b0316610af7565b6102be6004803603602081101561044657600080fd5b50356001600160a01b0316610b15565b61032c610b30565b610466610bdd565b604080516001600160a01b039092168252519081900360200190f35b610215610bf1565b61032c600480360360408110156104a057600080fd5b506001600160a01b038135169060200135610c52565b61032c600480360360408110156104cc57600080fd5b506001600160a01b038135169060200135610cb8565b6101f9600480360360408110156104f857600080fd5b506001600160a01b038135169060200135610d15565b6101f96004803603604081101561052457600080fd5b506001600160a01b038135169060200135610d7d565b6102be6004803603604081101561055057600080fd5b506001600160a01b0381358116916020013516610d91565b61032c6004803603602081101561057e57600080fd5b50356001600160a01b0316610dbc565b61032c600480360360208110156105a457600080fd5b50356001600160a01b0316610ec5565b60006105be6118c7565b50604080516080810182526001600160a01b03808b16808352908a16602083015291810188905260608101879052906105f79087610fa4565b6106378185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061100192505050565b805161064290611084565b60208101516001600160a01b031661065957600080fd5b61069b816040015160405180606001604052806026815260200161198f6026913983516001600160a01b031660009081526020819052604090205491906110a4565b81516001600160a01b03908116600090815260208181526040808320949094558385015190850151909216815291909120546106d691610f43565b60008083602001516001600160a01b03166001600160a01b03168152602001908152602001600020819055506107408560405180606001604052806026815260200161198f6026913983516001600160a01b031660009081526020819052604090205491906110a4565b81516001600160a01b031660009081526020819052604080822092909255338152205461076d9086610f43565b33600090815260208181526040918290209290925582820151835184830151835190815292516001600160a01b03928316949290911692600080516020611a6883398151915292908290030190a350600198975050505050505050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b600061087461086d61113b565b848461113f565b50600192915050565b60025490565b600061089084848461122b565b6109008461089c61113b565b6108fb85604051806060016040528060288152602001611a20602891396001600160a01b038a166000908152600160205260408120906108da61113b565b6001600160a01b0316815260208101919091526040016000205491906110a4565b61113f565b5060019392505050565b61091261113b565b60055461010090046001600160a01b03908116911614610967576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6001600160a01b031660009081526009602052604090205490565b60055460ff1690565b60006108746109bc61113b565b846108fb85600160006109cd61113b565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f43565b610a0561113b565b60055461010090046001600160a01b03908116911614610a5a576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b610a648282611369565b5050565b336000908152600a602052604090205460ff16610ac4576040805162461bcd60e51b815260206004820152601560248201527413dc195c985d1bdc8e881b9bdd08185b1b1bddd959605a1b604482015290519081900360640190fd5b610ace8482610fa4565b610ad784611084565b610ae18484611369565b610aeb3383611369565b50505050565b60065490565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b610b3861113b565b60055461010090046001600160a01b03908116911614610b8d576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108565780601f1061082b57610100808354040283529160200191610856565b336000908152600a602052604090205460ff16610cae576040805162461bcd60e51b815260206004820152601560248201527413dc195c985d1bdc8e881b9bdd08185b1b1bddd959605a1b604482015290519081900360640190fd5b610a648282611488565b610cc061113b565b60055461010090046001600160a01b03908116911614610cae576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6000610874610d2261113b565b846108fb85604051806060016040528060258152602001611b326025913960016000610d4c61113b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110a4565b6000610874610d8a61113b565b848461122b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610dc461113b565b60055461010090046001600160a01b03908116911614610e19576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6001600160a01b038116610e5e5760405162461bcd60e51b81526004018080602001828103825260268152602001806119476026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610ecd61113b565b60055461010090046001600160a01b03908116911614610f22576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b600082820183811015610f9d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166000908152600960205260409020548114610a64576040805162461bcd60e51b815260206004820152600e60248201526d0dcdedcc6ca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b600061100c83611566565b83519091506001600160a01b0316611024828461169a565b6001600160a01b03161461107f576040805162461bcd60e51b815260206004820152601760248201527f554f503a207369676e6174757265206d69736d61746368000000000000000000604482015290519081900360640190fd5b505050565b6001600160a01b0316600090815260096020526040902080546001019055565b600081848411156111335760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110f85781810151838201526020016110e0565b50505050905090810190601f1680156111255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b3390565b6001600160a01b0383166111845760405162461bcd60e51b8152600401808060200182810382526024815260200180611ace6024913960400191505060405180910390fd5b6001600160a01b0382166111c95760405162461bcd60e51b815260040180806020018281038252602281526020018061196d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112705760405162461bcd60e51b8152600401808060200182810382526025815260200180611aa96025913960400191505060405180910390fd5b6001600160a01b0382166112b55760405162461bcd60e51b81526004018080602001828103825260238152602001806119026023913960400191505060405180910390fd5b6112f28160405180606001604052806026815260200161198f602691396001600160a01b03861660009081526020819052604090205491906110a4565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546113219082610f43565b6001600160a01b03808416600081815260208181526040918290209490945580518581529051919392871692600080516020611a6883398151915292918290030190a3505050565b6001600160a01b0382166113c4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6006546002546113d49083610f43565b11156114115760405162461bcd60e51b81526004018080602001828103825260278152602001806119f96027913960400191505060405180910390fd5b60025461141e9082610f43565b6002556001600160a01b0382166000908152602081905260409020546114449082610f43565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020611a688339815191529281900390910190a35050565b6001600160a01b0382166114cd5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a886021913960400191505060405180910390fd5b61150a81604051806060016040528060228152602001611925602291396001600160a01b03851660009081526020819052604090205491906110a4565b6001600160a01b0383166000908152602081905260409020556002546115309082611885565b6002556040805182815290516000916001600160a01b03851691600080516020611a688339815191529181900360200190a35050565b6000600854604051806060016040528060408152602001611af2604091396040516020018082805190602001908083835b602083106115b65780518252601f199092019160209182019101611597565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405280519060200120836000015184602001518560400151866060015160405160200180868152602001856001600160a01b03168152602001846001600160a01b031681526020018381526020018281526020019550505050505060405160208183030381529060405280519060200120604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b600081516041146116f2576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156117635760405162461bcd60e51b81526004018080602001828103825260228152602001806119b56022913960400191505060405180910390fd5b8060ff16601b1415801561177b57508060ff16601c14155b156117b75760405162461bcd60e51b81526004018080602001828103825260228152602001806119d76022913960400191505060405180910390fd5b600060018783868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611813573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661187b576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b9695505050505050565b6000610f9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110a4565b604051806080016040528060006001600160a01b0316815260200160006001600160a01b031681526020016000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c756545434453413a20696e76616c6964207369676e6174757265202776272076616c756545524332303a206d696e74696e67206d6f7265207468656e204d6178546f74616c537570706c7945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373466f72776172644461746128616464726573732066726f6d2c6164647265737320746f2c75696e743235362076616c75652c75696e74323536206e6f6e63652945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201de36a8ba8207b70f766d61c48323a5deba4574c86e977cdd424c156758ad30e64736f6c634300060c00334f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a206d696e74696e67206d6f7265207468656e204d6178546f74616c537570706c79454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e7472616374298be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636d70f7ae116100c35780639dc29fac1161007c5780639dc29fac146104b6578063a457c2d7146104e2578063a9059cbb1461050e578063dd62ed3e1461053a578063f2fde38b14610568578063f56408ed1461058e57610158565b80636d70f7ae1461040a57806370a0823114610430578063715018a6146104565780638da5cb5b1461045e57806395d89b41146104825780639b07c1171461048a57610158565b80632d0335ab116101155780632d0335ab1461032e578063313ce56714610354578063395093511461037257806340c10f191461039e578063579984c7146103ca5780635db30bb11461040257610158565b80630330f18c1461015d57806306fdde031461020d578063095ea7b31461028a57806318160ddd146102b657806323b872dd146102d0578063242cae9f14610306575b600080fd5b6101f9600480360360c081101561017357600080fd5b6001600160a01b0382358116926020810135909116916040820135916060810135916080820135919081019060c0810160a08201356401000000008111156101ba57600080fd5b8201836020820111156101cc57600080fd5b803590602001918460018302840111640100000000831117156101ee57600080fd5b5090925090506105b4565b604080519115158252519081900360200190f35b6102156107ca565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024f578181015183820152602001610237565b50505050905090810190601f16801561027c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156102a057600080fd5b506001600160a01b038135169060200135610860565b6102be61087d565b60408051918252519081900360200190f35b6101f9600480360360608110156102e657600080fd5b506001600160a01b03813581169160208101359091169060400135610883565b61032c6004803603602081101561031c57600080fd5b50356001600160a01b031661090a565b005b6102be6004803603602081101561034457600080fd5b50356001600160a01b031661098b565b61035c6109a6565b6040805160ff9092168252519081900360200190f35b6101f96004803603604081101561038857600080fd5b506001600160a01b0381351690602001356109af565b61032c600480360360408110156103b457600080fd5b506001600160a01b0381351690602001356109fd565b61032c600480360360808110156103e057600080fd5b506001600160a01b038135169060208101359060408101359060600135610a68565b6102be610af1565b6101f96004803603602081101561042057600080fd5b50356001600160a01b0316610af7565b6102be6004803603602081101561044657600080fd5b50356001600160a01b0316610b15565b61032c610b30565b610466610bdd565b604080516001600160a01b039092168252519081900360200190f35b610215610bf1565b61032c600480360360408110156104a057600080fd5b506001600160a01b038135169060200135610c52565b61032c600480360360408110156104cc57600080fd5b506001600160a01b038135169060200135610cb8565b6101f9600480360360408110156104f857600080fd5b506001600160a01b038135169060200135610d15565b6101f96004803603604081101561052457600080fd5b506001600160a01b038135169060200135610d7d565b6102be6004803603604081101561055057600080fd5b506001600160a01b0381358116916020013516610d91565b61032c6004803603602081101561057e57600080fd5b50356001600160a01b0316610dbc565b61032c600480360360208110156105a457600080fd5b50356001600160a01b0316610ec5565b60006105be6118c7565b50604080516080810182526001600160a01b03808b16808352908a16602083015291810188905260608101879052906105f79087610fa4565b6106378185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061100192505050565b805161064290611084565b60208101516001600160a01b031661065957600080fd5b61069b816040015160405180606001604052806026815260200161198f6026913983516001600160a01b031660009081526020819052604090205491906110a4565b81516001600160a01b03908116600090815260208181526040808320949094558385015190850151909216815291909120546106d691610f43565b60008083602001516001600160a01b03166001600160a01b03168152602001908152602001600020819055506107408560405180606001604052806026815260200161198f6026913983516001600160a01b031660009081526020819052604090205491906110a4565b81516001600160a01b031660009081526020819052604080822092909255338152205461076d9086610f43565b33600090815260208181526040918290209290925582820151835184830151835190815292516001600160a01b03928316949290911692600080516020611a6883398151915292908290030190a350600198975050505050505050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b600061087461086d61113b565b848461113f565b50600192915050565b60025490565b600061089084848461122b565b6109008461089c61113b565b6108fb85604051806060016040528060288152602001611a20602891396001600160a01b038a166000908152600160205260408120906108da61113b565b6001600160a01b0316815260208101919091526040016000205491906110a4565b61113f565b5060019392505050565b61091261113b565b60055461010090046001600160a01b03908116911614610967576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6001600160a01b031660009081526009602052604090205490565b60055460ff1690565b60006108746109bc61113b565b846108fb85600160006109cd61113b565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f43565b610a0561113b565b60055461010090046001600160a01b03908116911614610a5a576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b610a648282611369565b5050565b336000908152600a602052604090205460ff16610ac4576040805162461bcd60e51b815260206004820152601560248201527413dc195c985d1bdc8e881b9bdd08185b1b1bddd959605a1b604482015290519081900360640190fd5b610ace8482610fa4565b610ad784611084565b610ae18484611369565b610aeb3383611369565b50505050565b60065490565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b610b3861113b565b60055461010090046001600160a01b03908116911614610b8d576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108565780601f1061082b57610100808354040283529160200191610856565b336000908152600a602052604090205460ff16610cae576040805162461bcd60e51b815260206004820152601560248201527413dc195c985d1bdc8e881b9bdd08185b1b1bddd959605a1b604482015290519081900360640190fd5b610a648282611488565b610cc061113b565b60055461010090046001600160a01b03908116911614610cae576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6000610874610d2261113b565b846108fb85604051806060016040528060258152602001611b326025913960016000610d4c61113b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110a4565b6000610874610d8a61113b565b848461122b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610dc461113b565b60055461010090046001600160a01b03908116911614610e19576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6001600160a01b038116610e5e5760405162461bcd60e51b81526004018080602001828103825260268152602001806119476026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610ecd61113b565b60055461010090046001600160a01b03908116911614610f22576040805162461bcd60e51b81526020600482018190526024820152600080516020611a48833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b600082820183811015610f9d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166000908152600960205260409020548114610a64576040805162461bcd60e51b815260206004820152600e60248201526d0dcdedcc6ca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b600061100c83611566565b83519091506001600160a01b0316611024828461169a565b6001600160a01b03161461107f576040805162461bcd60e51b815260206004820152601760248201527f554f503a207369676e6174757265206d69736d61746368000000000000000000604482015290519081900360640190fd5b505050565b6001600160a01b0316600090815260096020526040902080546001019055565b600081848411156111335760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110f85781810151838201526020016110e0565b50505050905090810190601f1680156111255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b3390565b6001600160a01b0383166111845760405162461bcd60e51b8152600401808060200182810382526024815260200180611ace6024913960400191505060405180910390fd5b6001600160a01b0382166111c95760405162461bcd60e51b815260040180806020018281038252602281526020018061196d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112705760405162461bcd60e51b8152600401808060200182810382526025815260200180611aa96025913960400191505060405180910390fd5b6001600160a01b0382166112b55760405162461bcd60e51b81526004018080602001828103825260238152602001806119026023913960400191505060405180910390fd5b6112f28160405180606001604052806026815260200161198f602691396001600160a01b03861660009081526020819052604090205491906110a4565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546113219082610f43565b6001600160a01b03808416600081815260208181526040918290209490945580518581529051919392871692600080516020611a6883398151915292918290030190a3505050565b6001600160a01b0382166113c4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6006546002546113d49083610f43565b11156114115760405162461bcd60e51b81526004018080602001828103825260278152602001806119f96027913960400191505060405180910390fd5b60025461141e9082610f43565b6002556001600160a01b0382166000908152602081905260409020546114449082610f43565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020611a688339815191529281900390910190a35050565b6001600160a01b0382166114cd5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a886021913960400191505060405180910390fd5b61150a81604051806060016040528060228152602001611925602291396001600160a01b03851660009081526020819052604090205491906110a4565b6001600160a01b0383166000908152602081905260409020556002546115309082611885565b6002556040805182815290516000916001600160a01b03851691600080516020611a688339815191529181900360200190a35050565b6000600854604051806060016040528060408152602001611af2604091396040516020018082805190602001908083835b602083106115b65780518252601f199092019160209182019101611597565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405280519060200120836000015184602001518560400151866060015160405160200180868152602001856001600160a01b03168152602001846001600160a01b031681526020018381526020018281526020019550505050505060405160208183030381529060405280519060200120604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b600081516041146116f2576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156117635760405162461bcd60e51b81526004018080602001828103825260228152602001806119b56022913960400191505060405180910390fd5b8060ff16601b1415801561177b57508060ff16601c14155b156117b75760405162461bcd60e51b81526004018080602001828103825260228152602001806119d76022913960400191505060405180910390fd5b600060018783868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611813573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661187b576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b9695505050505050565b6000610f9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110a4565b604051806080016040528060006001600160a01b0316815260200160006001600160a01b031681526020016000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c756545434453413a20696e76616c6964207369676e6174757265202776272076616c756545524332303a206d696e74696e67206d6f7265207468656e204d6178546f74616c537570706c7945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373466f72776172644461746128616464726573732066726f6d2c6164647265737320746f2c75696e743235362076616c75652c75696e74323536206e6f6e63652945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201de36a8ba8207b70f766d61c48323a5deba4574c86e977cdd424c156758ad30e64736f6c634300060c0033
Deployed Bytecode Sourcemap
31004:4985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34736:807;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34736:807:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34736:807:0;;-1:-1:-1;34736:807:0;-1:-1:-1;34736:807:0;:::i;:::-;;;;;;;;;;;;;;;;;;19595:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21701:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21701:169:0;;;;;;;;:::i;20670:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;22344:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22344:321:0;;;;;;;;;;;;;;;;;:::i;33699:117::-;;;;;;;;;;;;;;;;-1:-1:-1;33699:117:0;-1:-1:-1;;;;;33699:117:0;;:::i;:::-;;32643:100;;;;;;;;;;;;;;;;-1:-1:-1;32643:100:0;-1:-1:-1;;;;;32643:100:0;;:::i;20522:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23074:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23074:218:0;;;;;;;;:::i;34094:107::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34094:107:0;;;;;;;;:::i;34213:267::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34213:267:0;;;;;;;;;;;;;;;;;;:::i;33585:102::-;;;:::i;33958:122::-;;;;;;;;;;;;;;;;-1:-1:-1;33958:122:0;-1:-1:-1;;;;;33958:122:0;;:::i;20833:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20833:119:0;-1:-1:-1;;;;;20833:119:0;;:::i;16891:148::-;;;:::i;16249:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16249:79:0;;;;;;;;;;;;;;19797:87;;;:::i;34486:119::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34486:119:0;;;;;;;;:::i;34617:107::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34617:107:0;;;;;;;;:::i;23795:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23795:269:0;;;;;;;;:::i;21165:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21165:175:0;;;;;;;;:::i;21403:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21403:151:0;;;;;;;;;;:::i;17194:244::-;;;;;;;;;;;;;;;;-1:-1:-1;17194:244:0;-1:-1:-1;;;;;17194:244:0;;:::i;33828:118::-;;;;;;;;;;;;;;;;-1:-1:-1;33828:118:0;-1:-1:-1;;;;;33828:118:0;;:::i;34736:807::-;34870:4;34887:23;;:::i;:::-;-1:-1:-1;34913:39:0;;;;;;;;-1:-1:-1;;;;;34913:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;34963:35;;34945:6;34963:12;:35::i;:::-;35009:21;35020:4;35026:3;;35009:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35009:10:0;;-1:-1:-1;;;35009:21:0:i;:::-;35054:9;;35041:23;;:12;:23::i;:::-;35083:7;;;;-1:-1:-1;;;;;35083:21:0;35075:30;;;;;;35141:78;35166:4;:10;;;35141:78;;;;;;;;;;;;;;;;;35151:9;;-1:-1:-1;;;;;35141:20:0;:9;:20;;;;;;;;;;;;:78;:24;:78::i;:::-;35128:9;;-1:-1:-1;;;;;35118:20:0;;;:9;:20;;;;;;;;;;;:101;;;;35274:10;;;;35261:7;;;;35251:18;;;;;;;;;;:34;;:22;:34::i;:::-;35230:9;:18;35240:4;:7;;;-1:-1:-1;;;;;35230:18:0;-1:-1:-1;;;;;35230:18:0;;;;;;;;;;;;:55;;;;35321:71;35346:3;35321:71;;;;;;;;;;;;;;;;;35331:9;;-1:-1:-1;;;;;35321:20:0;:9;:20;;;;;;;;;;;;:71;:24;:71::i;:::-;35308:9;;-1:-1:-1;;;;;35298:20:0;:9;:20;;;;;;;;;;;:94;;;;35437:10;35427:21;;;;:30;;35453:3;35427:25;:30::i;:::-;35413:10;35403:9;:21;;;;;;;;;;;;:54;;;;35493:7;;;;35482:9;;35502:10;;;;35473:40;;;;;;;-1:-1:-1;;;;;35473:40:0;;;;;;;;;-1:-1:-1;;;;;;;;;;;35473:40:0;;;;;;;;-1:-1:-1;35531:4:0;;34736:807;-1:-1:-1;;;;;;;;34736:807:0:o;19595:83::-;19665:5;19658:12;;;;;;;;-1:-1:-1;;19658:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19632:13;;19658:12;;19665:5;;19658:12;;19665:5;19658:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19595:83;:::o;21701:169::-;21784:4;21801:39;21810:12;:10;:12::i;:::-;21824:7;21833:6;21801:8;:39::i;:::-;-1:-1:-1;21858:4:0;21701:169;;;;:::o;20670:100::-;20750:12;;20670:100;:::o;22344:321::-;22450:4;22467:36;22477:6;22485:9;22496:6;22467:9;:36::i;:::-;22514:121;22523:6;22531:12;:10;:12::i;:::-;22545:89;22583:6;22545:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22545:19:0;;;;;;:11;:19;;;;;;22565:12;:10;:12::i;:::-;-1:-1:-1;;;;;22545:33:0;;;;;;;;;;;;-1:-1:-1;22545:33:0;;;:89;:37;:89::i;:::-;22514:8;:121::i;:::-;-1:-1:-1;22653:4:0;22344:321;;;;;:::o;33699:117::-;16471:12;:10;:12::i;:::-;16461:6;;;;;-1:-1:-1;;;;;16461:6:0;;;:22;;;16453:67;;;;;-1:-1:-1;;;16453:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16453:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33773:28:0::1;;::::0;;;:17:::1;:28;::::0;;;;:35;;-1:-1:-1;;33773:35:0::1;33804:4;33773:35;::::0;;33699:117::o;32643:100::-;-1:-1:-1;;;;;32723:12:0;32696:7;32723:12;;;:6;:12;;;;;;;32643:100::o;20522:83::-;20588:9;;;;20522:83;:::o;23074:218::-;23162:4;23179:83;23188:12;:10;:12::i;:::-;23202:7;23211:50;23250:10;23211:11;:25;23223:12;:10;:12::i;:::-;-1:-1:-1;;;;;23211:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23211:25:0;;;:34;;;;;;;;;;;:38;:50::i;34094:107::-;16471:12;:10;:12::i;:::-;16461:6;;;;;-1:-1:-1;;;;;16461:6:0;;;:22;;;16453:67;;;;;-1:-1:-1;;;16453:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16453:67:0;;;;;;;;;;;;;;;34171:22:::1;34177:7;34186:6;34171:5;:22::i;:::-;34094:107:::0;;:::o;34213:267::-;32574:10;32556:29;;;;:17;:29;;;;;;;;32548:63;;;;;-1:-1:-1;;;32548:63:0;;;;;;;;;;;;-1:-1:-1;;;32548:63:0;;;;;;;;;;;;;;;34335:32:::1;34348:7;34357:9;34335:12;:32::i;:::-;34378:21;34391:7;34378:12;:21::i;:::-;34410:22;34416:7;34425:6;34410:5;:22::i;:::-;34443:29;34449:10;34461;34443:5;:29::i;:::-;34213:267:::0;;;;:::o;33585:102::-;33664:15;;33585:102;:::o;33958:122::-;-1:-1:-1;;;;;34044:28:0;34020:4;34044:28;;;:17;:28;;;;;;;;;33958:122::o;20833:119::-;-1:-1:-1;;;;;20926:18:0;20899:7;20926:18;;;;;;;;;;;;20833:119::o;16891:148::-;16471:12;:10;:12::i;:::-;16461:6;;;;;-1:-1:-1;;;;;16461:6:0;;;:22;;;16453:67;;;;;-1:-1:-1;;;16453:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16453:67:0;;;;;;;;;;;;;;;16982:6:::1;::::0;16961:40:::1;::::0;16998:1:::1;::::0;16982:6:::1;::::0;::::1;-1:-1:-1::0;;;;;16982:6:0::1;::::0;16961:40:::1;::::0;16998:1;;16961:40:::1;17012:6;:19:::0;;-1:-1:-1;;;;;;17012:19:0::1;::::0;;16891:148::o;16249:79::-;16314:6;;;;;-1:-1:-1;;;;;16314:6:0;;16249:79::o;19797:87::-;19869:7;19862:14;;;;;;;;-1:-1:-1;;19862:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19836:13;;19862:14;;19869:7;;19862:14;;19869:7;19862:14;;;;;;;;;;;;;;;;;;;;;;;;34486:119;32574:10;32556:29;;;;:17;:29;;;;;;;;32548:63;;;;;-1:-1:-1;;;32548:63:0;;;;;;;;;;;;-1:-1:-1;;;32548:63:0;;;;;;;;;;;;;;;34575:22:::1;34581:7;34590:6;34575:5;:22::i;34617:107::-:0;16471:12;:10;:12::i;:::-;16461:6;;;;;-1:-1:-1;;;;;16461:6:0;;;:22;;;16453:67;;;;;-1:-1:-1;;;16453:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16453:67:0;;;;;;;;;;;;;;23795:269;23888:4;23905:129;23914:12;:10;:12::i;:::-;23928:7;23937:96;23976:15;23937:96;;;;;;;;;;;;;;;;;:11;:25;23949:12;:10;:12::i;:::-;-1:-1:-1;;;;;23937:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23937:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;21165:175::-;21251:4;21268:42;21278:12;:10;:12::i;:::-;21292:9;21303:6;21268:9;:42::i;21403:151::-;-1:-1:-1;;;;;21519:18:0;;;21492:7;21519:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21403:151::o;17194:244::-;16471:12;:10;:12::i;:::-;16461:6;;;;;-1:-1:-1;;;;;16461:6:0;;;:22;;;16453:67;;;;;-1:-1:-1;;;16453:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16453:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17283:22:0;::::1;17275:73;;;;-1:-1:-1::0;;;17275:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17385:6;::::0;17364:38:::1;::::0;-1:-1:-1;;;;;17364:38:0;;::::1;::::0;17385:6:::1;::::0;::::1;;::::0;17364:38:::1;::::0;;;::::1;17413:6;:17:::0;;-1:-1:-1;;;;;17413:17:0;;::::1;;;-1:-1:-1::0;;;;;;17413:17:0;;::::1;::::0;;;::::1;::::0;;17194:244::o;33828:118::-;16471:12;:10;:12::i;:::-;16461:6;;;;;-1:-1:-1;;;;;16461:6:0;;;:22;;;16453:67;;;;;-1:-1:-1;;;16453:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16453:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33902:28:0::1;33933:5;33902:28:::0;;;:17:::1;:28;::::0;;;;:36;;-1:-1:-1;;33902:36:0::1;::::0;;33828:118::o;8014:181::-;8072:7;8104:5;;;8128:6;;;;8120:46;;;;;-1:-1:-1;;;8120:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8186:1;8014:181;-1:-1:-1;;;8014:181:0:o;32751:138::-;-1:-1:-1;;;;;32838:15:0;;;;;;:6;:15;;;;;;:24;;32830:51;;;;;-1:-1:-1;;;32830:51:0;;;;;;;;;;;;-1:-1:-1;;;32830:51:0;;;;;;;;;;;;;;32897:213;32985:14;33002:21;33018:4;33002:15;:21::i;:::-;33065:9;;32985:38;;-1:-1:-1;;;;;;33042:32:0;:19;32985:38;33057:3;33042:14;:19::i;:::-;-1:-1:-1;;;;;33042:32:0;;33034:68;;;;;-1:-1:-1;;;33034:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32897:213;;;:::o;33118:84::-;-1:-1:-1;;;;;33177:15:0;;;;;:6;:15;;;;;:17;;;;;;33118:84::o;8917:192::-;9003:7;9039:12;9031:6;;;;9023:29;;;;-1:-1:-1;;;9023:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9075:5:0;;;8917:192::o;605:106::-;693:10;605:106;:::o;26513:346::-;-1:-1:-1;;;;;26615:19:0;;26607:68;;;;-1:-1:-1;;;26607:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26694:21:0;;26686:68;;;;-1:-1:-1;;;26686:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26767:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26819:32;;;;;;;;;;;;;;;;;26513:346;;;:::o;24558:479::-;-1:-1:-1;;;;;24664:20:0;;24656:70;;;;-1:-1:-1;;;24656:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24745:23:0;;24737:71;;;;-1:-1:-1;;;24737:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24841;24863:6;24841:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24841:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24821:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24946:20;;;;;;;:32;;24971:6;24946:24;:32::i;:::-;-1:-1:-1;;;;;24923:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24994:35;;;;;;;24923:20;;24994:35;;;;-1:-1:-1;;;;;;;;;;;24994:35:0;;;;;;;;24558:479;;;:::o;35555:431::-;-1:-1:-1;;;;;35640:21:0;;35632:65;;;;;-1:-1:-1;;;35632:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35744:15;;35716:12;;:24;;35733:6;35716:16;:24::i;:::-;:43;;35708:95;;;;-1:-1:-1;;;35708:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35839:12;;:24;;35856:6;35839:16;:24::i;:::-;35824:12;:39;-1:-1:-1;;;;;35895:18:0;;:9;:18;;;;;;;;;;;:30;;35918:6;35895:22;:30::i;:::-;-1:-1:-1;;;;;35874:18:0;;:9;:18;;;;;;;;;;;:51;;;;35941:37;;;;;;;35874:18;;:9;;-1:-1:-1;;;;;;;;;;;35941:37:0;;;;;;;;;35555:431;;:::o;25717:356::-;-1:-1:-1;;;;;25801:21:0;;25793:67;;;;-1:-1:-1;;;25793:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25894:68;25917:6;25894:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25894:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;25873:18:0;;:9;:18;;;;;;;;;;:89;25988:12;;:24;;26005:6;25988:16;:24::i;:::-;25973:12;:39;26028:37;;;;;;;;26054:1;;-1:-1:-1;;;;;26028:37:0;;;-1:-1:-1;;;;;;;;;;;26028:37:0;;;;;;;;25717:356;;:::o;33214:359::-;33285:7;33366:16;;31964:17;;;;;;;;;;;;;;;;;31947:35;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;31947:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31937:46;;;;;;33464:4;:9;;;33488:4;:7;;;33510:4;:10;;;33535:4;:10;;;33403:153;;;;;;;;;;;-1:-1:-1;;;;;33403:153:0;;;;;;-1:-1:-1;;;;;33403:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33393:164;;;;;;33318:246;;;;;;-1:-1:-1;;;33318:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33308:257;;;;;;33301:264;;33214:359;;;:::o;28344:2110::-;28422:7;28485:9;:16;28505:2;28485:22;28481:96;;28524:41;;;-1:-1:-1;;;28524:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28481:96;28938:4;28923:20;;28917:27;28984:4;28969:20;;28963:27;29038:4;29023:20;;29017:27;28646:9;29009:36;29968:66;29955:79;;29951:156;;;30051:44;;-1:-1:-1;;;30051:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29951:156;30123:1;:7;;30128:2;30123:7;;:18;;;;;30134:1;:7;;30139:2;30134:7;;30123:18;30119:95;;;30158:44;;-1:-1:-1;;;30158:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30119:95;30311:14;30328:24;30338:4;30344:1;30347;30350;30328:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30328:24:0;;-1:-1:-1;;30328:24:0;;;-1:-1:-1;;;;;;;30371:20:0;;30363:57;;;;;-1:-1:-1;;;30363:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30440:6;28344:2110;-1:-1:-1;;;;;;28344:2110:0:o;8478:136::-;8536:7;8563:43;8567:1;8570;8563:43;;;;;;;;;;;;;;;;;:3;:43::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://1de36a8ba8207b70f766d61c48323a5deba4574c86e977cdd424c156758ad30e
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.