ERC-20
Staking
Overview
Max Total Supply
11,089.403576516637402457 ARTH
Holders
103 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ARTHValuecoin
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract ARTHValuecoin is Ownable, ERC20, ERC20Permit { constructor() ERC20("ARTH Valuecoin", "ARTH") ERC20Permit("ARTH") {} mapping (address => bool) public borrowerOperationAddresses; mapping (address => bool) public troveManagerAddresses; mapping (address => bool) public stabilityPoolAddresses; // --- Events --- event BorrowerOperationsAddressToggled(address indexed boAddress, bool oldFlag, bool newFlag, uint256 timestamp); event TroveManagerToggled(address indexed tmAddress, bool oldFlag, bool newFlag, uint256 timestamp); event StabilityPoolToggled(address indexed spAddress, bool oldFlag, bool newFlag, uint256 timestamp); function toggleBorrowerOperations(address borrowerOperations) external onlyOwner { bool oldFlag = borrowerOperationAddresses[borrowerOperations]; borrowerOperationAddresses[borrowerOperations] = !oldFlag; emit BorrowerOperationsAddressToggled(borrowerOperations, oldFlag, !oldFlag, block.timestamp); } function toggleTroveManager(address troveManager) external onlyOwner { bool oldFlag = troveManagerAddresses[troveManager]; troveManagerAddresses[troveManager] = !oldFlag; emit TroveManagerToggled(troveManager, oldFlag, !oldFlag, block.timestamp); } function toggleStabilityPool(address stabilityPool) external onlyOwner { bool oldFlag = stabilityPoolAddresses[stabilityPool]; stabilityPoolAddresses[stabilityPool] = !oldFlag; emit StabilityPoolToggled(stabilityPool, oldFlag, !oldFlag, block.timestamp); } // --- Functions for intra-Liquity calls --- function mint(address _account, uint256 _amount) external { _requireCallerIsBorrowerOperations(); _mint(_account, _amount); } function burn(address _account, uint256 _amount) external { _requireCallerIsBOorTroveMorSP(); _burn(_account, _amount); } function sendToPool(address _sender, address _poolAddress, uint256 _amount) external { _requireCallerIsStabilityPool(); _transfer(_sender, _poolAddress, _amount); } function returnFromPool(address _poolAddress, address _receiver, uint256 _amount) external { _requireCallerIsTroveMorSP(); _transfer(_poolAddress, _receiver, _amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(address(to) != address(this), "dont send to token contract"); } // --- 'require' functions --- function _requireValidRecipient(address _recipient) internal view { require( _recipient != address(0) && _recipient != address(this), "ARTH: Cannot transfer tokens directly to the ARTH token contract or the zero address" ); require( !stabilityPoolAddresses[_recipient] && !troveManagerAddresses[_recipient] && !borrowerOperationAddresses[_recipient], "ARTH: Cannot transfer tokens directly to the StabilityPool, TroveManager or BorrowerOps" ); } function _requireCallerIsBorrowerOperations() internal view { require(borrowerOperationAddresses[msg.sender], "ARTH: Caller is not BorrowerOperations"); } function _requireCallerIsBOorTroveMorSP() internal view { require( borrowerOperationAddresses[msg.sender] || troveManagerAddresses[msg.sender] || stabilityPoolAddresses[msg.sender], "ARTH: Caller is neither BorrowerOperations nor TroveManager nor StabilityPool" ); } function _requireCallerIsStabilityPool() internal view { require(stabilityPoolAddresses[msg.sender], "ARTH: Caller is not the StabilityPool"); } function _requireCallerIsTroveMorSP() internal view { require( troveManagerAddresses[msg.sender] || stabilityPoolAddresses[msg.sender], "ARTH: Caller is neither TroveManager nor StabilityPool"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); 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); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./draft-IERC20Permit.sol"; import "../ERC20.sol"; import "../../../utils/cryptography/draft-EIP712.sol"; import "../../../utils/cryptography/ECDSA.sol"; import "../../../utils/Counters.sol"; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired 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); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. 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 if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"boAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"oldFlag","type":"bool"},{"indexed":false,"internalType":"bool","name":"newFlag","type":"bool"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"BorrowerOperationsAddressToggled","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":"spAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"oldFlag","type":"bool"},{"indexed":false,"internalType":"bool","name":"newFlag","type":"bool"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"StabilityPoolToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tmAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"oldFlag","type":"bool"},{"indexed":false,"internalType":"bool","name":"newFlag","type":"bool"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TroveManagerToggled","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"","type":"address"}],"name":"borrowerOperationAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_poolAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"returnFromPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_poolAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendToPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stabilityPoolAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrowerOperations","type":"address"}],"name":"toggleBorrowerOperations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stabilityPool","type":"address"}],"name":"toggleStabilityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"troveManager","type":"address"}],"name":"toggleTroveManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"troveManagerAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120908152503480156200003a57600080fd5b506040518060400160405280600481526020017f4152544800000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f415254482056616c7565636f696e0000000000000000000000000000000000008152506040518060400160405280600481526020017f41525448000000000000000000000000000000000000000000000000000000008152506200013462000128620001ec60201b60201c565b620001f460201b60201c565b81600490805190602001906200014c929190620002f4565b50806005908051906020019062000165929190620002f4565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a08181525050620001d0818484620002b860201b60201c565b60808181525050806101008181525050505050505050620004e1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008383834630604051602001620002d5959493929190620003d7565b6040516020818303038152906040528051906020012090509392505050565b82805462000302906200047c565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b620003af8162000434565b82525050565b620003c08162000448565b82525050565b620003d18162000472565b82525050565b600060a082019050620003ee6000830188620003b5565b620003fd6020830187620003b5565b6200040c6040830186620003b5565b6200041b6060830185620003c6565b6200042a6080830184620003a4565b9695505050505050565b6000620004418262000452565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200049557607f821691505b60208210811415620004ac57620004ab620004b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160c05160e051610100516101205161379e62000531600039600061102a0152600061185401526000611896015260006118750152600061180101526000611829015261379e6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d505accf11610071578063d505accf146104e0578063dd62ed3e146104fc578063f2fde38b1461052c578063f6b3103714610548576101a9565b8063a9059cbb14610464578063bb997bac14610494578063cd8b018d146104b0576101a9565b80638da5cb5b116100d35780638da5cb5b146103dc57806395d89b41146103fa5780639dc29fac14610418578063a457c2d714610434576101a9565b806370a0823114610372578063715018a6146103a25780637ecebe00146103ac576101a9565b8063313ce567116101665780633e919fcf116101405780633e919fcf1461030257806340c10f191461031e57806341f8b9491461033a57806363f1b73114610356576101a9565b8063313ce567146102965780633644e515146102b457806339509351146102d2576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806320c582be1461021a57806323b872dd14610236578063308a54d814610266575b600080fd5b6101b6610578565b6040516101c391906131e6565b60405180910390f35b6101e660048036038101906101e191906126d1565b61060a565b6040516101f39190613080565b60405180910390f35b610204610628565b60405161021191906134e8565b60405180910390f35b610234600480360381019061022f91906125e4565b610632565b005b610250600480360381019061024b91906125e4565b61064a565b60405161025d9190613080565b60405180910390f35b610280600480360381019061027b919061257f565b610742565b60405161028d9190613080565b60405180910390f35b61029e610762565b6040516102ab9190613503565b60405180910390f35b6102bc61076b565b6040516102c991906130d2565b60405180910390f35b6102ec60048036038101906102e791906126d1565b61077a565b6040516102f99190613080565b60405180910390f35b61031c6004803603810190610317919061257f565b610826565b005b610338600480360381019061033391906126d1565b6109a2565b005b610354600480360381019061034f919061257f565b6109b8565b005b610370600480360381019061036b919061257f565b610b34565b005b61038c6004803603810190610387919061257f565b610cb0565b60405161039991906134e8565b60405180910390f35b6103aa610cf9565b005b6103c660048036038101906103c1919061257f565b610d81565b6040516103d391906134e8565b60405180910390f35b6103e4610dd1565b6040516103f19190613065565b60405180910390f35b610402610dfa565b60405161040f91906131e6565b60405180910390f35b610432600480360381019061042d91906126d1565b610e8c565b005b61044e600480360381019061044991906126d1565b610ea2565b60405161045b9190613080565b60405180910390f35b61047e600480360381019061047991906126d1565b610f8d565b60405161048b9190613080565b60405180910390f35b6104ae60048036038101906104a991906125e4565b610fab565b005b6104ca60048036038101906104c5919061257f565b610fc3565b6040516104d79190613080565b60405180910390f35b6104fa60048036038101906104f59190612633565b610fe3565b005b610516600480360381019061051191906125a8565b611125565b60405161052391906134e8565b60405180910390f35b6105466004803603810190610541919061257f565b6111ac565b005b610562600480360381019061055d919061257f565b6112a4565b60405161056f9190613080565b60405180910390f35b60606004805461058790613661565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390613661565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b600061061e6106176112c4565b84846112cc565b6001905092915050565b6000600354905090565b61063a611497565b610645838383611579565b505050565b6000610657848484611579565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106a26112c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610719906133c8565b60405180910390fd5b6107368561072e6112c4565b8584036112cc565b60019150509392505050565b60086020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60006107756117fd565b905090565b600061081c6107876112c4565b8484600260006107956112c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108179190613545565b6112cc565b6001905092915050565b61082e6112c4565b73ffffffffffffffffffffffffffffffffffffffff1661084c610dd1565b73ffffffffffffffffffffffffffffffffffffffff16146108a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610899906133e8565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f021266964fedb8c8f845950afe4c1215531bc3632d5cfd31f5c66867357a1192828315426040516109969392919061309b565b60405180910390a25050565b6109aa6118c0565b6109b4828261194e565b5050565b6109c06112c4565b73ffffffffffffffffffffffffffffffffffffffff166109de610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906133e8565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f39694494256aa31c035159b366ebf660324aad413ccfa62f6a2af0ed007daba582831542604051610b289392919061309b565b60405180910390a25050565b610b3c6112c4565b73ffffffffffffffffffffffffffffffffffffffff16610b5a610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906133e8565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fc728858b2b675d50ec2df8dbf065f352ae2ac88f324d3f9c1c8dc8c2578c513482831542604051610ca49392919061309b565b60405180910390a25050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d016112c4565b73ffffffffffffffffffffffffffffffffffffffff16610d1f610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c906133e8565b60405180910390fd5b610d7f6000611aaf565b565b6000610dca600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611b73565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610e0990613661565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3590613661565b8015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b5050505050905090565b610e94611b81565b610e9e8282611cb7565b5050565b60008060026000610eb16112c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f65906134a8565b60405180910390fd5b610f82610f796112c4565b858584036112cc565b600191505092915050565b6000610fa1610f9a6112c4565b8484611579565b6001905092915050565b610fb3611e90565b610fbe838383611579565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b83421115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906132c8565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008888886110558c611f1e565b8960405160200161106b969594939291906130ed565b604051602081830303815290604052805190602001209050600061108e82611f7c565b9050600061109e82878787611f96565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906133a8565b60405180910390fd5b6111198a8a8a6112cc565b50505050505050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111b46112c4565b73ffffffffffffffffffffffffffffffffffffffff166111d2610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f906133e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90613288565b60405180910390fd5b6112a181611aaf565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613488565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a3906132a8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161148a91906134e8565b60405180910390a3505050565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115385750600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613308565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090613468565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613228565b60405180910390fd5b611664838383611fc1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906132e8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117809190613545565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117e491906134e8565b60405180910390a36117f7848484612040565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561184f577f000000000000000000000000000000000000000000000000000000000000000090506118bd565b6118ba7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612045565b90505b90565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613368565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906134c8565b60405180910390fd5b6119ca60008383611fc1565b80600360008282546119dc9190613545565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a329190613545565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a9791906134e8565b60405180910390a3611aab60008383612040565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c225750600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611c765750600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90613428565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613448565b60405180910390fd5b611d3382600083611fc1565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613248565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254611e12919061359b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e7791906134e8565b60405180910390a3611e8b83600084612040565b505050565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613408565b60405180910390fd5b565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611f6b81611b73565b9150611f768161207f565b50919050565b6000611f8f611f896117fd565b83612095565b9050919050565b6000806000611fa7878787876120c8565b91509150611fb4816121d5565b8192505050949350505050565b611fcc838383612526565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613348565b60405180910390fd5b505050565b505050565b6000838383463060405160200161206095949392919061314e565b6040516020818303038152906040528051906020012090509392505050565b6001816000016000828254019250508190555050565b600082826040516020016120aa92919061302e565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156121035760006003915091506121cc565b601b8560ff161415801561211b5750601c8560ff1614155b1561212d5760006004915091506121cc565b60006001878787876040516000815260200160405260405161215294939291906131a1565b6020604051602081039080840390855afa158015612174573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c3576000600192509250506121cc565b80600092509250505b94509492505050565b6000600481111561220f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612248577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561225357612523565b6001600481111561228d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156122c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe90613208565b60405180910390fd5b60026004811115612341577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561237a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290613268565b60405180910390fd5b600360048111156123f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561242e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561246f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246690613328565b60405180910390fd5b6004808111156124a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156124e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990613388565b60405180910390fd5b5b50565b505050565b60008135905061253a8161370c565b92915050565b60008135905061254f81613723565b92915050565b6000813590506125648161373a565b92915050565b60008135905061257981613751565b92915050565b60006020828403121561259157600080fd5b600061259f8482850161252b565b91505092915050565b600080604083850312156125bb57600080fd5b60006125c98582860161252b565b92505060206125da8582860161252b565b9150509250929050565b6000806000606084860312156125f957600080fd5b60006126078682870161252b565b93505060206126188682870161252b565b925050604061262986828701612555565b9150509250925092565b600080600080600080600060e0888a03121561264e57600080fd5b600061265c8a828b0161252b565b975050602061266d8a828b0161252b565b965050604061267e8a828b01612555565b955050606061268f8a828b01612555565b94505060806126a08a828b0161256a565b93505060a06126b18a828b01612540565b92505060c06126c28a828b01612540565b91505092959891949750929550565b600080604083850312156126e457600080fd5b60006126f28582860161252b565b925050602061270385828601612555565b9150509250929050565b612716816135cf565b82525050565b612725816135e1565b82525050565b612734816135ed565b82525050565b61274b612746826135ed565b613693565b82525050565b600061275c8261351e565b6127668185613529565b935061277681856020860161362e565b61277f816136fb565b840191505092915050565b6000612797601883613529565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b60006127d7602383613529565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061283d602283613529565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128a3601f83613529565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b60006128e3602683613529565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612949602283613529565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129af60028361353a565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006129ef601d83613529565b91507f45524332305065726d69743a206578706972656420646561646c696e650000006000830152602082019050919050565b6000612a2f602683613529565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a95603683613529565b91507f415254483a2043616c6c6572206973206e6569746865722054726f76654d616e60008301527f61676572206e6f722053746162696c697479506f6f6c000000000000000000006020830152604082019050919050565b6000612afb602283613529565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b61601b83613529565b91507f646f6e742073656e6420746f20746f6b656e20636f6e747261637400000000006000830152602082019050919050565b6000612ba1602683613529565b91507f415254483a2043616c6c6572206973206e6f7420426f72726f7765724f70657260008301527f6174696f6e7300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c07602283613529565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c6d601e83613529565b91507f45524332305065726d69743a20696e76616c6964207369676e617475726500006000830152602082019050919050565b6000612cad602883613529565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d13602083613529565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d53602583613529565b91507f415254483a2043616c6c6572206973206e6f74207468652053746162696c697460008301527f79506f6f6c0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612db9604d83613529565b91507f415254483a2043616c6c6572206973206e65697468657220426f72726f77657260008301527f4f7065726174696f6e73206e6f722054726f76654d616e61676572206e6f722060208301527f53746162696c697479506f6f6c000000000000000000000000000000000000006040830152606082019050919050565b6000612e45602183613529565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eab602583613529565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f11602483613529565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f77602583613529565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fdd601f83613529565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61301981613617565b82525050565b61302881613621565b82525050565b6000613039826129a2565b9150613045828561273a565b602082019150613055828461273a565b6020820191508190509392505050565b600060208201905061307a600083018461270d565b92915050565b6000602082019050613095600083018461271c565b92915050565b60006060820190506130b0600083018661271c565b6130bd602083018561271c565b6130ca6040830184613010565b949350505050565b60006020820190506130e7600083018461272b565b92915050565b600060c082019050613102600083018961272b565b61310f602083018861270d565b61311c604083018761270d565b6131296060830186613010565b6131366080830185613010565b61314360a0830184613010565b979650505050505050565b600060a082019050613163600083018861272b565b613170602083018761272b565b61317d604083018661272b565b61318a6060830185613010565b613197608083018461270d565b9695505050505050565b60006080820190506131b6600083018761272b565b6131c3602083018661301f565b6131d0604083018561272b565b6131dd606083018461272b565b95945050505050565b600060208201905081810360008301526132008184612751565b905092915050565b600060208201905081810360008301526132218161278a565b9050919050565b60006020820190508181036000830152613241816127ca565b9050919050565b6000602082019050818103600083015261326181612830565b9050919050565b6000602082019050818103600083015261328181612896565b9050919050565b600060208201905081810360008301526132a1816128d6565b9050919050565b600060208201905081810360008301526132c18161293c565b9050919050565b600060208201905081810360008301526132e1816129e2565b9050919050565b6000602082019050818103600083015261330181612a22565b9050919050565b6000602082019050818103600083015261332181612a88565b9050919050565b6000602082019050818103600083015261334181612aee565b9050919050565b6000602082019050818103600083015261336181612b54565b9050919050565b6000602082019050818103600083015261338181612b94565b9050919050565b600060208201905081810360008301526133a181612bfa565b9050919050565b600060208201905081810360008301526133c181612c60565b9050919050565b600060208201905081810360008301526133e181612ca0565b9050919050565b6000602082019050818103600083015261340181612d06565b9050919050565b6000602082019050818103600083015261342181612d46565b9050919050565b6000602082019050818103600083015261344181612dac565b9050919050565b6000602082019050818103600083015261346181612e38565b9050919050565b6000602082019050818103600083015261348181612e9e565b9050919050565b600060208201905081810360008301526134a181612f04565b9050919050565b600060208201905081810360008301526134c181612f6a565b9050919050565b600060208201905081810360008301526134e181612fd0565b9050919050565b60006020820190506134fd6000830184613010565b92915050565b6000602082019050613518600083018461301f565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061355082613617565b915061355b83613617565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135905761358f61369d565b5b828201905092915050565b60006135a682613617565b91506135b183613617565b9250828210156135c4576135c361369d565b5b828203905092915050565b60006135da826135f7565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561364c578082015181840152602081019050613631565b8381111561365b576000848401525b50505050565b6000600282049050600182168061367957607f821691505b6020821081141561368d5761368c6136cc565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613715816135cf565b811461372057600080fd5b50565b61372c816135ed565b811461373757600080fd5b50565b61374381613617565b811461374e57600080fd5b50565b61375a81613621565b811461376557600080fd5b5056fea264697066735822122008817cc4ed00a276c02b1001fb28f63fb2612e88d81d4d3009dc899faf02567564736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d505accf11610071578063d505accf146104e0578063dd62ed3e146104fc578063f2fde38b1461052c578063f6b3103714610548576101a9565b8063a9059cbb14610464578063bb997bac14610494578063cd8b018d146104b0576101a9565b80638da5cb5b116100d35780638da5cb5b146103dc57806395d89b41146103fa5780639dc29fac14610418578063a457c2d714610434576101a9565b806370a0823114610372578063715018a6146103a25780637ecebe00146103ac576101a9565b8063313ce567116101665780633e919fcf116101405780633e919fcf1461030257806340c10f191461031e57806341f8b9491461033a57806363f1b73114610356576101a9565b8063313ce567146102965780633644e515146102b457806339509351146102d2576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806320c582be1461021a57806323b872dd14610236578063308a54d814610266575b600080fd5b6101b6610578565b6040516101c391906131e6565b60405180910390f35b6101e660048036038101906101e191906126d1565b61060a565b6040516101f39190613080565b60405180910390f35b610204610628565b60405161021191906134e8565b60405180910390f35b610234600480360381019061022f91906125e4565b610632565b005b610250600480360381019061024b91906125e4565b61064a565b60405161025d9190613080565b60405180910390f35b610280600480360381019061027b919061257f565b610742565b60405161028d9190613080565b60405180910390f35b61029e610762565b6040516102ab9190613503565b60405180910390f35b6102bc61076b565b6040516102c991906130d2565b60405180910390f35b6102ec60048036038101906102e791906126d1565b61077a565b6040516102f99190613080565b60405180910390f35b61031c6004803603810190610317919061257f565b610826565b005b610338600480360381019061033391906126d1565b6109a2565b005b610354600480360381019061034f919061257f565b6109b8565b005b610370600480360381019061036b919061257f565b610b34565b005b61038c6004803603810190610387919061257f565b610cb0565b60405161039991906134e8565b60405180910390f35b6103aa610cf9565b005b6103c660048036038101906103c1919061257f565b610d81565b6040516103d391906134e8565b60405180910390f35b6103e4610dd1565b6040516103f19190613065565b60405180910390f35b610402610dfa565b60405161040f91906131e6565b60405180910390f35b610432600480360381019061042d91906126d1565b610e8c565b005b61044e600480360381019061044991906126d1565b610ea2565b60405161045b9190613080565b60405180910390f35b61047e600480360381019061047991906126d1565b610f8d565b60405161048b9190613080565b60405180910390f35b6104ae60048036038101906104a991906125e4565b610fab565b005b6104ca60048036038101906104c5919061257f565b610fc3565b6040516104d79190613080565b60405180910390f35b6104fa60048036038101906104f59190612633565b610fe3565b005b610516600480360381019061051191906125a8565b611125565b60405161052391906134e8565b60405180910390f35b6105466004803603810190610541919061257f565b6111ac565b005b610562600480360381019061055d919061257f565b6112a4565b60405161056f9190613080565b60405180910390f35b60606004805461058790613661565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390613661565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b600061061e6106176112c4565b84846112cc565b6001905092915050565b6000600354905090565b61063a611497565b610645838383611579565b505050565b6000610657848484611579565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106a26112c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610719906133c8565b60405180910390fd5b6107368561072e6112c4565b8584036112cc565b60019150509392505050565b60086020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60006107756117fd565b905090565b600061081c6107876112c4565b8484600260006107956112c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108179190613545565b6112cc565b6001905092915050565b61082e6112c4565b73ffffffffffffffffffffffffffffffffffffffff1661084c610dd1565b73ffffffffffffffffffffffffffffffffffffffff16146108a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610899906133e8565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f021266964fedb8c8f845950afe4c1215531bc3632d5cfd31f5c66867357a1192828315426040516109969392919061309b565b60405180910390a25050565b6109aa6118c0565b6109b4828261194e565b5050565b6109c06112c4565b73ffffffffffffffffffffffffffffffffffffffff166109de610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906133e8565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f39694494256aa31c035159b366ebf660324aad413ccfa62f6a2af0ed007daba582831542604051610b289392919061309b565b60405180910390a25050565b610b3c6112c4565b73ffffffffffffffffffffffffffffffffffffffff16610b5a610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906133e8565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fc728858b2b675d50ec2df8dbf065f352ae2ac88f324d3f9c1c8dc8c2578c513482831542604051610ca49392919061309b565b60405180910390a25050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d016112c4565b73ffffffffffffffffffffffffffffffffffffffff16610d1f610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c906133e8565b60405180910390fd5b610d7f6000611aaf565b565b6000610dca600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611b73565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610e0990613661565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3590613661565b8015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b5050505050905090565b610e94611b81565b610e9e8282611cb7565b5050565b60008060026000610eb16112c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f65906134a8565b60405180910390fd5b610f82610f796112c4565b858584036112cc565b600191505092915050565b6000610fa1610f9a6112c4565b8484611579565b6001905092915050565b610fb3611e90565b610fbe838383611579565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b83421115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d906132c8565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886110558c611f1e565b8960405160200161106b969594939291906130ed565b604051602081830303815290604052805190602001209050600061108e82611f7c565b9050600061109e82878787611f96565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906133a8565b60405180910390fd5b6111198a8a8a6112cc565b50505050505050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111b46112c4565b73ffffffffffffffffffffffffffffffffffffffff166111d2610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f906133e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90613288565b60405180910390fd5b6112a181611aaf565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613488565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a3906132a8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161148a91906134e8565b60405180910390a3505050565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115385750600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613308565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090613468565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090613228565b60405180910390fd5b611664838383611fc1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906132e8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117809190613545565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117e491906134e8565b60405180910390a36117f7848484612040565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000146141561184f577fea13bf92069a9692ca196df8227e0cd4d81fc6b16735a0b21c23e4a38033158790506118bd565b6118ba7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f767291ea1d4b538fa84eb35ce7ba28e0d4d664dad383fdc7b2c0642b91c20abe7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6612045565b90505b90565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613368565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906134c8565b60405180910390fd5b6119ca60008383611fc1565b80600360008282546119dc9190613545565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a329190613545565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a9791906134e8565b60405180910390a3611aab60008383612040565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c225750600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611c765750600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90613428565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613448565b60405180910390fd5b611d3382600083611fc1565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613248565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254611e12919061359b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e7791906134e8565b60405180910390a3611e8b83600084612040565b505050565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613408565b60405180910390fd5b565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611f6b81611b73565b9150611f768161207f565b50919050565b6000611f8f611f896117fd565b83612095565b9050919050565b6000806000611fa7878787876120c8565b91509150611fb4816121d5565b8192505050949350505050565b611fcc838383612526565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613348565b60405180910390fd5b505050565b505050565b6000838383463060405160200161206095949392919061314e565b6040516020818303038152906040528051906020012090509392505050565b6001816000016000828254019250508190555050565b600082826040516020016120aa92919061302e565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156121035760006003915091506121cc565b601b8560ff161415801561211b5750601c8560ff1614155b1561212d5760006004915091506121cc565b60006001878787876040516000815260200160405260405161215294939291906131a1565b6020604051602081039080840390855afa158015612174573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c3576000600192509250506121cc565b80600092509250505b94509492505050565b6000600481111561220f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612248577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561225357612523565b6001600481111561228d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156122c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe90613208565b60405180910390fd5b60026004811115612341577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561237a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290613268565b60405180910390fd5b600360048111156123f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561242e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561246f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246690613328565b60405180910390fd5b6004808111156124a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156124e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990613388565b60405180910390fd5b5b50565b505050565b60008135905061253a8161370c565b92915050565b60008135905061254f81613723565b92915050565b6000813590506125648161373a565b92915050565b60008135905061257981613751565b92915050565b60006020828403121561259157600080fd5b600061259f8482850161252b565b91505092915050565b600080604083850312156125bb57600080fd5b60006125c98582860161252b565b92505060206125da8582860161252b565b9150509250929050565b6000806000606084860312156125f957600080fd5b60006126078682870161252b565b93505060206126188682870161252b565b925050604061262986828701612555565b9150509250925092565b600080600080600080600060e0888a03121561264e57600080fd5b600061265c8a828b0161252b565b975050602061266d8a828b0161252b565b965050604061267e8a828b01612555565b955050606061268f8a828b01612555565b94505060806126a08a828b0161256a565b93505060a06126b18a828b01612540565b92505060c06126c28a828b01612540565b91505092959891949750929550565b600080604083850312156126e457600080fd5b60006126f28582860161252b565b925050602061270385828601612555565b9150509250929050565b612716816135cf565b82525050565b612725816135e1565b82525050565b612734816135ed565b82525050565b61274b612746826135ed565b613693565b82525050565b600061275c8261351e565b6127668185613529565b935061277681856020860161362e565b61277f816136fb565b840191505092915050565b6000612797601883613529565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b60006127d7602383613529565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061283d602283613529565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128a3601f83613529565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b60006128e3602683613529565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612949602283613529565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129af60028361353a565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006129ef601d83613529565b91507f45524332305065726d69743a206578706972656420646561646c696e650000006000830152602082019050919050565b6000612a2f602683613529565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a95603683613529565b91507f415254483a2043616c6c6572206973206e6569746865722054726f76654d616e60008301527f61676572206e6f722053746162696c697479506f6f6c000000000000000000006020830152604082019050919050565b6000612afb602283613529565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b61601b83613529565b91507f646f6e742073656e6420746f20746f6b656e20636f6e747261637400000000006000830152602082019050919050565b6000612ba1602683613529565b91507f415254483a2043616c6c6572206973206e6f7420426f72726f7765724f70657260008301527f6174696f6e7300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c07602283613529565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c6d601e83613529565b91507f45524332305065726d69743a20696e76616c6964207369676e617475726500006000830152602082019050919050565b6000612cad602883613529565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d13602083613529565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d53602583613529565b91507f415254483a2043616c6c6572206973206e6f74207468652053746162696c697460008301527f79506f6f6c0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612db9604d83613529565b91507f415254483a2043616c6c6572206973206e65697468657220426f72726f77657260008301527f4f7065726174696f6e73206e6f722054726f76654d616e61676572206e6f722060208301527f53746162696c697479506f6f6c000000000000000000000000000000000000006040830152606082019050919050565b6000612e45602183613529565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eab602583613529565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f11602483613529565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f77602583613529565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fdd601f83613529565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61301981613617565b82525050565b61302881613621565b82525050565b6000613039826129a2565b9150613045828561273a565b602082019150613055828461273a565b6020820191508190509392505050565b600060208201905061307a600083018461270d565b92915050565b6000602082019050613095600083018461271c565b92915050565b60006060820190506130b0600083018661271c565b6130bd602083018561271c565b6130ca6040830184613010565b949350505050565b60006020820190506130e7600083018461272b565b92915050565b600060c082019050613102600083018961272b565b61310f602083018861270d565b61311c604083018761270d565b6131296060830186613010565b6131366080830185613010565b61314360a0830184613010565b979650505050505050565b600060a082019050613163600083018861272b565b613170602083018761272b565b61317d604083018661272b565b61318a6060830185613010565b613197608083018461270d565b9695505050505050565b60006080820190506131b6600083018761272b565b6131c3602083018661301f565b6131d0604083018561272b565b6131dd606083018461272b565b95945050505050565b600060208201905081810360008301526132008184612751565b905092915050565b600060208201905081810360008301526132218161278a565b9050919050565b60006020820190508181036000830152613241816127ca565b9050919050565b6000602082019050818103600083015261326181612830565b9050919050565b6000602082019050818103600083015261328181612896565b9050919050565b600060208201905081810360008301526132a1816128d6565b9050919050565b600060208201905081810360008301526132c18161293c565b9050919050565b600060208201905081810360008301526132e1816129e2565b9050919050565b6000602082019050818103600083015261330181612a22565b9050919050565b6000602082019050818103600083015261332181612a88565b9050919050565b6000602082019050818103600083015261334181612aee565b9050919050565b6000602082019050818103600083015261336181612b54565b9050919050565b6000602082019050818103600083015261338181612b94565b9050919050565b600060208201905081810360008301526133a181612bfa565b9050919050565b600060208201905081810360008301526133c181612c60565b9050919050565b600060208201905081810360008301526133e181612ca0565b9050919050565b6000602082019050818103600083015261340181612d06565b9050919050565b6000602082019050818103600083015261342181612d46565b9050919050565b6000602082019050818103600083015261344181612dac565b9050919050565b6000602082019050818103600083015261346181612e38565b9050919050565b6000602082019050818103600083015261348181612e9e565b9050919050565b600060208201905081810360008301526134a181612f04565b9050919050565b600060208201905081810360008301526134c181612f6a565b9050919050565b600060208201905081810360008301526134e181612fd0565b9050919050565b60006020820190506134fd6000830184613010565b92915050565b6000602082019050613518600083018461301f565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061355082613617565b915061355b83613617565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135905761358f61369d565b5b828201905092915050565b60006135a682613617565b91506135b183613617565b9250828210156135c4576135c361369d565b5b828203905092915050565b60006135da826135f7565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561364c578082015181840152602081019050613631565b8381111561365b576000848401525b50505050565b6000600282049050600182168061367957607f821691505b6020821081141561368d5761368c6136cc565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613715816135cf565b811461372057600080fd5b50565b61372c816135ed565b811461373757600080fd5b50565b61374381613617565b811461374e57600080fd5b50565b61375a81613621565b811461376557600080fd5b5056fea264697066735822122008817cc4ed00a276c02b1001fb28f63fb2612e88d81d4d3009dc899faf02567564736f6c63430008000033
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.