Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 567 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 20715799 | 74 days ago | IN | 0.01 ETH | 0.00058068 | ||||
Mint | 20696085 | 77 days ago | IN | 0.01 ETH | 0.00031653 | ||||
Mint | 20693599 | 77 days ago | IN | 0.02 ETH | 0.00108443 | ||||
Mint | 20692388 | 77 days ago | IN | 0.01 ETH | 0.00241143 | ||||
Mint | 20692312 | 77 days ago | IN | 0.01 ETH | 0.00410652 | ||||
Mint | 20692305 | 77 days ago | IN | 0.03 ETH | 0.00496045 | ||||
Mint | 20687426 | 78 days ago | IN | 0.02 ETH | 0.00065487 | ||||
Mint | 20551073 | 97 days ago | IN | 0.01 ETH | 0.00016123 | ||||
Mint | 20550834 | 97 days ago | IN | 0.01 ETH | 0.00020836 | ||||
Mint | 20550794 | 97 days ago | IN | 0.11 ETH | 0.00062905 | ||||
Mint | 20550532 | 97 days ago | IN | 0.01 ETH | 0.0002894 | ||||
Mint | 20546089 | 98 days ago | IN | 0.03 ETH | 0.00015388 | ||||
Mint | 20545914 | 98 days ago | IN | 0.05 ETH | 0.00016547 | ||||
Mint | 20536220 | 99 days ago | IN | 0.01 ETH | 0.00113859 | ||||
Mint | 20523254 | 101 days ago | IN | 0.01 ETH | 0.00017187 | ||||
Mint | 20515135 | 102 days ago | IN | 0.01 ETH | 0.00077501 | ||||
Mint | 20514879 | 102 days ago | IN | 0.01 ETH | 0.00057105 | ||||
Mint | 20513035 | 102 days ago | IN | 0.01 ETH | 0.0013046 | ||||
Mint | 20491275 | 105 days ago | IN | 0.01 ETH | 0.00073537 | ||||
Mint | 20487537 | 106 days ago | IN | 0.05 ETH | 0.00136781 | ||||
Mint | 20483504 | 106 days ago | IN | 0.02 ETH | 0.00122525 | ||||
Mint | 20483320 | 106 days ago | IN | 0.02 ETH | 0.00161015 | ||||
Mint | 20482443 | 107 days ago | IN | 0.01 ETH | 0.00028605 | ||||
Mint | 20482364 | 107 days ago | IN | 0.01 ETH | 0.0002478 | ||||
Mint | 20481707 | 107 days ago | IN | 0.03 ETH | 0.00018992 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20715799 | 74 days ago | 0.0015 ETH | ||||
20715799 | 74 days ago | 0.0025 ETH | ||||
20715799 | 74 days ago | 0.003 ETH | ||||
20715799 | 74 days ago | 0.003 ETH | ||||
20696085 | 77 days ago | 0.0015 ETH | ||||
20696085 | 77 days ago | 0.0025 ETH | ||||
20696085 | 77 days ago | 0.003 ETH | ||||
20696085 | 77 days ago | 0.003 ETH | ||||
20693599 | 77 days ago | 0.0025 ETH | ||||
20693599 | 77 days ago | 0.003 ETH | ||||
20693599 | 77 days ago | 0.0025 ETH | ||||
20693599 | 77 days ago | 0.006 ETH | ||||
20693599 | 77 days ago | 0.006 ETH | ||||
20692388 | 77 days ago | 0.0015 ETH | ||||
20692388 | 77 days ago | 0.0025 ETH | ||||
20692388 | 77 days ago | 0.003 ETH | ||||
20692388 | 77 days ago | 0.003 ETH | ||||
20692312 | 77 days ago | 0.0015 ETH | ||||
20692312 | 77 days ago | 0.0025 ETH | ||||
20692312 | 77 days ago | 0.003 ETH | ||||
20692312 | 77 days ago | 0.003 ETH | ||||
20692305 | 77 days ago | 0.0025 ETH | ||||
20692305 | 77 days ago | 0.005 ETH | ||||
20692305 | 77 days ago | 0.0025 ETH | ||||
20692305 | 77 days ago | 0.01 ETH |
Loading...
Loading
Contract Name:
PosterMinterV2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-29 */ // File @openzeppelin/contracts/utils/math/[email protected] // 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); } } } // File @openzeppelin/contracts/utils/math/[email protected] // 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); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @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)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // 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)); } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File contracts/interfaces/internal/IPosterMinterV2.sol pragma solidity ^0.8.17; interface IPosterMinterV2 { error NotSigner(); error NotEnoughEth(); error CostMismatch(); error HashRepeated(); error TransferFailed(); error MissingPaylips(); error CannotMintZeroAmount(); error ZeroAddress(); error ProofInvalid(); error SignatureExpired(); error OwnerAlreadyMinted(); error NoMintDetails(); /** * @notice Payslip is the struct for a payout on mint. * @dev Payslips are paid out in order, if there is not enough balance to pay out the next payslip, the mint fails. * @param amountInWei Amount to pay out in wei * @param recipient Address to pay out to */ struct Payslip { uint256 amountInWei; address recipient; } /** * @notice The information required to mint a poster. * @param tokenId The id of the token to mint. * @param amount The amount of the tokens to mint. * @param ownerMint Whether the owner is minting. */ struct PosterMintDetails { uint256 tokenId; uint256 amount; bool ownerMint; } /** * @notice The information required to mint a poster. * @param mintDetails PosterMintDetails array. * @param buyer The address of the buyer. * @param nonce The nonce of the poster info. * @param expiry The expiry date of the poster info. * @param totalCost The total cost of all of the posters being minted. * @param payslips The payslips for the mint. */ struct PosterMintPass { PosterMintDetails[] mintDetails; address buyer; uint256 nonce; uint256 expiry; uint256 totalCost; Payslip[] payslips; } function mint(PosterMintPass calldata mintPass, bytes calldata signature, address signer) external payable; } // File contracts/interfaces/internal/IPosters.sol pragma solidity ^0.8.17; interface IPosters { error NotPosterMinter(); /** * @dev Emitted when a poster is minted. * @param to The address of the poster owner. * @param id The token id of the poster. * @param amount The amount of posters minted. */ event PosterMinted(address indexed to, uint256 indexed id, uint256 amount); /** * @dev Emitted when the base uri is set. * @param baseUri The base uri of the poster. */ event BaseUriSet(string baseUri); function mint(address _to, uint256 _id, uint256 _amount) external; function setBaseUri(string calldata _baseUri) external; function uri(uint256 _id) external view returns (string memory); } // File contracts/interfaces/internal/IRoleAuthority.sol pragma solidity ^0.8.17; interface IRoleAuthority { function isOperator(address _address) external view returns (bool); function is721Minter(address _address) external view returns (bool); function isMintPassSigner(address _address) external view returns (bool); function isPosterMinter(address _address) external view returns (bool); function isPosterSigner(address _address) external view returns (bool); } // File contracts/deca-posters/PosterMinterV2.sol pragma solidity ^0.8.17; /** * @title PosterMinterV2 contract. * @notice The contract that mints Deca Posters. * @author j6i, 0x-jj */ contract PosterMinterV2 is IPosterMinterV2, ReentrancyGuard { /*////////////////////////////////////////////////////////////// STORAGE //////////////////////////////////////////////////////////////*/ /** * @notice The address of the RoleAuthority used to determine whether an address has some admin role. */ IRoleAuthority public immutable roleAuthority; /** * @notice The address of the Posters contract. */ IPosters public immutable posters; /** * @notice Is the poster hash used. */ mapping(bytes32 => bool) public isMintPassUsed; /** * @notice Poster tokenId to whether the owner has claimed their free mint. */ mapping(uint256 => bool) public ownerMinted; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address _roleAuthority, address _posters) { if (_roleAuthority == address(0) || _posters == address(0)) revert ZeroAddress(); roleAuthority = IRoleAuthority(_roleAuthority); posters = IPosters(_posters); } /*////////////////////////////////////////////////////////////// EXTERNAL //////////////////////////////////////////////////////////////*/ /** * @notice The mint function for posters. * @param mintPass The information required to mint a poster, signed by Deca. * @param signature The signature that corresponds to the mint pass. * @param signer The signer of the mint pass. */ function mint( PosterMintPass calldata mintPass, bytes calldata signature, address signer ) external payable nonReentrant { _verifyMintPass(mintPass, signature, signer); for (uint256 i = 0; i < mintPass.mintDetails.length; i++) { _mintPoster(mintPass.mintDetails[i], mintPass.buyer); } uint256 totalCost = 0; for (uint256 i = 0; i < mintPass.payslips.length; i++) { Payslip memory payslip = mintPass.payslips[i]; if (payslip.amountInWei != 0) { totalCost += payslip.amountInWei; (bool succeeded, ) = payslip.recipient.call{value: payslip.amountInWei}(""); if (!succeeded) revert TransferFailed(); } } if (totalCost != mintPass.totalCost) revert CostMismatch(); uint256 excess = msg.value - mintPass.totalCost; if (excess > 0) { (bool successfullyReturned, ) = msg.sender.call{value: excess}(""); if (!successfullyReturned) revert TransferFailed(); } } /*////////////////////////////////////////////////////////////// INTERNAL //////////////////////////////////////////////////////////////*/ function _mintPoster(PosterMintDetails calldata details, address to) internal { // Verify the mint details _verifyMintDetails(details); // Mint posters.mint(to, details.tokenId, details.amount); } function _verifyMintDetails(PosterMintDetails calldata details) internal { // Ensure the amount is greater than 0 if (details.amount == 0) { revert CannotMintZeroAmount(); } // Record owner mint if needed if (details.ownerMint) { if (ownerMinted[details.tokenId]) { revert OwnerAlreadyMinted(); } ownerMinted[details.tokenId] = true; } } /** * @notice Used to verify the arguments passed to the mint functions. * @param mintPass The mint pass struct. * @param signature The signer of the mint info. * @param signer The signer of the mint info. */ function _verifyMintPass(PosterMintPass calldata mintPass, bytes calldata signature, address signer) internal { // Ensure there are mints if (mintPass.mintDetails.length == 0) { revert NoMintDetails(); } // Ensure enough ETH was received if (mintPass.totalCost > msg.value) { revert NotEnoughEth(); } // Ensure signature is not expired if (mintPass.expiry < block.timestamp) { revert SignatureExpired(); } // Ensure the signer has the correct role if (!roleAuthority.isPosterSigner(signer)) { revert NotSigner(); } // Verify there are payslips if (mintPass.payslips.length == 0) { revert MissingPaylips(); } // Compute hash bytes32 computedHash = _hashMintPass(mintPass); // Ensure signature has not already been used if (isMintPassUsed[computedHash]) revert HashRepeated(); // Set hash as used isMintPassUsed[computedHash] = true; // Ensure the signature is valid if (!_verifySignature(computedHash, signature, signer)) revert ProofInvalid(); } /** * @notice Used to compute the digest, and verify the signature. * @param messageHash The hash of the message. * @param signature The signature of the message. * @param signer The signer of the message. */ function _verifySignature( bytes32 messageHash, bytes calldata signature, address signer ) internal pure returns (bool) { return signer == ECDSA.recover(ECDSA.toEthSignedMessageHash(messageHash), signature); } /** * @notice Used to compute the hash of the mint pass. * @param mintPass The mint pass. */ function _hashMintPass(PosterMintPass calldata mintPass) internal pure returns (bytes32) { return keccak256( abi.encodePacked( _hashMintDetailsArray(mintPass.mintDetails), mintPass.buyer, mintPass.nonce, mintPass.expiry, _hashPayslips(mintPass.payslips) ) ); } /** * @notice Used to compute the hash of an array of poster mint details. * @param detailsArray The mint pass. */ function _hashMintDetailsArray(PosterMintDetails[] calldata detailsArray) internal pure returns (bytes32) { bytes32[] memory hashes = new bytes32[](detailsArray.length); for (uint256 i = 0; i < detailsArray.length; i++) { PosterMintDetails calldata details = detailsArray[i]; hashes[i] = keccak256(abi.encodePacked(details.tokenId, details.amount, details.ownerMint)); } return keccak256(abi.encodePacked(hashes)); } /** * @notice This function is used to compute the hash for an array of Payslip structs. * @param payslips Array of Payslip structs * @return payslipsHash Hash of the Payslip structs */ function _hashPayslips(Payslip[] memory payslips) internal pure returns (bytes32) { bytes32[] memory encodedPayslips = new bytes32[](payslips.length); for (uint256 i = 0; i < payslips.length; i++) { encodedPayslips[i] = keccak256(abi.encodePacked(payslips[i].recipient, payslips[i].amountInWei)); } return keccak256(abi.encodePacked(encodedPayslips)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_roleAuthority","type":"address"},{"internalType":"address","name":"_posters","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotMintZeroAmount","type":"error"},{"inputs":[],"name":"CostMismatch","type":"error"},{"inputs":[],"name":"HashRepeated","type":"error"},{"inputs":[],"name":"MissingPaylips","type":"error"},{"inputs":[],"name":"NoMintDetails","type":"error"},{"inputs":[],"name":"NotEnoughEth","type":"error"},{"inputs":[],"name":"NotSigner","type":"error"},{"inputs":[],"name":"OwnerAlreadyMinted","type":"error"},{"inputs":[],"name":"ProofInvalid","type":"error"},{"inputs":[],"name":"SignatureExpired","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"isMintPassUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"ownerMint","type":"bool"}],"internalType":"struct IPosterMinterV2.PosterMintDetails[]","name":"mintDetails","type":"tuple[]"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"totalCost","type":"uint256"},{"components":[{"internalType":"uint256","name":"amountInWei","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct IPosterMinterV2.Payslip[]","name":"payslips","type":"tuple[]"}],"internalType":"struct IPosterMinterV2.PosterMintPass","name":"mintPass","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"signer","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"posters","outputs":[{"internalType":"contract IPosters","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roleAuthority","outputs":[{"internalType":"contract IRoleAuthority","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162001538380380620015388339810160408190526200003491620000ab565b60016000556001600160a01b03821615806200005757506001600160a01b038116155b15620000765760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b039182166080521660a052620000e3565b80516001600160a01b0381168114620000a657600080fd5b919050565b60008060408385031215620000bf57600080fd5b620000ca836200008e565b9150620000da602084016200008e565b90509250929050565b60805160a051611422620001166000396000818160b6015261079801526000818161010f015261057601526114226000f3fe60806040526004361061005a5760003560e01c8063abf19e4f11610043578063abf19e4f146100fd578063b8cc12bb14610131578063be0e3fa81461016157600080fd5b8063303730151461005f5780639dfebedc146100a4575b600080fd5b34801561006b57600080fd5b5061008f61007a366004610ff6565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156100b057600080fd5b506100d87f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161009b565b34801561010957600080fd5b506100d87f000000000000000000000000000000000000000000000000000000000000000081565b34801561013d57600080fd5b5061008f61014c366004610ff6565b60016020526000908152604090205460ff1681565b61017461016f366004611038565b610176565b005b61017e6103f8565b61018a84848484610470565b60005b61019785806110e8565b90508110156101ed576101db6101ad86806110e8565b838181106101bd576101bd61114f565b9050606002018660200160208101906101d6919061117e565b610739565b806101e5816111cf565b91505061018d565b506000805b6101ff60a0870187611207565b905081101561030c57600061021760a0880188611207565b838181106102275761022761114f565b90506040020180360381019061023d919061129e565b8051909150156102f95780516102539084611319565b92506000816020015173ffffffffffffffffffffffffffffffffffffffff16826000015160405160006040518083038185875af1925050503d80600081146102b7576040519150601f19603f3d011682016040523d82523d6000602084013e6102bc565b606091505b50509050806102f7576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b5080610304816111cf565b9150506101f2565b508460800135811461034a576040517f72ca57a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061035a60808701353461132c565b905080156103e657604051600090339083908381818185875af1925050503d80600081146103a4576040519150601f19603f3d011682016040523d82523d6000602084013e6103a9565b606091505b50509050806103e4576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b50506103f26001600055565b50505050565b600260005403610469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b61047a84806110e8565b90506000036104b5576040517f714b72d700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b34846080013511156104f3576040517ff14a42b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4284606001351015610531576040517f0819bdcd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f7d2cf3fb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f00000000000000000000000000000000000000000000000000000000000000001690637d2cf3fb90602401602060405180830381865afa1580156105bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e1919061134d565b610617576040517fa1b035c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61062460a0850185611207565b905060000361065f576040517f3302dc6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061066a856107f8565b60008181526001602052604090205490915060ff16156106b6576040517f17e733ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815260016020819052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790556106fc81858585610900565b610732576040517f7fcdd1f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b610742826109a7565b6040517f156e29f600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff828116600483015283356024830152602084013560448301527f0000000000000000000000000000000000000000000000000000000000000000169063156e29f690606401600060405180830381600087803b1580156107dc57600080fd5b505af11580156107f0573d6000803e3d6000fd5b505050505050565b600061080c61080783806110e8565b610a82565b61081c604084016020850161117e565b6040840135606085013561088c61083660a0880188611207565b808060200260200160405190810160405280939291908181526020016000905b82821015610882576108736040830286013681900381019061129e565b81526020019060010190610856565b5050505050610ba4565b6040516020016108e395949392919094855260609390931b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602085015260348401919091526054830152607482015260940190565b604051602081830303815290604052805190602001209050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c859052603c812061096f9085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610ceb92505050565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050949350505050565b80602001356000036109e5576040517f03ccd49d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f5606082016040830161136a565b15610a7f57803560009081526002602052604090205460ff1615610a45576040517f0e203e8b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8035600090815260026020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b50565b6000808267ffffffffffffffff811115610a9e57610a9e61126f565b604051908082528060200260200182016040528015610ac7578160200160208202803683370190505b50905060005b83811015610b725736858583818110610ae857610ae861114f565b905060600201905080600001358160200135826040016020810190610b0d919061136a565b604080516020810194909452830191909152151560f81b606082015260610160405160208183030381529060405280519060200120838381518110610b5457610b5461114f565b60209081029190910101525080610b6a816111cf565b915050610acd565b5080604051602001610b849190611387565b604051602081830303815290604052805190602001209150505b92915050565b600080825167ffffffffffffffff811115610bc157610bc161126f565b604051908082528060200260200182016040528015610bea578160200160208202803683370190505b50905060005b8351811015610cbb57838181518110610c0b57610c0b61114f565b602002602001015160200151848281518110610c2957610c2961114f565b602002602001015160000151604051602001610c7692919060609290921b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000168252601482015260340190565b60405160208183030381529060405280519060200120828281518110610c9e57610c9e61114f565b602090810291909101015280610cb3816111cf565b915050610bf0565b5080604051602001610ccd9190611387565b60405160208183030381529060405280519060200120915050919050565b6000806000610cfa8585610d0f565b91509150610d0781610d54565b509392505050565b6000808251604103610d455760208301516040840151606085015160001a610d3987828585610f07565b94509450505050610d4d565b506000905060025b9250929050565b6000816004811115610d6857610d686113bd565b03610d705750565b6001816004811115610d8457610d846113bd565b03610deb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610460565b6002816004811115610dff57610dff6113bd565b03610e66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610460565b6003816004811115610e7a57610e7a6113bd565b03610a7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610460565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610f3e5750600090506003610fed565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610f92573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610fe657600060019250925050610fed565b9150600090505b94509492505050565b60006020828403121561100857600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461103357600080fd5b919050565b6000806000806060858703121561104e57600080fd5b843567ffffffffffffffff8082111561106657600080fd5b9086019060c0828903121561107a57600080fd5b9094506020860135908082111561109057600080fd5b818701915087601f8301126110a457600080fd5b8135818111156110b357600080fd5b8860208285010111156110c557600080fd5b6020830195508094505050506110dd6040860161100f565b905092959194509250565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261111d57600080fd5b83018035915067ffffffffffffffff82111561113857600080fd5b6020019150606081023603821315610d4d57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561119057600080fd5b6111998261100f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611200576112006111a0565b5060010190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261123c57600080fd5b83018035915067ffffffffffffffff82111561125757600080fd5b6020019150600681901b3603821315610d4d57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000604082840312156112b057600080fd5b6040516040810181811067ffffffffffffffff821117156112fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040528235815261130d6020840161100f565b60208201529392505050565b80820180821115610b9e57610b9e6111a0565b81810381811115610b9e57610b9e6111a0565b8015158114610a7f57600080fd5b60006020828403121561135f57600080fd5b81516111998161133f565b60006020828403121561137c57600080fd5b81356111998161133f565b815160009082906020808601845b838110156113b157815185529382019390820190600101611395565b50929695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220aa42c71a3456c5fb899ffdad017e0ecf904fa8264ec98de3303ac8b9d54c82ef64736f6c634300081100330000000000000000000000007bcbbb69272937edd5b7b5bdd4a8ccd159c5dfbd000000000000000000000000a08c8b2cd978282bc3f2bbc62179d7120bd912a3
Deployed Bytecode
0x60806040526004361061005a5760003560e01c8063abf19e4f11610043578063abf19e4f146100fd578063b8cc12bb14610131578063be0e3fa81461016157600080fd5b8063303730151461005f5780639dfebedc146100a4575b600080fd5b34801561006b57600080fd5b5061008f61007a366004610ff6565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156100b057600080fd5b506100d87f000000000000000000000000a08c8b2cd978282bc3f2bbc62179d7120bd912a381565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161009b565b34801561010957600080fd5b506100d87f0000000000000000000000007bcbbb69272937edd5b7b5bdd4a8ccd159c5dfbd81565b34801561013d57600080fd5b5061008f61014c366004610ff6565b60016020526000908152604090205460ff1681565b61017461016f366004611038565b610176565b005b61017e6103f8565b61018a84848484610470565b60005b61019785806110e8565b90508110156101ed576101db6101ad86806110e8565b838181106101bd576101bd61114f565b9050606002018660200160208101906101d6919061117e565b610739565b806101e5816111cf565b91505061018d565b506000805b6101ff60a0870187611207565b905081101561030c57600061021760a0880188611207565b838181106102275761022761114f565b90506040020180360381019061023d919061129e565b8051909150156102f95780516102539084611319565b92506000816020015173ffffffffffffffffffffffffffffffffffffffff16826000015160405160006040518083038185875af1925050503d80600081146102b7576040519150601f19603f3d011682016040523d82523d6000602084013e6102bc565b606091505b50509050806102f7576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b5080610304816111cf565b9150506101f2565b508460800135811461034a576040517f72ca57a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061035a60808701353461132c565b905080156103e657604051600090339083908381818185875af1925050503d80600081146103a4576040519150601f19603f3d011682016040523d82523d6000602084013e6103a9565b606091505b50509050806103e4576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b50506103f26001600055565b50505050565b600260005403610469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b61047a84806110e8565b90506000036104b5576040517f714b72d700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b34846080013511156104f3576040517ff14a42b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4284606001351015610531576040517f0819bdcd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f7d2cf3fb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f0000000000000000000000007bcbbb69272937edd5b7b5bdd4a8ccd159c5dfbd1690637d2cf3fb90602401602060405180830381865afa1580156105bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e1919061134d565b610617576040517fa1b035c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61062460a0850185611207565b905060000361065f576040517f3302dc6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061066a856107f8565b60008181526001602052604090205490915060ff16156106b6576040517f17e733ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815260016020819052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790556106fc81858585610900565b610732576040517f7fcdd1f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b610742826109a7565b6040517f156e29f600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff828116600483015283356024830152602084013560448301527f000000000000000000000000a08c8b2cd978282bc3f2bbc62179d7120bd912a3169063156e29f690606401600060405180830381600087803b1580156107dc57600080fd5b505af11580156107f0573d6000803e3d6000fd5b505050505050565b600061080c61080783806110e8565b610a82565b61081c604084016020850161117e565b6040840135606085013561088c61083660a0880188611207565b808060200260200160405190810160405280939291908181526020016000905b82821015610882576108736040830286013681900381019061129e565b81526020019060010190610856565b5050505050610ba4565b6040516020016108e395949392919094855260609390931b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602085015260348401919091526054830152607482015260940190565b604051602081830303815290604052805190602001209050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c859052603c812061096f9085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610ceb92505050565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050949350505050565b80602001356000036109e5576040517f03ccd49d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f5606082016040830161136a565b15610a7f57803560009081526002602052604090205460ff1615610a45576040517f0e203e8b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8035600090815260026020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b50565b6000808267ffffffffffffffff811115610a9e57610a9e61126f565b604051908082528060200260200182016040528015610ac7578160200160208202803683370190505b50905060005b83811015610b725736858583818110610ae857610ae861114f565b905060600201905080600001358160200135826040016020810190610b0d919061136a565b604080516020810194909452830191909152151560f81b606082015260610160405160208183030381529060405280519060200120838381518110610b5457610b5461114f565b60209081029190910101525080610b6a816111cf565b915050610acd565b5080604051602001610b849190611387565b604051602081830303815290604052805190602001209150505b92915050565b600080825167ffffffffffffffff811115610bc157610bc161126f565b604051908082528060200260200182016040528015610bea578160200160208202803683370190505b50905060005b8351811015610cbb57838181518110610c0b57610c0b61114f565b602002602001015160200151848281518110610c2957610c2961114f565b602002602001015160000151604051602001610c7692919060609290921b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000168252601482015260340190565b60405160208183030381529060405280519060200120828281518110610c9e57610c9e61114f565b602090810291909101015280610cb3816111cf565b915050610bf0565b5080604051602001610ccd9190611387565b60405160208183030381529060405280519060200120915050919050565b6000806000610cfa8585610d0f565b91509150610d0781610d54565b509392505050565b6000808251604103610d455760208301516040840151606085015160001a610d3987828585610f07565b94509450505050610d4d565b506000905060025b9250929050565b6000816004811115610d6857610d686113bd565b03610d705750565b6001816004811115610d8457610d846113bd565b03610deb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610460565b6002816004811115610dff57610dff6113bd565b03610e66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610460565b6003816004811115610e7a57610e7a6113bd565b03610a7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610460565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610f3e5750600090506003610fed565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610f92573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610fe657600060019250925050610fed565b9150600090505b94509492505050565b60006020828403121561100857600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461103357600080fd5b919050565b6000806000806060858703121561104e57600080fd5b843567ffffffffffffffff8082111561106657600080fd5b9086019060c0828903121561107a57600080fd5b9094506020860135908082111561109057600080fd5b818701915087601f8301126110a457600080fd5b8135818111156110b357600080fd5b8860208285010111156110c557600080fd5b6020830195508094505050506110dd6040860161100f565b905092959194509250565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261111d57600080fd5b83018035915067ffffffffffffffff82111561113857600080fd5b6020019150606081023603821315610d4d57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561119057600080fd5b6111998261100f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611200576112006111a0565b5060010190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261123c57600080fd5b83018035915067ffffffffffffffff82111561125757600080fd5b6020019150600681901b3603821315610d4d57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000604082840312156112b057600080fd5b6040516040810181811067ffffffffffffffff821117156112fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040528235815261130d6020840161100f565b60208201529392505050565b80820180821115610b9e57610b9e6111a0565b81810381811115610b9e57610b9e6111a0565b8015158114610a7f57600080fd5b60006020828403121561135f57600080fd5b81516111998161133f565b60006020828403121561137c57600080fd5b81356111998161133f565b815160009082906020808601845b838110156113b157815185529382019390820190600101611395565b50929695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220aa42c71a3456c5fb899ffdad017e0ecf904fa8264ec98de3303ac8b9d54c82ef64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007bcbbb69272937edd5b7b5bdd4a8ccd159c5dfbd000000000000000000000000a08c8b2cd978282bc3f2bbc62179d7120bd912a3
-----Decoded View---------------
Arg [0] : _roleAuthority (address): 0x7BCbbb69272937eDD5b7B5Bdd4a8cCd159C5dfbD
Arg [1] : _posters (address): 0xA08C8B2cd978282Bc3F2bbc62179d7120bd912A3
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007bcbbb69272937edd5b7b5bdd4a8ccd159c5dfbd
Arg [1] : 000000000000000000000000a08c8b2cd978282bc3f2bbc62179d7120bd912a3
Deployed Bytecode Sourcemap
30758:6955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31477:43;;;;;;;;;;-1:-1:-1;31477:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;364:14:1;;357:22;339:41;;327:2;312:18;31477:43:0;;;;;;;;31238:33;;;;;;;;;;;;;;;;;;584:42:1;572:55;;;554:74;;542:2;527:18;31238:33:0;391:243:1;31121:45:0;;;;;;;;;;;;;;;31331:46;;;;;;;;;;-1:-1:-1;31331:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32397:1003;;;;;;:::i;:::-;;:::i;:::-;;;26634:21;:19;:21::i;:::-;32544:44:::1;32560:8;32570:9;;32581:6;32544:15;:44::i;:::-;32602:9;32597:127;32621:20;:8:::0;;:20:::1;:::i;:::-;:27;;32617:1;:31;32597:127;;;32664:52;32676:20;:8:::0;;:20:::1;:::i;:::-;32697:1;32676:23;;;;;;;:::i;:::-;;;;;;32701:8;:14;;;;;;;;;;:::i;:::-;32664:11;:52::i;:::-;32650:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32597:127;;;;32732:17;32767:9:::0;32762:346:::1;32786:17;;::::0;::::1;:8:::0;:17:::1;:::i;:::-;:24;;32782:1;:28;32762:346;;;32826:22;32851:17;;::::0;::::1;:8:::0;:17:::1;:::i;:::-;32869:1;32851:20;;;;;;;:::i;:::-;;;;;;32826:45;;;;;;;;;;:::i;:::-;32886:19:::0;;32826:45;;-1:-1:-1;32886:24:0;32882:219:::1;;32936:19:::0;;32923:32:::1;::::0;;::::1;:::i;:::-;;;32967:14;32987:7;:17;;;:22;;33017:7;:19;;;32987:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32966:75;;;33057:9;33052:39;;33075:16;;;;;;;;;;;;;;33052:39;32912:189;32882:219;-1:-1:-1::0;32812:3:0;::::1;::::0;::::1;:::i;:::-;;;;32762:346;;;;33133:8;:18;;;33120:9;:31;33116:58;;33160:14;;;;;;;;;;;;;;33116:58;33183:14;33200:30;33212:18;::::0;::::1;;33200:9;:30;:::i;:::-;33183:47:::0;-1:-1:-1;33241:10:0;;33237:158:::1;;33294:34;::::0;33263:25:::1;::::0;33294:10:::1;::::0;33317:6;;33263:25;33294:34;33263:25;33294:34;33317:6;33294:10;:34:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33262:66;;;33342:20;33337:50;;33371:16;;;;;;;;;;;;;;33337:50;33253:142;33237:158;32537:863;;26670:20:::0;26104:1;27154:7;:22;26983:199;26670:20;32397:1003;;;;:::o;26702:275::-;26146:1;26828:7;;:19;26820:63;;;;;;;5808:2:1;26820:63:0;;;5790:21:1;5847:2;5827:18;;;5820:30;5886:33;5866:18;;;5859:61;5937:18;;26820:63:0;;;;;;;;;26146:1;26953:7;:18;26702:275::o;34465:1114::-;34617:20;:8;;:20;:::i;:::-;:27;;34648:1;34617:32;34613:77;;34667:15;;;;;;;;;;;;;;34613:77;34762:9;34741:8;:18;;;:30;34737:74;;;34789:14;;;;;;;;;;;;;;34737:74;34881:15;34863:8;:15;;;:33;34859:81;;;34914:18;;;;;;;;;;;;;;34859:81;35000:36;;;;;:28;572:55:1;;;35000:36:0;;;554:74:1;35000:13:0;:28;;;;527:18:1;;35000:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34995:78;;35054:11;;;;;;;;;;;;;;34995:78;35119:17;;;;:8;:17;:::i;:::-;:24;;35147:1;35119:29;35115:75;;35166:16;;;;;;;;;;;;;;35115:75;35219:20;35242:23;35256:8;35242:13;:23::i;:::-;35329:28;;;;:14;:28;;;;;;35219:46;;-1:-1:-1;35329:28:0;;35325:55;;;35366:14;;;;;;;;;;;;;;35325:55;35414:28;;;;35445:4;35414:28;;;;;;;;:35;;;;;;;;;35501:49;35429:12;35532:9;;35543:6;35501:16;:49::i;:::-;35496:77;;35559:14;;;;;;;;;;;;;;35496:77;34575:1004;34465:1114;;;;:::o;33589:221::-;33706:27;33725:7;33706:18;:27::i;:::-;33755:49;;;;;:12;6790:55:1;;;33755:49:0;;;6772:74:1;33772:15:0;;6862:18:1;;;6855:34;33789:14:0;;;;6905:18:1;;;6898:34;33755:7:0;:12;;;;6745:18:1;;33755:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33589:221;;:::o;36166:355::-;36246:7;36325:43;36347:20;:8;;:20;:::i;:::-;36325:21;:43::i;:::-;36381:14;;;;;;;;:::i;:::-;36408;;;;36435:15;;;;36463:32;36477:17;;;;36408:8;36477:17;:::i;:::-;36463:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:13;:32::i;:::-;36296:210;;;;;;;;;;;7184:19:1;;;7241:2;7237:15;;;;7254:66;7233:88;7228:2;7219:12;;7212:110;7347:2;7338:12;;7331:28;;;;7384:2;7375:12;;7368:28;7421:3;7412:13;;7405:29;7459:3;7450:13;;6943:526;36296:210:0;;;;;;;;;;;;;36276:239;;;;;;36262:253;;36166:355;;;:::o;35817:235::-;22673:34;35949:4;22660:48;;;22723:4;22716:18;;;22769:4;22753:21;;35979:67;;36036:9;;35979:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35979:13:0;;-1:-1:-1;;;35979:67:0:i;:::-;35969:77;;:6;:77;;;35962:84;;35817:235;;;;;;:::o;33816:411::-;33944:7;:14;;;33962:1;33944:19;33940:71;;33981:22;;;;;;;;;;;;;;33940:71;34059:17;;;;;;;;:::i;:::-;34055:167;;;34103:15;;34091:28;;;;:11;:28;;;;;;;;34087:82;;;34139:20;;;;;;;;;;;;;;34087:82;34191:15;;34179:28;;;;:11;:28;;;;;:35;;;;34210:4;34179:35;;;34055:167;33816:411;:::o;36657:457::-;36754:7;;36810:12;36796:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36796:34:0;;36770:60;;36844:9;36839:219;36859:23;;;36839:219;;;36898:34;36935:12;;36948:1;36935:15;;;;;;;:::i;:::-;;;;;;36898:52;;36998:7;:15;;;37015:7;:14;;;37031:7;:17;;;;;;;;;;:::i;:::-;36981:68;;;;;;7899:19:1;;;;7934:12;;7927:28;;;;8001:14;7994:22;7989:3;7985:32;7971:12;;;7964:54;8034:12;;36981:68:0;;;;;;;;;;;;36971:79;;;;;;36959:6;36966:1;36959:9;;;;;;;;:::i;:::-;;;;;;;;;;:91;-1:-1:-1;36884:3:0;;;;:::i;:::-;;;;36839:219;;;;37100:6;37083:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;37073:35;;;;;;37066:42;;;36657:457;;;;;:::o;37325:385::-;37398:7;37414:32;37463:8;:15;37449:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37449:30:0;;37414:65;;37491:9;37486:159;37510:8;:15;37506:1;:19;37486:159;;;37589:8;37598:1;37589:11;;;;;;;;:::i;:::-;;;;;;;:21;;;37612:8;37621:1;37612:11;;;;;;;;:::i;:::-;;;;;;;:23;;;37572:64;;;;;;;;8782:2:1;8778:15;;;;8795:66;8774:88;8762:101;;8888:2;8879:12;;8872:28;8925:2;8916:12;;8605:329;37572:64:0;;;;;;;;;;;;;37562:75;;;;;;37541:15;37557:1;37541:18;;;;;;;;:::i;:::-;;;;;;;;;;:96;37527:3;;;;:::i;:::-;;;;37486:159;;;;37687:15;37670:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;37660:44;;;;;;37653:51;;;37325:385;;;:::o;19089:217::-;19167:7;19184:17;19203:18;19225:27;19236:4;19242:9;19225:10;:27::i;:::-;19183:69;;;;19259:18;19271:5;19259:11;:18::i;:::-;-1:-1:-1;19291:9:0;19089:217;-1:-1:-1;;;19089:217:0:o;17668:649::-;17749:7;17758:12;17783:9;:16;17803:2;17783:22;17779:533;;18077:4;18062:20;;18056:27;18119:4;18104:20;;18098:27;18169:4;18154:20;;18148:27;17816:9;18140:36;18200:25;18211:4;18140:36;18056:27;18098;18200:10;:25::i;:::-;18193:32;;;;;;;;;17779:533;-1:-1:-1;18264:1:0;;-1:-1:-1;18268:35:0;17779:533;17668:649;;;;;:::o;16149:475::-;16223:20;16214:5;:29;;;;;;;;:::i;:::-;;16210:409;;16149:475;:::o;16210:409::-;16311:29;16302:5;:38;;;;;;;;:::i;:::-;;16298:321;;16351:34;;;;;9330:2:1;16351:34:0;;;9312:21:1;9369:2;9349:18;;;9342:30;9408:26;9388:18;;;9381:54;9452:18;;16351:34:0;9128:348:1;16298:321:0;16412:35;16403:5;:44;;;;;;;;:::i;:::-;;16399:220;;16458:41;;;;;9683:2:1;16458:41:0;;;9665:21:1;9722:2;9702:18;;;9695:30;9761:33;9741:18;;;9734:61;9812:18;;16458:41:0;9481:355:1;16399:220:0;16526:30;16517:5;:39;;;;;;;;:::i;:::-;;16513:106;;16567:44;;;;;10043:2:1;16567:44:0;;;10025:21:1;10082:2;10062:18;;;10055:30;10121:34;10101:18;;;10094:62;10192:4;10172:18;;;10165:32;10214:19;;16567:44:0;9841:398:1;20389:1399:0;20477:7;;21371:66;21358:79;;21354:153;;;-1:-1:-1;21464:1:0;;-1:-1:-1;21468:30:0;21448:51;;21354:153;21613:24;;;21596:14;21613:24;;;;;;;;;10471:25:1;;;10544:4;10532:17;;10512:18;;;10505:45;;;;10566:18;;;10559:34;;;10609:18;;;10602:34;;;21613:24:0;;10443:19:1;;21613:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21613:24:0;;;;;;-1:-1:-1;;21648:20:0;;;21644:93;;21695:1;21699:29;21679:50;;;;;;;21644:93;21753:6;-1:-1:-1;21761:20:0;;-1:-1:-1;20389:1399:0;;;;;;;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;1078:196::-;1146:20;;1206:42;1195:54;;1185:65;;1175:93;;1264:1;1261;1254:12;1175:93;1078:196;;;:::o;1279:937::-;1401:6;1409;1417;1425;1478:2;1466:9;1457:7;1453:23;1449:32;1446:52;;;1494:1;1491;1484:12;1446:52;1534:9;1521:23;1563:18;1604:2;1596:6;1593:14;1590:34;;;1620:1;1617;1610:12;1590:34;1643:22;;;;1699:3;1681:16;;;1677:26;1674:46;;;1716:1;1713;1706:12;1674:46;1739:2;;-1:-1:-1;1794:2:1;1779:18;;1766:32;;1810:16;;;1807:36;;;1839:1;1836;1829:12;1807:36;1877:8;1866:9;1862:24;1852:34;;1924:7;1917:4;1913:2;1909:13;1905:27;1895:55;;1946:1;1943;1936:12;1895:55;1986:2;1973:16;2012:2;2004:6;2001:14;1998:34;;;2028:1;2025;2018:12;1998:34;2073:7;2068:2;2059:6;2055:2;2051:15;2047:24;2044:37;2041:57;;;2094:1;2091;2084:12;2041:57;2125:2;2121;2117:11;2107:21;;2147:6;2137:16;;;;;2172:38;2206:2;2195:9;2191:18;2172:38;:::i;:::-;2162:48;;1279:937;;;;;;;:::o;2221:644::-;2351:4;2357:6;2417:11;2404:25;2507:66;2496:8;2480:14;2476:29;2472:102;2452:18;2448:127;2438:155;;2589:1;2586;2579:12;2438:155;2616:33;;2668:20;;;-1:-1:-1;2711:18:1;2700:30;;2697:50;;;2743:1;2740;2733:12;2697:50;2776:4;2764:17;;-1:-1:-1;2835:4:1;2823:17;;2807:14;2803:38;2793:49;;2790:69;;;2855:1;2852;2845:12;2870:184;2922:77;2919:1;2912:88;3019:4;3016:1;3009:15;3043:4;3040:1;3033:15;3059:186;3118:6;3171:2;3159:9;3150:7;3146:23;3142:32;3139:52;;;3187:1;3184;3177:12;3139:52;3210:29;3229:9;3210:29;:::i;:::-;3200:39;3059:186;-1:-1:-1;;;3059:186:1:o;3250:184::-;3302:77;3299:1;3292:88;3399:4;3396:1;3389:15;3423:4;3420:1;3413:15;3439:195;3478:3;3509:66;3502:5;3499:77;3496:103;;3579:18;;:::i;:::-;-1:-1:-1;3626:1:1;3615:13;;3439:195::o;3639:631::-;3759:4;3765:6;3825:11;3812:25;3915:66;3904:8;3888:14;3884:29;3880:102;3860:18;3856:127;3846:155;;3997:1;3994;3987:12;3846:155;4024:33;;4076:20;;;-1:-1:-1;4119:18:1;4108:30;;4105:50;;;4151:1;4148;4141:12;4105:50;4184:4;4172:17;;-1:-1:-1;4235:1:1;4231:14;;;4215;4211:35;4201:46;;4198:66;;;4260:1;4257;4250:12;4275:184;4327:77;4324:1;4317:88;4424:4;4421:1;4414:15;4448:4;4445:1;4438:15;4464:664;4548:6;4601:2;4589:9;4580:7;4576:23;4572:32;4569:52;;;4617:1;4614;4607:12;4569:52;4650:2;4644:9;4692:2;4684:6;4680:15;4761:6;4749:10;4746:22;4725:18;4713:10;4710:34;4707:62;4704:242;;;4802:77;4799:1;4792:88;4903:4;4900:1;4893:15;4931:4;4928:1;4921:15;4704:242;4962:2;4955:22;5001:23;;4986:39;;5058:38;5092:2;5077:18;;5058:38;:::i;:::-;5053:2;5041:15;;5034:63;5045:6;4464:664;-1:-1:-1;;;4464:664:1:o;5133:125::-;5198:9;;;5219:10;;;5216:36;;;5232:18;;:::i;5473:128::-;5540:9;;;5561:11;;;5558:37;;;5575:18;;:::i;6197:118::-;6283:5;6276:13;6269:21;6262:5;6259:32;6249:60;;6305:1;6302;6295:12;6320:245;6387:6;6440:2;6428:9;6419:7;6415:23;6411:32;6408:52;;;6456:1;6453;6446:12;6408:52;6488:9;6482:16;6507:28;6529:5;6507:28;:::i;7474:241::-;7530:6;7583:2;7571:9;7562:7;7558:23;7554:32;7551:52;;;7599:1;7596;7589:12;7551:52;7638:9;7625:23;7657:28;7679:5;7657:28;:::i;8057:543::-;8275:13;;8218:3;;8249;;8328:4;8355:15;;;8218:3;8398:175;8412:6;8409:1;8406:13;8398:175;;;8475:13;;8461:28;;8511:14;;;;8548:15;;;;8434:1;8427:9;8398:175;;;-1:-1:-1;8589:5:1;;8057:543;-1:-1:-1;;;;;;8057:543:1:o;8939:184::-;8991:77;8988:1;8981:88;9088:4;9085:1;9078:15;9112:4;9109:1;9102:15
Swarm Source
ipfs://aa42c71a3456c5fb899ffdad017e0ecf904fa8264ec98de3303ac8b9d54c82ef
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.