Overview
TokenID
324
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RAYC
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
/* Website: https://restlessapeyachtclub.com Twitter: https://twitter.com/RestlessApeYC */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "Ownable.sol"; import "ECDSA.sol"; import "ERC721A.sol"; interface INft is IERC721A { error InvalidEtherAmount(); error InvalidNewPrice(); error InvalidSaleState(); error NonEOA(); error InvalidTokenCap(); error InvalidSignature(); error SupplyExceeded(); error TokenClaimed(); error WalletLimitExceeded(); error WithdrawFailedArtist(); error WithdrawFailedDev(); error WithdrawFailedFounder(); error WithdrawFailedVault(); } interface Callee { function balanceOf(address owner) external view returns (uint256 balance); } contract RAYC is INft, Ownable, ERC721A { using ECDSA for bytes32; enum SaleStates { CLOSED, PUBLIC } SaleStates public saleState; uint256 public maxSupply = 10000; uint256 public price = 0.025 ether; uint64 public WALLET_MAX = 100; string private _baseTokenURI; string private baseExtension = ".json"; bool public revealed = true; event Minted(address indexed receiver, uint256 quantity); event SaleStateChanged(SaleStates saleState); constructor(address receiver) ERC721A("RestlessApeYachtClub", "RAYC") { } /// @notice Function used during the public mint /// @param quantity Amount to mint. /// @dev checkState to check sale state. function Mint(uint64 quantity) external payable checkState(SaleStates.PUBLIC) { if (msg.value < quantity * price) revert InvalidEtherAmount(); if ((_numberMinted(msg.sender) - _getAux(msg.sender)) + quantity > WALLET_MAX) revert WalletLimitExceeded(); if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded(); (bool success, ) = owner().call{value: msg.value}(""); require(success, "WITHDRAW FAILED!"); _mint(msg.sender, quantity); emit Minted(msg.sender, quantity); } /// @notice Function used during the public mint /// @param quantity Amount to mint. /// @dev checkState to check sale state. function batchMint(uint64 quantity) external payable checkState(SaleStates.PUBLIC) { if (msg.value < quantity * price) revert InvalidEtherAmount(); if ((_numberMinted(msg.sender) - _getAux(msg.sender)) + quantity > WALLET_MAX) revert WalletLimitExceeded(); if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded(); (bool success, ) = owner().call{value: msg.value}(""); require(success, "WITHDRAW FAILED!"); _batchmint(msg.sender, quantity); emit Minted(msg.sender, quantity); } /// @notice Function used to mint free tokens to any address. /// @param receiver address to mint to. /// @param quantity number to mint. function Airdrop(address receiver, uint256 quantity) external onlyOwner { if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded(); _mint(receiver, quantity); } /// @notice Function used to batchmint free tokens to any address. /// @param receiver address to batchmint to. /// @param quantity number to batchmint. function Batchdrop(address receiver, uint256 quantity) external onlyOwner { if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded(); _batchmint(receiver, quantity); } /// @notice Fail-safe withdraw function, incase withdraw() causes any issue. /// @param receiver address to withdraw to. function withdrawTo(address receiver) public onlyOwner { (bool withdrawalSuccess, ) = payable(receiver).call{value: address(this).balance}(""); if (!withdrawalSuccess) revert WithdrawFailedVault(); } /// @notice Function used to set a new `WALLET_MAX` value. /// @param newMaxWallet Newly intended `WALLET_MAX` value. function setMaxWallet(uint64 newMaxWallet) external onlyOwner { WALLET_MAX = newMaxWallet; } /// @notice Function used to change mint public price. /// @param newPublicPrice Newly intended `publicPrice` value. /// @dev Price can never exceed the initially set mint public price (0.069E), and can never be increased over it's current value. function changePrice(uint256 newPublicPrice) external onlyOwner { price = newPublicPrice; } /// @notice Function used to check the number of tokens `account` has minted. /// @param account Account to check balance for. function balance(address account) external view returns (uint256) { return _numberMinted(account); } /// @notice Function used to view the current `_baseTokenURI` value. function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /// @notice Sets base token metadata URI. /// @param baseURI New base token URI. function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } /// @notice Function used to change the current `saleState` value. /// @param newSaleState The new `saleState` value. /// @dev 0 = CLOSED, 1 = PUBLIC function setSaleState(uint256 newSaleState) external onlyOwner { if (newSaleState > uint256(SaleStates.PUBLIC)) revert InvalidSaleState(); saleState = SaleStates(newSaleState); emit SaleStateChanged(saleState); } /// @notice Verifies the current state. /// @param saleState_ Sale state to verify. modifier checkState(SaleStates saleState_) { if (msg.sender != tx.origin) revert NonEOA(); if (saleState != saleState_) revert InvalidSaleState(); _; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view override(ERC721A, IERC721A) returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId),baseExtension)) : ''; } }
// 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 (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_batchmint}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_batchmint} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_BATCH_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * */ function _batchmint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_BATCH_QUANTITY_LIMIT) revert MintERCBATCHQuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with BATCH exceeds the safety limit. */ error MintERCBATCHQuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "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); } }
// 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidEtherAmount","type":"error"},{"inputs":[],"name":"InvalidNewPrice","type":"error"},{"inputs":[],"name":"InvalidSaleState","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidTokenCap","type":"error"},{"inputs":[],"name":"MintERCBATCHQuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NonEOA","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SupplyExceeded","type":"error"},{"inputs":[],"name":"TokenClaimed","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WalletLimitExceeded","type":"error"},{"inputs":[],"name":"WithdrawFailedArtist","type":"error"},{"inputs":[],"name":"WithdrawFailedDev","type":"error"},{"inputs":[],"name":"WithdrawFailedFounder","type":"error"},{"inputs":[],"name":"WithdrawFailedVault","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","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":false,"internalType":"enum RAYC.SaleStates","name":"saleState","type":"uint8"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Batchdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WALLET_MAX","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum RAYC.SaleStates","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"newMaxWallet","type":"uint64"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSaleState","type":"uint256"}],"name":"setSaleState","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600a556658d15e17628000600b556064600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000859190620004f2565b506001600f60006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b5060405162003c3f38038062003c3f8339818101604052810190620000d4919062000643565b6040518060400160405280601481526020017f526573746c6573734170655961636874436c75620000000000000000000000008152506040518060400160405280600481526020017f52415943000000000000000000000000000000000000000000000000000000008152506200016062000154620001a360201b60201c565b620001ab60201b60201c565b8160039081620001719190620004f2565b508060049081620001839190620004f2565b50620001946200026f60201b60201c565b60018190555050505062000675565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fa57607f821691505b60208210810362000310576200030f620002b2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033b565b6200038686836200033b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d3620003cd620003c7846200039e565b620003a8565b6200039e565b9050919050565b6000819050919050565b620003ef83620003b2565b62000407620003fe82620003da565b84845462000348565b825550505050565b600090565b6200041e6200040f565b6200042b818484620003e4565b505050565b5b8181101562000453576200044760008262000414565b60018101905062000431565b5050565b601f821115620004a2576200046c8162000316565b62000477846200032b565b8101602085101562000487578190505b6200049f62000496856200032b565b83018262000430565b50505b505050565b600082821c905092915050565b6000620004c760001984600802620004a7565b1980831691505092915050565b6000620004e28383620004b4565b9150826002028217905092915050565b620004fd8262000278565b67ffffffffffffffff81111562000519576200051862000283565b5b620005258254620002e1565b6200053282828562000457565b600060209050601f8311600181146200056a576000841562000555578287015190505b620005618582620004d4565b865550620005d1565b601f1984166200057a8662000316565b60005b82811015620005a4578489015182556001820191506020850194506020810190506200057d565b86831015620005c45784890151620005c0601f891682620004b4565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060b82620005de565b9050919050565b6200061d81620005fe565b81146200062957600080fd5b50565b6000815190506200063d8162000612565b92915050565b6000602082840312156200065c576200065b620005d9565b5b60006200066c848285016200062c565b91505092915050565b6135ba80620006856000396000f3fe6080604052600436106101e35760003560e01c806372b0d90c11610102578063b07dd1cf11610095578063e3d670d711610064578063e3d670d7146106ae578063e985e9c5146106eb578063ec1dd62214610728578063f2fde38b14610751576101e3565b8063b07dd1cf14610601578063b88d4fde1461061d578063c87b56dd14610646578063d5abeb0114610683576101e3565b806395d89b41116100d157806395d89b4114610559578063a035b1fe14610584578063a22cb465146105af578063a2b40d19146105d8576101e3565b806372b0d90c146104b35780638c32c568146104dc5780638da5cb5b146105055780638f30f56414610530576101e3565b8063518302271161017a5780636352211e116101495780636352211e146103f75780636fc1cdf71461043457806370a082311461045f578063715018a61461049c576101e3565b8063518302271461035c57806355f804b314610387578063603f4d52146103b05780636164877a146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a57806342842e0e14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063084c40881461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906126d1565b61077a565b60405161021c9190612719565b60405180910390f35b34801561023157600080fd5b5061023a61080c565b60405161024791906127c4565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061281c565b61089e565b604051610284919061288a565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061281c565b61091d565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906128d1565b6109f6565b005b3480156102eb57600080fd5b506102f4610b3a565b6040516103019190612920565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c919061293b565b610b51565b005b34801561033f57600080fd5b5061035a6004803603810190610355919061293b565b610e73565b005b34801561036857600080fd5b50610371610e93565b60405161037e9190612719565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906129f3565b610ea6565b005b3480156103bc57600080fd5b506103c5610ec4565b6040516103d29190612ab7565b60405180910390f35b6103f560048036038101906103f09190612b12565b610ed7565b005b34801561040357600080fd5b5061041e6004803603810190610419919061281c565b611201565b60405161042b919061288a565b60405180910390f35b34801561044057600080fd5b50610449611213565b6040516104569190612b4e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612b69565b61122d565b6040516104939190612920565b60405180910390f35b3480156104a857600080fd5b506104b16112e5565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612b69565b6112f9565b005b3480156104e857600080fd5b5061050360048036038101906104fe91906128d1565b6113a8565b005b34801561051157600080fd5b5061051a61140c565b604051610527919061288a565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906128d1565b611435565b005b34801561056557600080fd5b5061056e611499565b60405161057b91906127c4565b60405180910390f35b34801561059057600080fd5b5061059961152b565b6040516105a69190612920565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612bc2565b611531565b005b3480156105e457600080fd5b506105ff60048036038101906105fa919061281c565b6116a8565b005b61061b60048036038101906106169190612b12565b6116ba565b005b34801561062957600080fd5b50610644600480360381019061063f9190612d32565b6119e4565b005b34801561065257600080fd5b5061066d6004803603810190610668919061281c565b611a57565b60405161067a91906127c4565b60405180910390f35b34801561068f57600080fd5b50610698611af8565b6040516106a59190612920565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190612b69565b611afe565b6040516106e29190612920565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612db5565b611b10565b60405161071f9190612719565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190612b12565b611ba4565b005b34801561075d57600080fd5b5061077860048036038101906107739190612b69565b611bd8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108055750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081b90612e24565b80601f016020809104026020016040519081016040528092919081815260200182805461084790612e24565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b5050505050905090565b60006108a982611c5b565b6108df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610925611cba565b60018081111561093857610937612a40565b5b811115610971576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181111561098457610983612a40565b5b600960006101000a81548160ff021916908360018111156109a8576109a7612a40565b5b02179055507f92a17b827ee9d42ea9454bb4ca941a1800870e6d01c0842d09ba23ccc0190ee1600960009054906101000a900460ff166040516109eb9190612ab7565b60405180910390a150565b6000610a0182611201565b90508073ffffffffffffffffffffffffffffffffffffffff16610a22611d38565b73ffffffffffffffffffffffffffffffffffffffff1614610a8557610a4e81610a49611d38565b611b10565b610a84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b44611d40565b6002546001540303905090565b6000610b5c82611d49565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bcf84611e15565b91509150610be58187610be0611d38565b611e3c565b610c3157610bfa86610bf5611d38565b611b10565b610c30576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c97576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca48686866001611e80565b8015610caf57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d7d85610d59888887611e86565b7c020000000000000000000000000000000000000000000000000000000017611eae565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e035760006001850190506000600560008381526020019081526020016000205403610e01576001548114610e00578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e6b8686866001611ed9565b505050505050565b610e8e838383604051806020016040528060008152506119e4565b505050565b600f60009054906101000a900460ff1681565b610eae611cba565b8181600d9182610ebf92919061300c565b505050565b600960009054906101000a900460ff1681565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001811115610f5157610f50612a40565b5b600960009054906101000a900460ff166001811115610f7357610f72612a40565b5b14610faa576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff16610fc2919061310b565b341015610ffb576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661103033611edf565b67ffffffffffffffff1661104333611f2c565b61104d919061314d565b6110579190613181565b111561108f576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff166110a5611f83565b6110af9190613181565b11156110e7576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110f161140c565b73ffffffffffffffffffffffffffffffffffffffff1634604051611114906131e6565b60006040518083038185875af1925050503d8060008114611151576040519150601f19603f3d011682016040523d82523d6000602084013e611156565b606091505b505090508061119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613247565b60405180910390fd5b6111ae338467ffffffffffffffff16611f96565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe846040516111f49190613298565b60405180910390a2505050565b600061120c82611d49565b9050919050565b600c60009054906101000a900467ffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611294576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112ed611cba565b6112f7600061219b565b565b611301611cba565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611327906131e6565b60006040518083038185875af1925050503d8060008114611364576040519150601f19603f3d011682016040523d82523d6000602084013e611369565b606091505b50509050806113a4576040517fdaebfe7000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6113b0611cba565b600a54816113bc611f83565b6113c69190613181565b11156113fe576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611408828261225f565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61143d611cba565b600a5481611449611f83565b6114539190613181565b111561148b576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114958282611f96565b5050565b6060600480546114a890612e24565b80601f01602080910402602001604051908101604052809291908181526020018280546114d490612e24565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b600b5481565b611539611d38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006115aa611d38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611657611d38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169c9190612719565b60405180910390a35050565b6116b0611cba565b80600b8190555050565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611721576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181111561173457611733612a40565b5b600960009054906101000a900460ff16600181111561175657611755612a40565b5b1461178d576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff166117a5919061310b565b3410156117de576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661181333611edf565b67ffffffffffffffff1661182633611f2c565b611830919061314d565b61183a9190613181565b1115611872576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff16611888611f83565b6118929190613181565b11156118ca576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118d461140c565b73ffffffffffffffffffffffffffffffffffffffff16346040516118f7906131e6565b60006040518083038185875af1925050503d8060008114611934576040519150601f19603f3d011682016040523d82523d6000602084013e611939565b606091505b505090508061197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613247565b60405180910390fd5b611991338467ffffffffffffffff1661225f565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe846040516119d79190613298565b60405180910390a2505050565b6119ef848484610b51565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5157611a1a8484848461241b565b611a50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611a6282611c5b565b611a98576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611aa261256b565b90506000815103611ac25760405180602001604052806000815250611af0565b80611acc846125fd565b600e604051602001611ae093929190613372565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b0982611f2c565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bac611cba565b80600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b611be0611cba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613415565b60405180910390fd5b611c588161219b565b50565b600081611c66611d40565b11158015611c75575060015482105b8015611cb3575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b611cc2612644565b73ffffffffffffffffffffffffffffffffffffffff16611ce061140c565b73ffffffffffffffffffffffffffffffffffffffff1614611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d90613481565b60405180910390fd5b565b600033905090565b60006001905090565b60008082905080611d58611d40565b11611dde57600154811015611ddd5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ddb575b60008103611dd1576005600083600190039350838152602001908152602001600020549050611da7565b8092505050611e10565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9d86868461264c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611f8d611d40565b60015403905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612003576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361203d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611388821115612079576040517fb1f9a41c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120866000848385611e80565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fd836120ee6000866000611e86565b6120f785612655565b17611eae565b60056000838152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff16827fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d6001868601036040516121789190612920565b60405180910390a48181016001819055506121966000848385611ed9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001549050600082036122a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ad6000848385611e80565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612324836123156000866000611e86565b61231e85612655565b17611eae565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238a565b5060008203612400576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506124166000848385611ed9565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612441611d38565b8786866040518563ffffffff1660e01b815260040161246394939291906134f6565b6020604051808303816000875af192505050801561249f57506040513d601f19601f8201168201806040525081019061249c9190613557565b60015b612518573d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b506000815103612510576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461257a90612e24565b80601f01602080910402602001604051908101604052809291908181526020018280546125a690612e24565b80156125f35780601f106125c8576101008083540402835291602001916125f3565b820191906000526020600020905b8154815290600101906020018083116125d657829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561263057600183039250600a81066030018353600a810490508061260e575b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126ae81612679565b81146126b957600080fd5b50565b6000813590506126cb816126a5565b92915050565b6000602082840312156126e7576126e661266f565b5b60006126f5848285016126bc565b91505092915050565b60008115159050919050565b612713816126fe565b82525050565b600060208201905061272e600083018461270a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561276e578082015181840152602081019050612753565b60008484015250505050565b6000601f19601f8301169050919050565b600061279682612734565b6127a0818561273f565b93506127b0818560208601612750565b6127b98161277a565b840191505092915050565b600060208201905081810360008301526127de818461278b565b905092915050565b6000819050919050565b6127f9816127e6565b811461280457600080fd5b50565b600081359050612816816127f0565b92915050565b6000602082840312156128325761283161266f565b5b600061284084828501612807565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287482612849565b9050919050565b61288481612869565b82525050565b600060208201905061289f600083018461287b565b92915050565b6128ae81612869565b81146128b957600080fd5b50565b6000813590506128cb816128a5565b92915050565b600080604083850312156128e8576128e761266f565b5b60006128f6858286016128bc565b925050602061290785828601612807565b9150509250929050565b61291a816127e6565b82525050565b60006020820190506129356000830184612911565b92915050565b6000806000606084860312156129545761295361266f565b5b6000612962868287016128bc565b9350506020612973868287016128bc565b925050604061298486828701612807565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129b3576129b261298e565b5b8235905067ffffffffffffffff8111156129d0576129cf612993565b5b6020830191508360018202830111156129ec576129eb612998565b5b9250929050565b60008060208385031215612a0a57612a0961266f565b5b600083013567ffffffffffffffff811115612a2857612a27612674565b5b612a348582860161299d565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612a8057612a7f612a40565b5b50565b6000819050612a9182612a6f565b919050565b6000612aa182612a83565b9050919050565b612ab181612a96565b82525050565b6000602082019050612acc6000830184612aa8565b92915050565b600067ffffffffffffffff82169050919050565b612aef81612ad2565b8114612afa57600080fd5b50565b600081359050612b0c81612ae6565b92915050565b600060208284031215612b2857612b2761266f565b5b6000612b3684828501612afd565b91505092915050565b612b4881612ad2565b82525050565b6000602082019050612b636000830184612b3f565b92915050565b600060208284031215612b7f57612b7e61266f565b5b6000612b8d848285016128bc565b91505092915050565b612b9f816126fe565b8114612baa57600080fd5b50565b600081359050612bbc81612b96565b92915050565b60008060408385031215612bd957612bd861266f565b5b6000612be7858286016128bc565b9250506020612bf885828601612bad565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3f8261277a565b810181811067ffffffffffffffff82111715612c5e57612c5d612c07565b5b80604052505050565b6000612c71612665565b9050612c7d8282612c36565b919050565b600067ffffffffffffffff821115612c9d57612c9c612c07565b5b612ca68261277a565b9050602081019050919050565b82818337600083830152505050565b6000612cd5612cd084612c82565b612c67565b905082815260208101848484011115612cf157612cf0612c02565b5b612cfc848285612cb3565b509392505050565b600082601f830112612d1957612d1861298e565b5b8135612d29848260208601612cc2565b91505092915050565b60008060008060808587031215612d4c57612d4b61266f565b5b6000612d5a878288016128bc565b9450506020612d6b878288016128bc565b9350506040612d7c87828801612807565b925050606085013567ffffffffffffffff811115612d9d57612d9c612674565b5b612da987828801612d04565b91505092959194509250565b60008060408385031215612dcc57612dcb61266f565b5b6000612dda858286016128bc565b9250506020612deb858286016128bc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3c57607f821691505b602082108103612e4f57612e4e612df5565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ec27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e85565b612ecc8683612e85565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612f09612f04612eff846127e6565b612ee4565b6127e6565b9050919050565b6000819050919050565b612f2383612eee565b612f37612f2f82612f10565b848454612e92565b825550505050565b600090565b612f4c612f3f565b612f57818484612f1a565b505050565b5b81811015612f7b57612f70600082612f44565b600181019050612f5d565b5050565b601f821115612fc057612f9181612e60565b612f9a84612e75565b81016020851015612fa9578190505b612fbd612fb585612e75565b830182612f5c565b50505b505050565b600082821c905092915050565b6000612fe360001984600802612fc5565b1980831691505092915050565b6000612ffc8383612fd2565b9150826002028217905092915050565b6130168383612e55565b67ffffffffffffffff81111561302f5761302e612c07565b5b6130398254612e24565b613044828285612f7f565b6000601f8311600181146130735760008415613061578287013590505b61306b8582612ff0565b8655506130d3565b601f19841661308186612e60565b60005b828110156130a957848901358255600182019150602085019450602081019050613084565b868310156130c657848901356130c2601f891682612fd2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613116826127e6565b9150613121836127e6565b925082820261312f816127e6565b91508282048414831517613146576131456130dc565b5b5092915050565b6000613158826127e6565b9150613163836127e6565b925082820390508181111561317b5761317a6130dc565b5b92915050565b600061318c826127e6565b9150613197836127e6565b92508282019050808211156131af576131ae6130dc565b5b92915050565b600081905092915050565b50565b60006131d06000836131b5565b91506131db826131c0565b600082019050919050565b60006131f1826131c3565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b600061323160108361273f565b915061323c826131fb565b602082019050919050565b6000602082019050818103600083015261326081613224565b9050919050565b600061328261327d61327884612ad2565b612ee4565b6127e6565b9050919050565b61329281613267565b82525050565b60006020820190506132ad6000830184613289565b92915050565b600081905092915050565b60006132c982612734565b6132d381856132b3565b93506132e3818560208601612750565b80840191505092915050565b600081546132fc81612e24565b61330681866132b3565b94506001821660008114613321576001811461333657613369565b60ff1983168652811515820286019350613369565b61333f85612e60565b60005b8381101561336157815481890152600182019150602081019050613342565b838801955050505b50505092915050565b600061337e82866132be565b915061338a82856132be565b915061339682846132ef565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ff60268361273f565b915061340a826133a3565b604082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061346b60208361273f565b915061347682613435565b602082019050919050565b6000602082019050818103600083015261349a8161345e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134c8826134a1565b6134d281856134ac565b93506134e2818560208601612750565b6134eb8161277a565b840191505092915050565b600060808201905061350b600083018761287b565b613518602083018661287b565b6135256040830185612911565b818103606083015261353781846134bd565b905095945050505050565b600081519050613551816126a5565b92915050565b60006020828403121561356d5761356c61266f565b5b600061357b84828501613542565b9150509291505056fea26469706673582212202865d75290a7365c7eeb892d2f0d7e042a0dd25af551708845d07feb19fd001764736f6c634300081100330000000000000000000000000f520c353e395de66cc70c8d6a6713813db23a8f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806372b0d90c11610102578063b07dd1cf11610095578063e3d670d711610064578063e3d670d7146106ae578063e985e9c5146106eb578063ec1dd62214610728578063f2fde38b14610751576101e3565b8063b07dd1cf14610601578063b88d4fde1461061d578063c87b56dd14610646578063d5abeb0114610683576101e3565b806395d89b41116100d157806395d89b4114610559578063a035b1fe14610584578063a22cb465146105af578063a2b40d19146105d8576101e3565b806372b0d90c146104b35780638c32c568146104dc5780638da5cb5b146105055780638f30f56414610530576101e3565b8063518302271161017a5780636352211e116101495780636352211e146103f75780636fc1cdf71461043457806370a082311461045f578063715018a61461049c576101e3565b8063518302271461035c57806355f804b314610387578063603f4d52146103b05780636164877a146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a57806342842e0e14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063084c40881461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906126d1565b61077a565b60405161021c9190612719565b60405180910390f35b34801561023157600080fd5b5061023a61080c565b60405161024791906127c4565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061281c565b61089e565b604051610284919061288a565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061281c565b61091d565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906128d1565b6109f6565b005b3480156102eb57600080fd5b506102f4610b3a565b6040516103019190612920565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c919061293b565b610b51565b005b34801561033f57600080fd5b5061035a6004803603810190610355919061293b565b610e73565b005b34801561036857600080fd5b50610371610e93565b60405161037e9190612719565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906129f3565b610ea6565b005b3480156103bc57600080fd5b506103c5610ec4565b6040516103d29190612ab7565b60405180910390f35b6103f560048036038101906103f09190612b12565b610ed7565b005b34801561040357600080fd5b5061041e6004803603810190610419919061281c565b611201565b60405161042b919061288a565b60405180910390f35b34801561044057600080fd5b50610449611213565b6040516104569190612b4e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612b69565b61122d565b6040516104939190612920565b60405180910390f35b3480156104a857600080fd5b506104b16112e5565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612b69565b6112f9565b005b3480156104e857600080fd5b5061050360048036038101906104fe91906128d1565b6113a8565b005b34801561051157600080fd5b5061051a61140c565b604051610527919061288a565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906128d1565b611435565b005b34801561056557600080fd5b5061056e611499565b60405161057b91906127c4565b60405180910390f35b34801561059057600080fd5b5061059961152b565b6040516105a69190612920565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612bc2565b611531565b005b3480156105e457600080fd5b506105ff60048036038101906105fa919061281c565b6116a8565b005b61061b60048036038101906106169190612b12565b6116ba565b005b34801561062957600080fd5b50610644600480360381019061063f9190612d32565b6119e4565b005b34801561065257600080fd5b5061066d6004803603810190610668919061281c565b611a57565b60405161067a91906127c4565b60405180910390f35b34801561068f57600080fd5b50610698611af8565b6040516106a59190612920565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190612b69565b611afe565b6040516106e29190612920565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612db5565b611b10565b60405161071f9190612719565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190612b12565b611ba4565b005b34801561075d57600080fd5b5061077860048036038101906107739190612b69565b611bd8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108055750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081b90612e24565b80601f016020809104026020016040519081016040528092919081815260200182805461084790612e24565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b5050505050905090565b60006108a982611c5b565b6108df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610925611cba565b60018081111561093857610937612a40565b5b811115610971576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181111561098457610983612a40565b5b600960006101000a81548160ff021916908360018111156109a8576109a7612a40565b5b02179055507f92a17b827ee9d42ea9454bb4ca941a1800870e6d01c0842d09ba23ccc0190ee1600960009054906101000a900460ff166040516109eb9190612ab7565b60405180910390a150565b6000610a0182611201565b90508073ffffffffffffffffffffffffffffffffffffffff16610a22611d38565b73ffffffffffffffffffffffffffffffffffffffff1614610a8557610a4e81610a49611d38565b611b10565b610a84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b44611d40565b6002546001540303905090565b6000610b5c82611d49565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bcf84611e15565b91509150610be58187610be0611d38565b611e3c565b610c3157610bfa86610bf5611d38565b611b10565b610c30576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c97576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca48686866001611e80565b8015610caf57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d7d85610d59888887611e86565b7c020000000000000000000000000000000000000000000000000000000017611eae565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e035760006001850190506000600560008381526020019081526020016000205403610e01576001548114610e00578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e6b8686866001611ed9565b505050505050565b610e8e838383604051806020016040528060008152506119e4565b505050565b600f60009054906101000a900460ff1681565b610eae611cba565b8181600d9182610ebf92919061300c565b505050565b600960009054906101000a900460ff1681565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3e576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001811115610f5157610f50612a40565b5b600960009054906101000a900460ff166001811115610f7357610f72612a40565b5b14610faa576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff16610fc2919061310b565b341015610ffb576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661103033611edf565b67ffffffffffffffff1661104333611f2c565b61104d919061314d565b6110579190613181565b111561108f576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff166110a5611f83565b6110af9190613181565b11156110e7576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110f161140c565b73ffffffffffffffffffffffffffffffffffffffff1634604051611114906131e6565b60006040518083038185875af1925050503d8060008114611151576040519150601f19603f3d011682016040523d82523d6000602084013e611156565b606091505b505090508061119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613247565b60405180910390fd5b6111ae338467ffffffffffffffff16611f96565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe846040516111f49190613298565b60405180910390a2505050565b600061120c82611d49565b9050919050565b600c60009054906101000a900467ffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611294576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112ed611cba565b6112f7600061219b565b565b611301611cba565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611327906131e6565b60006040518083038185875af1925050503d8060008114611364576040519150601f19603f3d011682016040523d82523d6000602084013e611369565b606091505b50509050806113a4576040517fdaebfe7000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6113b0611cba565b600a54816113bc611f83565b6113c69190613181565b11156113fe576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611408828261225f565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61143d611cba565b600a5481611449611f83565b6114539190613181565b111561148b576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114958282611f96565b5050565b6060600480546114a890612e24565b80601f01602080910402602001604051908101604052809291908181526020018280546114d490612e24565b80156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b5050505050905090565b600b5481565b611539611d38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006115aa611d38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611657611d38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169c9190612719565b60405180910390a35050565b6116b0611cba565b80600b8190555050565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611721576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181111561173457611733612a40565b5b600960009054906101000a900460ff16600181111561175657611755612a40565b5b1461178d576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff166117a5919061310b565b3410156117de576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661181333611edf565b67ffffffffffffffff1661182633611f2c565b611830919061314d565b61183a9190613181565b1115611872576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff16611888611f83565b6118929190613181565b11156118ca576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118d461140c565b73ffffffffffffffffffffffffffffffffffffffff16346040516118f7906131e6565b60006040518083038185875af1925050503d8060008114611934576040519150601f19603f3d011682016040523d82523d6000602084013e611939565b606091505b505090508061197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613247565b60405180910390fd5b611991338467ffffffffffffffff1661225f565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe846040516119d79190613298565b60405180910390a2505050565b6119ef848484610b51565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5157611a1a8484848461241b565b611a50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611a6282611c5b565b611a98576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611aa261256b565b90506000815103611ac25760405180602001604052806000815250611af0565b80611acc846125fd565b600e604051602001611ae093929190613372565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b0982611f2c565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bac611cba565b80600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b611be0611cba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613415565b60405180910390fd5b611c588161219b565b50565b600081611c66611d40565b11158015611c75575060015482105b8015611cb3575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b611cc2612644565b73ffffffffffffffffffffffffffffffffffffffff16611ce061140c565b73ffffffffffffffffffffffffffffffffffffffff1614611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d90613481565b60405180910390fd5b565b600033905090565b60006001905090565b60008082905080611d58611d40565b11611dde57600154811015611ddd5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ddb575b60008103611dd1576005600083600190039350838152602001908152602001600020549050611da7565b8092505050611e10565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9d86868461264c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611f8d611d40565b60015403905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612003576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361203d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611388821115612079576040517fb1f9a41c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120866000848385611e80565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fd836120ee6000866000611e86565b6120f785612655565b17611eae565b60056000838152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff16827fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d6001868601036040516121789190612920565b60405180910390a48181016001819055506121966000848385611ed9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001549050600082036122a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ad6000848385611e80565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612324836123156000866000611e86565b61231e85612655565b17611eae565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238a565b5060008203612400576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506124166000848385611ed9565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612441611d38565b8786866040518563ffffffff1660e01b815260040161246394939291906134f6565b6020604051808303816000875af192505050801561249f57506040513d601f19601f8201168201806040525081019061249c9190613557565b60015b612518573d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b506000815103612510576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461257a90612e24565b80601f01602080910402602001604051908101604052809291908181526020018280546125a690612e24565b80156125f35780601f106125c8576101008083540402835291602001916125f3565b820191906000526020600020905b8154815290600101906020018083116125d657829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561263057600183039250600a81066030018353600a810490508061260e575b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126ae81612679565b81146126b957600080fd5b50565b6000813590506126cb816126a5565b92915050565b6000602082840312156126e7576126e661266f565b5b60006126f5848285016126bc565b91505092915050565b60008115159050919050565b612713816126fe565b82525050565b600060208201905061272e600083018461270a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561276e578082015181840152602081019050612753565b60008484015250505050565b6000601f19601f8301169050919050565b600061279682612734565b6127a0818561273f565b93506127b0818560208601612750565b6127b98161277a565b840191505092915050565b600060208201905081810360008301526127de818461278b565b905092915050565b6000819050919050565b6127f9816127e6565b811461280457600080fd5b50565b600081359050612816816127f0565b92915050565b6000602082840312156128325761283161266f565b5b600061284084828501612807565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287482612849565b9050919050565b61288481612869565b82525050565b600060208201905061289f600083018461287b565b92915050565b6128ae81612869565b81146128b957600080fd5b50565b6000813590506128cb816128a5565b92915050565b600080604083850312156128e8576128e761266f565b5b60006128f6858286016128bc565b925050602061290785828601612807565b9150509250929050565b61291a816127e6565b82525050565b60006020820190506129356000830184612911565b92915050565b6000806000606084860312156129545761295361266f565b5b6000612962868287016128bc565b9350506020612973868287016128bc565b925050604061298486828701612807565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129b3576129b261298e565b5b8235905067ffffffffffffffff8111156129d0576129cf612993565b5b6020830191508360018202830111156129ec576129eb612998565b5b9250929050565b60008060208385031215612a0a57612a0961266f565b5b600083013567ffffffffffffffff811115612a2857612a27612674565b5b612a348582860161299d565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612a8057612a7f612a40565b5b50565b6000819050612a9182612a6f565b919050565b6000612aa182612a83565b9050919050565b612ab181612a96565b82525050565b6000602082019050612acc6000830184612aa8565b92915050565b600067ffffffffffffffff82169050919050565b612aef81612ad2565b8114612afa57600080fd5b50565b600081359050612b0c81612ae6565b92915050565b600060208284031215612b2857612b2761266f565b5b6000612b3684828501612afd565b91505092915050565b612b4881612ad2565b82525050565b6000602082019050612b636000830184612b3f565b92915050565b600060208284031215612b7f57612b7e61266f565b5b6000612b8d848285016128bc565b91505092915050565b612b9f816126fe565b8114612baa57600080fd5b50565b600081359050612bbc81612b96565b92915050565b60008060408385031215612bd957612bd861266f565b5b6000612be7858286016128bc565b9250506020612bf885828601612bad565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3f8261277a565b810181811067ffffffffffffffff82111715612c5e57612c5d612c07565b5b80604052505050565b6000612c71612665565b9050612c7d8282612c36565b919050565b600067ffffffffffffffff821115612c9d57612c9c612c07565b5b612ca68261277a565b9050602081019050919050565b82818337600083830152505050565b6000612cd5612cd084612c82565b612c67565b905082815260208101848484011115612cf157612cf0612c02565b5b612cfc848285612cb3565b509392505050565b600082601f830112612d1957612d1861298e565b5b8135612d29848260208601612cc2565b91505092915050565b60008060008060808587031215612d4c57612d4b61266f565b5b6000612d5a878288016128bc565b9450506020612d6b878288016128bc565b9350506040612d7c87828801612807565b925050606085013567ffffffffffffffff811115612d9d57612d9c612674565b5b612da987828801612d04565b91505092959194509250565b60008060408385031215612dcc57612dcb61266f565b5b6000612dda858286016128bc565b9250506020612deb858286016128bc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e3c57607f821691505b602082108103612e4f57612e4e612df5565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ec27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e85565b612ecc8683612e85565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612f09612f04612eff846127e6565b612ee4565b6127e6565b9050919050565b6000819050919050565b612f2383612eee565b612f37612f2f82612f10565b848454612e92565b825550505050565b600090565b612f4c612f3f565b612f57818484612f1a565b505050565b5b81811015612f7b57612f70600082612f44565b600181019050612f5d565b5050565b601f821115612fc057612f9181612e60565b612f9a84612e75565b81016020851015612fa9578190505b612fbd612fb585612e75565b830182612f5c565b50505b505050565b600082821c905092915050565b6000612fe360001984600802612fc5565b1980831691505092915050565b6000612ffc8383612fd2565b9150826002028217905092915050565b6130168383612e55565b67ffffffffffffffff81111561302f5761302e612c07565b5b6130398254612e24565b613044828285612f7f565b6000601f8311600181146130735760008415613061578287013590505b61306b8582612ff0565b8655506130d3565b601f19841661308186612e60565b60005b828110156130a957848901358255600182019150602085019450602081019050613084565b868310156130c657848901356130c2601f891682612fd2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613116826127e6565b9150613121836127e6565b925082820261312f816127e6565b91508282048414831517613146576131456130dc565b5b5092915050565b6000613158826127e6565b9150613163836127e6565b925082820390508181111561317b5761317a6130dc565b5b92915050565b600061318c826127e6565b9150613197836127e6565b92508282019050808211156131af576131ae6130dc565b5b92915050565b600081905092915050565b50565b60006131d06000836131b5565b91506131db826131c0565b600082019050919050565b60006131f1826131c3565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b600061323160108361273f565b915061323c826131fb565b602082019050919050565b6000602082019050818103600083015261326081613224565b9050919050565b600061328261327d61327884612ad2565b612ee4565b6127e6565b9050919050565b61329281613267565b82525050565b60006020820190506132ad6000830184613289565b92915050565b600081905092915050565b60006132c982612734565b6132d381856132b3565b93506132e3818560208601612750565b80840191505092915050565b600081546132fc81612e24565b61330681866132b3565b94506001821660008114613321576001811461333657613369565b60ff1983168652811515820286019350613369565b61333f85612e60565b60005b8381101561336157815481890152600182019150602081019050613342565b838801955050505b50505092915050565b600061337e82866132be565b915061338a82856132be565b915061339682846132ef565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ff60268361273f565b915061340a826133a3565b604082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061346b60208361273f565b915061347682613435565b602082019050919050565b6000602082019050818103600083015261349a8161345e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134c8826134a1565b6134d281856134ac565b93506134e2818560208601612750565b6134eb8161277a565b840191505092915050565b600060808201905061350b600083018761287b565b613518602083018661287b565b6135256040830185612911565b818103606083015261353781846134bd565b905095945050505050565b600081519050613551816126a5565b92915050565b60006020828403121561356d5761356c61266f565b5b600061357b84828501613542565b9150509291505056fea26469706673582212202865d75290a7365c7eeb892d2f0d7e042a0dd25af551708845d07feb19fd001764736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000f520c353e395de66cc70c8d6a6713813db23a8f
-----Decoded View---------------
Arg [0] : receiver (address): 0x0F520C353E395De66cc70C8d6a6713813db23a8f
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000f520c353e395de66cc70c8d6a6713813db23a8f
Deployed Bytecode Sourcemap
741:5565:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9106:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9990:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16303:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5324:254:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15763:390:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5845:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19912:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22759:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1110:27:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5051:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;877:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2220:605;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11342:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;990:30:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:230:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1822:101:4;;;;;;;;;;;;;:::i;:::-;;3678:227:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2981:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1192:85:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3346:197:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10159:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;949:34:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16844:303:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4407:103:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1478:596;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23519:388:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5958:346:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;911:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4652:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17297:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4037:104:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2072:198:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9106:630:2;9191:4;9524:10;9509:25;;:11;:25;;;;:101;;;;9600:10;9585:25;;:11;:25;;;;9509:101;:177;;;;9676:10;9661:25;;:11;:25;;;;9509:177;9490:196;;9106:630;;;:::o;9990:98::-;10044:13;10076:5;10069:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990:98;:::o;16303:214::-;16379:7;16403:16;16411:7;16403;:16::i;:::-;16398:64;;16428:34;;;;;;;;;;;;;;16398:64;16480:15;:24;16496:7;16480:24;;;;;;;;;;;:30;;;;;;;;;;;;16473:37;;16303:214;;;:::o;5324:254:5:-;1085:13:4;:11;:13::i;:::-;5424:17:5::1;5416:26:::0;::::1;;;;;;;:::i;:::-;;5401:12;:41;5397:84;;;5463:18;;;;;;;;;;;;;;5397:84;5515:12;5504:24;;;;;;;;:::i;:::-;;5492:9;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;5544:27;5561:9;;;;;;;;;;;5544:27;;;;;;:::i;:::-;;;;;;;;5324:254:::0;:::o;15763:390:2:-;15843:13;15859:16;15867:7;15859;:16::i;:::-;15843:32;;15913:5;15890:28;;:19;:17;:19::i;:::-;:28;;;15886:172;;15937:44;15954:5;15961:19;:17;:19::i;:::-;15937:16;:44::i;:::-;15932:126;;16008:35;;;;;;;;;;;;;;15932:126;15886:172;16101:2;16068:15;:24;16084:7;16068:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16138:7;16134:2;16118:28;;16127:5;16118:28;;;;;;;;;;;;15833:320;15763:390;;:::o;5845:317::-;5906:7;6130:15;:13;:15::i;:::-;6115:12;;6099:13;;:28;:46;6092:53;;5845:317;:::o;19912:2756::-;20041:27;20071;20090:7;20071:18;:27::i;:::-;20041:57;;20154:4;20113:45;;20129:19;20113:45;;;20109:86;;20167:28;;;;;;;;;;;;;;20109:86;20207:27;20236:23;20263:35;20290:7;20263:26;:35::i;:::-;20206:92;;;;20395:68;20420:15;20437:4;20443:19;:17;:19::i;:::-;20395:24;:68::i;:::-;20390:179;;20482:43;20499:4;20505:19;:17;:19::i;:::-;20482:16;:43::i;:::-;20477:92;;20534:35;;;;;;;;;;;;;;20477:92;20390:179;20598:1;20584:16;;:2;:16;;;20580:52;;20609:23;;;;;;;;;;;;;;20580:52;20643:43;20665:4;20671:2;20675:7;20684:1;20643:21;:43::i;:::-;20775:15;20772:157;;;20913:1;20892:19;20885:30;20772:157;21301:18;:24;21320:4;21301:24;;;;;;;;;;;;;;;;21299:26;;;;;;;;;;;;21369:18;:22;21388:2;21369:22;;;;;;;;;;;;;;;;21367:24;;;;;;;;;;;21684:143;21720:2;21768:45;21783:4;21789:2;21793:19;21768:14;:45::i;:::-;2349:8;21740:73;21684:18;:143::i;:::-;21655:17;:26;21673:7;21655:26;;;;;;;;;;;:172;;;;21995:1;2349:8;21944:19;:47;:52;21940:617;;22016:19;22048:1;22038:7;:11;22016:33;;22203:1;22169:17;:30;22187:11;22169:30;;;;;;;;;;;;:35;22165:378;;22305:13;;22290:11;:28;22286:239;;22483:19;22450:17;:30;22468:11;22450:30;;;;;;;;;;;:52;;;;22286:239;22165:378;21998:559;21940:617;22601:7;22597:2;22582:27;;22591:4;22582:27;;;;;;;;;;;;22619:42;22640:4;22646:2;22650:7;22659:1;22619:20;:42::i;:::-;20031:2637;;;19912:2756;;;:::o;22759:179::-;22892:39;22909:4;22915:2;22919:7;22892:39;;;;;;;;;;;;:16;:39::i;:::-;22759:179;;;:::o;1110:27:5:-;;;;;;;;;;;;;:::o;5051:104::-;1085:13:4;:11;:13::i;:::-;5141:7:5::1;;5125:13;:23;;;;;;;:::i;:::-;;5051:104:::0;;:::o;877:27::-;;;;;;;;;;;;;:::o;2220:605::-;2308:17;5749:9;5735:23;;:10;:23;;;5731:44;;5767:8;;;;;;;;;;;;;;5731:44;5802:10;5789:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;5785:54;;5821:18;;;;;;;;;;;;;;5785:54;2368:5:::1;;2357:8;:16;;;;;;:::i;:::-;2345:9;:28;2341:61;;;2382:20;;;;;;;;;;;;;;2341:61;2479:10;;;;;;;;;;;2416:73;;2468:8;2416:60;;2445:19;2453:10;2445:7;:19::i;:::-;2417:47;;:25;2431:10;2417:13;:25::i;:::-;:47;;;;:::i;:::-;2416:60;;;;:::i;:::-;:73;2412:119;;;2510:21;;;;;;;;;;;;;;2412:119;2573:9;;2562:8;2545:25;;:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;2541:66;;;2591:16;;;;;;;;;;;;;;2541:66;2622:12;2640:7;:5;:7::i;:::-;:12;;2660:9;2640:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2621:53;;;2696:7;2688:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2743:32;2754:10;2766:8;2743:32;;:10;:32::i;:::-;2797:10;2790:28;;;2809:8;2790:28;;;;;;:::i;:::-;;;;;;;;2331:494;2220:605:::0;;:::o;11342:150:2:-;11414:7;11456:27;11475:7;11456:18;:27::i;:::-;11433:52;;11342:150;;;:::o;990:30:5:-;;;;;;;;;;;;;:::o;6996:230:2:-;7068:7;7108:1;7091:19;;:5;:19;;;7087:60;;7119:28;;;;;;;;;;;;;;7087:60;1317:13;7164:18;:25;7183:5;7164:25;;;;;;;;;;;;;;;;:55;7157:62;;6996:230;;;:::o;1822:101:4:-;1085:13;:11;:13::i;:::-;1886:30:::1;1913:1;1886:18;:30::i;:::-;1822:101::o:0;3678:227:5:-;1085:13:4;:11;:13::i;:::-;3752:22:5::1;3788:8;3780:22;;3810:21;3780:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3751:85;;;3851:17;3846:52;;3877:21;;;;;;;;;;;;;;3846:52;3733:172;3678:227:::0;:::o;2981:190::-;1085:13:4;:11;:13::i;:::-;3095:9:5::1;;3084:8;3067:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;3063:66;;;3113:16;;;;;;;;;;;;;;3063:66;3139:25;3145:8;3155;3139:5;:25::i;:::-;2981:190:::0;;:::o;1192:85:4:-;1238:7;1264:6;;;;;;;;;;;1257:13;;1192:85;:::o;3346:197:5:-;1085:13:4;:11;:13::i;:::-;3462:9:5::1;;3451:8;3434:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;3430:66;;;3480:16;;;;;;;;;;;;;;3430:66;3506:30;3517:8;3527;3506:10;:30::i;:::-;3346:197:::0;;:::o;10159:102:2:-;10215:13;10247:7;10240:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10159:102;:::o;949:34:5:-;;;;:::o;16844:303:2:-;16954:19;:17;:19::i;:::-;16942:31;;:8;:31;;;16938:61;;16982:17;;;;;;;;;;;;;;16938:61;17062:8;17010:18;:39;17029:19;:17;:19::i;:::-;17010:39;;;;;;;;;;;;;;;:49;17050:8;17010:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17121:8;17085:55;;17100:19;:17;:19::i;:::-;17085:55;;;17131:8;17085:55;;;;;;:::i;:::-;;;;;;;;16844:303;;:::o;4407:103:5:-;1085:13:4;:11;:13::i;:::-;4489:14:5::1;4481:5;:22;;;;4407:103:::0;:::o;1478:596::-;1561:17;5749:9;5735:23;;:10;:23;;;5731:44;;5767:8;;;;;;;;;;;;;;5731:44;5802:10;5789:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;5785:54;;5821:18;;;;;;;;;;;;;;5785:54;1622:5:::1;;1611:8;:16;;;;;;:::i;:::-;1599:9;:28;1595:61;;;1636:20;;;;;;;;;;;;;;1595:61;1733:10;;;;;;;;;;;1670:73;;1722:8;1670:60;;1699:19;1707:10;1699:7;:19::i;:::-;1671:47;;:25;1685:10;1671:13;:25::i;:::-;:47;;;;:::i;:::-;1670:60;;;;:::i;:::-;:73;1666:119;;;1764:21;;;;;;;;;;;;;;1666:119;1827:9;;1816:8;1799:25;;:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;1795:66;;;1845:16;;;;;;;;;;;;;;1795:66;1876:12;1894:7;:5;:7::i;:::-;:12;;1914:9;1894:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1875:53;;;1950:7;1942:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1997:27;2003:10;2015:8;1997:27;;:5;:27::i;:::-;2046:10;2039:28;;;2058:8;2039:28;;;;;;:::i;:::-;;;;;;;;1584:490;1478:596:::0;;:::o;23519:388:2:-;23680:31;23693:4;23699:2;23703:7;23680:12;:31::i;:::-;23743:1;23725:2;:14;;;:19;23721:180;;23763:56;23794:4;23800:2;23804:7;23813:5;23763:30;:56::i;:::-;23758:143;;23846:40;;;;;;;;;;;;;;23758:143;23721:180;23519:388;;;;:::o;5958:346:5:-;6042:13;6072:16;6080:7;6072;:16::i;:::-;6067:59;;6097:29;;;;;;;;;;;;;;6067:59;6140:21;6164:10;:8;:10::i;:::-;6140:34;;6220:1;6201:7;6195:21;:26;:101;;;;;;;;;;;;;;;;;6248:7;6257:18;6267:7;6257:9;:18::i;:::-;6276:13;6231:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6195:101;6188:108;;;5958:346;;;:::o;911:32::-;;;;:::o;4652:112::-;4709:7;4735:22;4749:7;4735:13;:22::i;:::-;4728:29;;4652:112;;;:::o;17297:162:2:-;17394:4;17417:18;:25;17436:5;17417:25;;;;;;;;;;;;;;;:35;17443:8;17417:35;;;;;;;;;;;;;;;;;;;;;;;;;17410:42;;17297:162;;;;:::o;4037:104:5:-;1085:13:4;:11;:13::i;:::-;4122:12:5::1;4109:10;;:25;;;;;;;;;;;;;;;;;;4037:104:::0;:::o;2072:198:4:-;1085:13;:11;:13::i;:::-;2180:1:::1;2160:22;;:8;:22;;::::0;2152:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2235:28;2254:8;2235:18;:28::i;:::-;2072:198:::0;:::o;17708:277:2:-;17773:4;17827:7;17808:15;:13;:15::i;:::-;:26;;:65;;;;;17860:13;;17850:7;:23;17808:65;:151;;;;;17958:1;2075:8;17910:17;:26;17928:7;17910:26;;;;;;;;;;;;:44;:49;17808:151;17789:170;;17708:277;;;:::o;1350:130:4:-;1424:12;:10;:12::i;:::-;1413:23;;:7;:5;:7::i;:::-;:23;;;1405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1350:130::o;38294:103:2:-;38354:7;38380:10;38373:17;;38294:103;:::o;5377:90::-;5433:7;5459:1;5452:8;;5377:90;:::o;12466:1249::-;12533:7;12552:12;12567:7;12552:22;;12632:4;12613:15;:13;:15::i;:::-;:23;12609:1042;;12665:13;;12658:4;:20;12654:997;;;12702:14;12719:17;:23;12737:4;12719:23;;;;;;;;;;;;12702:40;;12834:1;2075:8;12806:6;:24;:29;12802:831;;13461:111;13478:1;13468:6;:11;13461:111;;13520:17;:25;13538:6;;;;;;;13520:25;;;;;;;;;;;;13511:34;;13461:111;;;13604:6;13597:13;;;;;;12802:831;12680:971;12654:997;12609:1042;13677:31;;;;;;;;;;;;;;12466:1249;;;;:::o;18843:468::-;18942:27;18971:23;19010:38;19051:15;:24;19067:7;19051:24;;;;;;;;;;;19010:65;;19219:18;19196:41;;19275:19;19269:26;19250:45;;19182:123;18843:468;;;:::o;18089:646::-;18234:11;18396:16;18389:5;18385:28;18376:37;;18554:16;18543:9;18539:32;18526:45;;18702:15;18691:9;18688:30;18680:5;18669:9;18666:20;18663:56;18653:66;;18089:646;;;;;:::o;24551:154::-;;;;;:::o;37621:304::-;37752:7;37771:16;2470:3;37797:19;:41;;37771:68;;2470:3;37864:31;37875:4;37881:2;37885:9;37864:10;:31::i;:::-;37856:40;;:62;;37849:69;;;37621:304;;;;;:::o;14248:443::-;14328:14;14493:16;14486:5;14482:28;14473:37;;14668:5;14654:11;14629:23;14625:41;14622:52;14615:5;14612:63;14602:73;;14248:443;;;;:::o;25352:153::-;;;;;:::o;7861:135::-;7916:6;1682:3;7948:18;:25;7967:5;7948:25;;;;;;;;;;;;;;;;:40;;7934:55;;7861:135;;;:::o;7303:176::-;7364:7;1317:13;1452:2;7391:18;:25;7410:5;7391:25;;;;;;;;;;;;;;;;:50;;7390:82;7383:89;;7303:176;;;:::o;6255:290::-;6310:7;6513:15;:13;:15::i;:::-;6497:13;;:31;6490:38;;6255:290;:::o;29693:1440::-;29770:20;29793:13;;29770:36;;29834:1;29820:16;;:2;:16;;;29816:48;;29845:19;;;;;;;;;;;;;;29816:48;29890:1;29878:8;:13;29874:44;;29900:18;;;;;;;;;;;;;;29874:44;3093:4;29932:8;:41;29928:88;;;29982:34;;;;;;;;;;;;;;29928:88;30027:61;30057:1;30061:2;30065:12;30079:8;30027:21;:61::i;:::-;30486:1;1452:2;30456:1;:26;;30455:32;30443:8;:45;30417:18;:22;30436:2;30417:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;30758:136;30794:2;30847:33;30870:1;30874:2;30878:1;30847:14;:33::i;:::-;30814:30;30835:8;30814:20;:30::i;:::-;:66;30758:18;:136::i;:::-;30724:17;:31;30742:12;30724:31;;;;;;;;;;;:170;;;;30989:2;30914:78;;30985:1;30914:78;;30934:12;30914:78;30974:1;30963:8;30948:12;:23;:27;30914:78;;;;;;:::i;:::-;;;;;;;;31038:8;31023:12;:23;31007:13;:39;;;;31066:60;31095:1;31099:2;31103:12;31117:8;31066:20;:60::i;:::-;29760:1373;29693:1440;;:::o;2424:187:4:-;2497:16;2516:6;;;;;;;;;;;2497:25;;2541:8;2532:6;;:17;;;;;;;;;;;;;;;;;;2595:8;2564:40;;2585:8;2564:40;;;;;;;;;;;;2487:124;2424:187;:::o;27076:2396:2:-;27148:20;27171:13;;27148:36;;27210:1;27198:8;:13;27194:44;;27220:18;;;;;;;;;;;;;;27194:44;27249:61;27279:1;27283:2;27287:12;27301:8;27249:21;:61::i;:::-;27782:1;1452:2;27752:1;:26;;27751:32;27739:8;:45;27713:18;:22;27732:2;27713:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28054:136;28090:2;28143:33;28166:1;28170:2;28174:1;28143:14;:33::i;:::-;28110:30;28131:8;28110:20;:30::i;:::-;:66;28054:18;:136::i;:::-;28020:17;:31;28038:12;28020:31;;;;;;;;;;;:170;;;;28205:16;28235:11;28264:8;28249:12;:23;28235:37;;28514:16;28510:2;28506:25;28494:37;;28878:12;28839:8;28799:1;28738:25;28680:1;28620;28594:328;28999:1;28985:12;28981:20;28940:339;29039:3;29030:7;29027:16;28940:339;;29253:7;29243:8;29240:1;29213:25;29210:1;29207;29202:59;29091:1;29082:7;29078:15;29067:26;;28940:339;;;28944:75;29322:1;29310:8;:13;29306:45;;29332:19;;;;;;;;;;;;;;29306:45;29382:3;29366:13;:19;;;;27493:1903;;29405:60;29434:1;29438:2;29442:12;29456:8;29405:20;:60::i;:::-;27138:2334;27076:2396;;:::o;25933:697::-;26091:4;26136:2;26111:45;;;26157:19;:17;:19::i;:::-;26178:4;26184:7;26193:5;26111:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26107:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26406:1;26389:6;:13;:18;26385:229;;26434:40;;;;;;;;;;;;;;26385:229;26574:6;26568:13;26559:6;26555:2;26551:15;26544:38;26107:517;26277:54;;;26267:64;;;:6;:64;;;;26260:71;;;25933:697;;;;;;:::o;4844:112:5:-;4904:13;4936;4929:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4844:112;:::o;38494:1548:2:-;38559:17;38978:4;38971;38965:11;38961:22;38954:29;;39068:3;39062:4;39055:17;39171:3;39405:5;39387:419;39413:1;39387:419;;;39452:1;39447:3;39443:11;39436:18;;39620:2;39614:4;39610:13;39606:2;39602:22;39597:3;39589:36;39712:2;39706:4;39702:13;39694:21;;39777:4;39387:419;39767:25;39387:419;39391:21;39843:3;39838;39834:13;39956:4;39951:3;39947:14;39940:21;;40019:6;40014:3;40007:19;38597:1439;;38494:1548;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;37332:143:2:-;37465:6;37332:143;;;;;:::o;14788:318::-;14858:14;15087:1;15077:8;15074:15;15048:24;15044:46;15034:56;;14788:318;;;:::o;7:75:7:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:180::-;7392:77;7389:1;7382:88;7489:4;7486:1;7479:15;7513:4;7510:1;7503:15;7530:120;7618:1;7611:5;7608:12;7598:46;;7624:18;;:::i;:::-;7598:46;7530:120;:::o;7656:141::-;7708:7;7737:5;7726:16;;7743:48;7785:5;7743:48;:::i;:::-;7656:141;;;:::o;7803:::-;7866:9;7899:39;7932:5;7899:39;:::i;:::-;7886:52;;7803:141;;;:::o;7950:157::-;8050:50;8094:5;8050:50;:::i;:::-;8045:3;8038:63;7950:157;;:::o;8113:248::-;8219:4;8257:2;8246:9;8242:18;8234:26;;8270:84;8351:1;8340:9;8336:17;8327:6;8270:84;:::i;:::-;8113:248;;;;:::o;8367:101::-;8403:7;8443:18;8436:5;8432:30;8421:41;;8367:101;;;:::o;8474:120::-;8546:23;8563:5;8546:23;:::i;:::-;8539:5;8536:34;8526:62;;8584:1;8581;8574:12;8526:62;8474:120;:::o;8600:137::-;8645:5;8683:6;8670:20;8661:29;;8699:32;8725:5;8699:32;:::i;:::-;8600:137;;;;:::o;8743:327::-;8801:6;8850:2;8838:9;8829:7;8825:23;8821:32;8818:119;;;8856:79;;:::i;:::-;8818:119;8976:1;9001:52;9045:7;9036:6;9025:9;9021:22;9001:52;:::i;:::-;8991:62;;8947:116;8743:327;;;;:::o;9076:115::-;9161:23;9178:5;9161:23;:::i;:::-;9156:3;9149:36;9076:115;;:::o;9197:218::-;9288:4;9326:2;9315:9;9311:18;9303:26;;9339:69;9405:1;9394:9;9390:17;9381:6;9339:69;:::i;:::-;9197:218;;;;:::o;9421:329::-;9480:6;9529:2;9517:9;9508:7;9504:23;9500:32;9497:119;;;9535:79;;:::i;:::-;9497:119;9655:1;9680:53;9725:7;9716:6;9705:9;9701:22;9680:53;:::i;:::-;9670:63;;9626:117;9421:329;;;;:::o;9756:116::-;9826:21;9841:5;9826:21;:::i;:::-;9819:5;9816:32;9806:60;;9862:1;9859;9852:12;9806:60;9756:116;:::o;9878:133::-;9921:5;9959:6;9946:20;9937:29;;9975:30;9999:5;9975:30;:::i;:::-;9878:133;;;;:::o;10017:468::-;10082:6;10090;10139:2;10127:9;10118:7;10114:23;10110:32;10107:119;;;10145:79;;:::i;:::-;10107:119;10265:1;10290:53;10335:7;10326:6;10315:9;10311:22;10290:53;:::i;:::-;10280:63;;10236:117;10392:2;10418:50;10460:7;10451:6;10440:9;10436:22;10418:50;:::i;:::-;10408:60;;10363:115;10017:468;;;;;:::o;10491:117::-;10600:1;10597;10590:12;10614:180;10662:77;10659:1;10652:88;10759:4;10756:1;10749:15;10783:4;10780:1;10773:15;10800:281;10883:27;10905:4;10883:27;:::i;:::-;10875:6;10871:40;11013:6;11001:10;10998:22;10977:18;10965:10;10962:34;10959:62;10956:88;;;11024:18;;:::i;:::-;10956:88;11064:10;11060:2;11053:22;10843:238;10800:281;;:::o;11087:129::-;11121:6;11148:20;;:::i;:::-;11138:30;;11177:33;11205:4;11197:6;11177:33;:::i;:::-;11087:129;;;:::o;11222:307::-;11283:4;11373:18;11365:6;11362:30;11359:56;;;11395:18;;:::i;:::-;11359:56;11433:29;11455:6;11433:29;:::i;:::-;11425:37;;11517:4;11511;11507:15;11499:23;;11222:307;;;:::o;11535:146::-;11632:6;11627:3;11622;11609:30;11673:1;11664:6;11659:3;11655:16;11648:27;11535:146;;;:::o;11687:423::-;11764:5;11789:65;11805:48;11846:6;11805:48;:::i;:::-;11789:65;:::i;:::-;11780:74;;11877:6;11870:5;11863:21;11915:4;11908:5;11904:16;11953:3;11944:6;11939:3;11935:16;11932:25;11929:112;;;11960:79;;:::i;:::-;11929:112;12050:54;12097:6;12092:3;12087;12050:54;:::i;:::-;11770:340;11687:423;;;;;:::o;12129:338::-;12184:5;12233:3;12226:4;12218:6;12214:17;12210:27;12200:122;;12241:79;;:::i;:::-;12200:122;12358:6;12345:20;12383:78;12457:3;12449:6;12442:4;12434:6;12430:17;12383:78;:::i;:::-;12374:87;;12190:277;12129:338;;;;:::o;12473:943::-;12568:6;12576;12584;12592;12641:3;12629:9;12620:7;12616:23;12612:33;12609:120;;;12648:79;;:::i;:::-;12609:120;12768:1;12793:53;12838:7;12829:6;12818:9;12814:22;12793:53;:::i;:::-;12783:63;;12739:117;12895:2;12921:53;12966:7;12957:6;12946:9;12942:22;12921:53;:::i;:::-;12911:63;;12866:118;13023:2;13049:53;13094:7;13085:6;13074:9;13070:22;13049:53;:::i;:::-;13039:63;;12994:118;13179:2;13168:9;13164:18;13151:32;13210:18;13202:6;13199:30;13196:117;;;13232:79;;:::i;:::-;13196:117;13337:62;13391:7;13382:6;13371:9;13367:22;13337:62;:::i;:::-;13327:72;;13122:287;12473:943;;;;;;;:::o;13422:474::-;13490:6;13498;13547:2;13535:9;13526:7;13522:23;13518:32;13515:119;;;13553:79;;:::i;:::-;13515:119;13673:1;13698:53;13743:7;13734:6;13723:9;13719:22;13698:53;:::i;:::-;13688:63;;13644:117;13800:2;13826:53;13871:7;13862:6;13851:9;13847:22;13826:53;:::i;:::-;13816:63;;13771:118;13422:474;;;;;:::o;13902:180::-;13950:77;13947:1;13940:88;14047:4;14044:1;14037:15;14071:4;14068:1;14061:15;14088:320;14132:6;14169:1;14163:4;14159:12;14149:22;;14216:1;14210:4;14206:12;14237:18;14227:81;;14293:4;14285:6;14281:17;14271:27;;14227:81;14355:2;14347:6;14344:14;14324:18;14321:38;14318:84;;14374:18;;:::i;:::-;14318:84;14139:269;14088:320;;;:::o;14414:97::-;14473:6;14501:3;14491:13;;14414:97;;;;:::o;14517:141::-;14566:4;14589:3;14581:11;;14612:3;14609:1;14602:14;14646:4;14643:1;14633:18;14625:26;;14517:141;;;:::o;14664:93::-;14701:6;14748:2;14743;14736:5;14732:14;14728:23;14718:33;;14664:93;;;:::o;14763:107::-;14807:8;14857:5;14851:4;14847:16;14826:37;;14763:107;;;;:::o;14876:393::-;14945:6;14995:1;14983:10;14979:18;15018:97;15048:66;15037:9;15018:97;:::i;:::-;15136:39;15166:8;15155:9;15136:39;:::i;:::-;15124:51;;15208:4;15204:9;15197:5;15193:21;15184:30;;15257:4;15247:8;15243:19;15236:5;15233:30;15223:40;;14952:317;;14876:393;;;;;:::o;15275:60::-;15303:3;15324:5;15317:12;;15275:60;;;:::o;15341:142::-;15391:9;15424:53;15442:34;15451:24;15469:5;15451:24;:::i;:::-;15442:34;:::i;:::-;15424:53;:::i;:::-;15411:66;;15341:142;;;:::o;15489:75::-;15532:3;15553:5;15546:12;;15489:75;;;:::o;15570:269::-;15680:39;15711:7;15680:39;:::i;:::-;15741:91;15790:41;15814:16;15790:41;:::i;:::-;15782:6;15775:4;15769:11;15741:91;:::i;:::-;15735:4;15728:105;15646:193;15570:269;;;:::o;15845:73::-;15890:3;15845:73;:::o;15924:189::-;16001:32;;:::i;:::-;16042:65;16100:6;16092;16086:4;16042:65;:::i;:::-;15977:136;15924:189;;:::o;16119:186::-;16179:120;16196:3;16189:5;16186:14;16179:120;;;16250:39;16287:1;16280:5;16250:39;:::i;:::-;16223:1;16216:5;16212:13;16203:22;;16179:120;;;16119:186;;:::o;16311:543::-;16412:2;16407:3;16404:11;16401:446;;;16446:38;16478:5;16446:38;:::i;:::-;16530:29;16548:10;16530:29;:::i;:::-;16520:8;16516:44;16713:2;16701:10;16698:18;16695:49;;;16734:8;16719:23;;16695:49;16757:80;16813:22;16831:3;16813:22;:::i;:::-;16803:8;16799:37;16786:11;16757:80;:::i;:::-;16416:431;;16401:446;16311:543;;;:::o;16860:117::-;16914:8;16964:5;16958:4;16954:16;16933:37;;16860:117;;;;:::o;16983:169::-;17027:6;17060:51;17108:1;17104:6;17096:5;17093:1;17089:13;17060:51;:::i;:::-;17056:56;17141:4;17135;17131:15;17121:25;;17034:118;16983:169;;;;:::o;17157:295::-;17233:4;17379:29;17404:3;17398:4;17379:29;:::i;:::-;17371:37;;17441:3;17438:1;17434:11;17428:4;17425:21;17417:29;;17157:295;;;;:::o;17457:1403::-;17581:44;17621:3;17616;17581:44;:::i;:::-;17690:18;17682:6;17679:30;17676:56;;;17712:18;;:::i;:::-;17676:56;17756:38;17788:4;17782:11;17756:38;:::i;:::-;17841:67;17901:6;17893;17887:4;17841:67;:::i;:::-;17935:1;17964:2;17956:6;17953:14;17981:1;17976:632;;;;18652:1;18669:6;18666:84;;;18725:9;18720:3;18716:19;18703:33;18694:42;;18666:84;18776:67;18836:6;18829:5;18776:67;:::i;:::-;18770:4;18763:81;18625:229;17946:908;;17976:632;18028:4;18024:9;18016:6;18012:22;18062:37;18094:4;18062:37;:::i;:::-;18121:1;18135:215;18149:7;18146:1;18143:14;18135:215;;;18235:9;18230:3;18226:19;18213:33;18205:6;18198:49;18286:1;18278:6;18274:14;18264:24;;18333:2;18322:9;18318:18;18305:31;;18172:4;18169:1;18165:12;18160:17;;18135:215;;;18378:6;18369:7;18366:19;18363:186;;;18443:9;18438:3;18434:19;18421:33;18486:48;18528:4;18520:6;18516:17;18505:9;18486:48;:::i;:::-;18478:6;18471:64;18386:163;18363:186;18595:1;18591;18583:6;18579:14;18575:22;18569:4;18562:36;17983:625;;;17946:908;;17556:1304;;;17457:1403;;;:::o;18866:180::-;18914:77;18911:1;18904:88;19011:4;19008:1;19001:15;19035:4;19032:1;19025:15;19052:410;19092:7;19115:20;19133:1;19115:20;:::i;:::-;19110:25;;19149:20;19167:1;19149:20;:::i;:::-;19144:25;;19204:1;19201;19197:9;19226:30;19244:11;19226:30;:::i;:::-;19215:41;;19405:1;19396:7;19392:15;19389:1;19386:22;19366:1;19359:9;19339:83;19316:139;;19435:18;;:::i;:::-;19316:139;19100:362;19052:410;;;;:::o;19468:194::-;19508:4;19528:20;19546:1;19528:20;:::i;:::-;19523:25;;19562:20;19580:1;19562:20;:::i;:::-;19557:25;;19606:1;19603;19599:9;19591:17;;19630:1;19624:4;19621:11;19618:37;;;19635:18;;:::i;:::-;19618:37;19468:194;;;;:::o;19668:191::-;19708:3;19727:20;19745:1;19727:20;:::i;:::-;19722:25;;19761:20;19779:1;19761:20;:::i;:::-;19756:25;;19804:1;19801;19797:9;19790:16;;19825:3;19822:1;19819:10;19816:36;;;19832:18;;:::i;:::-;19816:36;19668:191;;;;:::o;19865:147::-;19966:11;20003:3;19988:18;;19865:147;;;;:::o;20018:114::-;;:::o;20138:398::-;20297:3;20318:83;20399:1;20394:3;20318:83;:::i;:::-;20311:90;;20410:93;20499:3;20410:93;:::i;:::-;20528:1;20523:3;20519:11;20512:18;;20138:398;;;:::o;20542:379::-;20726:3;20748:147;20891:3;20748:147;:::i;:::-;20741:154;;20912:3;20905:10;;20542:379;;;:::o;20927:166::-;21067:18;21063:1;21055:6;21051:14;21044:42;20927:166;:::o;21099:366::-;21241:3;21262:67;21326:2;21321:3;21262:67;:::i;:::-;21255:74;;21338:93;21427:3;21338:93;:::i;:::-;21456:2;21451:3;21447:12;21440:19;;21099:366;;;:::o;21471:419::-;21637:4;21675:2;21664:9;21660:18;21652:26;;21724:9;21718:4;21714:20;21710:1;21699:9;21695:17;21688:47;21752:131;21878:4;21752:131;:::i;:::-;21744:139;;21471:419;;;:::o;21896:140::-;21945:9;21978:52;21996:33;22005:23;22022:5;22005:23;:::i;:::-;21996:33;:::i;:::-;21978:52;:::i;:::-;21965:65;;21896:140;;;:::o;22042:129::-;22128:36;22158:5;22128:36;:::i;:::-;22123:3;22116:49;22042:129;;:::o;22177:220::-;22269:4;22307:2;22296:9;22292:18;22284:26;;22320:70;22387:1;22376:9;22372:17;22363:6;22320:70;:::i;:::-;22177:220;;;;:::o;22403:148::-;22505:11;22542:3;22527:18;;22403:148;;;;:::o;22557:390::-;22663:3;22691:39;22724:5;22691:39;:::i;:::-;22746:89;22828:6;22823:3;22746:89;:::i;:::-;22739:96;;22844:65;22902:6;22897:3;22890:4;22883:5;22879:16;22844:65;:::i;:::-;22934:6;22929:3;22925:16;22918:23;;22667:280;22557:390;;;;:::o;22977:874::-;23080:3;23117:5;23111:12;23146:36;23172:9;23146:36;:::i;:::-;23198:89;23280:6;23275:3;23198:89;:::i;:::-;23191:96;;23318:1;23307:9;23303:17;23334:1;23329:166;;;;23509:1;23504:341;;;;23296:549;;23329:166;23413:4;23409:9;23398;23394:25;23389:3;23382:38;23475:6;23468:14;23461:22;23453:6;23449:35;23444:3;23440:45;23433:52;;23329:166;;23504:341;23571:38;23603:5;23571:38;:::i;:::-;23631:1;23645:154;23659:6;23656:1;23653:13;23645:154;;;23733:7;23727:14;23723:1;23718:3;23714:11;23707:35;23783:1;23774:7;23770:15;23759:26;;23681:4;23678:1;23674:12;23669:17;;23645:154;;;23828:6;23823:3;23819:16;23812:23;;23511:334;;23296:549;;23084:767;;22977:874;;;;:::o;23857:589::-;24082:3;24104:95;24195:3;24186:6;24104:95;:::i;:::-;24097:102;;24216:95;24307:3;24298:6;24216:95;:::i;:::-;24209:102;;24328:92;24416:3;24407:6;24328:92;:::i;:::-;24321:99;;24437:3;24430:10;;23857:589;;;;;;:::o;24452:225::-;24592:34;24588:1;24580:6;24576:14;24569:58;24661:8;24656:2;24648:6;24644:15;24637:33;24452:225;:::o;24683:366::-;24825:3;24846:67;24910:2;24905:3;24846:67;:::i;:::-;24839:74;;24922:93;25011:3;24922:93;:::i;:::-;25040:2;25035:3;25031:12;25024:19;;24683:366;;;:::o;25055:419::-;25221:4;25259:2;25248:9;25244:18;25236:26;;25308:9;25302:4;25298:20;25294:1;25283:9;25279:17;25272:47;25336:131;25462:4;25336:131;:::i;:::-;25328:139;;25055:419;;;:::o;25480:182::-;25620:34;25616:1;25608:6;25604:14;25597:58;25480:182;:::o;25668:366::-;25810:3;25831:67;25895:2;25890:3;25831:67;:::i;:::-;25824:74;;25907:93;25996:3;25907:93;:::i;:::-;26025:2;26020:3;26016:12;26009:19;;25668:366;;;:::o;26040:419::-;26206:4;26244:2;26233:9;26229:18;26221:26;;26293:9;26287:4;26283:20;26279:1;26268:9;26264:17;26257:47;26321:131;26447:4;26321:131;:::i;:::-;26313:139;;26040:419;;;:::o;26465:98::-;26516:6;26550:5;26544:12;26534:22;;26465:98;;;:::o;26569:168::-;26652:11;26686:6;26681:3;26674:19;26726:4;26721:3;26717:14;26702:29;;26569:168;;;;:::o;26743:373::-;26829:3;26857:38;26889:5;26857:38;:::i;:::-;26911:70;26974:6;26969:3;26911:70;:::i;:::-;26904:77;;26990:65;27048:6;27043:3;27036:4;27029:5;27025:16;26990:65;:::i;:::-;27080:29;27102:6;27080:29;:::i;:::-;27075:3;27071:39;27064:46;;26833:283;26743:373;;;;:::o;27122:640::-;27317:4;27355:3;27344:9;27340:19;27332:27;;27369:71;27437:1;27426:9;27422:17;27413:6;27369:71;:::i;:::-;27450:72;27518:2;27507:9;27503:18;27494:6;27450:72;:::i;:::-;27532;27600:2;27589:9;27585:18;27576:6;27532:72;:::i;:::-;27651:9;27645:4;27641:20;27636:2;27625:9;27621:18;27614:48;27679:76;27750:4;27741:6;27679:76;:::i;:::-;27671:84;;27122:640;;;;;;;:::o;27768:141::-;27824:5;27855:6;27849:13;27840:22;;27871:32;27897:5;27871:32;:::i;:::-;27768:141;;;;:::o;27915:349::-;27984:6;28033:2;28021:9;28012:7;28008:23;28004:32;28001:119;;;28039:79;;:::i;:::-;28001:119;28159:1;28184:63;28239:7;28230:6;28219:9;28215:22;28184:63;:::i;:::-;28174:73;;28130:127;27915:349;;;;:::o
Swarm Source
ipfs://2865d75290a7365c7eeb892d2f0d7e042a0dd25af551708845d07feb19fd0017
Loading...
Loading
Loading...
Loading
[ 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.