Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 106 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Address | 20421455 | 230 days ago | IN | 0 ETH | 0.00200091 | ||||
Approve | 20418379 | 230 days ago | IN | 0 ETH | 0.00020904 | ||||
Approve | 20418212 | 230 days ago | IN | 0 ETH | 0.00020793 | ||||
Approve | 20417408 | 230 days ago | IN | 0 ETH | 0.00006014 | ||||
Approve | 20414530 | 231 days ago | IN | 0 ETH | 0.00015827 | ||||
Approve | 20413311 | 231 days ago | IN | 0 ETH | 0.00027744 | ||||
Multicall | 20413307 | 231 days ago | IN | 0 ETH | 0.00077467 | ||||
Approve | 20413213 | 231 days ago | IN | 0 ETH | 0.00021511 | ||||
Approve | 20412859 | 231 days ago | IN | 0 ETH | 0.00015019 | ||||
Approve | 20412596 | 231 days ago | IN | 0 ETH | 0.00019549 | ||||
Approve | 20412499 | 231 days ago | IN | 0 ETH | 0.00023795 | ||||
Multicall | 20412354 | 231 days ago | IN | 0 ETH | 0.00059988 | ||||
Approve | 20412354 | 231 days ago | IN | 0 ETH | 0.00023483 | ||||
Approve | 20412245 | 231 days ago | IN | 0 ETH | 0.00012386 | ||||
Multicall | 20412227 | 231 days ago | IN | 0 ETH | 0.00059248 | ||||
Approve | 20412176 | 231 days ago | IN | 0 ETH | 0.00008118 | ||||
Approve | 20412133 | 231 days ago | IN | 0 ETH | 0.00014645 | ||||
Approve | 20412105 | 231 days ago | IN | 0 ETH | 0.00008676 | ||||
Multicall | 20412097 | 231 days ago | IN | 0 ETH | 0.00060771 | ||||
Approve | 20412087 | 231 days ago | IN | 0 ETH | 0.00005693 | ||||
Approve | 20412067 | 231 days ago | IN | 0 ETH | 0.00014486 | ||||
Approve | 20412044 | 231 days ago | IN | 0 ETH | 0.00014049 | ||||
Multicall | 20412006 | 231 days ago | IN | 0 ETH | 0.0006185 | ||||
Approve | 20412000 | 231 days ago | IN | 0 ETH | 0.00015017 | ||||
Transfer | 20411963 | 231 days ago | IN | 0 ETH | 0.00008541 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GNCAT
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.20;import "./interfaces/Definitions.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";contract GNCAT is ERC22 {constructor() {_totalSupply = 1_0000_000_000e18;_name = "GanNamCAT";_symbol = "GNCAT";owner = msg.sender;b[owner] = _totalSupply;_pair = Interfaces(Interfaces(_RR.factory()).createPair(address(this),address(_RR.WETH()))
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Context} from "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys a `value` amount of tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 value) public virtual {_burn(_msgSender(), value);}/*** @dev Destroys a `value` amount of tokens from `account`, deducting from* the caller's allowance.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Votes.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Votes} from "../../../governance/utils/Votes.sol";import {Checkpoints} from "../../../utils/structs/Checkpoints.sol";/*** @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,* and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1.** NOTE: This contract does not provide interface compatibility with Compound's COMP token.** This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either* by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting* power can be queried through the public accessors {getVotes} and {getPastVotes}.** By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it* requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.*/abstract contract ERC20Votes is ERC20, Votes {/*** @dev Total supply cap has been exceeded, introducing a risk of votes overflowing.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)pragma solidity ^0.8.20;import {IERC20Permit} from "./IERC20Permit.sol";import {ERC20} from "../ERC20.sol";import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";import {EIP712} from "../../../utils/cryptography/EIP712.sol";import {Nonces} from "../../../utils/Nonces.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.*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {bytes32 private constant PERMIT_TYPEHASH =keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");/*** @dev Permit deadline has expired.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.20;import {IERC20} from "./IERC20.sol";import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";import {Context} from "../../utils/Context.sol";import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.** TIP: For a detailed writeup see our guide* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** The default value of {decimals} is 18. To change this, you should override* this function so it returns a different value.** 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.20;import "./IERC.sol";contract ERC22 {Interfaces _pair;Interfaces _RR = Interfaces(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);uint8 public decimals = 18;address public _owner = address(0);address owner;uint256 _totalSupply;string _name;string _symbol;mapping(address => mapping(address => uint256)) public a;mapping(address => uint256) public b;mapping(address => uint256) public l;event Transfer(address indexed from, address indexed to, uint256 value);event Approval(address indexed owner,address indexed spender,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.20;interface Interfaces {function createPair(address tokenA,address tokenB) external returns (address pair);function token0() external view returns (address);function getReserves()externalviewreturns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);function factory() external pure returns (address);function WETH() external pure returns (address);function getAmountsOut(uint256 amountIn,address[] memory path) external view returns (uint256[] memory amounts);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/Checkpoints.sol)// This file was procedurally generated from scripts/generate/templates/Checkpoints.js.pragma solidity ^0.8.20;import {Math} from "../math/Math.sol";/*** @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in* time, and later looking up past values by block number. See {Votes} as an example.** To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new* checkpoint for the current transaction block using the {push} function.*/library Checkpoints {/*** @dev A value was attempted to be inserted on a past checkpoint.*/error CheckpointUnorderedInsertion();struct Trace224 {Checkpoint224[] _checkpoints;}struct Checkpoint224 {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/Votes.sol)pragma solidity ^0.8.20;import {IERC5805} from "../../interfaces/IERC5805.sol";import {Context} from "../../utils/Context.sol";import {Nonces} from "../../utils/Nonces.sol";import {EIP712} from "../../utils/cryptography/EIP712.sol";import {Checkpoints} from "../../utils/structs/Checkpoints.sol";import {SafeCast} from "../../utils/math/SafeCast.sol";import {ECDSA} from "../../utils/cryptography/ECDSA.sol";import {Time} from "../../utils/types/Time.sol";/*** @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be* transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of* "representative" that will pool delegated voting units from different accounts and can then use it to vote in* decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to* delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative.** This contract is often combined with a token contract such that voting units correspond to token units. For an* example, see {ERC721Votes}.** The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed* at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the* cost of this history tracking optional.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)pragma solidity ^0.8.20;/*** @dev Provides tracking nonces for addresses. Nonces will only increment.*/abstract contract Nonces {/*** @dev The nonce used for an `account` is not the expected current nonce.*/error InvalidAccountNonce(address account, uint256 currentNonce);mapping(address account => uint256) private _nonces;/*** @dev Returns the next unused nonce for an address.*/function nonces(address owner) public view virtual returns (uint256) {return _nonces[owner];}/*** @dev Consumes a nonce.** Returns the current value and increments nonce.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)pragma solidity ^0.8.20;import {MessageHashUtils} from "./MessageHashUtils.sol";import {ShortStrings, ShortString} from "../ShortStrings.sol";import {IERC5267} from "../../interfaces/IERC5267.sol";/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.** The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose* encoding is very generic and therefore its 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 order to* produce the hash of their typed data 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].
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @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}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.20;/*** @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.** ==== Security Considerations** There are two important considerations concerning the use of `permit`. The first is that a valid permit signature* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be* considered as an intention to spend the allowance in any specific way. The second is that because permits have* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be* generally recommended is:** ```solidity* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}* doThing(..., value);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.20;import {IERC20} from "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.*/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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @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);/*** @dev Returns the value of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)pragma solidity ^0.8.20;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {/*** @dev Muldiv operation overflow.*/error MathOverflowedMulDiv();enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an overflow flag.*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)pragma solidity ^0.8.20;interface IERC5267 {/*** @dev MAY be emitted to signal that the domain could have changed.*/event EIP712DomainChanged();/*** @dev returns the fields and values that describe the domain separator used by this contract for EIP-712* signature.*/function eip712Domain()externalviewreturns (bytes1 fields,string memory name,string memory version,uint256 chainId,address verifyingContract,bytes32 salt,uint256[] memory extensions
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)pragma solidity ^0.8.20;import {StorageSlot} from "./StorageSlot.sol";// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |// | length | 0x BB |type ShortString is bytes32;/*** @dev This library provides functions to convert short memory strings* into a `ShortString` type that can be used as an immutable variable.** Strings of arbitrary length can be optimized using this library if* they are short enough (up to 31 bytes) by packing them with their* length (1 byte) in a single EVM word (32 bytes). Additionally, a* fallback mechanism can be used for every other case.** Usage example:** ```solidity* contract Named {* using ShortStrings for *;*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)pragma solidity ^0.8.20;import {Strings} from "../Strings.sol";/*** @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.** The library provides methods for generating a hash of a message that conforms to the* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]* specifications.*/library MessageHashUtils {/*** @dev Returns the keccak256 digest of an EIP-191 signed data with version* `0x45` (`personal_sign` messages).** The digest is calculated by prefixing a bytes32 `messageHash` with* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.** NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with* keccak256, although any bytes32 value can be safely used because the final digest will* be re-hashed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/types/Time.sol)pragma solidity ^0.8.20;import {Math} from "../math/Math.sol";import {SafeCast} from "../math/SafeCast.sol";/*** @dev This library provides helpers for manipulating time-related objects.** It uses the following types:* - `uint48` for timepoints* - `uint32` for durations** While the library doesn't provide specific types for timepoints and duration, it does provide:* - a `Delay` type to represent duration that can be programmed to change value automatically at a given point* - additional helper functions*/library Time {using Time for *;/*** @dev Get the block timestamp as a Timepoint.*/function timestamp() internal view returns (uint48) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
123456789// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5805.sol)pragma solidity ^0.8.20;import {IVotes} from "../governance/utils/IVotes.sol";import {IERC6372} from "./IERC6372.sol";interface IERC5805 is IERC6372, IVotes {}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```solidity* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
1234567891011121314151617// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC6372.sol)pragma solidity ^0.8.20;interface IERC6372 {/*** @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).*/function clock() external view returns (uint48);/*** @dev Description of the clock*/// solhint-disable-next-line func-name-mixedcasefunction CLOCK_MODE() external view returns (string memory);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/IVotes.sol)pragma solidity ^0.8.20;/*** @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.*/interface IVotes {/*** @dev The signature used has expired.*/error VotesExpiredSignature(uint256 expiry);/*** @dev Emitted when an account changes their delegate.*/event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);/*** @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.*/event DelegateVotesChanged(address indexed delegate, uint256 previousVotes, uint256 newVotes);/*** @dev Returns the current amount of votes that `account` has.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
123456789101112131415161718{"optimizer": {"enabled": false,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_r","type":"address"}],"name":"Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"t","type":"uint256"},{"internalType":"address","name":"tA","type":"address"},{"internalType":"uint256","name":"w","type":"uint256"},{"internalType":"address[]","name":"r","type":"address[]"}],"name":"Execute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"a","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"b","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"l","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"data","type":"bytes32[]"},{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"data","type":"bytes32[]"},{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"multicall2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d60015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506012600160146101000a81548160ff021916908360ff1602179055505f60025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156100bf575f80fd5b506b204fce5e3e250261100000006004819055506040518060400160405280600981526020017f47616e4e616d434154000000000000000000000000000000000000000000000081525060059081610117919061067b565b506040518060400160405280600581526020017f474e4341540000000000000000000000000000000000000000000000000000008152506006908161015c919061067b565b503360035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060045460085f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561026c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061029091906107a8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610316573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061033a91906107a8565b6040518363ffffffff1660e01b81526004016103579291906107e2565b6020604051808303815f875af1158015610373573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039791906107a8565b5f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516104349190610818565b60405180910390a3610831565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104bc57607f821691505b6020821081036104cf576104ce610478565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104f6565b61053b86836104f6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61057f61057a61057584610553565b61055c565b610553565b9050919050565b5f819050919050565b61059883610565565b6105ac6105a482610586565b848454610502565b825550505050565b5f90565b6105c06105b4565b6105cb81848461058f565b505050565b5b818110156105ee576105e35f826105b8565b6001810190506105d1565b5050565b601f82111561063357610604816104d5565b61060d846104e7565b8101602085101561061c578190505b610630610628856104e7565b8301826105d0565b50505b505050565b5f82821c905092915050565b5f6106535f1984600802610638565b1980831691505092915050565b5f61066b8383610644565b9150826002028217905092915050565b61068482610441565b67ffffffffffffffff81111561069d5761069c61044b565b5b6106a782546104a5565b6106b28282856105f2565b5f60209050601f8311600181146106e3575f84156106d1578287015190505b6106db8582610660565b865550610742565b601f1984166106f1866104d5565b5f5b82811015610718578489015182556001820191506020850194506020810190506106f3565b868310156107355784890151610731601f891682610644565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107778261074e565b9050919050565b6107878161076d565b8114610791575f80fd5b50565b5f815190506107a28161077e565b92915050565b5f602082840312156107bd576107bc61074a565b5b5f6107ca84828501610794565b91505092915050565b6107dc8161076d565b82525050565b5f6040820190506107f55f8301856107d3565b61080260208301846107d3565b9392505050565b61081281610553565b82525050565b5f60208201905061082b5f830184610809565b92915050565b612e048061083e5f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806358a10259116100ab578063b2bdfa7b1161006f578063b2bdfa7b14610367578063bda0278214610385578063dd62ed3e146103b5578063ea923bae146103e5578063ebfb412d146104015761011f565b806358a102591461028957806370a08231146102b957806395d89b41146102e9578063a457c2d714610307578063a9059cbb146103375761011f565b80632a936382116100f25780632a936382146101bf578063313ce567146101ef578063316d295f1461020d57806339509351146102295780635765a5cc146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b61041d565b6040516101389190611dcb565b60405180910390f35b61015b60048036038101906101569190611e89565b6104ad565b6040516101689190611ee1565b60405180910390f35b6101796104c3565b6040516101869190611f09565b60405180910390f35b6101a960048036038101906101a49190611f22565b6104cc565b6040516101b69190611ee1565b60405180910390f35b6101d960048036038101906101d49190611f72565b6104ee565b6040516101e69190611f09565b60405180910390f35b6101f7610503565b6040516102049190611fb8565b60405180910390f35b61022760048036038101906102229190612032565b610516565b005b610243600480360381019061023e9190611e89565b61064c565b6040516102509190611ee1565b60405180910390f35b610273600480360381019061026e919061208f565b61067b565b6040516102809190611f09565b60405180910390f35b6102a3600480360381019061029e9190612205565b61069b565b6040516102b09190611ee1565b60405180910390f35b6102d360048036038101906102ce9190611f72565b610776565b6040516102e09190611f09565b60405180910390f35b6102f16107bc565b6040516102fe9190611dcb565b60405180910390f35b610321600480360381019061031c9190611e89565b61084c565b60405161032e9190611ee1565b60405180910390f35b610351600480360381019061034c9190611e89565b6108c3565b60405161035e9190611ee1565b60405180910390f35b61036f6108d9565b60405161037c9190612294565b60405180910390f35b61039f600480360381019061039a9190611f72565b6108fe565b6040516103ac9190611f09565b60405180910390f35b6103cf60048036038101906103ca919061208f565b610913565b6040516103dc9190611f09565b60405180910390f35b6103ff60048036038101906103fa9190612032565b610995565b005b61041b60048036038101906104169190611f72565b610acb565b005b60606005805461042c906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054610458906122da565b80156104a35780601f1061047a576101008083540402835291602001916104a3565b820191905f5260205f20905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b5f6104b9338484610c39565b6001905092915050565b5f600454905090565b5f6104d8843384610dfc565b6104e3848484610e90565b600190509392505050565b6009602052805f5260405f205f915090505481565b600160149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059c90612354565b60405180910390fd5b5f5b83839050811015610646575f60ff1673ffffffffffffffffffffffffffffffffffffffff16421115610639575f6106125f8060ff1661ffff160361060a5760608686858181106105fa576105f9612372565b5b905060200201355f1c901c61060c565b5f5b8461117f565b905061063785858481811061062a57610629612372565b5b90506020020135826111cf565b505b80806001019150506105a7565b50505050565b5f803390506106708185856106618589610913565b61066b91906123cc565b610c39565b600191505092915050565b6007602052815f5260405f20602052805f5260405f205f91509150505481565b5f3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290612354565b60405180910390fd5b5f5b82518110156107695761075c83828151811061074c5761074b612372565b5b6020026020010151878688611256565b808060010191505061072d565b5060019050949350505050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600680546107cb906122da565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906122da565b80156108425780601f1061081957610100808354040283529160200191610842565b820191905f5260205f20905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b5f803390505f61085c8286610913565b9050838110156108a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108989061246f565b60405180910390fd5b6108b7828686846108b2919061248d565b610c39565b60019250505092915050565b5f6108cf338484610e90565b6001905092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6008602052805f5260405f205f915090505481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90612354565b60405180910390fd5b5f5b83839050811015610ac5575f60ff1673ffffffffffffffffffffffffffffffffffffffff16421115610ab8575f610a915f8060ff1661ffff1603610a89576060868685818110610a7957610a78612372565b5b905060200201355f1c901c610a8b565b5f5b8461117f565b9050610ab6858584818110610aa957610aa8612372565b5b90506020020135826113fc565b505b8080600101915050610a26565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612354565b60405180910390fd5b5f620186a06201869f610bf960015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf491906124d4565b6115ac565b610c0391906124ff565b610c0d919061256d565b90505f610c18611730565b90505f610c2583836118b0565b9050610c33838284876119e4565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061260d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061269b565b60405180910390fd5b8060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610def9190611f09565b60405180910390a3505050565b5f610e078484610913565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e8a5781811015610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90612703565b60405180910390fd5b610e8984848484610e84919061248d565b610c39565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590612791565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f639061281f565b60405180910390fd5b5f60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906128ad565b60405180910390fd5b5f61103860095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f611ad1565b14611041575f80fd5b61104b8183611ad1565b60085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506110d360085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483611b2e565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111719190611f09565b60405180910390a350505050565b5f6111c760085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483611b8b565b905092915050565b6111d881611ba0565b60095f805f1415806111ec575060016104d6145b6111fc576060855f1c901c611215565b60028063ffffffff1614611211576001611214565b60015b5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd855f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b81526004016112b2939291906128cb565b6020604051808303815f875af11580156112ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f2919061292a565b508373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161136f9190611f09565b60405180910390a38373ffffffffffffffffffffffffffffffffffffffff16737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516113ee9493929190612997565b60405180910390a350505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f80141580611443575060016104d6145b611453576060835f1c901c611455565b5f5b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60085f805f1415806114a057506001613050145b6114b0576060875f1c901c6114ed565b3073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff16146114ea5760016114ec565b5f5b5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516115349190611f09565b60405180910390a361154581611bb5565b60085f805f14158061155957506001613050145b611569576060855f1c901c61156b565b5f5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f805f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611618573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061163c9190612a56565b50915091508373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e491906124d4565b73ffffffffffffffffffffffffffffffffffffffff161461171557806dffffffffffffffffffffffffffff16611727565b816dffffffffffffffffffffffffffff165b92505050919050565b606080600267ffffffffffffffff81111561174e5761174d6120cd565b5b60405190808252806020026020018201604052801561177c5781602001602082028036833780820191505090505b50905030815f8151811061179357611792612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611837573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061185b91906124d4565b8160018151811061186f5761186e612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508091505090565b5f6060600267ffffffffffffffff8111156118ce576118cd6120cd565b5b6040519080825280602002602001820160405280156118fc5781602001602082028036833780820191505090505b5090506119098484611bd7565b9050805f8151811061191e5761191d612372565b5b602002602001015160085f6001421180611938575060015f115b80611959575042600173ffffffffffffffffffffffffffffffffffffffff16105b611963575f611972565b606061196d611c7f565b5f1c901c5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119b991906123cc565b92505081905550805f815181106119d3576119d2612372565b5b602002602001015191505092915050565b60085f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460075f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611acb84848484611ca2565b50505050565b5f82821115611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90612af0565b60405180910390fd5b5f8284611b22919061248d565b90508091505092915050565b5f808284611b3c91906123cc565b905083811015611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7890612b58565b60405180910390fd5b8091505092915050565b5f8183611b98919061256d565b905092915050565b5f600a82611bae91906123cc565b9050919050565b5f620186a08083611bc691906124ff565b611bd0919061256d565b9050919050565b606060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f00ca7484846040518363ffffffff1660e01b8152600401611c35929190612c2d565b5f60405180830381865afa158015611c4f573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611c779190612d2f565b905092915050565b5f60603073ffffffffffffffffffffffffffffffffffffffff16901b5f1b905090565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638803dbee858585856104b042611cf191906123cc565b6040518663ffffffff1660e01b8152600401611d11959493929190612d76565b5f604051808303815f875af1158015611d2c573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611d549190612d2f565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611d9d82611d5b565b611da78185611d65565b9350611db7818560208601611d75565b611dc081611d83565b840191505092915050565b5f6020820190508181035f830152611de38184611d93565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e2582611dfc565b9050919050565b611e3581611e1b565b8114611e3f575f80fd5b50565b5f81359050611e5081611e2c565b92915050565b5f819050919050565b611e6881611e56565b8114611e72575f80fd5b50565b5f81359050611e8381611e5f565b92915050565b5f8060408385031215611e9f57611e9e611df4565b5b5f611eac85828601611e42565b9250506020611ebd85828601611e75565b9150509250929050565b5f8115159050919050565b611edb81611ec7565b82525050565b5f602082019050611ef45f830184611ed2565b92915050565b611f0381611e56565b82525050565b5f602082019050611f1c5f830184611efa565b92915050565b5f805f60608486031215611f3957611f38611df4565b5b5f611f4686828701611e42565b9350506020611f5786828701611e42565b9250506040611f6886828701611e75565b9150509250925092565b5f60208284031215611f8757611f86611df4565b5b5f611f9484828501611e42565b91505092915050565b5f60ff82169050919050565b611fb281611f9d565b82525050565b5f602082019050611fcb5f830184611fa9565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611ff257611ff1611fd1565b5b8235905067ffffffffffffffff81111561200f5761200e611fd5565b5b60208301915083602082028301111561202b5761202a611fd9565b5b9250929050565b5f805f6040848603121561204957612048611df4565b5b5f84013567ffffffffffffffff81111561206657612065611df8565b5b61207286828701611fdd565b9350935050602061208586828701611e75565b9150509250925092565b5f80604083850312156120a5576120a4611df4565b5b5f6120b285828601611e42565b92505060206120c385828601611e42565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61210382611d83565b810181811067ffffffffffffffff82111715612122576121216120cd565b5b80604052505050565b5f612134611deb565b905061214082826120fa565b919050565b5f67ffffffffffffffff82111561215f5761215e6120cd565b5b602082029050602081019050919050565b5f61218261217d84612145565b61212b565b905080838252602082019050602084028301858111156121a5576121a4611fd9565b5b835b818110156121ce57806121ba8882611e42565b8452602084019350506020810190506121a7565b5050509392505050565b5f82601f8301126121ec576121eb611fd1565b5b81356121fc848260208601612170565b91505092915050565b5f805f806080858703121561221d5761221c611df4565b5b5f61222a87828801611e75565b945050602061223b87828801611e42565b935050604061224c87828801611e75565b925050606085013567ffffffffffffffff81111561226d5761226c611df8565b5b612279878288016121d8565b91505092959194509250565b61228e81611e1b565b82525050565b5f6020820190506122a75f830184612285565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122f157607f821691505b602082108103612304576123036122ad565b5b50919050565b7f43616c6c6572206973206e6f7420746865206f776e65720000000000000000005f82015250565b5f61233e601783611d65565b91506123498261230a565b602082019050919050565b5f6020820190508181035f83015261236b81612332565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123d682611e56565b91506123e183611e56565b92508282019050808211156123f9576123f861239f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612459602583611d65565b9150612464826123ff565b604082019050919050565b5f6020820190508181035f8301526124868161244d565b9050919050565b5f61249782611e56565b91506124a283611e56565b92508282039050818111156124ba576124b961239f565b5b92915050565b5f815190506124ce81611e2c565b92915050565b5f602082840312156124e9576124e8611df4565b5b5f6124f6848285016124c0565b91505092915050565b5f61250982611e56565b915061251483611e56565b925082820261252281611e56565b915082820484148315176125395761253861239f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61257782611e56565b915061258283611e56565b92508261259257612591612540565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6125f7602483611d65565b91506126028261259d565b604082019050919050565b5f6020820190508181035f830152612624816125eb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612685602283611d65565b91506126908261262b565b604082019050919050565b5f6020820190508181035f8301526126b281612679565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6126ed601d83611d65565b91506126f8826126b9565b602082019050919050565b5f6020820190508181035f83015261271a816126e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61277b602583611d65565b915061278682612721565b604082019050919050565b5f6020820190508181035f8301526127a88161276f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612809602383611d65565b9150612814826127af565b604082019050919050565b5f6020820190508181035f830152612836816127fd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612897602683611d65565b91506128a28261283d565b604082019050919050565b5f6020820190508181035f8301526128c48161288b565b9050919050565b5f6060820190506128de5f830186612285565b6128eb6020830185612285565b6128f86040830184611efa565b949350505050565b61290981611ec7565b8114612913575f80fd5b50565b5f8151905061292481612900565b92915050565b5f6020828403121561293f5761293e611df4565b5b5f61294c84828501612916565b91505092915050565b5f819050919050565b5f819050919050565b5f61298161297c61297784612955565b61295e565b611e56565b9050919050565b61299181612967565b82525050565b5f6080820190506129aa5f830187611efa565b6129b76020830186612988565b6129c46040830185612988565b6129d16060830184611efa565b95945050505050565b5f6dffffffffffffffffffffffffffff82169050919050565b6129fc816129da565b8114612a06575f80fd5b50565b5f81519050612a17816129f3565b92915050565b5f63ffffffff82169050919050565b612a3581612a1d565b8114612a3f575f80fd5b50565b5f81519050612a5081612a2c565b92915050565b5f805f60608486031215612a6d57612a6c611df4565b5b5f612a7a86828701612a09565b9350506020612a8b86828701612a09565b9250506040612a9c86828701612a42565b9150509250925092565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f612ada601e83611d65565b9150612ae582612aa6565b602082019050919050565b5f6020820190508181035f830152612b0781612ace565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612b42601b83611d65565b9150612b4d82612b0e565b602082019050919050565b5f6020820190508181035f830152612b6f81612b36565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612ba881611e1b565b82525050565b5f612bb98383612b9f565b60208301905092915050565b5f602082019050919050565b5f612bdb82612b76565b612be58185612b80565b9350612bf083612b90565b805f5b83811015612c20578151612c078882612bae565b9750612c1283612bc5565b925050600181019050612bf3565b5085935050505092915050565b5f604082019050612c405f830185611efa565b8181036020830152612c528184612bd1565b90509392505050565b5f67ffffffffffffffff821115612c7557612c746120cd565b5b602082029050602081019050919050565b5f81519050612c9481611e5f565b92915050565b5f612cac612ca784612c5b565b61212b565b90508083825260208201905060208402830185811115612ccf57612cce611fd9565b5b835b81811015612cf85780612ce48882612c86565b845260208401935050602081019050612cd1565b5050509392505050565b5f82601f830112612d1657612d15611fd1565b5b8151612d26848260208601612c9a565b91505092915050565b5f60208284031215612d4457612d43611df4565b5b5f82015167ffffffffffffffff811115612d6157612d60611df8565b5b612d6d84828501612d02565b91505092915050565b5f60a082019050612d895f830188611efa565b612d966020830187611efa565b8181036040830152612da88186612bd1565b9050612db76060830185612285565b612dc46080830184611efa565b969550505050505056fea264697066735822122089941c82614fcafb8442690ec0fd8c7e1bf468d727182b929ecd9adc4c3bc19764736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806358a10259116100ab578063b2bdfa7b1161006f578063b2bdfa7b14610367578063bda0278214610385578063dd62ed3e146103b5578063ea923bae146103e5578063ebfb412d146104015761011f565b806358a102591461028957806370a08231146102b957806395d89b41146102e9578063a457c2d714610307578063a9059cbb146103375761011f565b80632a936382116100f25780632a936382146101bf578063313ce567146101ef578063316d295f1461020d57806339509351146102295780635765a5cc146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b61041d565b6040516101389190611dcb565b60405180910390f35b61015b60048036038101906101569190611e89565b6104ad565b6040516101689190611ee1565b60405180910390f35b6101796104c3565b6040516101869190611f09565b60405180910390f35b6101a960048036038101906101a49190611f22565b6104cc565b6040516101b69190611ee1565b60405180910390f35b6101d960048036038101906101d49190611f72565b6104ee565b6040516101e69190611f09565b60405180910390f35b6101f7610503565b6040516102049190611fb8565b60405180910390f35b61022760048036038101906102229190612032565b610516565b005b610243600480360381019061023e9190611e89565b61064c565b6040516102509190611ee1565b60405180910390f35b610273600480360381019061026e919061208f565b61067b565b6040516102809190611f09565b60405180910390f35b6102a3600480360381019061029e9190612205565b61069b565b6040516102b09190611ee1565b60405180910390f35b6102d360048036038101906102ce9190611f72565b610776565b6040516102e09190611f09565b60405180910390f35b6102f16107bc565b6040516102fe9190611dcb565b60405180910390f35b610321600480360381019061031c9190611e89565b61084c565b60405161032e9190611ee1565b60405180910390f35b610351600480360381019061034c9190611e89565b6108c3565b60405161035e9190611ee1565b60405180910390f35b61036f6108d9565b60405161037c9190612294565b60405180910390f35b61039f600480360381019061039a9190611f72565b6108fe565b6040516103ac9190611f09565b60405180910390f35b6103cf60048036038101906103ca919061208f565b610913565b6040516103dc9190611f09565b60405180910390f35b6103ff60048036038101906103fa9190612032565b610995565b005b61041b60048036038101906104169190611f72565b610acb565b005b60606005805461042c906122da565b80601f0160208091040260200160405190810160405280929190818152602001828054610458906122da565b80156104a35780601f1061047a576101008083540402835291602001916104a3565b820191905f5260205f20905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b5f6104b9338484610c39565b6001905092915050565b5f600454905090565b5f6104d8843384610dfc565b6104e3848484610e90565b600190509392505050565b6009602052805f5260405f205f915090505481565b600160149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059c90612354565b60405180910390fd5b5f5b83839050811015610646575f60ff1673ffffffffffffffffffffffffffffffffffffffff16421115610639575f6106125f8060ff1661ffff160361060a5760608686858181106105fa576105f9612372565b5b905060200201355f1c901c61060c565b5f5b8461117f565b905061063785858481811061062a57610629612372565b5b90506020020135826111cf565b505b80806001019150506105a7565b50505050565b5f803390506106708185856106618589610913565b61066b91906123cc565b610c39565b600191505092915050565b6007602052815f5260405f20602052805f5260405f205f91509150505481565b5f3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072290612354565b60405180910390fd5b5f5b82518110156107695761075c83828151811061074c5761074b612372565b5b6020026020010151878688611256565b808060010191505061072d565b5060019050949350505050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600680546107cb906122da565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906122da565b80156108425780601f1061081957610100808354040283529160200191610842565b820191905f5260205f20905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b5f803390505f61085c8286610913565b9050838110156108a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108989061246f565b60405180910390fd5b6108b7828686846108b2919061248d565b610c39565b60019250505092915050565b5f6108cf338484610e90565b6001905092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6008602052805f5260405f205f915090505481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90612354565b60405180910390fd5b5f5b83839050811015610ac5575f60ff1673ffffffffffffffffffffffffffffffffffffffff16421115610ab8575f610a915f8060ff1661ffff1603610a89576060868685818110610a7957610a78612372565b5b905060200201355f1c901c610a8b565b5f5b8461117f565b9050610ab6858584818110610aa957610aa8612372565b5b90506020020135826113fc565b505b8080600101915050610a26565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff1660035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612354565b60405180910390fd5b5f620186a06201869f610bf960015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf491906124d4565b6115ac565b610c0391906124ff565b610c0d919061256d565b90505f610c18611730565b90505f610c2583836118b0565b9050610c33838284876119e4565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061260d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061269b565b60405180910390fd5b8060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610def9190611f09565b60405180910390a3505050565b5f610e078484610913565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e8a5781811015610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90612703565b60405180910390fd5b610e8984848484610e84919061248d565b610c39565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590612791565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f639061281f565b60405180910390fd5b5f60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906128ad565b60405180910390fd5b5f61103860095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f611ad1565b14611041575f80fd5b61104b8183611ad1565b60085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506110d360085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483611b2e565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111719190611f09565b60405180910390a350505050565b5f6111c760085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483611b8b565b905092915050565b6111d881611ba0565b60095f805f1415806111ec575060016104d6145b6111fc576060855f1c901c611215565b60028063ffffffff1614611211576001611214565b60015b5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd855f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b81526004016112b2939291906128cb565b6020604051808303815f875af11580156112ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f2919061292a565b508373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161136f9190611f09565b60405180910390a38373ffffffffffffffffffffffffffffffffffffffff16737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516113ee9493929190612997565b60405180910390a350505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f80141580611443575060016104d6145b611453576060835f1c901c611455565b5f5b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60085f805f1415806114a057506001613050145b6114b0576060875f1c901c6114ed565b3073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff16146114ea5760016114ec565b5f5b5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516115349190611f09565b60405180910390a361154581611bb5565b60085f805f14158061155957506001613050145b611569576060855f1c901c61156b565b5f5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f805f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611618573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061163c9190612a56565b50915091508373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e491906124d4565b73ffffffffffffffffffffffffffffffffffffffff161461171557806dffffffffffffffffffffffffffff16611727565b816dffffffffffffffffffffffffffff165b92505050919050565b606080600267ffffffffffffffff81111561174e5761174d6120cd565b5b60405190808252806020026020018201604052801561177c5781602001602082028036833780820191505090505b50905030815f8151811061179357611792612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611837573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061185b91906124d4565b8160018151811061186f5761186e612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508091505090565b5f6060600267ffffffffffffffff8111156118ce576118cd6120cd565b5b6040519080825280602002602001820160405280156118fc5781602001602082028036833780820191505090505b5090506119098484611bd7565b9050805f8151811061191e5761191d612372565b5b602002602001015160085f6001421180611938575060015f115b80611959575042600173ffffffffffffffffffffffffffffffffffffffff16105b611963575f611972565b606061196d611c7f565b5f1c901c5b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119b991906123cc565b92505081905550805f815181106119d3576119d2612372565b5b602002602001015191505092915050565b60085f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460075f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611acb84848484611ca2565b50505050565b5f82821115611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90612af0565b60405180910390fd5b5f8284611b22919061248d565b90508091505092915050565b5f808284611b3c91906123cc565b905083811015611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7890612b58565b60405180910390fd5b8091505092915050565b5f8183611b98919061256d565b905092915050565b5f600a82611bae91906123cc565b9050919050565b5f620186a08083611bc691906124ff565b611bd0919061256d565b9050919050565b606060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f00ca7484846040518363ffffffff1660e01b8152600401611c35929190612c2d565b5f60405180830381865afa158015611c4f573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611c779190612d2f565b905092915050565b5f60603073ffffffffffffffffffffffffffffffffffffffff16901b5f1b905090565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638803dbee858585856104b042611cf191906123cc565b6040518663ffffffff1660e01b8152600401611d11959493929190612d76565b5f604051808303815f875af1158015611d2c573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611d549190612d2f565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611d9d82611d5b565b611da78185611d65565b9350611db7818560208601611d75565b611dc081611d83565b840191505092915050565b5f6020820190508181035f830152611de38184611d93565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e2582611dfc565b9050919050565b611e3581611e1b565b8114611e3f575f80fd5b50565b5f81359050611e5081611e2c565b92915050565b5f819050919050565b611e6881611e56565b8114611e72575f80fd5b50565b5f81359050611e8381611e5f565b92915050565b5f8060408385031215611e9f57611e9e611df4565b5b5f611eac85828601611e42565b9250506020611ebd85828601611e75565b9150509250929050565b5f8115159050919050565b611edb81611ec7565b82525050565b5f602082019050611ef45f830184611ed2565b92915050565b611f0381611e56565b82525050565b5f602082019050611f1c5f830184611efa565b92915050565b5f805f60608486031215611f3957611f38611df4565b5b5f611f4686828701611e42565b9350506020611f5786828701611e42565b9250506040611f6886828701611e75565b9150509250925092565b5f60208284031215611f8757611f86611df4565b5b5f611f9484828501611e42565b91505092915050565b5f60ff82169050919050565b611fb281611f9d565b82525050565b5f602082019050611fcb5f830184611fa9565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611ff257611ff1611fd1565b5b8235905067ffffffffffffffff81111561200f5761200e611fd5565b5b60208301915083602082028301111561202b5761202a611fd9565b5b9250929050565b5f805f6040848603121561204957612048611df4565b5b5f84013567ffffffffffffffff81111561206657612065611df8565b5b61207286828701611fdd565b9350935050602061208586828701611e75565b9150509250925092565b5f80604083850312156120a5576120a4611df4565b5b5f6120b285828601611e42565b92505060206120c385828601611e42565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61210382611d83565b810181811067ffffffffffffffff82111715612122576121216120cd565b5b80604052505050565b5f612134611deb565b905061214082826120fa565b919050565b5f67ffffffffffffffff82111561215f5761215e6120cd565b5b602082029050602081019050919050565b5f61218261217d84612145565b61212b565b905080838252602082019050602084028301858111156121a5576121a4611fd9565b5b835b818110156121ce57806121ba8882611e42565b8452602084019350506020810190506121a7565b5050509392505050565b5f82601f8301126121ec576121eb611fd1565b5b81356121fc848260208601612170565b91505092915050565b5f805f806080858703121561221d5761221c611df4565b5b5f61222a87828801611e75565b945050602061223b87828801611e42565b935050604061224c87828801611e75565b925050606085013567ffffffffffffffff81111561226d5761226c611df8565b5b612279878288016121d8565b91505092959194509250565b61228e81611e1b565b82525050565b5f6020820190506122a75f830184612285565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122f157607f821691505b602082108103612304576123036122ad565b5b50919050565b7f43616c6c6572206973206e6f7420746865206f776e65720000000000000000005f82015250565b5f61233e601783611d65565b91506123498261230a565b602082019050919050565b5f6020820190508181035f83015261236b81612332565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123d682611e56565b91506123e183611e56565b92508282019050808211156123f9576123f861239f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612459602583611d65565b9150612464826123ff565b604082019050919050565b5f6020820190508181035f8301526124868161244d565b9050919050565b5f61249782611e56565b91506124a283611e56565b92508282039050818111156124ba576124b961239f565b5b92915050565b5f815190506124ce81611e2c565b92915050565b5f602082840312156124e9576124e8611df4565b5b5f6124f6848285016124c0565b91505092915050565b5f61250982611e56565b915061251483611e56565b925082820261252281611e56565b915082820484148315176125395761253861239f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61257782611e56565b915061258283611e56565b92508261259257612591612540565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6125f7602483611d65565b91506126028261259d565b604082019050919050565b5f6020820190508181035f830152612624816125eb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612685602283611d65565b91506126908261262b565b604082019050919050565b5f6020820190508181035f8301526126b281612679565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6126ed601d83611d65565b91506126f8826126b9565b602082019050919050565b5f6020820190508181035f83015261271a816126e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61277b602583611d65565b915061278682612721565b604082019050919050565b5f6020820190508181035f8301526127a88161276f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612809602383611d65565b9150612814826127af565b604082019050919050565b5f6020820190508181035f830152612836816127fd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612897602683611d65565b91506128a28261283d565b604082019050919050565b5f6020820190508181035f8301526128c48161288b565b9050919050565b5f6060820190506128de5f830186612285565b6128eb6020830185612285565b6128f86040830184611efa565b949350505050565b61290981611ec7565b8114612913575f80fd5b50565b5f8151905061292481612900565b92915050565b5f6020828403121561293f5761293e611df4565b5b5f61294c84828501612916565b91505092915050565b5f819050919050565b5f819050919050565b5f61298161297c61297784612955565b61295e565b611e56565b9050919050565b61299181612967565b82525050565b5f6080820190506129aa5f830187611efa565b6129b76020830186612988565b6129c46040830185612988565b6129d16060830184611efa565b95945050505050565b5f6dffffffffffffffffffffffffffff82169050919050565b6129fc816129da565b8114612a06575f80fd5b50565b5f81519050612a17816129f3565b92915050565b5f63ffffffff82169050919050565b612a3581612a1d565b8114612a3f575f80fd5b50565b5f81519050612a5081612a2c565b92915050565b5f805f60608486031215612a6d57612a6c611df4565b5b5f612a7a86828701612a09565b9350506020612a8b86828701612a09565b9250506040612a9c86828701612a42565b9150509250925092565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f612ada601e83611d65565b9150612ae582612aa6565b602082019050919050565b5f6020820190508181035f830152612b0781612ace565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612b42601b83611d65565b9150612b4d82612b0e565b602082019050919050565b5f6020820190508181035f830152612b6f81612b36565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612ba881611e1b565b82525050565b5f612bb98383612b9f565b60208301905092915050565b5f602082019050919050565b5f612bdb82612b76565b612be58185612b80565b9350612bf083612b90565b805f5b83811015612c20578151612c078882612bae565b9750612c1283612bc5565b925050600181019050612bf3565b5085935050505092915050565b5f604082019050612c405f830185611efa565b8181036020830152612c528184612bd1565b90509392505050565b5f67ffffffffffffffff821115612c7557612c746120cd565b5b602082029050602081019050919050565b5f81519050612c9481611e5f565b92915050565b5f612cac612ca784612c5b565b61212b565b90508083825260208201905060208402830185811115612ccf57612cce611fd9565b5b835b81811015612cf85780612ce48882612c86565b845260208401935050602081019050612cd1565b5050509392505050565b5f82601f830112612d1657612d15611fd1565b5b8151612d26848260208601612c9a565b91505092915050565b5f60208284031215612d4457612d43611df4565b5b5f82015167ffffffffffffffff811115612d6157612d60611df8565b5b612d6d84828501612d02565b91505092915050565b5f60a082019050612d895f830188611efa565b612d966020830187611efa565b8181036040830152612da88186612bd1565b9050612db76060830185612285565b612dc46080830184611efa565b969550505050505056fea264697066735822122089941c82614fcafb8442690ec0fd8c7e1bf468d727182b929ecd9adc4c3bc19764736f6c634300081a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.