Source Code
Overview
ETH Balance
ETH Value
$0.00Latest 25 from a total of 760,107 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Attest By Delega... | 17337322 | 189 days ago | IN | 0 ETH | 0.00000011 | ||||
| Attest By Delega... | 17337321 | 189 days ago | IN | 0 ETH | 0.00000011 | ||||
| Attest By Delega... | 16747660 | 212 days ago | IN | 0 ETH | 0.00000021 | ||||
| Attest By Delega... | 16531432 | 221 days ago | IN | 0 ETH | 0.00000016 | ||||
| Attest By Delega... | 16531346 | 221 days ago | IN | 0 ETH | 0.00000016 | ||||
| Attest By Delega... | 16531338 | 221 days ago | IN | 0 ETH | 0.00000016 | ||||
| Attest By Delega... | 16531329 | 221 days ago | IN | 0 ETH | 0.00000016 | ||||
| Attest By Delega... | 16531196 | 221 days ago | IN | 0 ETH | 0.00000016 | ||||
| Attest By Delega... | 14947135 | 275 days ago | IN | 0 ETH | 0.00000157 | ||||
| Attest By Delega... | 13342257 | 347 days ago | IN | 0 ETH | 0.00000174 | ||||
| Attest By Delega... | 13342257 | 347 days ago | IN | 0 ETH | 0.00000174 | ||||
| Attest By Delega... | 13308483 | 348 days ago | IN | 0 ETH | 0.00000258 | ||||
| Attest By Delega... | 12898631 | 366 days ago | IN | 0 ETH | 0.00004152 | ||||
| Attest By Delega... | 12896351 | 366 days ago | IN | 0 ETH | 0.00004769 | ||||
| Attest By Delega... | 12891409 | 366 days ago | IN | 0 ETH | 0.00002826 | ||||
| Attest By Delega... | 12874236 | 367 days ago | IN | 0 ETH | 0.00003303 | ||||
| Attest By Delega... | 12858783 | 368 days ago | IN | 0 ETH | 0.00002693 | ||||
| Attest By Delega... | 12854572 | 368 days ago | IN | 0 ETH | 0.00004485 | ||||
| Attest By Delega... | 12843030 | 368 days ago | IN | 0 ETH | 0.00006155 | ||||
| Attest By Delega... | 12824075 | 369 days ago | IN | 0 ETH | 0.00007994 | ||||
| Attest By Delega... | 12823774 | 369 days ago | IN | 0 ETH | 0.00006252 | ||||
| Attest By Delega... | 12823671 | 369 days ago | IN | 0 ETH | 0.00004765 | ||||
| Attest By Delega... | 12814336 | 369 days ago | IN | 0 ETH | 0.00004052 | ||||
| Attest By Delega... | 12806993 | 370 days ago | IN | 0 ETH | 0.00003917 | ||||
| Attest By Delega... | 12805012 | 370 days ago | IN | 0 ETH | 0.00003301 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AttesterProxy
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
import {
EIP712Proxy,
AttestationRequest,
RevocationRequest,
DelegatedProxyAttestationRequest
} from "@eas/contracts/eip712/proxy/EIP712Proxy.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {AccessDenied} from "@eas/contracts/Common.sol";
import {IEAS, Attestation} from "@eas/contracts/IEAS.sol";
/// @title AttesterProxy
/// @notice An EIP712 proxy that allows only specific addresses to attest.
/// Based on PermissionedEIP712Proxy in the EAS repo.
contract AttesterProxy is EIP712Proxy, Ownable {
// The global EAS contract.
IEAS private immutable _eas;
// Authorized badge attester accounts.
mapping(address => bool) public isAttester;
/// @dev Creates a new PermissionedEIP712Proxy instance.
/// @param eas The address of the global EAS contract.
constructor(IEAS eas) EIP712Proxy(eas, "AttesterProxy") {
_eas = eas;
}
/// @notice Enables or disables a given attester.
/// @param attester The attester address.
/// @param enable True if enable, false if disable.
function toggleAttester(address attester, bool enable) external onlyOwner {
isAttester[attester] = enable;
}
/// @inheritdoc EIP712Proxy
function attestByDelegation(DelegatedProxyAttestationRequest calldata delegatedRequest)
public
payable
override
returns (bytes32)
{
// Ensure that only the owner is allowed to delegate attestations.
_verifyAttester(delegatedRequest.attester);
// Ensure that only the recipient can submit delegated attestation transactions.
if (msg.sender != delegatedRequest.data.recipient) {
revert AccessDenied();
}
return super.attestByDelegation(delegatedRequest);
}
/// @notice Create attestation through the proxy.
/// @param request The arguments of the attestation request.
/// @return The UID of the new attestation.
function attest(AttestationRequest calldata request) external returns (bytes32) {
_verifyAttester(msg.sender);
return _eas.attest(request);
}
/// @notice Revoke attestation through the proxy.
/// @param request The arguments of the revocation request.
function revoke(RevocationRequest calldata request) external {
_verifyAttester(msg.sender);
_eas.revoke(request);
}
/// @dev Ensures that only the allowed attester can attest.
/// @param attester The attester to verify.
function _verifyAttester(address attester) private view {
if (!isAttester[attester]) {
revert AccessDenied();
}
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
import { EIP712 } from "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
// prettier-ignore
import {
AccessDenied,
DeadlineExpired,
Signature,
InvalidEAS,
InvalidLength,
InvalidSignature,
NotFound,
NO_EXPIRATION_TIME,
uncheckedInc
} from "../../Common.sol";
// prettier-ignore
import {
AttestationRequest,
AttestationRequestData,
DelegatedAttestationRequest,
DelegatedRevocationRequest,
IEAS,
MultiAttestationRequest,
MultiDelegatedAttestationRequest,
MultiDelegatedRevocationRequest,
MultiRevocationRequest,
RevocationRequest,
RevocationRequestData
} from "../../IEAS.sol";
import { Semver } from "../../Semver.sol";
/// @notice A struct representing the full arguments of the full delegated attestation request.
struct DelegatedProxyAttestationRequest {
bytes32 schema; // The unique identifier of the schema.
AttestationRequestData data; // The arguments of the attestation request.
Signature signature; // The EIP712 signature data.
address attester; // The attesting account.
uint64 deadline; // The deadline of the signature/request.
}
/// @notice A struct representing the full arguments of the delegated multi attestation request.
struct MultiDelegatedProxyAttestationRequest {
bytes32 schema; // The unique identifier of the schema.
AttestationRequestData[] data; // The arguments of the attestation requests.
Signature[] signatures; // The EIP712 signatures data. Please note that the signatures are assumed to be signed with increasing nonces.
address attester; // The attesting account.
uint64 deadline; // The deadline of the signature/request.
}
/// @notice A struct representing the arguments of the full delegated revocation request.
struct DelegatedProxyRevocationRequest {
bytes32 schema; // The unique identifier of the schema.
RevocationRequestData data; // The arguments of the revocation request.
Signature signature; // The EIP712 signature data.
address revoker; // The revoking account.
uint64 deadline; // The deadline of the signature/request.
}
/// @notice A struct representing the full arguments of the delegated multi revocation request.
struct MultiDelegatedProxyRevocationRequest {
bytes32 schema; // The unique identifier of the schema.
RevocationRequestData[] data; // The arguments of the revocation requests.
Signature[] signatures; // The EIP712 signatures data. Please note that the signatures are assumed to be signed with increasing nonces.
address revoker; // The revoking account.
uint64 deadline; // The deadline of the signature/request.
}
/// @title EIP712Proxy
/// @notice This utility contract an be used to aggregate delegated attestations without requiring a specific order via
/// nonces. The contract doesn't request nonces and implements replay protection by storing ***immalleable***
/// signatures.
contract EIP712Proxy is Semver, EIP712 {
error UsedSignature();
// The hash of the data type used to relay calls to the attest function. It's the value of
// keccak256("Attest(address attester,bytes32 schema,address recipient,uint64 expirationTime,bool revocable,bytes32 refUID,bytes data,uint256 value,uint64 deadline)").
bytes32 private constant ATTEST_PROXY_TYPEHASH = 0xea02ffba7dcb45f6fc649714d23f315eef12e3b27f9a7735d8d8bf41eb2b1af1;
// The hash of the data type used to relay calls to the revoke function. It's the value of
// keccak256("Revoke(address revoker,bytes32 schema,bytes32 uid,uint256 value,uint64 deadline)").
bytes32 private constant REVOKE_PROXY_TYPEHASH = 0x78a69a78c1a55cdff5cbf949580b410778cd9e4d1ecbe6f06a7fa8dc2441b57d;
// The global EAS contract.
IEAS private immutable _eas;
// The user readable name of the signing domain.
string private _name;
// The global mapping between proxy attestations and their attesters, so that we can verify that only the original
// attester is able to revert attestations by proxy.
mapping(bytes32 uid => address attester) private _attesters;
// Replay protection signatures.
mapping(bytes signature => bool used) private _signatures;
/// @dev Creates a new EIP1271Verifier instance.
/// @param eas The address of the global EAS contract.
/// @param name The user readable name of the signing domain.
constructor(IEAS eas, string memory name) Semver(1, 3, 0) EIP712(name, "1.3.0") {
if (address(eas) == address(0)) {
revert InvalidEAS();
}
_eas = eas;
_name = name;
}
/// @notice Returns the EAS.
function getEAS() external view returns (IEAS) {
return _eas;
}
/// @notice Returns the domain separator used in the encoding of the signatures for attest, and revoke.
function getDomainSeparator() external view returns (bytes32) {
return _domainSeparatorV4();
}
/// Returns the EIP712 type hash for the attest function.
function getAttestTypeHash() external pure returns (bytes32) {
return ATTEST_PROXY_TYPEHASH;
}
/// Returns the EIP712 type hash for the revoke function.
function getRevokeTypeHash() external pure returns (bytes32) {
return REVOKE_PROXY_TYPEHASH;
}
/// Returns the EIP712 name.
function getName() external view returns (string memory) {
return _name;
}
/// Returns the attester for a given uid.
function getAttester(bytes32 uid) external view returns (address) {
return _attesters[uid];
}
/// @notice Attests to a specific schema via the provided EIP712 signature.
/// @param delegatedRequest The arguments of the delegated attestation request.
/// @return The UID of the new attestation.
///
/// Example:
/// attestByDelegation({
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: {
/// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
/// expirationTime: 1673891048,
/// revocable: true,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x1234',
/// value: 0
/// },
/// signature: {
/// v: 28,
/// r: '0x148c...b25b',
/// s: '0x5a72...be22'
/// },
/// attester: '0xc5E8740aD971409492b1A63Db8d83025e0Fc427e',
/// deadline: 1673891048
/// })
function attestByDelegation(
DelegatedProxyAttestationRequest calldata delegatedRequest
) public payable virtual returns (bytes32) {
_verifyAttest(delegatedRequest);
bytes32 uid = _eas.attest{ value: msg.value }(
AttestationRequest({ schema: delegatedRequest.schema, data: delegatedRequest.data })
);
_attesters[uid] = delegatedRequest.attester;
return uid;
}
/// @notice Attests to multiple schemas using via provided EIP712 signatures.
/// @param multiDelegatedRequests The arguments of the delegated multi attestation requests. The requests should be
/// grouped by distinct schema ids to benefit from the best batching optimization.
/// @return The UIDs of the new attestations.
///
/// Example:
/// multiAttestByDelegation([{
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: [{
/// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
/// expirationTime: 1673891048,
/// revocable: true,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x1234',
/// value: 0
/// },
/// {
/// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
/// expirationTime: 0,
/// revocable: false,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x00',
/// value: 0
/// }],
/// signatures: [{
/// v: 28,
/// r: '0x148c...b25b',
/// s: '0x5a72...be22'
/// },
/// {
/// v: 28,
/// r: '0x487s...67bb',
/// s: '0x12ad...2366'
/// }],
/// attester: '0x1D86495b2A7B524D747d2839b3C645Bed32e8CF4',
/// deadline: 1673891048
/// }])
function multiAttestByDelegation(
MultiDelegatedProxyAttestationRequest[] calldata multiDelegatedRequests
) public payable virtual returns (bytes32[] memory) {
uint256 length = multiDelegatedRequests.length;
MultiAttestationRequest[] memory multiRequests = new MultiAttestationRequest[](length);
for (uint256 i = 0; i < length; i = uncheckedInc(i)) {
MultiDelegatedProxyAttestationRequest calldata multiDelegatedRequest = multiDelegatedRequests[i];
AttestationRequestData[] calldata data = multiDelegatedRequest.data;
// Ensure that no inputs are missing.
uint256 dataLength = data.length;
if (dataLength == 0 || dataLength != multiDelegatedRequest.signatures.length) {
revert InvalidLength();
}
// Verify EIP712 signatures. Please note that the signatures are assumed to be signed with increasing nonces.
for (uint256 j = 0; j < dataLength; j = uncheckedInc(j)) {
_verifyAttest(
DelegatedProxyAttestationRequest({
schema: multiDelegatedRequest.schema,
data: data[j],
signature: multiDelegatedRequest.signatures[j],
attester: multiDelegatedRequest.attester,
deadline: multiDelegatedRequest.deadline
})
);
}
multiRequests[i] = MultiAttestationRequest({ schema: multiDelegatedRequest.schema, data: data });
}
bytes32[] memory uids = _eas.multiAttest{ value: msg.value }(multiRequests);
// Store all attesters, according to the order of the attestation requests.
uint256 uidCounter = 0;
for (uint256 i = 0; i < length; i = uncheckedInc(i)) {
MultiDelegatedProxyAttestationRequest calldata multiDelegatedRequest = multiDelegatedRequests[i];
AttestationRequestData[] calldata data = multiDelegatedRequest.data;
uint256 dataLength = data.length;
for (uint256 j = 0; j < dataLength; j = uncheckedInc(j)) {
_attesters[uids[uidCounter]] = multiDelegatedRequest.attester;
unchecked {
++uidCounter;
}
}
}
return uids;
}
/// @notice Revokes an existing attestation to a specific schema via the provided EIP712 signature.
/// @param delegatedRequest The arguments of the delegated revocation request.
///
/// Example:
/// revokeByDelegation({
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: {
/// uid: '0xcbbc12102578c642a0f7b34fe7111e41afa25683b6cd7b5a14caf90fa14d24ba',
/// value: 0
/// },
/// signature: {
/// v: 27,
/// r: '0xb593...7142',
/// s: '0x0f5b...2cce'
/// },
/// revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992',
/// deadline: 1673891048
/// })
function revokeByDelegation(DelegatedProxyRevocationRequest calldata delegatedRequest) public payable virtual {
_verifyRevoke(delegatedRequest);
return
_eas.revoke{ value: msg.value }(
RevocationRequest({ schema: delegatedRequest.schema, data: delegatedRequest.data })
);
}
/// @notice Revokes existing attestations to multiple schemas via provided EIP712 signatures.
/// @param multiDelegatedRequests The arguments of the delegated multi revocation attestation requests. The requests
/// should be grouped by distinct schema ids to benefit from the best batching optimization.
///
/// Example:
/// multiRevokeByDelegation([{
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: [{
/// uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25',
/// value: 1000
/// },
/// {
/// uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade',
/// value: 0
/// }],
/// signatures: [{
/// v: 28,
/// r: '0x148c...b25b',
/// s: '0x5a72...be22'
/// },
/// {
/// v: 28,
/// r: '0x487s...67bb',
/// s: '0x12ad...2366'
/// }],
/// revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992',
/// deadline: 1673891048
/// }])
function multiRevokeByDelegation(
MultiDelegatedProxyRevocationRequest[] calldata multiDelegatedRequests
) public payable virtual {
uint256 length = multiDelegatedRequests.length;
MultiRevocationRequest[] memory multiRequests = new MultiRevocationRequest[](length);
for (uint256 i = 0; i < length; i = uncheckedInc(i)) {
MultiDelegatedProxyRevocationRequest memory multiDelegatedRequest = multiDelegatedRequests[i];
RevocationRequestData[] memory data = multiDelegatedRequest.data;
// Ensure that no inputs are missing.
uint256 dataLength = data.length;
if (dataLength == 0 || dataLength != multiDelegatedRequest.signatures.length) {
revert InvalidLength();
}
// Verify EIP712 signatures. Please note that the signatures are assumed to be signed with increasing nonces.
for (uint256 j = 0; j < dataLength; j = uncheckedInc(j)) {
RevocationRequestData memory requestData = data[j];
_verifyRevoke(
DelegatedProxyRevocationRequest({
schema: multiDelegatedRequest.schema,
data: requestData,
signature: multiDelegatedRequest.signatures[j],
revoker: multiDelegatedRequest.revoker,
deadline: multiDelegatedRequest.deadline
})
);
}
multiRequests[i] = MultiRevocationRequest({ schema: multiDelegatedRequest.schema, data: data });
}
_eas.multiRevoke{ value: msg.value }(multiRequests);
}
/// @dev Verifies delegated attestation request.
/// @param request The arguments of the delegated attestation request.
function _verifyAttest(DelegatedProxyAttestationRequest memory request) internal {
if (request.deadline != NO_EXPIRATION_TIME && request.deadline < _time()) {
revert DeadlineExpired();
}
AttestationRequestData memory data = request.data;
Signature memory signature = request.signature;
_verifyUnusedSignature(signature);
bytes32 digest = _hashTypedDataV4(
keccak256(
abi.encode(
ATTEST_PROXY_TYPEHASH,
request.attester,
request.schema,
data.recipient,
data.expirationTime,
data.revocable,
data.refUID,
keccak256(data.data),
data.value,
request.deadline
)
)
);
if (ECDSA.recover(digest, signature.v, signature.r, signature.s) != request.attester) {
revert InvalidSignature();
}
}
/// @dev Verifies delegated revocation request.
/// @param request The arguments of the delegated revocation request.
function _verifyRevoke(DelegatedProxyRevocationRequest memory request) internal {
if (request.deadline != NO_EXPIRATION_TIME && request.deadline < _time()) {
revert DeadlineExpired();
}
RevocationRequestData memory data = request.data;
// Allow only original attesters to revoke their attestations.
address attester = _attesters[data.uid];
if (attester == address(0)) {
revert NotFound();
}
if (attester != msg.sender) {
revert AccessDenied();
}
Signature memory signature = request.signature;
_verifyUnusedSignature(signature);
bytes32 digest = _hashTypedDataV4(
keccak256(
abi.encode(
REVOKE_PROXY_TYPEHASH,
request.revoker,
request.schema,
data.uid,
data.value,
request.deadline
)
)
);
if (ECDSA.recover(digest, signature.v, signature.r, signature.s) != request.revoker) {
revert InvalidSignature();
}
}
/// @dev Ensures that the provided EIP712 signature wasn't already used.
/// @param signature The EIP712 signature data.
function _verifyUnusedSignature(Signature memory signature) internal {
bytes memory packedSignature = abi.encodePacked(signature.v, signature.r, signature.s);
if (_signatures[packedSignature]) {
revert UsedSignature();
}
_signatures[packedSignature] = true;
}
/// @dev Returns the current's block timestamp. This method is overridden during tests and used to simulate the
/// current block time.
function _time() internal view virtual returns (uint64) {
return uint64(block.timestamp);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
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() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// A representation of an empty/uninitialized UID.
bytes32 constant EMPTY_UID = 0;
// A zero expiration represents an non-expiring attestation.
uint64 constant NO_EXPIRATION_TIME = 0;
error AccessDenied();
error DeadlineExpired();
error InvalidEAS();
error InvalidLength();
error InvalidSignature();
error NotFound();
/// @notice A struct representing ECDSA signature data.
struct Signature {
uint8 v; // The recovery ID.
bytes32 r; // The x-coordinate of the nonce R.
bytes32 s; // The signature data.
}
/// @notice A struct representing a single attestation.
struct Attestation {
bytes32 uid; // A unique identifier of the attestation.
bytes32 schema; // The unique identifier of the schema.
uint64 time; // The time when the attestation was created (Unix timestamp).
uint64 expirationTime; // The time when the attestation expires (Unix timestamp).
uint64 revocationTime; // The time when the attestation was revoked (Unix timestamp).
bytes32 refUID; // The UID of the related attestation.
address recipient; // The recipient of the attestation.
address attester; // The attester/sender of the attestation.
bool revocable; // Whether the attestation is revocable.
bytes data; // Custom attestation data.
}
/// @notice A helper function to work with unchecked iterators in loops.
function uncheckedInc(uint256 i) pure returns (uint256 j) {
unchecked {
j = i + 1;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { ISchemaRegistry } from "./ISchemaRegistry.sol";
import { ISemver } from "./ISemver.sol";
import { Attestation, Signature } from "./Common.sol";
/// @notice A struct representing the arguments of the attestation request.
struct AttestationRequestData {
address recipient; // The recipient of the attestation.
uint64 expirationTime; // The time when the attestation expires (Unix timestamp).
bool revocable; // Whether the attestation is revocable.
bytes32 refUID; // The UID of the related attestation.
bytes data; // Custom attestation data.
uint256 value; // An explicit ETH amount to send to the resolver. This is important to prevent accidental user errors.
}
/// @notice A struct representing the full arguments of the attestation request.
struct AttestationRequest {
bytes32 schema; // The unique identifier of the schema.
AttestationRequestData data; // The arguments of the attestation request.
}
/// @notice A struct representing the full arguments of the full delegated attestation request.
struct DelegatedAttestationRequest {
bytes32 schema; // The unique identifier of the schema.
AttestationRequestData data; // The arguments of the attestation request.
Signature signature; // The ECDSA signature data.
address attester; // The attesting account.
uint64 deadline; // The deadline of the signature/request.
}
/// @notice A struct representing the full arguments of the multi attestation request.
struct MultiAttestationRequest {
bytes32 schema; // The unique identifier of the schema.
AttestationRequestData[] data; // The arguments of the attestation request.
}
/// @notice A struct representing the full arguments of the delegated multi attestation request.
struct MultiDelegatedAttestationRequest {
bytes32 schema; // The unique identifier of the schema.
AttestationRequestData[] data; // The arguments of the attestation requests.
Signature[] signatures; // The ECDSA signatures data. Please note that the signatures are assumed to be signed with increasing nonces.
address attester; // The attesting account.
uint64 deadline; // The deadline of the signature/request.
}
/// @notice A struct representing the arguments of the revocation request.
struct RevocationRequestData {
bytes32 uid; // The UID of the attestation to revoke.
uint256 value; // An explicit ETH amount to send to the resolver. This is important to prevent accidental user errors.
}
/// @notice A struct representing the full arguments of the revocation request.
struct RevocationRequest {
bytes32 schema; // The unique identifier of the schema.
RevocationRequestData data; // The arguments of the revocation request.
}
/// @notice A struct representing the arguments of the full delegated revocation request.
struct DelegatedRevocationRequest {
bytes32 schema; // The unique identifier of the schema.
RevocationRequestData data; // The arguments of the revocation request.
Signature signature; // The ECDSA signature data.
address revoker; // The revoking account.
uint64 deadline; // The deadline of the signature/request.
}
/// @notice A struct representing the full arguments of the multi revocation request.
struct MultiRevocationRequest {
bytes32 schema; // The unique identifier of the schema.
RevocationRequestData[] data; // The arguments of the revocation request.
}
/// @notice A struct representing the full arguments of the delegated multi revocation request.
struct MultiDelegatedRevocationRequest {
bytes32 schema; // The unique identifier of the schema.
RevocationRequestData[] data; // The arguments of the revocation requests.
Signature[] signatures; // The ECDSA signatures data. Please note that the signatures are assumed to be signed with increasing nonces.
address revoker; // The revoking account.
uint64 deadline; // The deadline of the signature/request.
}
/// @title IEAS
/// @notice EAS - Ethereum Attestation Service interface.
interface IEAS is ISemver {
/// @notice Emitted when an attestation has been made.
/// @param recipient The recipient of the attestation.
/// @param attester The attesting account.
/// @param uid The UID the revoked attestation.
/// @param schemaUID The UID of the schema.
event Attested(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID);
/// @notice Emitted when an attestation has been revoked.
/// @param recipient The recipient of the attestation.
/// @param attester The attesting account.
/// @param schemaUID The UID of the schema.
/// @param uid The UID the revoked attestation.
event Revoked(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID);
/// @notice Emitted when a data has been timestamped.
/// @param data The data.
/// @param timestamp The timestamp.
event Timestamped(bytes32 indexed data, uint64 indexed timestamp);
/// @notice Emitted when a data has been revoked.
/// @param revoker The address of the revoker.
/// @param data The data.
/// @param timestamp The timestamp.
event RevokedOffchain(address indexed revoker, bytes32 indexed data, uint64 indexed timestamp);
/// @notice Returns the address of the global schema registry.
/// @return The address of the global schema registry.
function getSchemaRegistry() external view returns (ISchemaRegistry);
/// @notice Attests to a specific schema.
/// @param request The arguments of the attestation request.
/// @return The UID of the new attestation.
///
/// Example:
/// attest({
/// schema: "0facc36681cbe2456019c1b0d1e7bedd6d1d40f6f324bf3dd3a4cef2999200a0",
/// data: {
/// recipient: "0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf",
/// expirationTime: 0,
/// revocable: true,
/// refUID: "0x0000000000000000000000000000000000000000000000000000000000000000",
/// data: "0xF00D",
/// value: 0
/// }
/// })
function attest(AttestationRequest calldata request) external payable returns (bytes32);
/// @notice Attests to a specific schema via the provided ECDSA signature.
/// @param delegatedRequest The arguments of the delegated attestation request.
/// @return The UID of the new attestation.
///
/// Example:
/// attestByDelegation({
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: {
/// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
/// expirationTime: 1673891048,
/// revocable: true,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x1234',
/// value: 0
/// },
/// signature: {
/// v: 28,
/// r: '0x148c...b25b',
/// s: '0x5a72...be22'
/// },
/// attester: '0xc5E8740aD971409492b1A63Db8d83025e0Fc427e',
/// deadline: 1673891048
/// })
function attestByDelegation(
DelegatedAttestationRequest calldata delegatedRequest
) external payable returns (bytes32);
/// @notice Attests to multiple schemas.
/// @param multiRequests The arguments of the multi attestation requests. The requests should be grouped by distinct
/// schema ids to benefit from the best batching optimization.
/// @return The UIDs of the new attestations.
///
/// Example:
/// multiAttest([{
/// schema: '0x33e9094830a5cba5554d1954310e4fbed2ef5f859ec1404619adea4207f391fd',
/// data: [{
/// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
/// expirationTime: 1673891048,
/// revocable: true,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x1234',
/// value: 1000
/// },
/// {
/// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
/// expirationTime: 0,
/// revocable: false,
/// refUID: '0x480df4a039efc31b11bfdf491b383ca138b6bde160988222a2a3509c02cee174',
/// data: '0x00',
/// value: 0
/// }],
/// },
/// {
/// schema: '0x5ac273ce41e3c8bfa383efe7c03e54c5f0bff29c9f11ef6ffa930fc84ca32425',
/// data: [{
/// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
/// expirationTime: 0,
/// revocable: true,
/// refUID: '0x75bf2ed8dca25a8190c50c52db136664de25b2449535839008ccfdab469b214f',
/// data: '0x12345678',
/// value: 0
/// },
/// }])
function multiAttest(MultiAttestationRequest[] calldata multiRequests) external payable returns (bytes32[] memory);
/// @notice Attests to multiple schemas using via provided ECDSA signatures.
/// @param multiDelegatedRequests The arguments of the delegated multi attestation requests. The requests should be
/// grouped by distinct schema ids to benefit from the best batching optimization.
/// @return The UIDs of the new attestations.
///
/// Example:
/// multiAttestByDelegation([{
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: [{
/// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
/// expirationTime: 1673891048,
/// revocable: true,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x1234',
/// value: 0
/// },
/// {
/// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
/// expirationTime: 0,
/// revocable: false,
/// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
/// data: '0x00',
/// value: 0
/// }],
/// signatures: [{
/// v: 28,
/// r: '0x148c...b25b',
/// s: '0x5a72...be22'
/// },
/// {
/// v: 28,
/// r: '0x487s...67bb',
/// s: '0x12ad...2366'
/// }],
/// attester: '0x1D86495b2A7B524D747d2839b3C645Bed32e8CF4',
/// deadline: 1673891048
/// }])
function multiAttestByDelegation(
MultiDelegatedAttestationRequest[] calldata multiDelegatedRequests
) external payable returns (bytes32[] memory);
/// @notice Revokes an existing attestation to a specific schema.
/// @param request The arguments of the revocation request.
///
/// Example:
/// revoke({
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: {
/// uid: '0x101032e487642ee04ee17049f99a70590c735b8614079fc9275f9dd57c00966d',
/// value: 0
/// }
/// })
function revoke(RevocationRequest calldata request) external payable;
/// @notice Revokes an existing attestation to a specific schema via the provided ECDSA signature.
/// @param delegatedRequest The arguments of the delegated revocation request.
///
/// Example:
/// revokeByDelegation({
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: {
/// uid: '0xcbbc12102578c642a0f7b34fe7111e41afa25683b6cd7b5a14caf90fa14d24ba',
/// value: 0
/// },
/// signature: {
/// v: 27,
/// r: '0xb593...7142',
/// s: '0x0f5b...2cce'
/// },
/// revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992',
/// deadline: 1673891048
/// })
function revokeByDelegation(DelegatedRevocationRequest calldata delegatedRequest) external payable;
/// @notice Revokes existing attestations to multiple schemas.
/// @param multiRequests The arguments of the multi revocation requests. The requests should be grouped by distinct
/// schema ids to benefit from the best batching optimization.
///
/// Example:
/// multiRevoke([{
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: [{
/// uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25',
/// value: 1000
/// },
/// {
/// uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade',
/// value: 0
/// }],
/// },
/// {
/// schema: '0x5ac273ce41e3c8bfa383efe7c03e54c5f0bff29c9f11ef6ffa930fc84ca32425',
/// data: [{
/// uid: '0x053d42abce1fd7c8fcddfae21845ad34dae287b2c326220b03ba241bc5a8f019',
/// value: 0
/// },
/// }])
function multiRevoke(MultiRevocationRequest[] calldata multiRequests) external payable;
/// @notice Revokes existing attestations to multiple schemas via provided ECDSA signatures.
/// @param multiDelegatedRequests The arguments of the delegated multi revocation attestation requests. The requests
/// should be grouped by distinct schema ids to benefit from the best batching optimization.
///
/// Example:
/// multiRevokeByDelegation([{
/// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
/// data: [{
/// uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25',
/// value: 1000
/// },
/// {
/// uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade',
/// value: 0
/// }],
/// signatures: [{
/// v: 28,
/// r: '0x148c...b25b',
/// s: '0x5a72...be22'
/// },
/// {
/// v: 28,
/// r: '0x487s...67bb',
/// s: '0x12ad...2366'
/// }],
/// revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992',
/// deadline: 1673891048
/// }])
function multiRevokeByDelegation(
MultiDelegatedRevocationRequest[] calldata multiDelegatedRequests
) external payable;
/// @notice Timestamps the specified bytes32 data.
/// @param data The data to timestamp.
/// @return The timestamp the data was timestamped with.
function timestamp(bytes32 data) external returns (uint64);
/// @notice Timestamps the specified multiple bytes32 data.
/// @param data The data to timestamp.
/// @return The timestamp the data was timestamped with.
function multiTimestamp(bytes32[] calldata data) external returns (uint64);
/// @notice Revokes the specified bytes32 data.
/// @param data The data to timestamp.
/// @return The timestamp the data was revoked with.
function revokeOffchain(bytes32 data) external returns (uint64);
/// @notice Revokes the specified multiple bytes32 data.
/// @param data The data to timestamp.
/// @return The timestamp the data was revoked with.
function multiRevokeOffchain(bytes32[] calldata data) external returns (uint64);
/// @notice Returns an existing attestation by UID.
/// @param uid The UID of the attestation to retrieve.
/// @return The attestation data members.
function getAttestation(bytes32 uid) external view returns (Attestation memory);
/// @notice Checks whether an attestation exists.
/// @param uid The UID of the attestation to retrieve.
/// @return Whether an attestation exists.
function isAttestationValid(bytes32 uid) external view returns (bool);
/// @notice Returns the timestamp that the specified data was timestamped with.
/// @param data The data to query.
/// @return The timestamp the data was timestamped with.
function getTimestamp(bytes32 data) external view returns (uint64);
/// @notice Returns the timestamp that the specified data was timestamped with.
/// @param data The data to query.
/// @return The timestamp the data was timestamped with.
function getRevokeOffchain(address revoker, bytes32 data) external view returns (uint64);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.8;
import "./ECDSA.sol";
import "../ShortStrings.sol";
import "../../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 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].
*
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
* separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
*
* _Available since v3.4._
*
* @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
*/
abstract contract EIP712 is IERC5267 {
using ShortStrings for *;
bytes32 private constant _TYPE_HASH =
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
// 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 _cachedDomainSeparator;
uint256 private immutable _cachedChainId;
address private immutable _cachedThis;
bytes32 private immutable _hashedName;
bytes32 private immutable _hashedVersion;
ShortString private immutable _name;
ShortString private immutable _version;
string private _nameFallback;
string private _versionFallback;
/**
* @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) {
_name = name.toShortStringWithFallback(_nameFallback);
_version = version.toShortStringWithFallback(_versionFallback);
_hashedName = keccak256(bytes(name));
_hashedVersion = keccak256(bytes(version));
_cachedChainId = block.chainid;
_cachedDomainSeparator = _buildDomainSeparator();
_cachedThis = address(this);
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
return _cachedDomainSeparator;
} else {
return _buildDomainSeparator();
}
}
function _buildDomainSeparator() private view returns (bytes32) {
return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
}
/**
* @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);
}
/**
* @dev See {EIP-5267}.
*
* _Available since v4.9._
*/
function eip712Domain()
public
view
virtual
override
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
)
{
return (
hex"0f", // 01111
_name.toStringWithFallback(_nameFallback),
_version.toStringWithFallback(_versionFallback),
block.chainid,
address(this),
bytes32(0),
new uint256[](0)
);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @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 // Deprecated in v4.8
}
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");
}
}
/**
* @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) {
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.
/// @solidity memory-safe-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 {
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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 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 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 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @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 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { ISemver } from "./ISemver.sol";
/// @title Semver
/// @notice A simple contract for managing contract versions.
contract Semver is ISemver {
// Contract's major version number.
uint256 private immutable _major;
// Contract's minor version number.
uint256 private immutable _minor;
// Contract's patch version number.
uint256 private immutable _path;
/// @dev Create a new Semver instance.
/// @param major Major version number.
/// @param minor Minor version number.
/// @param patch Patch version number.
constructor(uint256 major, uint256 minor, uint256 patch) {
_major = major;
_minor = minor;
_path = patch;
}
/// @notice Returns the full semver contract version.
/// @return Semver contract version as a string.
function version() external view returns (string memory) {
return
string(
abi.encodePacked(Strings.toString(_major), ".", Strings.toString(_minor), ".", Strings.toString(_path))
);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { ISemver } from "./ISemver.sol";
import { ISchemaResolver } from "./resolver/ISchemaResolver.sol";
/// @notice A struct representing a record for a submitted schema.
struct SchemaRecord {
bytes32 uid; // The unique identifier of the schema.
ISchemaResolver resolver; // Optional schema resolver.
bool revocable; // Whether the schema allows revocations explicitly.
string schema; // Custom specification of the schema (e.g., an ABI).
}
/// @title ISchemaRegistry
/// @notice The interface of global attestation schemas for the Ethereum Attestation Service protocol.
interface ISchemaRegistry is ISemver {
/// @notice Emitted when a new schema has been registered
/// @param uid The schema UID.
/// @param registerer The address of the account used to register the schema.
/// @param schema The schema data.
event Registered(bytes32 indexed uid, address indexed registerer, SchemaRecord schema);
/// @notice Submits and reserves a new schema
/// @param schema The schema data schema.
/// @param resolver An optional schema resolver.
/// @param revocable Whether the schema allows revocations explicitly.
/// @return The UID of the new schema.
function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32);
/// @notice Returns an existing schema by UID
/// @param uid The UID of the schema to retrieve.
/// @return The schema data members.
function getSchema(bytes32 uid) external view returns (SchemaRecord memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title ISemver
/// @notice A semver interface.
interface ISemver {
/// @notice Returns the full semver contract version.
/// @return Semver contract version as a string.
function version() external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.8;
import "./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 *;
*
* ShortString private immutable _name;
* string private _nameFallback;
*
* constructor(string memory contractName) {
* _name = contractName.toShortStringWithFallback(_nameFallback);
* }
*
* function name() external view returns (string memory) {
* return _name.toStringWithFallback(_nameFallback);
* }
* }
* ```
*/
library ShortStrings {
// Used as an identifier for strings longer than 31 bytes.
bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;
error StringTooLong(string str);
error InvalidShortString();
/**
* @dev Encode a string of at most 31 chars into a `ShortString`.
*
* This will trigger a `StringTooLong` error is the input string is too long.
*/
function toShortString(string memory str) internal pure returns (ShortString) {
bytes memory bstr = bytes(str);
if (bstr.length > 31) {
revert StringTooLong(str);
}
return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
}
/**
* @dev Decode a `ShortString` back to a "normal" string.
*/
function toString(ShortString sstr) internal pure returns (string memory) {
uint256 len = byteLength(sstr);
// using `new string(len)` would work locally but is not memory safe.
string memory str = new string(32);
/// @solidity memory-safe-assembly
assembly {
mstore(str, len)
mstore(add(str, 0x20), sstr)
}
return str;
}
/**
* @dev Return the length of a `ShortString`.
*/
function byteLength(ShortString sstr) internal pure returns (uint256) {
uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
if (result > 31) {
revert InvalidShortString();
}
return result;
}
/**
* @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
*/
function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
if (bytes(value).length < 32) {
return toShortString(value);
} else {
StorageSlot.getStringSlot(store).value = value;
return ShortString.wrap(_FALLBACK_SENTINEL);
}
}
/**
* @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*/
function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
return toString(value);
} else {
return store;
}
}
/**
* @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*
* WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
* actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
*/
function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
return byteLength(value);
} else {
return bytes(store).length;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.0;
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()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { ISemver } from "../ISemver.sol";
import { Attestation } from "../Common.sol";
/// @title ISchemaResolver
/// @notice The interface of an optional schema resolver.
interface ISchemaResolver is ISemver {
/// @notice Checks if the resolver can be sent ETH.
/// @return Whether the resolver supports ETH transfers.
function isPayable() external pure returns (bool);
/// @notice Processes an attestation and verifies whether it's valid.
/// @param attestation The new attestation.
/// @return Whether the attestation is valid.
function attest(Attestation calldata attestation) external payable returns (bool);
/// @notice Processes multiple attestations and verifies whether they are valid.
/// @param attestations The new attestations.
/// @param values Explicit ETH amounts which were sent with each attestation.
/// @return Whether all the attestations are valid.
function multiAttest(
Attestation[] calldata attestations,
uint256[] calldata values
) external payable returns (bool);
/// @notice Processes an attestation revocation and verifies if it can be revoked.
/// @param attestation The existing attestation to be revoked.
/// @return Whether the attestation can be revoked.
function revoke(Attestation calldata attestation) external payable returns (bool);
/// @notice Processes revocation of multiple attestation and verifies they can be revoked.
/// @param attestations The existing attestations to be revoked.
/// @param values Explicit ETH amounts which were sent with each revocation.
/// @return Whether the attestations can be revoked.
function multiRevoke(
Attestation[] calldata attestations,
uint256[] calldata values
) external payable returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @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(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @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.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}{
"remappings": [
"@eas/=node_modules/@ethereum-attestation-service/eas-contracts/",
"@openzeppelin/=node_modules/@openzeppelin/",
"solmate/=node_modules/solmate/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IEAS","name":"eas","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessDenied","type":"error"},{"inputs":[],"name":"DeadlineExpired","type":"error"},{"inputs":[],"name":"InvalidEAS","type":"error"},{"inputs":[],"name":"InvalidLength","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[],"name":"UsedSignature","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct AttestationRequest","name":"request","type":"tuple"}],"name":"attest","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData","name":"data","type":"tuple"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct Signature","name":"signature","type":"tuple"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"deadline","type":"uint64"}],"internalType":"struct DelegatedProxyAttestationRequest","name":"delegatedRequest","type":"tuple"}],"name":"attestByDelegation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAttestTypeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"uid","type":"bytes32"}],"name":"getAttester","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEAS","outputs":[{"internalType":"contract IEAS","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevokeTypeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAttester","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData[]","name":"data","type":"tuple[]"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"uint64","name":"deadline","type":"uint64"}],"internalType":"struct MultiDelegatedProxyAttestationRequest[]","name":"multiDelegatedRequests","type":"tuple[]"}],"name":"multiAttestByDelegation","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData[]","name":"data","type":"tuple[]"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"address","name":"revoker","type":"address"},{"internalType":"uint64","name":"deadline","type":"uint64"}],"internalType":"struct MultiDelegatedProxyRevocationRequest[]","name":"multiDelegatedRequests","type":"tuple[]"}],"name":"multiRevokeByDelegation","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData","name":"data","type":"tuple"}],"internalType":"struct RevocationRequest","name":"request","type":"tuple"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData","name":"data","type":"tuple"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct Signature","name":"signature","type":"tuple"},{"internalType":"address","name":"revoker","type":"address"},{"internalType":"uint64","name":"deadline","type":"uint64"}],"internalType":"struct DelegatedProxyRevocationRequest","name":"delegatedRequest","type":"tuple"}],"name":"revokeByDelegation","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"toggleAttester","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6102006040523480156200001257600080fd5b5060405162002e1738038062002e17833981016040819052620000359162000292565b604080518082018252600d81526c417474657374657250726f787960981b602080830191909152825180840190935260058352640312e332e360dc1b908301526001608052600360a052600060c08190528392829162000097908390620001b7565b61018052620000a8816001620001b7565b6101a052815160208084019190912061014052815190820120610160524661010052620001396101405161016051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60e052505030610120526001600160a01b0382166200016b576040516341bc07ff60e11b815260040160405180910390fd5b6001600160a01b0382166101c052600262000187828262000369565b505050620001a46200019e620001f060201b60201c565b620001f4565b6001600160a01b03166101e052620004aa565b6000602083511015620001d757620001cf8362000246565b9050620001ea565b81620001e4848262000369565b5060ff90505b92915050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080829050601f815111156200027d578260405163305a27a960e01b815260040162000274919062000435565b60405180910390fd5b80516200028a8262000485565b179392505050565b600060208284031215620002a557600080fd5b81516001600160a01b0381168114620002bd57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002ef57607f821691505b6020821081036200031057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200036457600081815260208120601f850160051c810160208610156200033f5750805b601f850160051c820191505b8181101562000360578281556001016200034b565b5050505b505050565b81516001600160401b03811115620003855762000385620002c4565b6200039d81620003968454620002da565b8462000316565b602080601f831160018114620003d55760008415620003bc5750858301515b600019600386901b1c1916600185901b17855562000360565b600085815260208120601f198616915b828110156200040657888601518255948401946001909101908401620003e5565b5085821015620004255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208083528351808285015260005b81811015620004645785810183015185820160400152820162000446565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620003105760001960209190910360031b1b16919050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e0516128b86200055f600039600081816107850152610dc9015260008181610257015281816105a901528181610b3c01528181610cd60152611115015260006108db015260006108b101526000611605015260006115dd01526000611538015260006115620152600061158c015260006108450152600061081c015260006107f301526128b86000f3fe6080604052600436106101145760003560e01c8063715018a6116100a0578063b6ebe53911610064578063b6ebe53914610309578063b83010d314610349578063ed24911d1461037c578063f17325e714610391578063f2fde38b146103b157600080fd5b8063715018a61461027b57806384b0196e146102905780638da5cb5b146102b857806395411525146102d6578063a6d4dbc7146102f657600080fd5b806317d7de7c116100e757806317d7de7c146101de5780633c04271514610200578063469262671461021357806354fd4d501461023357806365c40b9c1461024857600080fd5b80630eabf660146101195780630ee489481461012e57806310d736d51461014e57806312b11a17146101a1575b600080fd5b61012c610127366004611b02565b6103d1565b005b34801561013a57600080fd5b5061012c610149366004611b6f565b610618565b34801561015a57600080fd5b50610184610169366004611ba2565b6000908152600360205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101ad57600080fd5b507fea02ffba7dcb45f6fc649714d23f315eef12e3b27f9a7735d8d8bf41eb2b1af15b604051908152602001610198565b3480156101ea57600080fd5b506101f361064b565b6040516101989190611c0b565b6101d061020e366004611c25565b6106dd565b34801561021f57600080fd5b5061012c61022e366004611c5f565b610752565b34801561023f57600080fd5b506101f36107ec565b34801561025457600080fd5b507f0000000000000000000000000000000000000000000000000000000000000000610184565b34801561028757600080fd5b5061012c61088f565b34801561029c57600080fd5b506102a56108a3565b6040516101989796959493929190611c77565b3480156102c457600080fd5b506005546001600160a01b0316610184565b6102e96102e4366004611b02565b61092b565b6040516101989190611d0d565b61012c610304366004611d45565b610cbd565b34801561031557600080fd5b50610339610324366004611d58565b60066020526000908152604090205460ff1681565b6040519015158152602001610198565b34801561035557600080fd5b507f78a69a78c1a55cdff5cbf949580b410778cd9e4d1ecbe6f06a7fa8dc2441b57d6101d0565b34801561038857600080fd5b506101d0610d98565b34801561039d57600080fd5b506101d06103ac366004611d73565b610da7565b3480156103bd57600080fd5b5061012c6103cc366004611d58565b610e41565b806000816001600160401b038111156103ec576103ec611dad565b60405190808252806020026020018201604052801561043257816020015b60408051808201909152600081526060602082015281526020019060019003908161040a5790505b50905060005b8281101561059157600085858381811061045457610454611dc3565b90506020028101906104669190611dd9565b61046f90611fda565b602081015180519192509080158061048c57508260400151518114155b156104aa5760405163251f56a160e21b815260040160405180910390fd5b60005b818110156105465760008382815181106104c9576104c9611dc3565b6020026020010151905061053d6040518060a00160405280876000015181526020018381526020018760400151858151811061050757610507611dc3565b6020026020010151815260200187606001516001600160a01b0316815260200187608001516001600160401b0316815250610ebf565b506001016104ad565b506040518060400160405280846000015181526020018381525085858151811061057257610572611dc3565b602002602001018190525050505061058a8160010190565b9050610438565b50604051634cb7e9e560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634cb7e9e59034906105e09085906004016120d4565b6000604051808303818588803b1580156105f957600080fd5b505af115801561060d573d6000803e3d6000fd5b505050505050505050565b61062061106b565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60606002805461065a90612185565b80601f016020809104026020016040519081016040528092919081815260200182805461068690612185565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106f76106f260c0840160a08501611d58565b6110c5565b61070460208301836121b9565b610712906020810190611d58565b6001600160a01b0316336001600160a01b03161461074357604051634ca8886760e01b815260040160405180910390fd5b61074c826110fe565b92915050565b61075b336110c5565b60408051634692626760e01b815282356004820152602083013560248201529082013560448201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634692626790606401600060405180830381600087803b1580156107d157600080fd5b505af11580156107e5573d6000803e3d6000fd5b5050505050565b60606108177f0000000000000000000000000000000000000000000000000000000000000000611217565b6108407f0000000000000000000000000000000000000000000000000000000000000000611217565b6108697f0000000000000000000000000000000000000000000000000000000000000000611217565b60405160200161087b939291906121cf565b604051602081830303815290604052905090565b61089761106b565b6108a160006112a9565b565b6000606080828080836108d67f0000000000000000000000000000000000000000000000000000000000000000836112fb565b6109017f000000000000000000000000000000000000000000000000000000000000000060016112fb565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060816000816001600160401b0381111561094857610948611dad565b60405190808252806020026020018201604052801561098e57816020015b6040805180820190915260008152606060208201528152602001906001900390816109665790505b50905060005b82811015610b3757368686838181106109af576109af611dc3565b90506020028101906109c19190611dd9565b90503660006109d36020840184612229565b9092509050808015806109f457506109ee6040850185612272565b90508114155b15610a125760405163251f56a160e21b815260040160405180910390fd5b60005b81811015610ae557610add6040518060a0016040528087600001358152602001868685818110610a4757610a47611dc3565b9050602002810190610a5991906121b9565b610a629061239f565b8152602001610a746040890189612272565b85818110610a8457610a84611dc3565b905060600201803603810190610a9a91906123ab565b8152602001610aaf6080890160608a01611d58565b6001600160a01b03168152602001610acd60a0890160808a016123c7565b6001600160401b031690526113a6565b600101610a15565b50604080518082019091528435815260208101610b0284866123e2565b815250868681518110610b1757610b17611dc3565b602002602001018190525050505050610b308160010190565b9050610994565b5060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166344adc90e34846040518363ffffffff1660e01b8152600401610b8791906124b9565b60006040518083038185885af1158015610ba5573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052610bce9190810190612570565b90506000805b84811015610cb15736888883818110610bef57610bef611dc3565b9050602002810190610c019190611dd9565b9050366000610c136020840184612229565b90925090508060005b81811015610c9b57610c346080860160608701611d58565b600360008a8a81518110610c4a57610c4a611dc3565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550866001019650610c948160010190565b9050610c1c565b5050505050610caa8160010190565b9050610bd4565b50909695505050505050565b610cd4610ccf36839003830183612600565b610ebf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663469262673460405180604001604052808560000135815260200185602001803603810190610d2d919061266c565b90526040516001600160e01b031960e085901b16815281516004820152602091820151805160248301529091015160448201526064016000604051808303818588803b158015610d7c57600080fd5b505af1158015610d90573d6000803e3d6000fd5b505050505050565b6000610da261152b565b905090565b6000610db2336110c5565b60405163f17325e760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f17325e790610dfe9085906004016126b1565b6020604051808303816000875af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c919061279c565b610e4961106b565b6001600160a01b038116610eb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610ebc816112a9565b50565b60808101516001600160401b031615801590610ef05750426001600160401b031681608001516001600160401b0316105b15610f0e57604051631ab7da6b60e01b815260040160405180910390fd5b6020808201518051600090815260039092526040909120546001600160a01b031680610f4d5760405163c5723b5160e01b815260040160405180910390fd5b6001600160a01b0381163314610f7657604051634ca8886760e01b815260040160405180910390fd5b6040830151610f8481611656565b606080850151855185516020808801516080808b0151604080517f78a69a78c1a55cdff5cbf949580b410778cd9e4d1ecbe6f06a7fa8dc2441b57d958101959095526001600160a01b0390971696840196909652958201939093529384015260a08301526001600160401b031660c082015260009061101c9060e0015b60405160208183030381529060405280519060200120611715565b905084606001516001600160a01b031661104482846000015185602001518660400151611742565b6001600160a01b0316146107e557604051638baa579f60e01b815260040160405180910390fd5b6005546001600160a01b031633146108a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eaa565b6001600160a01b03811660009081526006602052604090205460ff16610ebc57604051634ca8886760e01b815260040160405180910390fd5b600061111161110c836127b5565b6113a6565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f17325e73460405180604001604052808760000135815260200187806020019061116891906121b9565b6111719061239f565b8152506040518363ffffffff1660e01b8152600401611190919061282d565b60206040518083038185885af11580156111ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111d3919061279c565b90506111e560c0840160a08501611d58565b600082815260036020526040902080546001600160a01b0319166001600160a01b039290921691909117905592915050565b606060006112248361176a565b60010190506000816001600160401b0381111561124357611243611dad565b6040519080825280601f01601f19166020018201604052801561126d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461127757509392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff83146113155761130e83611842565b905061074c565b81805461132190612185565b80601f016020809104026020016040519081016040528092919081815260200182805461134d90612185565b801561139a5780601f1061136f5761010080835404028352916020019161139a565b820191906000526020600020905b81548152906001019060200180831161137d57829003601f168201915b5050505050905061074c565b60808101516001600160401b0316158015906113d75750426001600160401b031681608001516001600160401b0316105b156113f557604051631ab7da6b60e01b815260040160405180910390fd5b6020810151604082015161140881611656565b60006114d67fea02ffba7dcb45f6fc649714d23f315eef12e3b27f9a7735d8d8bf41eb2b1af160001b8560600151866000015186600001518760200151886040015189606001518a60800151805190602001208b60a001518d608001516040516020016110019a99989796959493929190998a526001600160a01b0398891660208b015260408a01979097529490961660608801526001600160401b03928316608088015290151560a087015260c086015260e0850193909352610100840152166101208201526101400190565b905083606001516001600160a01b03166114fe82846000015185602001518660400151611742565b6001600160a01b03161461152557604051638baa579f60e01b815260040160405180910390fd5b50505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561158457507f000000000000000000000000000000000000000000000000000000000000000046145b156115ae57507f000000000000000000000000000000000000000000000000000000000000000090565b610da2604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b8051602080830151604080850151905160f89490941b6001600160f81b031916928401929092526021830152604182015260009060610160405160208183030381529060405290506004816040516116ae919061285a565b9081526040519081900360200190205460ff16156116df5760405163333a6a0960e21b815260040160405180910390fd5b60016004826040516116f1919061285a565b908152604051908190036020019020805491151560ff199092169190911790555050565b600061074c61172261152b565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600061175387878787611881565b9150915061176081611945565b5095945050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106117a95772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106117d5576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117f357662386f26fc10000830492506010015b6305f5e100831061180b576305f5e100830492506008015b612710831061181f57612710830492506004015b60648310611831576064830492506002015b600a831061074c5760010192915050565b6060600061184f83611a8f565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156118b8575060009050600361193c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561190c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119355760006001925092505061193c565b9150600090505b94509492505050565b60008160048111156119595761195961286c565b036119615750565b60018160048111156119755761197561286c565b036119c25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610eaa565b60028160048111156119d6576119d661286c565b03611a235760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610eaa565b6003816004811115611a3757611a3761286c565b03610ebc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610eaa565b600060ff8216601f81111561074c57604051632cd44ac360e21b815260040160405180910390fd5b60008083601f840112611ac957600080fd5b5081356001600160401b03811115611ae057600080fd5b6020830191508360208260051b8501011115611afb57600080fd5b9250929050565b60008060208385031215611b1557600080fd5b82356001600160401b03811115611b2b57600080fd5b611b3785828601611ab7565b90969095509350505050565b80356001600160a01b0381168114611b5a57600080fd5b919050565b80358015158114611b5a57600080fd5b60008060408385031215611b8257600080fd5b611b8b83611b43565b9150611b9960208401611b5f565b90509250929050565b600060208284031215611bb457600080fd5b5035919050565b60005b83811015611bd6578181015183820152602001611bbe565b50506000910152565b60008151808452611bf7816020860160208601611bbb565b601f01601f19169290920160200192915050565b602081526000611c1e6020830184611bdf565b9392505050565b600060208284031215611c3757600080fd5b81356001600160401b03811115611c4d57600080fd5b820160e08185031215611c1e57600080fd5b600060608284031215611c7157600080fd5b50919050565b60ff60f81b881681526000602060e081840152611c9760e084018a611bdf565b8381036040850152611ca9818a611bdf565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015611cfb57835183529284019291840191600101611cdf565b50909c9b505050505050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610cb157835183529284019291840191600101611d29565b60006101008284031215611c7157600080fd5b600060208284031215611d6a57600080fd5b611c1e82611b43565b600060208284031215611d8557600080fd5b81356001600160401b03811115611d9b57600080fd5b820160408185031215611c1e57600080fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235609e19833603018112611def57600080fd5b9190910192915050565b60405160a081016001600160401b0381118282101715611e1b57611e1b611dad565b60405290565b60405160c081016001600160401b0381118282101715611e1b57611e1b611dad565b604051601f8201601f191681016001600160401b0381118282101715611e6b57611e6b611dad565b604052919050565b60006001600160401b03821115611e8c57611e8c611dad565b5060051b60200190565b600060408284031215611ea857600080fd5b604051604081018181106001600160401b0382111715611eca57611eca611dad565b604052823581526020928301359281019290925250919050565b600060608284031215611ef657600080fd5b604051606081018181106001600160401b0382111715611f1857611f18611dad565b604052905080823560ff81168114611f2f57600080fd5b8082525060208301356020820152604083013560408201525092915050565b600082601f830112611f5f57600080fd5b81356020611f74611f6f83611e73565b611e43565b82815260609283028501820192828201919087851115611f9357600080fd5b8387015b85811015611fb657611fa98982611ee4565b8452928401928101611f97565b5090979650505050505050565b80356001600160401b0381168114611b5a57600080fd5b600060a08236031215611fec57600080fd5b611ff4611df9565b823581526020808401356001600160401b038082111561201357600080fd5b9085019036601f83011261202657600080fd5b8135612034611f6f82611e73565b81815260069190911b8301840190848101903683111561205357600080fd5b938501935b8285101561207c5761206a3686611e96565b82528582019150604085019450612058565b8086880152505050604086013592508083111561209857600080fd5b50506120a636828601611f4e565b6040830152506120b860608401611b43565b60608201526120c960808401611fc3565b608082015292915050565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b8481101561217657898403603f19018652825180518552880151888501889052805188860181905290890190839060608701905b808310156121615761214d82855180518252602090810151910152565b928b019260019290920191908a0190612130565b50978a019795505050918701916001016120fc565b50919998505050505050505050565b600181811c9082168061219957607f821691505b602082108103611c7157634e487b7160e01b600052602260045260246000fd5b6000823560be19833603018112611def57600080fd5b600084516121e1818460208901611bbb565b8083019050601760f91b8082528551612201816001850160208a01611bbb565b6001920191820152835161221c816002840160208801611bbb565b0160020195945050505050565b6000808335601e1984360301811261224057600080fd5b8301803591506001600160401b0382111561225a57600080fd5b6020019150600581901b3603821315611afb57600080fd5b6000808335601e1984360301811261228957600080fd5b8301803591506001600160401b038211156122a357600080fd5b6020019150606081023603821315611afb57600080fd5b600060c082840312156122cc57600080fd5b6122d4611e21565b90506122df82611b43565b815260206122ee818401611fc3565b818301526122fe60408401611b5f565b60408301526060830135606083015260808301356001600160401b038082111561232757600080fd5b818501915085601f83011261233b57600080fd5b81358181111561234d5761234d611dad565b61235f601f8201601f19168501611e43565b9150808252868482850101111561237557600080fd5b808484018584013760008482840101525080608085015250505060a082013560a082015292915050565b600061074c36836122ba565b6000606082840312156123bd57600080fd5b611c1e8383611ee4565b6000602082840312156123d957600080fd5b611c1e82611fc3565b60006123f0611f6f84611e73565b80848252602080830192508560051b85013681111561240e57600080fd5b855b818110156124495780356001600160401b0381111561242f5760008081fd5b61243b36828a016122ba565b865250938201938201612410565b50919695505050505050565b60018060a01b0381511682526001600160401b036020820151166020830152604081015115156040830152606081015160608301526000608082015160c060808501526124a560c0850182611bdf565b60a093840151949093019390935250919050565b602080825282518282018190526000919060409081850190600581811b8701840188860187805b8581101561256057603f198b85030187528251805185528901518985018990528051898601819052908a0190606081881b870181019190870190855b8181101561254a57605f19898503018352612538848651612455565b948e01949350918d019160010161251c565b505050978a0197945050918801916001016124e0565b50919a9950505050505050505050565b6000602080838503121561258357600080fd5b82516001600160401b0381111561259957600080fd5b8301601f810185136125aa57600080fd5b80516125b8611f6f82611e73565b81815260059190911b820183019083810190878311156125d757600080fd5b928401925b828410156125f5578351825292840192908401906125dc565b979650505050505050565b6000610100828403121561261357600080fd5b61261b611df9565b8235815261262c8460208501611e96565b602082015261263e8460608501611ee4565b604082015261264f60c08401611b43565b606082015261266060e08401611fc3565b60808201529392505050565b60006040828403121561267e57600080fd5b611c1e8383611e96565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60208152813560208201526000602083013560be198436030181126126d557600080fd5b60408381015283016001600160a01b036126ee82611b43565b16606084015261270060208201611fc3565b6001600160401b03808216608086015261271c60408401611b5f565b151560a0860152606083013560c086015260808301359150601e1983360301821261274657600080fd5b602091830191820191358181111561275d57600080fd5b80360383131561276c57600080fd5b60c060e087015261278261012087018285612688565b9250505060a0820135610100850152809250505092915050565b6000602082840312156127ae57600080fd5b5051919050565b600060e082360312156127c757600080fd5b6127cf611df9565b8235815260208301356001600160401b038111156127ec57600080fd5b6127f8368286016122ba565b60208301525061280b3660408501611ee4565b604082015261281c60a08401611b43565b60608201526120c960c08401611fc3565b6020815281516020820152600060208301516040808401526128526060840182612455565b949350505050565b60008251611def818460208701611bbb565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220a6e95ae014786712b519fad306852b5ce2f81cb5d5d248af80bd0af46a6df92b64736f6c63430008130033000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b0
Deployed Bytecode
0x6080604052600436106101145760003560e01c8063715018a6116100a0578063b6ebe53911610064578063b6ebe53914610309578063b83010d314610349578063ed24911d1461037c578063f17325e714610391578063f2fde38b146103b157600080fd5b8063715018a61461027b57806384b0196e146102905780638da5cb5b146102b857806395411525146102d6578063a6d4dbc7146102f657600080fd5b806317d7de7c116100e757806317d7de7c146101de5780633c04271514610200578063469262671461021357806354fd4d501461023357806365c40b9c1461024857600080fd5b80630eabf660146101195780630ee489481461012e57806310d736d51461014e57806312b11a17146101a1575b600080fd5b61012c610127366004611b02565b6103d1565b005b34801561013a57600080fd5b5061012c610149366004611b6f565b610618565b34801561015a57600080fd5b50610184610169366004611ba2565b6000908152600360205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101ad57600080fd5b507fea02ffba7dcb45f6fc649714d23f315eef12e3b27f9a7735d8d8bf41eb2b1af15b604051908152602001610198565b3480156101ea57600080fd5b506101f361064b565b6040516101989190611c0b565b6101d061020e366004611c25565b6106dd565b34801561021f57600080fd5b5061012c61022e366004611c5f565b610752565b34801561023f57600080fd5b506101f36107ec565b34801561025457600080fd5b507f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b0610184565b34801561028757600080fd5b5061012c61088f565b34801561029c57600080fd5b506102a56108a3565b6040516101989796959493929190611c77565b3480156102c457600080fd5b506005546001600160a01b0316610184565b6102e96102e4366004611b02565b61092b565b6040516101989190611d0d565b61012c610304366004611d45565b610cbd565b34801561031557600080fd5b50610339610324366004611d58565b60066020526000908152604090205460ff1681565b6040519015158152602001610198565b34801561035557600080fd5b507f78a69a78c1a55cdff5cbf949580b410778cd9e4d1ecbe6f06a7fa8dc2441b57d6101d0565b34801561038857600080fd5b506101d0610d98565b34801561039d57600080fd5b506101d06103ac366004611d73565b610da7565b3480156103bd57600080fd5b5061012c6103cc366004611d58565b610e41565b806000816001600160401b038111156103ec576103ec611dad565b60405190808252806020026020018201604052801561043257816020015b60408051808201909152600081526060602082015281526020019060019003908161040a5790505b50905060005b8281101561059157600085858381811061045457610454611dc3565b90506020028101906104669190611dd9565b61046f90611fda565b602081015180519192509080158061048c57508260400151518114155b156104aa5760405163251f56a160e21b815260040160405180910390fd5b60005b818110156105465760008382815181106104c9576104c9611dc3565b6020026020010151905061053d6040518060a00160405280876000015181526020018381526020018760400151858151811061050757610507611dc3565b6020026020010151815260200187606001516001600160a01b0316815260200187608001516001600160401b0316815250610ebf565b506001016104ad565b506040518060400160405280846000015181526020018381525085858151811061057257610572611dc3565b602002602001018190525050505061058a8160010190565b9050610438565b50604051634cb7e9e560e01b81526001600160a01b037f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b01690634cb7e9e59034906105e09085906004016120d4565b6000604051808303818588803b1580156105f957600080fd5b505af115801561060d573d6000803e3d6000fd5b505050505050505050565b61062061106b565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60606002805461065a90612185565b80601f016020809104026020016040519081016040528092919081815260200182805461068690612185565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106f76106f260c0840160a08501611d58565b6110c5565b61070460208301836121b9565b610712906020810190611d58565b6001600160a01b0316336001600160a01b03161461074357604051634ca8886760e01b815260040160405180910390fd5b61074c826110fe565b92915050565b61075b336110c5565b60408051634692626760e01b815282356004820152602083013560248201529082013560448201527f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b06001600160a01b031690634692626790606401600060405180830381600087803b1580156107d157600080fd5b505af11580156107e5573d6000803e3d6000fd5b5050505050565b60606108177f0000000000000000000000000000000000000000000000000000000000000001611217565b6108407f0000000000000000000000000000000000000000000000000000000000000003611217565b6108697f0000000000000000000000000000000000000000000000000000000000000000611217565b60405160200161087b939291906121cf565b604051602081830303815290604052905090565b61089761106b565b6108a160006112a9565b565b6000606080828080836108d67f417474657374657250726f78790000000000000000000000000000000000000d836112fb565b6109017f312e332e3000000000000000000000000000000000000000000000000000000560016112fb565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060816000816001600160401b0381111561094857610948611dad565b60405190808252806020026020018201604052801561098e57816020015b6040805180820190915260008152606060208201528152602001906001900390816109665790505b50905060005b82811015610b3757368686838181106109af576109af611dc3565b90506020028101906109c19190611dd9565b90503660006109d36020840184612229565b9092509050808015806109f457506109ee6040850185612272565b90508114155b15610a125760405163251f56a160e21b815260040160405180910390fd5b60005b81811015610ae557610add6040518060a0016040528087600001358152602001868685818110610a4757610a47611dc3565b9050602002810190610a5991906121b9565b610a629061239f565b8152602001610a746040890189612272565b85818110610a8457610a84611dc3565b905060600201803603810190610a9a91906123ab565b8152602001610aaf6080890160608a01611d58565b6001600160a01b03168152602001610acd60a0890160808a016123c7565b6001600160401b031690526113a6565b600101610a15565b50604080518082019091528435815260208101610b0284866123e2565b815250868681518110610b1757610b17611dc3565b602002602001018190525050505050610b308160010190565b9050610994565b5060007f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b06001600160a01b03166344adc90e34846040518363ffffffff1660e01b8152600401610b8791906124b9565b60006040518083038185885af1158015610ba5573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052610bce9190810190612570565b90506000805b84811015610cb15736888883818110610bef57610bef611dc3565b9050602002810190610c019190611dd9565b9050366000610c136020840184612229565b90925090508060005b81811015610c9b57610c346080860160608701611d58565b600360008a8a81518110610c4a57610c4a611dc3565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550866001019650610c948160010190565b9050610c1c565b5050505050610caa8160010190565b9050610bd4565b50909695505050505050565b610cd4610ccf36839003830183612600565b610ebf565b7f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b06001600160a01b031663469262673460405180604001604052808560000135815260200185602001803603810190610d2d919061266c565b90526040516001600160e01b031960e085901b16815281516004820152602091820151805160248301529091015160448201526064016000604051808303818588803b158015610d7c57600080fd5b505af1158015610d90573d6000803e3d6000fd5b505050505050565b6000610da261152b565b905090565b6000610db2336110c5565b60405163f17325e760e01b81526001600160a01b037f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b0169063f17325e790610dfe9085906004016126b1565b6020604051808303816000875af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c919061279c565b610e4961106b565b6001600160a01b038116610eb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610ebc816112a9565b50565b60808101516001600160401b031615801590610ef05750426001600160401b031681608001516001600160401b0316105b15610f0e57604051631ab7da6b60e01b815260040160405180910390fd5b6020808201518051600090815260039092526040909120546001600160a01b031680610f4d5760405163c5723b5160e01b815260040160405180910390fd5b6001600160a01b0381163314610f7657604051634ca8886760e01b815260040160405180910390fd5b6040830151610f8481611656565b606080850151855185516020808801516080808b0151604080517f78a69a78c1a55cdff5cbf949580b410778cd9e4d1ecbe6f06a7fa8dc2441b57d958101959095526001600160a01b0390971696840196909652958201939093529384015260a08301526001600160401b031660c082015260009061101c9060e0015b60405160208183030381529060405280519060200120611715565b905084606001516001600160a01b031661104482846000015185602001518660400151611742565b6001600160a01b0316146107e557604051638baa579f60e01b815260040160405180910390fd5b6005546001600160a01b031633146108a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eaa565b6001600160a01b03811660009081526006602052604090205460ff16610ebc57604051634ca8886760e01b815260040160405180910390fd5b600061111161110c836127b5565b6113a6565b60007f000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b06001600160a01b031663f17325e73460405180604001604052808760000135815260200187806020019061116891906121b9565b6111719061239f565b8152506040518363ffffffff1660e01b8152600401611190919061282d565b60206040518083038185885af11580156111ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111d3919061279c565b90506111e560c0840160a08501611d58565b600082815260036020526040902080546001600160a01b0319166001600160a01b039290921691909117905592915050565b606060006112248361176a565b60010190506000816001600160401b0381111561124357611243611dad565b6040519080825280601f01601f19166020018201604052801561126d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461127757509392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff83146113155761130e83611842565b905061074c565b81805461132190612185565b80601f016020809104026020016040519081016040528092919081815260200182805461134d90612185565b801561139a5780601f1061136f5761010080835404028352916020019161139a565b820191906000526020600020905b81548152906001019060200180831161137d57829003601f168201915b5050505050905061074c565b60808101516001600160401b0316158015906113d75750426001600160401b031681608001516001600160401b0316105b156113f557604051631ab7da6b60e01b815260040160405180910390fd5b6020810151604082015161140881611656565b60006114d67fea02ffba7dcb45f6fc649714d23f315eef12e3b27f9a7735d8d8bf41eb2b1af160001b8560600151866000015186600001518760200151886040015189606001518a60800151805190602001208b60a001518d608001516040516020016110019a99989796959493929190998a526001600160a01b0398891660208b015260408a01979097529490961660608801526001600160401b03928316608088015290151560a087015260c086015260e0850193909352610100840152166101208201526101400190565b905083606001516001600160a01b03166114fe82846000015185602001518660400151611742565b6001600160a01b03161461152557604051638baa579f60e01b815260040160405180910390fd5b50505050565b6000306001600160a01b037f00000000000000000000000039fb5e85c7713657c2d9e869e974ff1e0b06f20c1614801561158457507f000000000000000000000000000000000000000000000000000000000008275046145b156115ae57507f36f71f3ce602a8350f070a560ff98c48bd8b2ce60adb39a0da67990136fef03590565b610da2604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f97bb23b7039fbf807a19c2f6dd506213960f67136e67b18f347fb9a2b2931468918101919091527f6a08c3e203132c561752255a4d52ffae85bb9c5d33cb3291520dea1b8435638960608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b8051602080830151604080850151905160f89490941b6001600160f81b031916928401929092526021830152604182015260009060610160405160208183030381529060405290506004816040516116ae919061285a565b9081526040519081900360200190205460ff16156116df5760405163333a6a0960e21b815260040160405180910390fd5b60016004826040516116f1919061285a565b908152604051908190036020019020805491151560ff199092169190911790555050565b600061074c61172261152b565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600061175387878787611881565b9150915061176081611945565b5095945050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106117a95772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106117d5576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117f357662386f26fc10000830492506010015b6305f5e100831061180b576305f5e100830492506008015b612710831061181f57612710830492506004015b60648310611831576064830492506002015b600a831061074c5760010192915050565b6060600061184f83611a8f565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156118b8575060009050600361193c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561190c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119355760006001925092505061193c565b9150600090505b94509492505050565b60008160048111156119595761195961286c565b036119615750565b60018160048111156119755761197561286c565b036119c25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610eaa565b60028160048111156119d6576119d661286c565b03611a235760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610eaa565b6003816004811115611a3757611a3761286c565b03610ebc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610eaa565b600060ff8216601f81111561074c57604051632cd44ac360e21b815260040160405180910390fd5b60008083601f840112611ac957600080fd5b5081356001600160401b03811115611ae057600080fd5b6020830191508360208260051b8501011115611afb57600080fd5b9250929050565b60008060208385031215611b1557600080fd5b82356001600160401b03811115611b2b57600080fd5b611b3785828601611ab7565b90969095509350505050565b80356001600160a01b0381168114611b5a57600080fd5b919050565b80358015158114611b5a57600080fd5b60008060408385031215611b8257600080fd5b611b8b83611b43565b9150611b9960208401611b5f565b90509250929050565b600060208284031215611bb457600080fd5b5035919050565b60005b83811015611bd6578181015183820152602001611bbe565b50506000910152565b60008151808452611bf7816020860160208601611bbb565b601f01601f19169290920160200192915050565b602081526000611c1e6020830184611bdf565b9392505050565b600060208284031215611c3757600080fd5b81356001600160401b03811115611c4d57600080fd5b820160e08185031215611c1e57600080fd5b600060608284031215611c7157600080fd5b50919050565b60ff60f81b881681526000602060e081840152611c9760e084018a611bdf565b8381036040850152611ca9818a611bdf565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015611cfb57835183529284019291840191600101611cdf565b50909c9b505050505050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610cb157835183529284019291840191600101611d29565b60006101008284031215611c7157600080fd5b600060208284031215611d6a57600080fd5b611c1e82611b43565b600060208284031215611d8557600080fd5b81356001600160401b03811115611d9b57600080fd5b820160408185031215611c1e57600080fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235609e19833603018112611def57600080fd5b9190910192915050565b60405160a081016001600160401b0381118282101715611e1b57611e1b611dad565b60405290565b60405160c081016001600160401b0381118282101715611e1b57611e1b611dad565b604051601f8201601f191681016001600160401b0381118282101715611e6b57611e6b611dad565b604052919050565b60006001600160401b03821115611e8c57611e8c611dad565b5060051b60200190565b600060408284031215611ea857600080fd5b604051604081018181106001600160401b0382111715611eca57611eca611dad565b604052823581526020928301359281019290925250919050565b600060608284031215611ef657600080fd5b604051606081018181106001600160401b0382111715611f1857611f18611dad565b604052905080823560ff81168114611f2f57600080fd5b8082525060208301356020820152604083013560408201525092915050565b600082601f830112611f5f57600080fd5b81356020611f74611f6f83611e73565b611e43565b82815260609283028501820192828201919087851115611f9357600080fd5b8387015b85811015611fb657611fa98982611ee4565b8452928401928101611f97565b5090979650505050505050565b80356001600160401b0381168114611b5a57600080fd5b600060a08236031215611fec57600080fd5b611ff4611df9565b823581526020808401356001600160401b038082111561201357600080fd5b9085019036601f83011261202657600080fd5b8135612034611f6f82611e73565b81815260069190911b8301840190848101903683111561205357600080fd5b938501935b8285101561207c5761206a3686611e96565b82528582019150604085019450612058565b8086880152505050604086013592508083111561209857600080fd5b50506120a636828601611f4e565b6040830152506120b860608401611b43565b60608201526120c960808401611fc3565b608082015292915050565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b8481101561217657898403603f19018652825180518552880151888501889052805188860181905290890190839060608701905b808310156121615761214d82855180518252602090810151910152565b928b019260019290920191908a0190612130565b50978a019795505050918701916001016120fc565b50919998505050505050505050565b600181811c9082168061219957607f821691505b602082108103611c7157634e487b7160e01b600052602260045260246000fd5b6000823560be19833603018112611def57600080fd5b600084516121e1818460208901611bbb565b8083019050601760f91b8082528551612201816001850160208a01611bbb565b6001920191820152835161221c816002840160208801611bbb565b0160020195945050505050565b6000808335601e1984360301811261224057600080fd5b8301803591506001600160401b0382111561225a57600080fd5b6020019150600581901b3603821315611afb57600080fd5b6000808335601e1984360301811261228957600080fd5b8301803591506001600160401b038211156122a357600080fd5b6020019150606081023603821315611afb57600080fd5b600060c082840312156122cc57600080fd5b6122d4611e21565b90506122df82611b43565b815260206122ee818401611fc3565b818301526122fe60408401611b5f565b60408301526060830135606083015260808301356001600160401b038082111561232757600080fd5b818501915085601f83011261233b57600080fd5b81358181111561234d5761234d611dad565b61235f601f8201601f19168501611e43565b9150808252868482850101111561237557600080fd5b808484018584013760008482840101525080608085015250505060a082013560a082015292915050565b600061074c36836122ba565b6000606082840312156123bd57600080fd5b611c1e8383611ee4565b6000602082840312156123d957600080fd5b611c1e82611fc3565b60006123f0611f6f84611e73565b80848252602080830192508560051b85013681111561240e57600080fd5b855b818110156124495780356001600160401b0381111561242f5760008081fd5b61243b36828a016122ba565b865250938201938201612410565b50919695505050505050565b60018060a01b0381511682526001600160401b036020820151166020830152604081015115156040830152606081015160608301526000608082015160c060808501526124a560c0850182611bdf565b60a093840151949093019390935250919050565b602080825282518282018190526000919060409081850190600581811b8701840188860187805b8581101561256057603f198b85030187528251805185528901518985018990528051898601819052908a0190606081881b870181019190870190855b8181101561254a57605f19898503018352612538848651612455565b948e01949350918d019160010161251c565b505050978a0197945050918801916001016124e0565b50919a9950505050505050505050565b6000602080838503121561258357600080fd5b82516001600160401b0381111561259957600080fd5b8301601f810185136125aa57600080fd5b80516125b8611f6f82611e73565b81815260059190911b820183019083810190878311156125d757600080fd5b928401925b828410156125f5578351825292840192908401906125dc565b979650505050505050565b6000610100828403121561261357600080fd5b61261b611df9565b8235815261262c8460208501611e96565b602082015261263e8460608501611ee4565b604082015261264f60c08401611b43565b606082015261266060e08401611fc3565b60808201529392505050565b60006040828403121561267e57600080fd5b611c1e8383611e96565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60208152813560208201526000602083013560be198436030181126126d557600080fd5b60408381015283016001600160a01b036126ee82611b43565b16606084015261270060208201611fc3565b6001600160401b03808216608086015261271c60408401611b5f565b151560a0860152606083013560c086015260808301359150601e1983360301821261274657600080fd5b602091830191820191358181111561275d57600080fd5b80360383131561276c57600080fd5b60c060e087015261278261012087018285612688565b9250505060a0820135610100850152809250505092915050565b6000602082840312156127ae57600080fd5b5051919050565b600060e082360312156127c757600080fd5b6127cf611df9565b8235815260208301356001600160401b038111156127ec57600080fd5b6127f8368286016122ba565b60208301525061280b3660408501611ee4565b604082015261281c60a08401611b43565b60608201526120c960c08401611fc3565b6020815281516020820152600060208301516040808401526128526060840182612455565b949350505050565b60008251611def818460208701611bbb565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220a6e95ae014786712b519fad306852b5ce2f81cb5d5d248af80bd0af46a6df92b64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b0
-----Decoded View---------------
Arg [0] : eas (address): 0xC47300428b6AD2c7D03BB76D05A176058b47E6B0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c47300428b6ad2c7d03bb76d05a176058b47e6b0
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
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.