Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
NFT
Overview
Max Total Supply
150 PA
Holders
159
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PastelAlpha
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./Restricted.sol"; contract PastelAlpha is ERC1155Supply, Restricted { using Counters for Counters.Counter; enum PeriodStatus { waiting, whitelist } struct Period { uint id; uint cost; uint supply; uint expiry; bytes32 merkleRoot; PeriodStatus status; } string public name; string public symbol; uint public PeriodId; Counters.Counter public PeriodCount; mapping (uint => mapping(address => bool)) Minted; mapping (uint => Period) public Periods; event TokenMinted (uint indexed idx, address indexed to); modifier validatePeriodId( uint periodId ) { require(periodId > 0 && periodId <= PeriodCount.current(), "error: period id < 0 or > current periods count" ); _; } modifier validateSupply ( uint periodId, uint supply ) { require(totalSupply(periodId) <= supply, "error: maximum supply < total minted tokens" ); _; } modifier validateMint ( ) { require(msg.sender == tx.origin, "error: can't mint under contract address" ); require(Periods[PeriodId].cost == msg.value, "error: invalid value" ); require(Periods[PeriodId].status == PeriodStatus.whitelist, "error: can't mint yet" ); require(!Minted[PeriodId][msg.sender], "error: already minted" ); _; } constructor( string memory _name, string memory _symbol, string memory baseUri ) ERC1155(baseUri) { name = _name; symbol = _symbol; transferOwnership(tx.origin); } function _beforeTokenTransfer( address operator, address from, address to, uint[] memory ids, uint[] memory amounts, bytes memory data ) internal virtual override(ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from != address(0) && to != address(0)) { for (uint i; i < ids.length;) { uint id = ids[i]; require(Periods[id].expiry > block.timestamp, "error: token is expired." ); unchecked { i++; } } } } function createPeriod( uint cost, uint supply, bytes32 merkleRoot ) external restrictToAdmins { require(supply > 0, "error: maximum supply < 0" ); PeriodCount.increment(); uint periodId = PeriodCount.current(); Periods[periodId] = Period( periodId, cost, supply, block.timestamp + 360 days, merkleRoot, PeriodStatus.waiting ); PeriodId = periodId; } function editPeriod( uint periodId, uint cost, uint supply, uint expiry, bytes32 merkleRoot ) external restrictToAdmins validatePeriodId(periodId) { Periods[periodId] = Period( periodId, cost, supply, expiry, merkleRoot, PeriodStatus.waiting ); } function editSupply( uint periodId, uint supply ) external restrictToAdmins validatePeriodId(periodId) validateSupply(periodId, supply) { Periods[periodId].supply = supply; } function editWhitelist( uint periodId, uint cost, bytes32 merkleRoot ) external restrictToAdmins validatePeriodId(periodId) { Periods[periodId].merkleRoot = merkleRoot; Periods[periodId].cost = cost; } function editStatus( uint periodId, PeriodStatus status ) external restrictToAdmins validatePeriodId(periodId) { Periods[periodId].status = status; } function setPeriod( uint periodId ) external restrictToAdmins validatePeriodId(periodId) { PeriodId = periodId; } function whitelistMint ( bytes32[] calldata proof ) external payable validateMint() { bytes32 root = Periods[PeriodId].merkleRoot; bytes32 hash = keccak256( abi.encodePacked( PeriodId, msg.sender ) ); require(MerkleProof.verify( proof, root, hash ), "error: verification failed" ); require(totalSupply(PeriodId) < Periods[PeriodId].supply, "error: period max supply reached" ); unchecked { Minted[PeriodId][msg.sender] = true; } _mint(msg.sender, PeriodId, 1, ""); emit TokenMinted(PeriodId, msg.sender); } function ownerMint( address[] calldata _addresses ) external onlyOwner { uint len = _addresses.length; require((totalSupply(PeriodId) + len) <= Periods[PeriodId].supply, "error: amount exceeds max supply" ); for (uint i = 0; i < len;) { _mint(_addresses[i], PeriodId, 1, ""); emit TokenMinted(PeriodId, _addresses[i]); unchecked { i++; } } } function uri ( uint tokenId ) public view override returns (string memory) { require (exists(tokenId), "error: token does not exist" ); return string( abi.encodePacked( super.uri(tokenId), Strings.toString(tokenId), ".json" ) ); } function setURI( string memory baseUri ) external onlyOwner { _setURI(baseUri); } function revoke( address from, address to, uint periodId, uint amount ) external restrictToAdmins { _safeTransferFrom( from, to, periodId, amount, "" ); } function withdraw( ) external onlyOwner { (bool success, ) = owner().call{ value: address(this).balance }(""); require(success, "error: withdrawal failed" ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_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); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; contract Restricted is Ownable { mapping(address => bool) public admin; modifier restrictToAdmins { require(msg.sender == owner() || admin[msg.sender], "error: unauthorized access" ); _; } function addAdmins ( address[] calldata _addresses ) external onlyOwner { uint len = _addresses.length; for (uint i = 0; i < len;) { admin[_addresses[i]] = true; unchecked { i++; } } } function removeAdmins ( address[] calldata _addresses ) external onlyOwner { uint len = _addresses.length; for (uint i = 0; i < len;) { admin[_addresses[i]] = false; unchecked { i++; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"idx","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"PeriodCount","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PeriodId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Periods","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"enum PastelAlpha.PeriodStatus","name":"status","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"createPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"periodId","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"editPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"periodId","type":"uint256"},{"internalType":"enum PastelAlpha.PeriodStatus","name":"status","type":"uint8"}],"name":"editStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"periodId","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"editSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"periodId","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"editWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"periodId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"periodId","type":"uint256"}],"name":"setPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620044ac380380620044ac833981016040819052620000349162000288565b8062000040816200007e565b506200004c3362000090565b60066200005a8482620003a8565b506007620000698382620003a8565b506200007532620000e2565b50505062000474565b60026200008c8282620003a8565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620000ec62000165565b6001600160a01b038116620001575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b620001628162000090565b50565b6004546001600160a01b03163314620001c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200014e565b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001eb57600080fd5b81516001600160401b0380821115620002085762000208620001c3565b604051601f8301601f19908116603f01168101908282118183101715620002335762000233620001c3565b816040528381526020925086838588010111156200025057600080fd5b600091505b8382101562000274578582018301518183018401529082019062000255565b600093810190920192909252949350505050565b6000806000606084860312156200029e57600080fd5b83516001600160401b0380821115620002b657600080fd5b620002c487838801620001d9565b94506020860151915080821115620002db57600080fd5b620002e987838801620001d9565b935060408601519150808211156200030057600080fd5b506200030f86828701620001d9565b9150509250925092565b600181811c908216806200032e57607f821691505b6020821081036200034f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a357600081815260208120601f850160051c810160208610156200037e5750805b601f850160051c820191505b818110156200039f578281556001016200038a565b5050505b505050565b81516001600160401b03811115620003c457620003c4620001c3565b620003dc81620003d5845462000319565b8462000355565b602080601f831160018114620004145760008415620003fb5750858301515b600019600386901b1c1916600185901b1785556200039f565b600085815260208120601f198616915b82811015620004455788860151825594840194600190910190840162000424565b5085821015620004645787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61402880620004846000396000f3fe6080604052600436106101e25760003560e01c80636bc67ad41161010257806395d89b4111610095578063bd85b03911610064578063bd85b039146105d3578063e985e9c514610600578063f242432a14610656578063f2fde38b1461067657600080fd5b806395d89b411461055e5780639c54df6414610573578063a22cb46514610593578063bd72852d146105b357600080fd5b80637e36cfd0116100d15780637e36cfd0146104d25780638310a539146104f25780638d89479d146105125780638da5cb5b1461052957600080fd5b80636bc67ad414610418578063715018a6146104385780637daa214d1461044d5780637e1896531461046d57600080fd5b8063372f657c1161017a5780634e1273f4116101495780634e1273f41461036c5780634f558e791461039957806363a846f8146103c8578063661e3e36146103f857600080fd5b8063372f657c1461030e578063377e11e0146103215780633ccfd60b146103415780634661e10c1461035657600080fd5b80630e89341c116101b65780630e89341c1461028e5780630f3a9f65146102ae5780631f33aa16146102ce5780632eb2c2d6146102ee57600080fd5b8062fdd58e146101e757806301ffc9a71461021a57806302fe53051461024a57806306fdde031461026c575b600080fd5b3480156101f357600080fd5b50610207610202366004613335565b610696565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a61023536600461338d565b610776565b6040519015158152602001610211565b34801561025657600080fd5b5061026a6102653660046134a0565b610859565b005b34801561027857600080fd5b5061028161086d565b6040516102119190613557565b34801561029a57600080fd5b506102816102a936600461356a565b6108fb565b3480156102ba57600080fd5b5061026a6102c936600461356a565b6109ac565b3480156102da57600080fd5b5061026a6102e9366004613583565b610aec565b3480156102fa57600080fd5b5061026a610309366004613664565b610cc8565b61026a61031c36600461375a565b610d91565b34801561032d57600080fd5b5061026a61033c36600461375a565b6111e2565b34801561034d57600080fd5b5061026a611284565b34801561036257600080fd5b5061020760085481565b34801561037857600080fd5b5061038c61038736600461379c565b611374565b60405161021191906138a2565b3480156103a557600080fd5b5061023a6103b436600461356a565b600090815260036020526040902054151590565b3480156103d457600080fd5b5061023a6103e33660046138b5565b60056020526000908152604090205460ff1681565b34801561040457600080fd5b5061026a61041336600461375a565b6114cc565b34801561042457600080fd5b5061026a610433366004613583565b61162e565b34801561044457600080fd5b5061026a611788565b34801561045957600080fd5b5061026a6104683660046138d0565b61179c565b34801561047957600080fd5b506104c061048836600461356a565b600b60205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909160ff1686565b60405161021196959493929190613941565b3480156104de57600080fd5b5061026a6104ed3660046139ac565b611853565b3480156104fe57600080fd5b5061026a61050d3660046139ce565b611a4c565b34801561051e57600080fd5b506009546102079081565b34801561053557600080fd5b5060045460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610211565b34801561056a57600080fd5b50610281611bdb565b34801561057f57600080fd5b5061026a61058e36600461375a565b611be8565b34801561059f57600080fd5b5061026a6105ae366004613a02565b611c84565b3480156105bf57600080fd5b5061026a6105ce366004613a33565b611c93565b3480156105df57600080fd5b506102076105ee36600461356a565b60009081526003602052604090205490565b34801561060c57600080fd5b5061023a61061b366004613a6e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561066257600080fd5b5061026a610671366004613aa1565b611e8a565b34801561068257600080fd5b5061026a6106913660046138b5565b611f4c565b600073ffffffffffffffffffffffffffffffffffffffff8316610740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201527f616c6964206f776e65720000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526020818152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061080957507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061077057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610770565b610861612000565b61086a81612081565b50565b6006805461087a90613b06565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613b06565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b505050505081565b600081815260036020526040902054606090610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6572726f723a20746f6b656e20646f6573206e6f7420657869737400000000006044820152606401610737565b61097c8261208d565b61098583612121565b604051602001610996929190613b59565b6040516020818303038152906040529050919050565b60045473ffffffffffffffffffffffffffffffffffffffff163314806109e157503360009081526005602052604090205460ff165b610a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b80600081118015610a5a57506009548111155b610ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b50600855565b60045473ffffffffffffffffffffffffffffffffffffffff16331480610b2157503360009081526005602052604090205460ff165b610b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b60008211610bf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f6572726f723a206d6178696d756d20737570706c79203c2030000000000000006044820152606401610737565b610bff600980546001019055565b6000610c0a60095490565b90506040518060c00160405280828152602001858152602001848152602001426301da9c00610c399190613bdf565b8152602081018490526040016000815250600b6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690836001811115610cb957610cb9613912565b02179055505050600855505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480610cf15750610cf1853361061b565b610d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206e6f7220617070726f76656400000000000000000000000000000000006064820152608401610737565b610d8a858585858561225e565b5050505050565b333214610e20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f6572726f723a2063616e2774206d696e7420756e64657220636f6e747261637460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610737565b6008546000908152600b60205260409020600101543414610e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6572726f723a20696e76616c69642076616c75650000000000000000000000006044820152606401610737565b60016008546000908152600b602052604090206005015460ff166001811115610ec857610ec8613912565b14610f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f6572726f723a2063616e2774206d696e742079657400000000000000000000006044820152606401610737565b6008546000908152600a6020908152604080832033845290915290205460ff1615610fb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f6572726f723a20616c7265616479206d696e74656400000000000000000000006044820152606401610737565b6008546000818152600b60209081526040808320600401548151928301949094527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b169082015260540160405160208183030381529060405280519060200120905061105c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506125a69050565b6110c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20766572696669636174696f6e206661696c65640000000000006044820152606401610737565b6008546000908152600b60209081526040808320600201546003909252909120541061114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6572726f723a20706572696f64206d617820737570706c7920726561636865646044820152606401610737565b600880546000908152600a602090815260408083203380855290835281842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155945482519384019092529282526111ad9390916125bc565b6008546040513391907f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c990600090a350505050565b6111ea612000565b8060005b8181101561127e5760006005600086868581811061120e5761120e613bf2565b905060200201602081019061122391906138b5565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016111ee565b50505050565b61128c612000565b60006112ad60045473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114611304576040519150601f19603f3d011682016040523d82523d6000602084013e611309565b606091505b505090508061086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6572726f723a207769746864726177616c206661696c656400000000000000006044820152606401610737565b60608151835114611407576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610737565b6000835167ffffffffffffffff811115611423576114236133aa565b60405190808252806020026020018201604052801561144c578160200160208202803683370190505b50905060005b84518110156114c45761149785828151811061147057611470613bf2565b602002602001015185838151811061148a5761148a613bf2565b6020026020010151610696565b8282815181106114a9576114a9613bf2565b60209081029190910101526114bd81613c21565b9050611452565b509392505050565b6114d4612000565b6008546000908152600b6020908152604080832060020154600390925290912054829190611503908390613bdf565b111561156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6572726f723a20616d6f756e742065786365656473206d617820737570706c796044820152606401610737565b60005b8181101561127e576115ba84848381811061158b5761158b613bf2565b90506020020160208101906115a091906138b5565b6008546001604051806020016040528060008152506125bc565b8383828181106115cc576115cc613bf2565b90506020020160208101906115e191906138b5565b73ffffffffffffffffffffffffffffffffffffffff166008547f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c960405160405180910390a360010161156e565b60045473ffffffffffffffffffffffffffffffffffffffff1633148061166357503360009081526005602052604090205460ff165b6116c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b826000811180156116dc57506009548111155b611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b506000928352600b60205260409092206004810192909255600190910155565b611790612000565b61179a600061273c565b565b60045473ffffffffffffffffffffffffffffffffffffffff163314806117d157503360009081526005602052604090205460ff165b611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b61127e84848484604051806020016040528060008152506127b3565b60045473ffffffffffffffffffffffffffffffffffffffff1633148061188857503360009081526005602052604090205460ff165b6118ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b8160008111801561190157506009548111155b61198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b8282806119a68360009081526003602052604090205490565b1115611a34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f6572726f723a206d6178696d756d20737570706c79203c20746f74616c206d6960448201527f6e74656420746f6b656e730000000000000000000000000000000000000000006064820152608401610737565b5050506000918252600b602052604090912060020155565b60045473ffffffffffffffffffffffffffffffffffffffff16331480611a8157503360009081526005602052604090205460ff165b611ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b81600081118015611afa57506009548111155b611b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b6000838152600b6020526040902060050180548391907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660018381811115611bd157611bd1613912565b0217905550505050565b6007805461087a90613b06565b611bf0612000565b8060005b8181101561127e57600160056000868685818110611c1457611c14613bf2565b9050602002016020810190611c2991906138b5565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611bf4565b611c8f3383836129ff565b5050565b60045473ffffffffffffffffffffffffffffffffffffffff16331480611cc857503360009081526005602052604090205460ff165b611d2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b84600081118015611d4157506009548111155b611dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b6040518060c0016040528087815260200186815260200185815260200184815260200183815260200160006001811115611e0957611e09613912565b815250600b6000888152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690836001811115611e7b57611e7b613912565b02179055505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480611eb35750611eb3853361061b565b611f3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206e6f7220617070726f76656400000000000000000000000000000000006064820152608401610737565b610d8a85858585856127b3565b611f54612000565b73ffffffffffffffffffffffffffffffffffffffff8116611ff7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610737565b61086a8161273c565b60045473ffffffffffffffffffffffffffffffffffffffff16331461179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6002611c8f8282613ca4565b60606002805461209c90613b06565b80601f01602080910402602001604051908101604052809291908181526020018280546120c890613b06565b80156121155780601f106120ea57610100808354040283529160200191612115565b820191906000526020600020905b8154815290600101906020018083116120f857829003601f168201915b50505050509050919050565b60608160000361216457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561218e578061217881613c21565b91506121879050600a83613ded565b9150612168565b60008167ffffffffffffffff8111156121a9576121a96133aa565b6040519080825280601f01601f1916602001820160405280156121d3576020820181803683370190505b5090505b8415612256576121e8600183613e01565b91506121f5600a86613e14565b612200906030613bdf565b60f81b81838151811061221557612215613bf2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061224f600a86613ded565b94506121d7565b949350505050565b81518351146122ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610737565b73ffffffffffffffffffffffffffffffffffffffff8416612392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610737565b336123a1818787878787612b52565b60005b84518110156125115760008582815181106123c1576123c1613bf2565b6020026020010151905060008583815181106123df576123df613bf2565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e1683529093529190912054909150818110156124ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610737565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b168252812080548492906124f6908490613bdf565b925050819055505050508061250a90613c21565b90506123a4565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612588929190613e28565b60405180910390a461259e818787878787612c51565b505050505050565b6000826125b38584612edb565b14949350505050565b73ffffffffffffffffffffffffffffffffffffffff841661265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610737565b33600061266b85612f20565b9050600061267885612f20565b905061268983600089858589612b52565b60008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b168452909152812080548792906126c6908490613bdf565b9091555050604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461273383600089898989612f6b565b50505050505050565b6004805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8416612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610737565b33600061286285612f20565b9050600061286f85612f20565b905061287f838989858589612b52565b60008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8c1684529091529020548581101561293d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610737565b60008781526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8d8116855292528083208985039055908a16825281208054889290612987908490613bdf565b9091555050604080518881526020810188905273ffffffffffffffffffffffffffffffffffffffff808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46129f4848a8a8a8a8a612f6b565b505050505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610737565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b60868686868686613118565b73ffffffffffffffffffffffffffffffffffffffff851615801590612b9a575073ffffffffffffffffffffffffffffffffffffffff841615155b1561259e5760005b8351811015612733576000848281518110612bbf57612bbf613bf2565b6020026020010151905042600b60008381526020019081526020016000206003015411612c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6572726f723a20746f6b656e20697320657870697265642e00000000000000006044820152606401610737565b50600101612ba2565b73ffffffffffffffffffffffffffffffffffffffff84163b1561259e576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c8190612cc89089908990889088908890600401613e56565b6020604051808303816000875af1925050508015612d21575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d1e91810190613ec1565b60015b612e0a57612d2d613ede565b806308c379a003612d805750612d41613efa565b80612d4c5750612d82565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107379190613557565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610737565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610737565b600081815b84518110156114c457612f0c82868381518110612eff57612eff613bf2565b60200260200101516132da565b915080612f1881613c21565b915050612ee0565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612f5a57612f5a613bf2565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b1561259e576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e6190612fe29089908990889088908890600401613fa2565b6020604051808303816000875af192505050801561303b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261303891810190613ec1565b60015b61304757612d2d613ede565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610737565b73ffffffffffffffffffffffffffffffffffffffff85166131ac5760005b83518110156131aa5782818151811061315157613151613bf2565b60200260200101516003600086848151811061316f5761316f613bf2565b6020026020010151815260200190815260200160002060008282546131949190613bdf565b909155506131a3905081613c21565b9050613136565b505b73ffffffffffffffffffffffffffffffffffffffff841661259e5760005b83518110156127335760008482815181106131e7576131e7613bf2565b60200260200101519050600084838151811061320557613205613bf2565b60200260200101519050600060036000848152602001908152602001600020549050818110156132b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f7460448201527f616c537570706c790000000000000000000000000000000000000000000000006064820152608401610737565b600092835260036020526040909220910390556132d381613c21565b90506131ca565b60008183106132f6576000828152602084905260409020613305565b60008381526020839052604090205b9392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461333057600080fd5b919050565b6000806040838503121561334857600080fd5b6133518361330c565b946020939093013593505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461086a57600080fd5b60006020828403121561339f57600080fd5b81356133058161335f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff8211171561341d5761341d6133aa565b6040525050565b600067ffffffffffffffff83111561343e5761343e6133aa565b60405161347360207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f87011601826133d9565b80915083815284848401111561348857600080fd5b83836020830137600060208583010152509392505050565b6000602082840312156134b257600080fd5b813567ffffffffffffffff8111156134c957600080fd5b8201601f810184136134da57600080fd5b61225684823560208401613424565b60005b838110156135045781810151838201526020016134ec565b50506000910152565b600081518084526135258160208601602086016134e9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000613305602083018461350d565b60006020828403121561357c57600080fd5b5035919050565b60008060006060848603121561359857600080fd5b505081359360208301359350604090920135919050565b600067ffffffffffffffff8211156135c9576135c96133aa565b5060051b60200190565b600082601f8301126135e457600080fd5b813560206135f1826135af565b6040516135fe82826133d9565b83815260059390931b850182019282810191508684111561361e57600080fd5b8286015b848110156136395780358352918301918301613622565b509695505050505050565b600082601f83011261365557600080fd5b61330583833560208501613424565b600080600080600060a0868803121561367c57600080fd5b6136858661330c565b94506136936020870161330c565b9350604086013567ffffffffffffffff808211156136b057600080fd5b6136bc89838a016135d3565b945060608801359150808211156136d257600080fd5b6136de89838a016135d3565b935060808801359150808211156136f457600080fd5b5061370188828901613644565b9150509295509295909350565b60008083601f84011261372057600080fd5b50813567ffffffffffffffff81111561373857600080fd5b6020830191508360208260051b850101111561375357600080fd5b9250929050565b6000806020838503121561376d57600080fd5b823567ffffffffffffffff81111561378457600080fd5b6137908582860161370e565b90969095509350505050565b600080604083850312156137af57600080fd5b823567ffffffffffffffff808211156137c757600080fd5b818501915085601f8301126137db57600080fd5b813560206137e8826135af565b6040516137f582826133d9565b83815260059390931b850182019282810191508984111561381557600080fd5b948201945b8386101561383a5761382b8661330c565b8252948201949082019061381a565b9650508601359250508082111561385057600080fd5b5061385d858286016135d3565b9150509250929050565b600081518084526020808501945080840160005b838110156138975781518752958201959082019060010161387b565b509495945050505050565b6020815260006133056020830184613867565b6000602082840312156138c757600080fd5b6133058261330c565b600080600080608085870312156138e657600080fd5b6138ef8561330c565b93506138fd6020860161330c565b93969395505050506040820135916060013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600060c0820190508782528660208301528560408301528460608301528360808301526002831061399b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8260a0830152979650505050505050565b600080604083850312156139bf57600080fd5b50508035926020909101359150565b600080604083850312156139e157600080fd5b823591506020830135600281106139f757600080fd5b809150509250929050565b60008060408385031215613a1557600080fd5b613a1e8361330c565b9150602083013580151581146139f757600080fd5b600080600080600060a08688031215613a4b57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060408385031215613a8157600080fd5b613a8a8361330c565b9150613a986020840161330c565b90509250929050565b600080600080600060a08688031215613ab957600080fd5b613ac28661330c565b9450613ad06020870161330c565b93506040860135925060608601359150608086013567ffffffffffffffff811115613afa57600080fd5b61370188828901613644565b600181811c90821680613b1a57607f821691505b602082108103613b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008351613b6b8184602088016134e9565b835190830190613b7f8183602088016134e9565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561077057610770613bb0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c5257613c52613bb0565b5060010190565b601f821115613c9f57600081815260208120601f850160051c81016020861015613c805750805b601f850160051c820191505b8181101561259e57828155600101613c8c565b505050565b815167ffffffffffffffff811115613cbe57613cbe6133aa565b613cd281613ccc8454613b06565b84613c59565b602080601f831160018114613d255760008415613cef5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561259e565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015613d7257888601518255948401946001909101908401613d53565b5085821015613dae57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613dfc57613dfc613dbe565b500490565b8181038181111561077057610770613bb0565b600082613e2357613e23613dbe565b500690565b604081526000613e3b6040830185613867565b8281036020840152613e4d8185613867565b95945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152613e8f60a0830186613867565b8281036060840152613ea18186613867565b90508281036080840152613eb5818561350d565b98975050505050505050565b600060208284031215613ed357600080fd5b81516133058161335f565b600060033d1115613ef75760046000803e5060005160e01c5b90565b600060443d1015613f085790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613f5657505050505090565b8285019150815181811115613f6e5750505050505090565b843d8701016020828501011115613f885750505050505090565b613f97602082860101876133d9565b509095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152613fe760a083018461350d565b97965050505050505056fea2646970667358221220a6bc2fd756aa7017345c8b0bf1695d6737930258360b46a0e3a587585ce8cdab64736f6c63430008100033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c50617374656c20416c7068610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000250410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962786136786d6777676d6c6834673232626f346b67637572343679376e74667a64626f69726c346b666265613672766b736666752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e25760003560e01c80636bc67ad41161010257806395d89b4111610095578063bd85b03911610064578063bd85b039146105d3578063e985e9c514610600578063f242432a14610656578063f2fde38b1461067657600080fd5b806395d89b411461055e5780639c54df6414610573578063a22cb46514610593578063bd72852d146105b357600080fd5b80637e36cfd0116100d15780637e36cfd0146104d25780638310a539146104f25780638d89479d146105125780638da5cb5b1461052957600080fd5b80636bc67ad414610418578063715018a6146104385780637daa214d1461044d5780637e1896531461046d57600080fd5b8063372f657c1161017a5780634e1273f4116101495780634e1273f41461036c5780634f558e791461039957806363a846f8146103c8578063661e3e36146103f857600080fd5b8063372f657c1461030e578063377e11e0146103215780633ccfd60b146103415780634661e10c1461035657600080fd5b80630e89341c116101b65780630e89341c1461028e5780630f3a9f65146102ae5780631f33aa16146102ce5780632eb2c2d6146102ee57600080fd5b8062fdd58e146101e757806301ffc9a71461021a57806302fe53051461024a57806306fdde031461026c575b600080fd5b3480156101f357600080fd5b50610207610202366004613335565b610696565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a61023536600461338d565b610776565b6040519015158152602001610211565b34801561025657600080fd5b5061026a6102653660046134a0565b610859565b005b34801561027857600080fd5b5061028161086d565b6040516102119190613557565b34801561029a57600080fd5b506102816102a936600461356a565b6108fb565b3480156102ba57600080fd5b5061026a6102c936600461356a565b6109ac565b3480156102da57600080fd5b5061026a6102e9366004613583565b610aec565b3480156102fa57600080fd5b5061026a610309366004613664565b610cc8565b61026a61031c36600461375a565b610d91565b34801561032d57600080fd5b5061026a61033c36600461375a565b6111e2565b34801561034d57600080fd5b5061026a611284565b34801561036257600080fd5b5061020760085481565b34801561037857600080fd5b5061038c61038736600461379c565b611374565b60405161021191906138a2565b3480156103a557600080fd5b5061023a6103b436600461356a565b600090815260036020526040902054151590565b3480156103d457600080fd5b5061023a6103e33660046138b5565b60056020526000908152604090205460ff1681565b34801561040457600080fd5b5061026a61041336600461375a565b6114cc565b34801561042457600080fd5b5061026a610433366004613583565b61162e565b34801561044457600080fd5b5061026a611788565b34801561045957600080fd5b5061026a6104683660046138d0565b61179c565b34801561047957600080fd5b506104c061048836600461356a565b600b60205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909160ff1686565b60405161021196959493929190613941565b3480156104de57600080fd5b5061026a6104ed3660046139ac565b611853565b3480156104fe57600080fd5b5061026a61050d3660046139ce565b611a4c565b34801561051e57600080fd5b506009546102079081565b34801561053557600080fd5b5060045460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610211565b34801561056a57600080fd5b50610281611bdb565b34801561057f57600080fd5b5061026a61058e36600461375a565b611be8565b34801561059f57600080fd5b5061026a6105ae366004613a02565b611c84565b3480156105bf57600080fd5b5061026a6105ce366004613a33565b611c93565b3480156105df57600080fd5b506102076105ee36600461356a565b60009081526003602052604090205490565b34801561060c57600080fd5b5061023a61061b366004613a6e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561066257600080fd5b5061026a610671366004613aa1565b611e8a565b34801561068257600080fd5b5061026a6106913660046138b5565b611f4c565b600073ffffffffffffffffffffffffffffffffffffffff8316610740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201527f616c6964206f776e65720000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526020818152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061080957507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061077057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610770565b610861612000565b61086a81612081565b50565b6006805461087a90613b06565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613b06565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b505050505081565b600081815260036020526040902054606090610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6572726f723a20746f6b656e20646f6573206e6f7420657869737400000000006044820152606401610737565b61097c8261208d565b61098583612121565b604051602001610996929190613b59565b6040516020818303038152906040529050919050565b60045473ffffffffffffffffffffffffffffffffffffffff163314806109e157503360009081526005602052604090205460ff165b610a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b80600081118015610a5a57506009548111155b610ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b50600855565b60045473ffffffffffffffffffffffffffffffffffffffff16331480610b2157503360009081526005602052604090205460ff165b610b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b60008211610bf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f6572726f723a206d6178696d756d20737570706c79203c2030000000000000006044820152606401610737565b610bff600980546001019055565b6000610c0a60095490565b90506040518060c00160405280828152602001858152602001848152602001426301da9c00610c399190613bdf565b8152602081018490526040016000815250600b6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690836001811115610cb957610cb9613912565b02179055505050600855505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480610cf15750610cf1853361061b565b610d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206e6f7220617070726f76656400000000000000000000000000000000006064820152608401610737565b610d8a858585858561225e565b5050505050565b333214610e20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f6572726f723a2063616e2774206d696e7420756e64657220636f6e747261637460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610737565b6008546000908152600b60205260409020600101543414610e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6572726f723a20696e76616c69642076616c75650000000000000000000000006044820152606401610737565b60016008546000908152600b602052604090206005015460ff166001811115610ec857610ec8613912565b14610f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f6572726f723a2063616e2774206d696e742079657400000000000000000000006044820152606401610737565b6008546000908152600a6020908152604080832033845290915290205460ff1615610fb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f6572726f723a20616c7265616479206d696e74656400000000000000000000006044820152606401610737565b6008546000818152600b60209081526040808320600401548151928301949094527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b169082015260540160405160208183030381529060405280519060200120905061105c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506125a69050565b6110c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20766572696669636174696f6e206661696c65640000000000006044820152606401610737565b6008546000908152600b60209081526040808320600201546003909252909120541061114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6572726f723a20706572696f64206d617820737570706c7920726561636865646044820152606401610737565b600880546000908152600a602090815260408083203380855290835281842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155945482519384019092529282526111ad9390916125bc565b6008546040513391907f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c990600090a350505050565b6111ea612000565b8060005b8181101561127e5760006005600086868581811061120e5761120e613bf2565b905060200201602081019061122391906138b5565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016111ee565b50505050565b61128c612000565b60006112ad60045473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114611304576040519150601f19603f3d011682016040523d82523d6000602084013e611309565b606091505b505090508061086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6572726f723a207769746864726177616c206661696c656400000000000000006044820152606401610737565b60608151835114611407576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610737565b6000835167ffffffffffffffff811115611423576114236133aa565b60405190808252806020026020018201604052801561144c578160200160208202803683370190505b50905060005b84518110156114c45761149785828151811061147057611470613bf2565b602002602001015185838151811061148a5761148a613bf2565b6020026020010151610696565b8282815181106114a9576114a9613bf2565b60209081029190910101526114bd81613c21565b9050611452565b509392505050565b6114d4612000565b6008546000908152600b6020908152604080832060020154600390925290912054829190611503908390613bdf565b111561156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6572726f723a20616d6f756e742065786365656473206d617820737570706c796044820152606401610737565b60005b8181101561127e576115ba84848381811061158b5761158b613bf2565b90506020020160208101906115a091906138b5565b6008546001604051806020016040528060008152506125bc565b8383828181106115cc576115cc613bf2565b90506020020160208101906115e191906138b5565b73ffffffffffffffffffffffffffffffffffffffff166008547f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c960405160405180910390a360010161156e565b60045473ffffffffffffffffffffffffffffffffffffffff1633148061166357503360009081526005602052604090205460ff165b6116c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b826000811180156116dc57506009548111155b611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b506000928352600b60205260409092206004810192909255600190910155565b611790612000565b61179a600061273c565b565b60045473ffffffffffffffffffffffffffffffffffffffff163314806117d157503360009081526005602052604090205460ff165b611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b61127e84848484604051806020016040528060008152506127b3565b60045473ffffffffffffffffffffffffffffffffffffffff1633148061188857503360009081526005602052604090205460ff165b6118ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b8160008111801561190157506009548111155b61198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b8282806119a68360009081526003602052604090205490565b1115611a34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f6572726f723a206d6178696d756d20737570706c79203c20746f74616c206d6960448201527f6e74656420746f6b656e730000000000000000000000000000000000000000006064820152608401610737565b5050506000918252600b602052604090912060020155565b60045473ffffffffffffffffffffffffffffffffffffffff16331480611a8157503360009081526005602052604090205460ff165b611ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b81600081118015611afa57506009548111155b611b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b6000838152600b6020526040902060050180548391907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660018381811115611bd157611bd1613912565b0217905550505050565b6007805461087a90613b06565b611bf0612000565b8060005b8181101561127e57600160056000868685818110611c1457611c14613bf2565b9050602002016020810190611c2991906138b5565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611bf4565b611c8f3383836129ff565b5050565b60045473ffffffffffffffffffffffffffffffffffffffff16331480611cc857503360009081526005602052604090205460ff165b611d2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6572726f723a20756e617574686f72697a6564206163636573730000000000006044820152606401610737565b84600081118015611d4157506009548111155b611dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f6572726f723a20706572696f64206964203c2030206f72203e2063757272656e60448201527f7420706572696f647320636f756e7400000000000000000000000000000000006064820152608401610737565b6040518060c0016040528087815260200186815260200185815260200184815260200183815260200160006001811115611e0957611e09613912565b815250600b6000888152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690836001811115611e7b57611e7b613912565b02179055505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8516331480611eb35750611eb3853361061b565b611f3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206e6f7220617070726f76656400000000000000000000000000000000006064820152608401610737565b610d8a85858585856127b3565b611f54612000565b73ffffffffffffffffffffffffffffffffffffffff8116611ff7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610737565b61086a8161273c565b60045473ffffffffffffffffffffffffffffffffffffffff16331461179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6002611c8f8282613ca4565b60606002805461209c90613b06565b80601f01602080910402602001604051908101604052809291908181526020018280546120c890613b06565b80156121155780601f106120ea57610100808354040283529160200191612115565b820191906000526020600020905b8154815290600101906020018083116120f857829003601f168201915b50505050509050919050565b60608160000361216457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561218e578061217881613c21565b91506121879050600a83613ded565b9150612168565b60008167ffffffffffffffff8111156121a9576121a96133aa565b6040519080825280601f01601f1916602001820160405280156121d3576020820181803683370190505b5090505b8415612256576121e8600183613e01565b91506121f5600a86613e14565b612200906030613bdf565b60f81b81838151811061221557612215613bf2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061224f600a86613ded565b94506121d7565b949350505050565b81518351146122ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610737565b73ffffffffffffffffffffffffffffffffffffffff8416612392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610737565b336123a1818787878787612b52565b60005b84518110156125115760008582815181106123c1576123c1613bf2565b6020026020010151905060008583815181106123df576123df613bf2565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e1683529093529190912054909150818110156124ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610737565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b168252812080548492906124f6908490613bdf565b925050819055505050508061250a90613c21565b90506123a4565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612588929190613e28565b60405180910390a461259e818787878787612c51565b505050505050565b6000826125b38584612edb565b14949350505050565b73ffffffffffffffffffffffffffffffffffffffff841661265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610737565b33600061266b85612f20565b9050600061267885612f20565b905061268983600089858589612b52565b60008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b168452909152812080548792906126c6908490613bdf565b9091555050604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461273383600089898989612f6b565b50505050505050565b6004805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8416612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610737565b33600061286285612f20565b9050600061286f85612f20565b905061287f838989858589612b52565b60008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8c1684529091529020548581101561293d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610737565b60008781526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8d8116855292528083208985039055908a16825281208054889290612987908490613bdf565b9091555050604080518881526020810188905273ffffffffffffffffffffffffffffffffffffffff808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46129f4848a8a8a8a8a612f6b565b505050505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610737565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b60868686868686613118565b73ffffffffffffffffffffffffffffffffffffffff851615801590612b9a575073ffffffffffffffffffffffffffffffffffffffff841615155b1561259e5760005b8351811015612733576000848281518110612bbf57612bbf613bf2565b6020026020010151905042600b60008381526020019081526020016000206003015411612c48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6572726f723a20746f6b656e20697320657870697265642e00000000000000006044820152606401610737565b50600101612ba2565b73ffffffffffffffffffffffffffffffffffffffff84163b1561259e576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c8190612cc89089908990889088908890600401613e56565b6020604051808303816000875af1925050508015612d21575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d1e91810190613ec1565b60015b612e0a57612d2d613ede565b806308c379a003612d805750612d41613efa565b80612d4c5750612d82565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107379190613557565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610737565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610737565b600081815b84518110156114c457612f0c82868381518110612eff57612eff613bf2565b60200260200101516132da565b915080612f1881613c21565b915050612ee0565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612f5a57612f5a613bf2565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b1561259e576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e6190612fe29089908990889088908890600401613fa2565b6020604051808303816000875af192505050801561303b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261303891810190613ec1565b60015b61304757612d2d613ede565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610737565b73ffffffffffffffffffffffffffffffffffffffff85166131ac5760005b83518110156131aa5782818151811061315157613151613bf2565b60200260200101516003600086848151811061316f5761316f613bf2565b6020026020010151815260200190815260200160002060008282546131949190613bdf565b909155506131a3905081613c21565b9050613136565b505b73ffffffffffffffffffffffffffffffffffffffff841661259e5760005b83518110156127335760008482815181106131e7576131e7613bf2565b60200260200101519050600084838151811061320557613205613bf2565b60200260200101519050600060036000848152602001908152602001600020549050818110156132b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f7460448201527f616c537570706c790000000000000000000000000000000000000000000000006064820152608401610737565b600092835260036020526040909220910390556132d381613c21565b90506131ca565b60008183106132f6576000828152602084905260409020613305565b60008381526020839052604090205b9392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461333057600080fd5b919050565b6000806040838503121561334857600080fd5b6133518361330c565b946020939093013593505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461086a57600080fd5b60006020828403121561339f57600080fd5b81356133058161335f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff8211171561341d5761341d6133aa565b6040525050565b600067ffffffffffffffff83111561343e5761343e6133aa565b60405161347360207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f87011601826133d9565b80915083815284848401111561348857600080fd5b83836020830137600060208583010152509392505050565b6000602082840312156134b257600080fd5b813567ffffffffffffffff8111156134c957600080fd5b8201601f810184136134da57600080fd5b61225684823560208401613424565b60005b838110156135045781810151838201526020016134ec565b50506000910152565b600081518084526135258160208601602086016134e9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000613305602083018461350d565b60006020828403121561357c57600080fd5b5035919050565b60008060006060848603121561359857600080fd5b505081359360208301359350604090920135919050565b600067ffffffffffffffff8211156135c9576135c96133aa565b5060051b60200190565b600082601f8301126135e457600080fd5b813560206135f1826135af565b6040516135fe82826133d9565b83815260059390931b850182019282810191508684111561361e57600080fd5b8286015b848110156136395780358352918301918301613622565b509695505050505050565b600082601f83011261365557600080fd5b61330583833560208501613424565b600080600080600060a0868803121561367c57600080fd5b6136858661330c565b94506136936020870161330c565b9350604086013567ffffffffffffffff808211156136b057600080fd5b6136bc89838a016135d3565b945060608801359150808211156136d257600080fd5b6136de89838a016135d3565b935060808801359150808211156136f457600080fd5b5061370188828901613644565b9150509295509295909350565b60008083601f84011261372057600080fd5b50813567ffffffffffffffff81111561373857600080fd5b6020830191508360208260051b850101111561375357600080fd5b9250929050565b6000806020838503121561376d57600080fd5b823567ffffffffffffffff81111561378457600080fd5b6137908582860161370e565b90969095509350505050565b600080604083850312156137af57600080fd5b823567ffffffffffffffff808211156137c757600080fd5b818501915085601f8301126137db57600080fd5b813560206137e8826135af565b6040516137f582826133d9565b83815260059390931b850182019282810191508984111561381557600080fd5b948201945b8386101561383a5761382b8661330c565b8252948201949082019061381a565b9650508601359250508082111561385057600080fd5b5061385d858286016135d3565b9150509250929050565b600081518084526020808501945080840160005b838110156138975781518752958201959082019060010161387b565b509495945050505050565b6020815260006133056020830184613867565b6000602082840312156138c757600080fd5b6133058261330c565b600080600080608085870312156138e657600080fd5b6138ef8561330c565b93506138fd6020860161330c565b93969395505050506040820135916060013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600060c0820190508782528660208301528560408301528460608301528360808301526002831061399b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8260a0830152979650505050505050565b600080604083850312156139bf57600080fd5b50508035926020909101359150565b600080604083850312156139e157600080fd5b823591506020830135600281106139f757600080fd5b809150509250929050565b60008060408385031215613a1557600080fd5b613a1e8361330c565b9150602083013580151581146139f757600080fd5b600080600080600060a08688031215613a4b57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060408385031215613a8157600080fd5b613a8a8361330c565b9150613a986020840161330c565b90509250929050565b600080600080600060a08688031215613ab957600080fd5b613ac28661330c565b9450613ad06020870161330c565b93506040860135925060608601359150608086013567ffffffffffffffff811115613afa57600080fd5b61370188828901613644565b600181811c90821680613b1a57607f821691505b602082108103613b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008351613b6b8184602088016134e9565b835190830190613b7f8183602088016134e9565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561077057610770613bb0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c5257613c52613bb0565b5060010190565b601f821115613c9f57600081815260208120601f850160051c81016020861015613c805750805b601f850160051c820191505b8181101561259e57828155600101613c8c565b505050565b815167ffffffffffffffff811115613cbe57613cbe6133aa565b613cd281613ccc8454613b06565b84613c59565b602080601f831160018114613d255760008415613cef5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561259e565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015613d7257888601518255948401946001909101908401613d53565b5085821015613dae57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613dfc57613dfc613dbe565b500490565b8181038181111561077057610770613bb0565b600082613e2357613e23613dbe565b500690565b604081526000613e3b6040830185613867565b8281036020840152613e4d8185613867565b95945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a06040830152613e8f60a0830186613867565b8281036060840152613ea18186613867565b90508281036080840152613eb5818561350d565b98975050505050505050565b600060208284031215613ed357600080fd5b81516133058161335f565b600060033d1115613ef75760046000803e5060005160e01c5b90565b600060443d1015613f085790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613f5657505050505090565b8285019150815181811115613f6e5750505050505090565b843d8701016020828501011115613f885750505050505090565b613f97602082860101876133d9565b509095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152613fe760a083018461350d565b97965050505050505056fea2646970667358221220a6bc2fd756aa7017345c8b0bf1695d6737930258360b46a0e3a587585ce8cdab64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c50617374656c20416c7068610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000250410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962786136786d6777676d6c6834673232626f346b67637572343679376e74667a64626f69726c346b666265613672766b736666752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Pastel Alpha
Arg [1] : _symbol (string): PA
Arg [2] : baseUri (string): ipfs://bafybeibxa6xmgwgmlh4g22bo4kgcur46y7ntfzdboirl4kfbea6rvksffu/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 50617374656c20416c7068610000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5041000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261667962656962786136786d6777676d6c6834673232626f
Arg [9] : 346b67637572343679376e74667a64626f69726c346b666265613672766b7366
Arg [10] : 66752f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.