Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 260 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer From | 18716298 | 337 days ago | IN | 0 ETH | 0.00371251 | ||||
Safe Transfer Fr... | 17819176 | 462 days ago | IN | 0 ETH | 0.00153246 | ||||
Safe Transfer Fr... | 17562811 | 498 days ago | IN | 0 ETH | 0.00110798 | ||||
Transfer From | 16817210 | 603 days ago | IN | 0 ETH | 0.00126797 | ||||
Set Approval For... | 16196008 | 690 days ago | IN | 0 ETH | 0.00059893 | ||||
Safe Transfer Fr... | 16172761 | 693 days ago | IN | 0 ETH | 0.00196439 | ||||
Set Approval For... | 16081691 | 706 days ago | IN | 0 ETH | 0.00057522 | ||||
Set Approval For... | 16040217 | 712 days ago | IN | 0 ETH | 0.00055684 | ||||
Set Approval For... | 16032337 | 713 days ago | IN | 0 ETH | 0.00055239 | ||||
Safe Transfer Fr... | 16024863 | 714 days ago | IN | 0 ETH | 0.00087426 | ||||
Set Approval For... | 16017446 | 715 days ago | IN | 0 ETH | 0.00067057 | ||||
Set Approval For... | 16000886 | 718 days ago | IN | 0 ETH | 0.00057431 | ||||
Set Approval For... | 15996515 | 718 days ago | IN | 0 ETH | 0.00056686 | ||||
Set Approval For... | 15995724 | 718 days ago | IN | 0 ETH | 0.00062869 | ||||
Set Approval For... | 15995697 | 718 days ago | IN | 0 ETH | 0.00057055 | ||||
Mint | 15994310 | 718 days ago | IN | 0 ETH | 0.0003171 | ||||
Mint | 15987603 | 719 days ago | IN | 0 ETH | 0.0006519 | ||||
Mint | 15987586 | 719 days ago | IN | 0 ETH | 0.00037872 | ||||
Mint | 15987572 | 719 days ago | IN | 0 ETH | 0.00071398 | ||||
Mint | 15987533 | 719 days ago | IN | 0 ETH | 0.00041938 | ||||
Mint | 15987525 | 719 days ago | IN | 0 ETH | 0.00048198 | ||||
Mint | 15987513 | 719 days ago | IN | 0 ETH | 0.0004346 | ||||
Mint | 15987496 | 719 days ago | IN | 0 ETH | 0.00038719 | ||||
Mint | 15987481 | 719 days ago | IN | 0 ETH | 0.00062394 | ||||
Toggle Reveal | 15985392 | 720 days ago | IN | 0 ETH | 0.00105703 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BankruptSBFPunks
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; import "DefaultOperatorFilterer.sol"; import "ERC2981.sol"; contract BankruptSBFPunks is ERC721A, Ownable, ERC2981, DefaultOperatorFilterer { using Strings for uint256; string public baseURI; bool public public_mint_status = false; uint256 MAX_SUPPLY = 5000; string public notRevealedUri; bool public revealed = true; uint256 public publicSaleCost = 0 ether; uint256 public max_per_wallet = 4; string public contractURI; constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("Bankrupt SBF Punks", "BSP ") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); contractURI = _contractURI; } function mint(uint256 quantity) public payable { require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); if (msg.sender != owner()) { require(public_mint_status, "public mint is off"); require(balanceOf(msg.sender) + quantity <= max_per_wallet,"Per wallet limit reached"); require(msg.value >= (publicSaleCost * quantity), "Not enough ether sent"); } _safeMint(msg.sender, quantity); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { // Supports the following `interfaceId`s: // - IERC165: 0x01ffc9a7 // - IERC721: 0x80ac58cd // - IERC721Metadata: 0x5b5e139f // - IERC2981: 0x2a55205a return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return notRevealedUri; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ''; } function _baseURI() internal view override returns (string memory) { return baseURI; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator { super.safeTransferFrom(from, to, tokenId, data); } //only owner function toggleReveal() public onlyOwner { if(revealed==false){ revealed = true; }else{ revealed = false; } } function toggle_public_mint_status() public onlyOwner { if(public_mint_status==false){ public_mint_status = true; }else{ public_mint_status = false; } } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function withdraw() public payable onlyOwner { (bool main, ) = payable(owner()).call{value: address(this).balance}(""); require(main); } function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner { publicSaleCost = _publicSaleCost; } function setMax_per_wallet(uint256 _max_per_wallet) public onlyOwner { max_per_wallet = _max_per_wallet; } function setMAX_SUPPLY(uint256 _MAX_SUPPLY) public onlyOwner { MAX_SUPPLY = _MAX_SUPPLY; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner { _setDefaultRoyalty(_receiver, _royaltyFeesInBips); } function setContractURI(string calldata _contractURI) public onlyOwner { contractURI = _contractURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "OperatorFilterer.sol"; contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "IERC2981.sol"; import "ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import 'IERC721.sol'; import 'IERC721Receiver.sol'; import 'IERC721Metadata.sol'; import 'IERC721Enumerable.sol'; import 'Address.sol'; import 'Context.sol'; import 'Strings.sol'; import 'ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 ) external; /** * @dev Transfers `tokenId` token 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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 calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {EnumerableSet} from "EnumerableSet.sol"; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "IOperatorFilterRegistry.sol"; contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator() virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "IOperatorFilterRegistry.sol"; import {Ownable} from "Ownable.sol"; import {EnumerableSet} from "EnumerableSet.sol"; import {OperatorFilterRegistryErrorsAndEvents} from "OperatorFilterRegistryErrorsAndEvents.sol"; /** * @title OperatorFilterRegistry * @notice Borrows heavily from the QQL BlacklistOperatorFilter contract: * https://github.com/qql-art/contracts/blob/main/contracts/BlacklistOperatorFilter.sol * @notice This contracts allows tokens or token owners to register specific addresses or codeHashes that may be * * restricted according to the isOperatorAllowed function. */ contract OperatorFilterRegistry is IOperatorFilterRegistry, OperatorFilterRegistryErrorsAndEvents { using EnumerableSet for EnumerableSet.AddressSet; using EnumerableSet for EnumerableSet.Bytes32Set; /// @dev initialized accounts have a nonzero codehash (see https://eips.ethereum.org/EIPS/eip-1052) /// Note that this will also be a smart contract's codehash when making calls from its constructor. bytes32 constant EOA_CODEHASH = keccak256(""); mapping(address => EnumerableSet.AddressSet) private _filteredOperators; mapping(address => EnumerableSet.Bytes32Set) private _filteredCodeHashes; mapping(address => address) private _registrations; mapping(address => EnumerableSet.AddressSet) private _subscribers; /** * @notice restricts method caller to the address or EIP-173 "owner()" */ modifier onlyAddressOrOwner(address addr) { if (msg.sender != addr) { try Ownable(addr).owner() returns (address owner) { if (msg.sender != owner) { revert OnlyAddressOrOwner(); } } catch (bytes memory reason) { if (reason.length == 0) { revert NotOwnable(); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } _; } /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool) { address registration = _registrations[registrant]; if (registration != address(0)) { EnumerableSet.AddressSet storage filteredOperatorsRef; EnumerableSet.Bytes32Set storage filteredCodeHashesRef; filteredOperatorsRef = _filteredOperators[registration]; filteredCodeHashesRef = _filteredCodeHashes[registration]; if (filteredOperatorsRef.contains(operator)) { revert AddressFiltered(operator); } if (operator.code.length > 0) { bytes32 codeHash = operator.codehash; if (filteredCodeHashesRef.contains(codeHash)) { revert CodeHashFiltered(operator, codeHash); } } } return true; } ////////////////// // AUTH METHODS // ////////////////// /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external onlyAddressOrOwner(registrant) { if (_registrations[registrant] != address(0)) { revert AlreadyRegistered(); } _registrations[registrant] = registrant; emit RegistrationUpdated(registrant, true); } /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address registrant) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { _subscribers[registration].remove(registrant); emit SubscriptionUpdated(registrant, registration, false); } _registrations[registrant] = address(0); emit RegistrationUpdated(registrant, false); } /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration != address(0)) { revert AlreadyRegistered(); } if (registrant == subscription) { revert CannotSubscribeToSelf(); } address subscriptionRegistration = _registrations[subscription]; if (subscriptionRegistration == address(0)) { revert NotRegistered(subscription); } if (subscriptionRegistration != subscription) { revert CannotSubscribeToRegistrantWithSubscription(subscription); } _registrations[registrant] = subscription; _subscribers[subscription].add(registrant); emit RegistrationUpdated(registrant, true); emit SubscriptionUpdated(registrant, subscription, true); } /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) { if (registrantToCopy == registrant) { revert CannotCopyFromSelf(); } address registration = _registrations[registrant]; if (registration != address(0)) { revert AlreadyRegistered(); } address registrantRegistration = _registrations[registrantToCopy]; if (registrantRegistration == address(0)) { revert NotRegistered(registrantToCopy); } _registrations[registrant] = registrant; emit RegistrationUpdated(registrant, true); _copyEntries(registrant, registrantToCopy); } /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant]; if (!filtered) { bool removed = filteredOperatorsRef.remove(operator); if (!removed) { revert AddressNotFiltered(operator); } } else { bool added = filteredOperatorsRef.add(operator); if (!added) { revert AddressAlreadyFiltered(operator); } } emit OperatorUpdated(registrant, operator, filtered); } /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codeHash, bool filtered) external onlyAddressOrOwner(registrant) { if (codeHash == EOA_CODEHASH) { revert CannotFilterEOAs(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant]; if (!filtered) { bool removed = filteredCodeHashesRef.remove(codeHash); if (!removed) { revert CodeHashNotFiltered(codeHash); } } else { bool added = filteredCodeHashesRef.add(codeHash); if (!added) { revert CodeHashAlreadyFiltered(codeHash); } } emit CodeHashUpdated(registrant, codeHash, filtered); } /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant]; uint256 operatorsLength = operators.length; unchecked { if (!filtered) { for (uint256 i = 0; i < operatorsLength; ++i) { address operator = operators[i]; bool removed = filteredOperatorsRef.remove(operator); if (!removed) { revert AddressNotFiltered(operator); } } } else { for (uint256 i = 0; i < operatorsLength; ++i) { address operator = operators[i]; bool added = filteredOperatorsRef.add(operator); if (!added) { revert AddressAlreadyFiltered(operator); } } } } emit OperatorsUpdated(registrant, operators, filtered); } /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant]; uint256 codeHashesLength = codeHashes.length; unchecked { if (!filtered) { for (uint256 i = 0; i < codeHashesLength; ++i) { bytes32 codeHash = codeHashes[i]; bool removed = filteredCodeHashesRef.remove(codeHash); if (!removed) { revert CodeHashNotFiltered(codeHash); } } } else { for (uint256 i = 0; i < codeHashesLength; ++i) { bytes32 codeHash = codeHashes[i]; if (codeHash == EOA_CODEHASH) { revert CannotFilterEOAs(); } bool added = filteredCodeHashesRef.add(codeHash); if (!added) { revert CodeHashAlreadyFiltered(codeHash); } } } } emit CodeHashesUpdated(registrant, codeHashes, filtered); } /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address newSubscription) external onlyAddressOrOwner(registrant) { if (registrant == newSubscription) { revert CannotSubscribeToSelf(); } if (newSubscription == address(0)) { revert CannotSubscribeToZeroAddress(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration == newSubscription) { revert AlreadySubscribed(newSubscription); } address newSubscriptionRegistration = _registrations[newSubscription]; if (newSubscriptionRegistration == address(0)) { revert NotRegistered(newSubscription); } if (newSubscriptionRegistration != newSubscription) { revert CannotSubscribeToRegistrantWithSubscription(newSubscription); } if (registration != registrant) { _subscribers[registration].remove(registrant); emit SubscriptionUpdated(registrant, registration, false); } _registrations[registrant] = newSubscription; _subscribers[newSubscription].add(registrant); emit SubscriptionUpdated(registrant, newSubscription, true); } /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration == registrant) { revert NotSubscribed(); } _subscribers[registration].remove(registrant); _registrations[registrant] = registrant; emit SubscriptionUpdated(registrant, registration, false); if (copyExistingEntries) { _copyEntries(registrant, registration); } } /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) { if (registrant == registrantToCopy) { revert CannotCopyFromSelf(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } address registrantRegistration = _registrations[registrantToCopy]; if (registrantRegistration == address(0)) { revert NotRegistered(registrantToCopy); } _copyEntries(registrant, registrantToCopy); } /// @dev helper to copy entries from registrantToCopy to registrant and emit events function _copyEntries(address registrant, address registrantToCopy) private { EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrantToCopy]; EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrantToCopy]; uint256 filteredOperatorsLength = filteredOperatorsRef.length(); uint256 filteredCodeHashesLength = filteredCodeHashesRef.length(); unchecked { for (uint256 i = 0; i < filteredOperatorsLength; ++i) { address operator = filteredOperatorsRef.at(i); bool added = _filteredOperators[registrant].add(operator); if (added) { emit OperatorUpdated(registrant, operator, true); } } for (uint256 i = 0; i < filteredCodeHashesLength; ++i) { bytes32 codehash = filteredCodeHashesRef.at(i); bool added = _filteredCodeHashes[registrant].add(codehash); if (added) { emit CodeHashUpdated(registrant, codehash, true); } } } } ////////////////// // VIEW METHODS // ////////////////// /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address registrant) external view returns (address subscription) { subscription = _registrations[registrant]; if (subscription == address(0)) { revert NotRegistered(registrant); } else if (subscription == registrant) { subscription = address(0); } } /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external view returns (address[] memory) { return _subscribers[registrant].values(); } /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external view returns (address) { return _subscribers[registrant].at(index); } /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external view returns (bool) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].contains(operator); } return _filteredOperators[registrant].contains(operator); } /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external view returns (bool) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].contains(codeHash); } return _filteredCodeHashes[registrant].contains(codeHash); } /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external view returns (bool) { bytes32 codeHash = operatorWithCode.codehash; address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].contains(codeHash); } return _filteredCodeHashes[registrant].contains(codeHash); } /** * @notice Returns true if an address has registered */ function isRegistered(address registrant) external view returns (bool) { return _registrations[registrant] != address(0); } /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address registrant) external view returns (address[] memory) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].values(); } return _filteredOperators[registrant].values(); } /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address registrant) external view returns (bytes32[] memory) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].values(); } return _filteredCodeHashes[registrant].values(); } /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external view returns (address) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].at(index); } return _filteredOperators[registrant].at(index); } /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external view returns (bytes32) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].at(index); } return _filteredCodeHashes[registrant].at(index); } /// @dev Convenience method to compute the code hash of an arbitrary contract function codeHashOf(address a) external view returns (bytes32) { return a.codehash; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract OperatorFilterRegistryErrorsAndEvents { error CannotFilterEOAs(); error AddressAlreadyFiltered(address operator); error AddressNotFiltered(address operator); error CodeHashAlreadyFiltered(bytes32 codeHash); error CodeHashNotFiltered(bytes32 codeHash); error OnlyAddressOrOwner(); error NotRegistered(address registrant); error AlreadyRegistered(); error AlreadySubscribed(address subscription); error NotSubscribed(); error CannotUpdateWhileSubscribed(address subscription); error CannotSubscribeToSelf(); error CannotSubscribeToZeroAddress(); error NotOwnable(); error AddressFiltered(address filtered); error CodeHashFiltered(address account, bytes32 codeHash); error CannotSubscribeToRegistrantWithSubscription(address registrant); error CannotCopyFromSelf(); event RegistrationUpdated(address indexed registrant, bool indexed registered); event OperatorUpdated(address indexed registrant, address indexed operator, bool indexed filtered); event OperatorsUpdated(address indexed registrant, address[] operators, bool indexed filtered); event CodeHashUpdated(address indexed registrant, bytes32 indexed codeHash, bool indexed filtered); event CodeHashesUpdated(address indexed registrant, bytes32[] codeHashes, bool indexed filtered); event SubscriptionUpdated(address indexed registrant, address indexed subscription, bool indexed subscribed); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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.8.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "Ownable.sol"; /** * @dev Contract module which provides 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} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() external { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "IOperatorFilterRegistry.sol"; import {Ownable2Step} from "Ownable2Step.sol"; /** * @title OwnedRegistrant * @notice Ownable contract that registers itself with the OperatorFilterRegistry and administers its own entries, * to facilitate a subscription whose ownership can be transferred. */ contract OwnedRegistrant is Ownable2Step { address constant registry = 0x000000000000AAeB6D7670E522A718067333cd4E; constructor(address _owner) { IOperatorFilterRegistry(registry).register(address(this)); transferOwnership(_owner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600b60006101000a81548160ff021916908315150217905550611388600c556001600e60006101000a81548160ff0219169083151502179055506000600f5560046010553480156200005757600080fd5b5060405162005a0938038062005a0983398181016040528101906200007d91906200074d565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f42616e6b72757074205342462050756e6b7300000000000000000000000000008152506040518060400160405280600481526020017f4253502000000000000000000000000000000000000000000000000000000000815250816001908162000111919062000a51565b50806002908162000123919062000a51565b505050620001466200013a6200037a60201b60201c565b6200038260201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200033b57801562000201576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001c792919062000b7d565b600060405180830381600087803b158015620001e257600080fd5b505af1158015620001f7573d6000803e3d6000fd5b505050506200033a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002bb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028192919062000b7d565b600060405180830381600087803b1580156200029c57600080fd5b505af1158015620002b1573d6000803e3d6000fd5b5050505062000339565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000304919062000baa565b600060405180830381600087803b1580156200031f57600080fd5b505af115801562000334573d6000803e3d6000fd5b505050505b5b5b50506200034e836200044860201b60201c565b6200035f82620004ec60201b60201c565b806011908162000370919062000a51565b5050505062000c4a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004586200037a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200047e6200059060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ce9062000c28565b60405180910390fd5b80600a9081620004e8919062000a51565b5050565b620004fc6200037a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005226200059060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005729062000c28565b60405180910390fd5b80600d90816200058c919062000a51565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200062382620005d8565b810181811067ffffffffffffffff82111715620006455762000644620005e9565b5b80604052505050565b60006200065a620005ba565b905062000668828262000618565b919050565b600067ffffffffffffffff8211156200068b576200068a620005e9565b5b6200069682620005d8565b9050602081019050919050565b60005b83811015620006c3578082015181840152602081019050620006a6565b60008484015250505050565b6000620006e6620006e0846200066d565b6200064e565b905082815260208101848484011115620007055762000704620005d3565b5b62000712848285620006a3565b509392505050565b600082601f830112620007325762000731620005ce565b5b815162000744848260208601620006cf565b91505092915050565b600080600060608486031215620007695762000768620005c4565b5b600084015167ffffffffffffffff8111156200078a5762000789620005c9565b5b62000798868287016200071a565b935050602084015167ffffffffffffffff811115620007bc57620007bb620005c9565b5b620007ca868287016200071a565b925050604084015167ffffffffffffffff811115620007ee57620007ed620005c9565b5b620007fc868287016200071a565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085957607f821691505b6020821081036200086f576200086e62000811565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200089a565b620008e586836200089a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009326200092c6200092684620008fd565b62000907565b620008fd565b9050919050565b6000819050919050565b6200094e8362000911565b620009666200095d8262000939565b848454620008a7565b825550505050565b600090565b6200097d6200096e565b6200098a81848462000943565b505050565b5b81811015620009b257620009a660008262000973565b60018101905062000990565b5050565b601f82111562000a0157620009cb8162000875565b620009d6846200088a565b81016020851015620009e6578190505b620009fe620009f5856200088a565b8301826200098f565b50505b505050565b600082821c905092915050565b600062000a266000198460080262000a06565b1980831691505092915050565b600062000a41838362000a13565b9150826002028217905092915050565b62000a5c8262000806565b67ffffffffffffffff81111562000a785762000a77620005e9565b5b62000a84825462000840565b62000a91828285620009b6565b600060209050601f83116001811462000ac9576000841562000ab4578287015190505b62000ac0858262000a33565b86555062000b30565b601f19841662000ad98662000875565b60005b8281101562000b035784890151825560018201915060208501945060208101905062000adc565b8683101562000b23578489015162000b1f601f89168262000a13565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b658262000b38565b9050919050565b62000b778162000b58565b82525050565b600060408201905062000b94600083018562000b6c565b62000ba3602083018462000b6c565b9392505050565b600060208201905062000bc1600083018462000b6c565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1060208362000bc7565b915062000c1d8262000bd8565b602082019050919050565b6000602082019050818103600083015262000c438162000c01565b9050919050565b614daf8062000c5a6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063e8a3d4851161006f578063e8a3d485146107c6578063e985e9c5146107f1578063ec9496ba1461082e578063f2c4ce1e14610857578063f2fde38b1461088057610225565b8063a22cb465146106f5578063ab53fcaa1461071e578063b88d4fde14610749578063c87b56dd14610772578063dcc7eb35146107af57610225565b80638da5cb5b116100f25780638da5cb5b146106315780638dbb7c061461065c578063938e3d7b1461068557806395d89b41146106ae578063a0712d68146106d957610225565b806370a0823114610589578063715018a6146105c657806381c4cede146105dd578063835d997e1461060857610225565b80632f745c59116101b1578063518302271161017557806351830227146104b657806355f804b3146104e15780635b8ad4291461050a5780636352211e146105215780636c0360eb1461055e57610225565b80632f745c59146103de5780633ccfd60b1461041b57806342842e0e14610425578063453afb0f1461044e5780634f6ccce71461047957610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632a55205a146103a057610225565b806301ffc9a71461022a57806302fa7c471461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613993565b6108a9565b60405161025e91906139db565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613a98565b6108cb565b005b34801561029c57600080fd5b506102a5610955565b6040516102b29190613b68565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613bc0565b6109e7565b6040516102ef9190613bfc565b60405180910390f35b34801561030457600080fd5b5061030d610a63565b60405161031a9190613b68565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613c17565b610af1565b005b34801561035857600080fd5b50610361610bfb565b60405161036e9190613c66565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613c81565b610c50565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613cd4565b610d5c565b6040516103d5929190613d14565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190613c17565b610f46565b6040516104129190613c66565b60405180910390f35b61042361114a565b005b34801561043157600080fd5b5061044c60048036038101906104479190613c81565b611246565b005b34801561045a57600080fd5b50610463611352565b6040516104709190613c66565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613bc0565b611358565b6040516104ad9190613c66565b60405180910390f35b3480156104c257600080fd5b506104cb6114c8565b6040516104d891906139db565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190613e72565b6114db565b005b34801561051657600080fd5b5061051f61156a565b005b34801561052d57600080fd5b5061054860048036038101906105439190613bc0565b61163f565b6040516105559190613bfc565b60405180910390f35b34801561056a57600080fd5b50610573611655565b6040516105809190613b68565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613ebb565b6116e3565b6040516105bd9190613c66565b60405180910390f35b3480156105d257600080fd5b506105db6117b2565b005b3480156105e957600080fd5b506105f261183a565b6040516105ff91906139db565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613bc0565b61184d565b005b34801561063d57600080fd5b506106466118d3565b6040516106539190613bfc565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613bc0565b6118fd565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613f48565b611983565b005b3480156106ba57600080fd5b506106c3611a15565b6040516106d09190613b68565b60405180910390f35b6106f360048036038101906106ee9190613bc0565b611aa7565b005b34801561070157600080fd5b5061071c60048036038101906107179190613fc1565b611c3d565b005b34801561072a57600080fd5b50610733611db4565b6040516107409190613c66565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b91906140a2565b611dba565b005b34801561077e57600080fd5b5061079960048036038101906107949190613bc0565b611ec8565b6040516107a69190613b68565b60405180910390f35b3480156107bb57600080fd5b506107c4612015565b005b3480156107d257600080fd5b506107db6120ea565b6040516107e89190613b68565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190614125565b612178565b60405161082591906139db565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190613bc0565b61220c565b005b34801561086357600080fd5b5061087e60048036038101906108799190613e72565b612292565b005b34801561088c57600080fd5b506108a760048036038101906108a29190613ebb565b612321565b005b60006108b482612418565b806108c457506108c382612562565b5b9050919050565b6108d36125dc565b73ffffffffffffffffffffffffffffffffffffffff166108f16118d3565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906141b1565b60405180910390fd5b61095182826125e4565b5050565b60606001805461096490614200565b80601f016020809104026020016040519081016040528092919081815260200182805461099090614200565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b60006109f282612779565b610a28576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610a7090614200565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9c90614200565b8015610ae95780601f10610abe57610100808354040283529160200191610ae9565b820191906000526020600020905b815481529060010190602001808311610acc57829003601f168201915b505050505081565b6000610afc8261163f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b826125dc565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb45750610bb281610bad6125dc565b612178565b155b15610beb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf68383836127e1565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d4c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cc7929190614231565b6020604051808303816000875af1158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a919061426f565b610d4b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d429190613bfc565b60405180910390fd5b5b610d57838383612893565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610ef15760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610efb6128a3565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f2791906142cb565b610f31919061433c565b90508160000151819350935050509250929050565b6000610f51836116e3565b8210610f89576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561113f576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156110a05750611132565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110e057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361113057868403611127578195505050505050611144565b83806001019450505b505b8080600101915050610fc3565b600080fd5b92915050565b6111526125dc565b73ffffffffffffffffffffffffffffffffffffffff166111706118d3565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906141b1565b60405180910390fd5b60006111d06118d3565b73ffffffffffffffffffffffffffffffffffffffff16476040516111f39061439e565b60006040518083038185875af1925050503d8060008114611230576040519150601f19603f3d011682016040523d82523d6000602084013e611235565b606091505b505090508061124357600080fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611342576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112bd929190614231565b6020604051808303816000875af11580156112dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611300919061426f565b61134157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113389190613bfc565b60405180910390fd5b5b61134d8383836128ad565b505050565b600f5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611490576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516114825785830361147957819450505050506114c3565b82806001019350505b508080600101915050611390565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600e60009054906101000a900460ff1681565b6114e36125dc565b73ffffffffffffffffffffffffffffffffffffffff166115016118d3565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906141b1565b60405180910390fd5b80600a9081611566919061455f565b5050565b6115726125dc565b73ffffffffffffffffffffffffffffffffffffffff166115906118d3565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906141b1565b60405180910390fd5b60001515600e60009054906101000a900460ff16151503611621576001600e60006101000a81548160ff02191690831515021790555061163d565b6000600e60006101000a81548160ff0219169083151502179055505b565b600061164a826128cd565b600001519050919050565b600a805461166290614200565b80601f016020809104026020016040519081016040528092919081815260200182805461168e90614200565b80156116db5780601f106116b0576101008083540402835291602001916116db565b820191906000526020600020905b8154815290600101906020018083116116be57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361174a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117ba6125dc565b73ffffffffffffffffffffffffffffffffffffffff166117d86118d3565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906141b1565b60405180910390fd5b6118386000612b75565b565b600b60009054906101000a900460ff1681565b6118556125dc565b73ffffffffffffffffffffffffffffffffffffffff166118736118d3565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906141b1565b60405180910390fd5b8060108190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119056125dc565b73ffffffffffffffffffffffffffffffffffffffff166119236118d3565b73ffffffffffffffffffffffffffffffffffffffff1614611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906141b1565b60405180910390fd5b80600f8190555050565b61198b6125dc565b73ffffffffffffffffffffffffffffffffffffffff166119a96118d3565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906141b1565b60405180910390fd5b818160119182611a1092919061463c565b505050565b606060028054611a2490614200565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5090614200565b8015611a9d5780601f10611a7257610100808354040283529160200191611a9d565b820191906000526020600020905b815481529060010190602001808311611a8057829003601f168201915b5050505050905090565b600c5481611ab3610bfb565b611abd919061470c565b1115611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061478c565b60405180910390fd5b611b066118d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c3057600b60009054906101000a900460ff16611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e906147f8565b60405180910390fd5b60105481611b94336116e3565b611b9e919061470c565b1115611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690614864565b60405180910390fd5b80600f54611bed91906142cb565b341015611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906148d0565b60405180910390fd5b5b611c3a3382612c3b565b50565b611c456125dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611cb66125dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d636125dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da891906139db565b60405180910390a35050565b60105481565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611eb6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611e31929190614231565b6020604051808303816000875af1158015611e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e74919061426f565b611eb557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611eac9190613bfc565b60405180910390fd5b5b611ec284848484612c59565b50505050565b6060611ed382612779565b611f09576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600e60009054906101000a900460ff16151503611fb657600d8054611f3190614200565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5d90614200565b8015611faa5780601f10611f7f57610100808354040283529160200191611faa565b820191906000526020600020905b815481529060010190602001808311611f8d57829003601f168201915b50505050509050612010565b6000600a8054611fc590614200565b905003611fe1576040518060200160405280600081525061200d565b600a611fec83612cac565b604051602001611ffd9291906149fb565b6040516020818303038152906040525b90505b919050565b61201d6125dc565b73ffffffffffffffffffffffffffffffffffffffff1661203b6118d3565b73ffffffffffffffffffffffffffffffffffffffff1614612091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612088906141b1565b60405180910390fd5b60001515600b60009054906101000a900460ff161515036120cc576001600b60006101000a81548160ff0219169083151502179055506120e8565b6000600b60006101000a81548160ff0219169083151502179055505b565b601180546120f790614200565b80601f016020809104026020016040519081016040528092919081815260200182805461212390614200565b80156121705780601f1061214557610100808354040283529160200191612170565b820191906000526020600020905b81548152906001019060200180831161215357829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122146125dc565b73ffffffffffffffffffffffffffffffffffffffff166122326118d3565b73ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f906141b1565b60405180910390fd5b80600c8190555050565b61229a6125dc565b73ffffffffffffffffffffffffffffffffffffffff166122b86118d3565b73ffffffffffffffffffffffffffffffffffffffff161461230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906141b1565b60405180910390fd5b80600d908161231d919061455f565b5050565b6123296125dc565b73ffffffffffffffffffffffffffffffffffffffff166123476118d3565b73ffffffffffffffffffffffffffffffffffffffff161461239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614a9c565b60405180910390fd5b61241581612b75565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061254b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061255b575061255a82612e0c565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125d557506125d482612418565b5b9050919050565b600033905090565b6125ec6128a3565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b090614b9a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821080156127da575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61289e838383612e76565b505050565b6000612710905090565b6128c883838360405180602001604052806000815250611dba565b505050565b6128d56138e4565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612b3e576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b3c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a20578092505050612b70565b5b600115612b3b57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b36578092505050612b70565b612a21565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c55828260405180602001604052806000815250613391565b5050565b612c64848484612e76565b612c70848484846133a3565b612ca6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008203612cf3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e07565b600082905060005b60008214612d25578080612d0e90614bba565b915050600a82612d1e919061433c565b9150612cfb565b60008167ffffffffffffffff811115612d4157612d40613d47565b5b6040519080825280601f01601f191660200182016040528015612d735781602001600182028036833780820191505090505b5090505b60008514612e0057600182612d8c9190614c02565b9150600a85612d9b9190614c36565b6030612da7919061470c565b60f81b818381518110612dbd57612dbc614c67565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df9919061433c565b9450612d77565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612e81826128cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612ea86125dc565b73ffffffffffffffffffffffffffffffffffffffff161480612edb5750612eda8260000151612ed56125dc565b612178565b5b80612f205750612ee96125dc565b73ffffffffffffffffffffffffffffffffffffffff16612f08846109e7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612f59576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612fc2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613028576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130358585856001613521565b61304560008484600001516127e1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036133215760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156133205782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461338a8585856001613527565b5050505050565b61339e838383600161352d565b505050565b60006133c48473ffffffffffffffffffffffffffffffffffffffff166138c1565b15613514578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ed6125dc565b8786866040518563ffffffff1660e01b815260040161340f9493929190614ceb565b6020604051808303816000875af192505050801561344b57506040513d601f19601f820116820180604052508101906134489190614d4c565b60015b6134c4573d806000811461347b576040519150601f19603f3d011682016040523d82523d6000602084013e613480565b606091505b5060008151036134bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613519565b600190505b949350505050565b50505050565b50505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036135c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613601576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61360e6000868387613521565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561387357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613827575061382560008884886133a3565b155b1561385e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506137ac565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506138ba6000868387613527565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139708161393b565b811461397b57600080fd5b50565b60008135905061398d81613967565b92915050565b6000602082840312156139a9576139a8613931565b5b60006139b78482850161397e565b91505092915050565b60008115159050919050565b6139d5816139c0565b82525050565b60006020820190506139f060008301846139cc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a21826139f6565b9050919050565b613a3181613a16565b8114613a3c57600080fd5b50565b600081359050613a4e81613a28565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613a7581613a54565b8114613a8057600080fd5b50565b600081359050613a9281613a6c565b92915050565b60008060408385031215613aaf57613aae613931565b5b6000613abd85828601613a3f565b9250506020613ace85828601613a83565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b12578082015181840152602081019050613af7565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b3a82613ad8565b613b448185613ae3565b9350613b54818560208601613af4565b613b5d81613b1e565b840191505092915050565b60006020820190508181036000830152613b828184613b2f565b905092915050565b6000819050919050565b613b9d81613b8a565b8114613ba857600080fd5b50565b600081359050613bba81613b94565b92915050565b600060208284031215613bd657613bd5613931565b5b6000613be484828501613bab565b91505092915050565b613bf681613a16565b82525050565b6000602082019050613c116000830184613bed565b92915050565b60008060408385031215613c2e57613c2d613931565b5b6000613c3c85828601613a3f565b9250506020613c4d85828601613bab565b9150509250929050565b613c6081613b8a565b82525050565b6000602082019050613c7b6000830184613c57565b92915050565b600080600060608486031215613c9a57613c99613931565b5b6000613ca886828701613a3f565b9350506020613cb986828701613a3f565b9250506040613cca86828701613bab565b9150509250925092565b60008060408385031215613ceb57613cea613931565b5b6000613cf985828601613bab565b9250506020613d0a85828601613bab565b9150509250929050565b6000604082019050613d296000830185613bed565b613d366020830184613c57565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d7f82613b1e565b810181811067ffffffffffffffff82111715613d9e57613d9d613d47565b5b80604052505050565b6000613db1613927565b9050613dbd8282613d76565b919050565b600067ffffffffffffffff821115613ddd57613ddc613d47565b5b613de682613b1e565b9050602081019050919050565b82818337600083830152505050565b6000613e15613e1084613dc2565b613da7565b905082815260208101848484011115613e3157613e30613d42565b5b613e3c848285613df3565b509392505050565b600082601f830112613e5957613e58613d3d565b5b8135613e69848260208601613e02565b91505092915050565b600060208284031215613e8857613e87613931565b5b600082013567ffffffffffffffff811115613ea657613ea5613936565b5b613eb284828501613e44565b91505092915050565b600060208284031215613ed157613ed0613931565b5b6000613edf84828501613a3f565b91505092915050565b600080fd5b600080fd5b60008083601f840112613f0857613f07613d3d565b5b8235905067ffffffffffffffff811115613f2557613f24613ee8565b5b602083019150836001820283011115613f4157613f40613eed565b5b9250929050565b60008060208385031215613f5f57613f5e613931565b5b600083013567ffffffffffffffff811115613f7d57613f7c613936565b5b613f8985828601613ef2565b92509250509250929050565b613f9e816139c0565b8114613fa957600080fd5b50565b600081359050613fbb81613f95565b92915050565b60008060408385031215613fd857613fd7613931565b5b6000613fe685828601613a3f565b9250506020613ff785828601613fac565b9150509250929050565b600067ffffffffffffffff82111561401c5761401b613d47565b5b61402582613b1e565b9050602081019050919050565b600061404561404084614001565b613da7565b90508281526020810184848401111561406157614060613d42565b5b61406c848285613df3565b509392505050565b600082601f83011261408957614088613d3d565b5b8135614099848260208601614032565b91505092915050565b600080600080608085870312156140bc576140bb613931565b5b60006140ca87828801613a3f565b94505060206140db87828801613a3f565b93505060406140ec87828801613bab565b925050606085013567ffffffffffffffff81111561410d5761410c613936565b5b61411987828801614074565b91505092959194509250565b6000806040838503121561413c5761413b613931565b5b600061414a85828601613a3f565b925050602061415b85828601613a3f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061419b602083613ae3565b91506141a682614165565b602082019050919050565b600060208201905081810360008301526141ca8161418e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061421857607f821691505b60208210810361422b5761422a6141d1565b5b50919050565b60006040820190506142466000830185613bed565b6142536020830184613bed565b9392505050565b60008151905061426981613f95565b92915050565b60006020828403121561428557614284613931565b5b60006142938482850161425a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142d682613b8a565b91506142e183613b8a565b92508282026142ef81613b8a565b915082820484148315176143065761430561429c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434782613b8a565b915061435283613b8a565b9250826143625761436161430d565b5b828204905092915050565b600081905092915050565b50565b600061438860008361436d565b915061439382614378565b600082019050919050565b60006143a98261437b565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026144157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826143d8565b61441f86836143d8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061445c61445761445284613b8a565b614437565b613b8a565b9050919050565b6000819050919050565b61447683614441565b61448a61448282614463565b8484546143e5565b825550505050565b600090565b61449f614492565b6144aa81848461446d565b505050565b5b818110156144ce576144c3600082614497565b6001810190506144b0565b5050565b601f821115614513576144e4816143b3565b6144ed846143c8565b810160208510156144fc578190505b614510614508856143c8565b8301826144af565b50505b505050565b600082821c905092915050565b600061453660001984600802614518565b1980831691505092915050565b600061454f8383614525565b9150826002028217905092915050565b61456882613ad8565b67ffffffffffffffff81111561458157614580613d47565b5b61458b8254614200565b6145968282856144d2565b600060209050601f8311600181146145c957600084156145b7578287015190505b6145c18582614543565b865550614629565b601f1984166145d7866143b3565b60005b828110156145ff578489015182556001820191506020850194506020810190506145da565b8683101561461c5784890151614618601f891682614525565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b6146468383614631565b67ffffffffffffffff81111561465f5761465e613d47565b5b6146698254614200565b6146748282856144d2565b6000601f8311600181146146a35760008415614691578287013590505b61469b8582614543565b865550614703565b601f1984166146b1866143b3565b60005b828110156146d9578489013582556001820191506020850194506020810190506146b4565b868310156146f657848901356146f2601f891682614525565b8355505b6001600288020188555050505b50505050505050565b600061471782613b8a565b915061472283613b8a565b925082820190508082111561473a5761473961429c565b5b92915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000614776601683613ae3565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f7075626c6963206d696e74206973206f66660000000000000000000000000000600082015250565b60006147e2601283613ae3565b91506147ed826147ac565b602082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b600061484e601883613ae3565b915061485982614818565b602082019050919050565b6000602082019050818103600083015261487d81614841565b9050919050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b60006148ba601583613ae3565b91506148c582614884565b602082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b600081905092915050565b6000815461490881614200565b61491281866148f0565b9450600182166000811461492d576001811461494257614975565b60ff1983168652811515820286019350614975565b61494b856143b3565b60005b8381101561496d5781548189015260018201915060208101905061494e565b838801955050505b50505092915050565b600061498982613ad8565b61499381856148f0565b93506149a3818560208601613af4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149e56005836148f0565b91506149f0826149af565b600582019050919050565b6000614a0782856148fb565b9150614a13828461497e565b9150614a1e826149d8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a86602683613ae3565b9150614a9182614a2a565b604082019050919050565b60006020820190508181036000830152614ab581614a79565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614b18602a83613ae3565b9150614b2382614abc565b604082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614b84601983613ae3565b9150614b8f82614b4e565b602082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b6000614bc582613b8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bf757614bf661429c565b5b600182019050919050565b6000614c0d82613b8a565b9150614c1883613b8a565b9250828203905081811115614c3057614c2f61429c565b5b92915050565b6000614c4182613b8a565b9150614c4c83613b8a565b925082614c5c57614c5b61430d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614cbd82614c96565b614cc78185614ca1565b9350614cd7818560208601613af4565b614ce081613b1e565b840191505092915050565b6000608082019050614d006000830187613bed565b614d0d6020830186613bed565b614d1a6040830185613c57565b8181036060830152614d2c8184614cb2565b905095945050505050565b600081519050614d4681613967565b92915050565b600060208284031215614d6257614d61613931565b5b6000614d7084828501614d37565b9150509291505056fea264697066735822122053752884d9738f14eb55f0deb4805d5d4f8a59a05a24e4bf46a105bbb845c78e64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676d6b69366e346435627877626777777533766b713764336474617166656871617363706436336e333273616b68767566336e6d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261667962656966626f7171786b6f64797861773275706975716d3267786d6f7278617a34783436326b6b346a706f676b66756d77663633656b69000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063e8a3d4851161006f578063e8a3d485146107c6578063e985e9c5146107f1578063ec9496ba1461082e578063f2c4ce1e14610857578063f2fde38b1461088057610225565b8063a22cb465146106f5578063ab53fcaa1461071e578063b88d4fde14610749578063c87b56dd14610772578063dcc7eb35146107af57610225565b80638da5cb5b116100f25780638da5cb5b146106315780638dbb7c061461065c578063938e3d7b1461068557806395d89b41146106ae578063a0712d68146106d957610225565b806370a0823114610589578063715018a6146105c657806381c4cede146105dd578063835d997e1461060857610225565b80632f745c59116101b1578063518302271161017557806351830227146104b657806355f804b3146104e15780635b8ad4291461050a5780636352211e146105215780636c0360eb1461055e57610225565b80632f745c59146103de5780633ccfd60b1461041b57806342842e0e14610425578063453afb0f1461044e5780634f6ccce71461047957610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632a55205a146103a057610225565b806301ffc9a71461022a57806302fa7c471461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613993565b6108a9565b60405161025e91906139db565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613a98565b6108cb565b005b34801561029c57600080fd5b506102a5610955565b6040516102b29190613b68565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613bc0565b6109e7565b6040516102ef9190613bfc565b60405180910390f35b34801561030457600080fd5b5061030d610a63565b60405161031a9190613b68565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613c17565b610af1565b005b34801561035857600080fd5b50610361610bfb565b60405161036e9190613c66565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613c81565b610c50565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613cd4565b610d5c565b6040516103d5929190613d14565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190613c17565b610f46565b6040516104129190613c66565b60405180910390f35b61042361114a565b005b34801561043157600080fd5b5061044c60048036038101906104479190613c81565b611246565b005b34801561045a57600080fd5b50610463611352565b6040516104709190613c66565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613bc0565b611358565b6040516104ad9190613c66565b60405180910390f35b3480156104c257600080fd5b506104cb6114c8565b6040516104d891906139db565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190613e72565b6114db565b005b34801561051657600080fd5b5061051f61156a565b005b34801561052d57600080fd5b5061054860048036038101906105439190613bc0565b61163f565b6040516105559190613bfc565b60405180910390f35b34801561056a57600080fd5b50610573611655565b6040516105809190613b68565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613ebb565b6116e3565b6040516105bd9190613c66565b60405180910390f35b3480156105d257600080fd5b506105db6117b2565b005b3480156105e957600080fd5b506105f261183a565b6040516105ff91906139db565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613bc0565b61184d565b005b34801561063d57600080fd5b506106466118d3565b6040516106539190613bfc565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613bc0565b6118fd565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613f48565b611983565b005b3480156106ba57600080fd5b506106c3611a15565b6040516106d09190613b68565b60405180910390f35b6106f360048036038101906106ee9190613bc0565b611aa7565b005b34801561070157600080fd5b5061071c60048036038101906107179190613fc1565b611c3d565b005b34801561072a57600080fd5b50610733611db4565b6040516107409190613c66565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b91906140a2565b611dba565b005b34801561077e57600080fd5b5061079960048036038101906107949190613bc0565b611ec8565b6040516107a69190613b68565b60405180910390f35b3480156107bb57600080fd5b506107c4612015565b005b3480156107d257600080fd5b506107db6120ea565b6040516107e89190613b68565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190614125565b612178565b60405161082591906139db565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190613bc0565b61220c565b005b34801561086357600080fd5b5061087e60048036038101906108799190613e72565b612292565b005b34801561088c57600080fd5b506108a760048036038101906108a29190613ebb565b612321565b005b60006108b482612418565b806108c457506108c382612562565b5b9050919050565b6108d36125dc565b73ffffffffffffffffffffffffffffffffffffffff166108f16118d3565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906141b1565b60405180910390fd5b61095182826125e4565b5050565b60606001805461096490614200565b80601f016020809104026020016040519081016040528092919081815260200182805461099090614200565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b60006109f282612779565b610a28576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610a7090614200565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9c90614200565b8015610ae95780601f10610abe57610100808354040283529160200191610ae9565b820191906000526020600020905b815481529060010190602001808311610acc57829003601f168201915b505050505081565b6000610afc8261163f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b826125dc565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb45750610bb281610bad6125dc565b612178565b155b15610beb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf68383836127e1565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d4c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cc7929190614231565b6020604051808303816000875af1158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a919061426f565b610d4b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d429190613bfc565b60405180910390fd5b5b610d57838383612893565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610ef15760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610efb6128a3565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f2791906142cb565b610f31919061433c565b90508160000151819350935050509250929050565b6000610f51836116e3565b8210610f89576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561113f576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156110a05750611132565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110e057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361113057868403611127578195505050505050611144565b83806001019450505b505b8080600101915050610fc3565b600080fd5b92915050565b6111526125dc565b73ffffffffffffffffffffffffffffffffffffffff166111706118d3565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906141b1565b60405180910390fd5b60006111d06118d3565b73ffffffffffffffffffffffffffffffffffffffff16476040516111f39061439e565b60006040518083038185875af1925050503d8060008114611230576040519150601f19603f3d011682016040523d82523d6000602084013e611235565b606091505b505090508061124357600080fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611342576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112bd929190614231565b6020604051808303816000875af11580156112dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611300919061426f565b61134157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113389190613bfc565b60405180910390fd5b5b61134d8383836128ad565b505050565b600f5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611490576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516114825785830361147957819450505050506114c3565b82806001019350505b508080600101915050611390565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600e60009054906101000a900460ff1681565b6114e36125dc565b73ffffffffffffffffffffffffffffffffffffffff166115016118d3565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906141b1565b60405180910390fd5b80600a9081611566919061455f565b5050565b6115726125dc565b73ffffffffffffffffffffffffffffffffffffffff166115906118d3565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906141b1565b60405180910390fd5b60001515600e60009054906101000a900460ff16151503611621576001600e60006101000a81548160ff02191690831515021790555061163d565b6000600e60006101000a81548160ff0219169083151502179055505b565b600061164a826128cd565b600001519050919050565b600a805461166290614200565b80601f016020809104026020016040519081016040528092919081815260200182805461168e90614200565b80156116db5780601f106116b0576101008083540402835291602001916116db565b820191906000526020600020905b8154815290600101906020018083116116be57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361174a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117ba6125dc565b73ffffffffffffffffffffffffffffffffffffffff166117d86118d3565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906141b1565b60405180910390fd5b6118386000612b75565b565b600b60009054906101000a900460ff1681565b6118556125dc565b73ffffffffffffffffffffffffffffffffffffffff166118736118d3565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c0906141b1565b60405180910390fd5b8060108190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119056125dc565b73ffffffffffffffffffffffffffffffffffffffff166119236118d3565b73ffffffffffffffffffffffffffffffffffffffff1614611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906141b1565b60405180910390fd5b80600f8190555050565b61198b6125dc565b73ffffffffffffffffffffffffffffffffffffffff166119a96118d3565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906141b1565b60405180910390fd5b818160119182611a1092919061463c565b505050565b606060028054611a2490614200565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5090614200565b8015611a9d5780601f10611a7257610100808354040283529160200191611a9d565b820191906000526020600020905b815481529060010190602001808311611a8057829003601f168201915b5050505050905090565b600c5481611ab3610bfb565b611abd919061470c565b1115611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061478c565b60405180910390fd5b611b066118d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c3057600b60009054906101000a900460ff16611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e906147f8565b60405180910390fd5b60105481611b94336116e3565b611b9e919061470c565b1115611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690614864565b60405180910390fd5b80600f54611bed91906142cb565b341015611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906148d0565b60405180910390fd5b5b611c3a3382612c3b565b50565b611c456125dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611cb66125dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d636125dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da891906139db565b60405180910390a35050565b60105481565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611eb6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611e31929190614231565b6020604051808303816000875af1158015611e50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e74919061426f565b611eb557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611eac9190613bfc565b60405180910390fd5b5b611ec284848484612c59565b50505050565b6060611ed382612779565b611f09576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600e60009054906101000a900460ff16151503611fb657600d8054611f3190614200565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5d90614200565b8015611faa5780601f10611f7f57610100808354040283529160200191611faa565b820191906000526020600020905b815481529060010190602001808311611f8d57829003601f168201915b50505050509050612010565b6000600a8054611fc590614200565b905003611fe1576040518060200160405280600081525061200d565b600a611fec83612cac565b604051602001611ffd9291906149fb565b6040516020818303038152906040525b90505b919050565b61201d6125dc565b73ffffffffffffffffffffffffffffffffffffffff1661203b6118d3565b73ffffffffffffffffffffffffffffffffffffffff1614612091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612088906141b1565b60405180910390fd5b60001515600b60009054906101000a900460ff161515036120cc576001600b60006101000a81548160ff0219169083151502179055506120e8565b6000600b60006101000a81548160ff0219169083151502179055505b565b601180546120f790614200565b80601f016020809104026020016040519081016040528092919081815260200182805461212390614200565b80156121705780601f1061214557610100808354040283529160200191612170565b820191906000526020600020905b81548152906001019060200180831161215357829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122146125dc565b73ffffffffffffffffffffffffffffffffffffffff166122326118d3565b73ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f906141b1565b60405180910390fd5b80600c8190555050565b61229a6125dc565b73ffffffffffffffffffffffffffffffffffffffff166122b86118d3565b73ffffffffffffffffffffffffffffffffffffffff161461230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906141b1565b60405180910390fd5b80600d908161231d919061455f565b5050565b6123296125dc565b73ffffffffffffffffffffffffffffffffffffffff166123476118d3565b73ffffffffffffffffffffffffffffffffffffffff161461239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614a9c565b60405180910390fd5b61241581612b75565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061254b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061255b575061255a82612e0c565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125d557506125d482612418565b5b9050919050565b600033905090565b6125ec6128a3565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b090614b9a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821080156127da575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61289e838383612e76565b505050565b6000612710905090565b6128c883838360405180602001604052806000815250611dba565b505050565b6128d56138e4565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612b3e576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b3c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a20578092505050612b70565b5b600115612b3b57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b36578092505050612b70565b612a21565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c55828260405180602001604052806000815250613391565b5050565b612c64848484612e76565b612c70848484846133a3565b612ca6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008203612cf3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e07565b600082905060005b60008214612d25578080612d0e90614bba565b915050600a82612d1e919061433c565b9150612cfb565b60008167ffffffffffffffff811115612d4157612d40613d47565b5b6040519080825280601f01601f191660200182016040528015612d735781602001600182028036833780820191505090505b5090505b60008514612e0057600182612d8c9190614c02565b9150600a85612d9b9190614c36565b6030612da7919061470c565b60f81b818381518110612dbd57612dbc614c67565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df9919061433c565b9450612d77565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612e81826128cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612ea86125dc565b73ffffffffffffffffffffffffffffffffffffffff161480612edb5750612eda8260000151612ed56125dc565b612178565b5b80612f205750612ee96125dc565b73ffffffffffffffffffffffffffffffffffffffff16612f08846109e7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612f59576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612fc2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613028576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130358585856001613521565b61304560008484600001516127e1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036133215760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156133205782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461338a8585856001613527565b5050505050565b61339e838383600161352d565b505050565b60006133c48473ffffffffffffffffffffffffffffffffffffffff166138c1565b15613514578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133ed6125dc565b8786866040518563ffffffff1660e01b815260040161340f9493929190614ceb565b6020604051808303816000875af192505050801561344b57506040513d601f19601f820116820180604052508101906134489190614d4c565b60015b6134c4573d806000811461347b576040519150601f19603f3d011682016040523d82523d6000602084013e613480565b606091505b5060008151036134bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613519565b600190505b949350505050565b50505050565b50505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036135c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613601576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61360e6000868387613521565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561387357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613827575061382560008884886133a3565b155b1561385e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506137ac565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506138ba6000868387613527565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139708161393b565b811461397b57600080fd5b50565b60008135905061398d81613967565b92915050565b6000602082840312156139a9576139a8613931565b5b60006139b78482850161397e565b91505092915050565b60008115159050919050565b6139d5816139c0565b82525050565b60006020820190506139f060008301846139cc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a21826139f6565b9050919050565b613a3181613a16565b8114613a3c57600080fd5b50565b600081359050613a4e81613a28565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613a7581613a54565b8114613a8057600080fd5b50565b600081359050613a9281613a6c565b92915050565b60008060408385031215613aaf57613aae613931565b5b6000613abd85828601613a3f565b9250506020613ace85828601613a83565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b12578082015181840152602081019050613af7565b60008484015250505050565b6000601f19601f8301169050919050565b6000613b3a82613ad8565b613b448185613ae3565b9350613b54818560208601613af4565b613b5d81613b1e565b840191505092915050565b60006020820190508181036000830152613b828184613b2f565b905092915050565b6000819050919050565b613b9d81613b8a565b8114613ba857600080fd5b50565b600081359050613bba81613b94565b92915050565b600060208284031215613bd657613bd5613931565b5b6000613be484828501613bab565b91505092915050565b613bf681613a16565b82525050565b6000602082019050613c116000830184613bed565b92915050565b60008060408385031215613c2e57613c2d613931565b5b6000613c3c85828601613a3f565b9250506020613c4d85828601613bab565b9150509250929050565b613c6081613b8a565b82525050565b6000602082019050613c7b6000830184613c57565b92915050565b600080600060608486031215613c9a57613c99613931565b5b6000613ca886828701613a3f565b9350506020613cb986828701613a3f565b9250506040613cca86828701613bab565b9150509250925092565b60008060408385031215613ceb57613cea613931565b5b6000613cf985828601613bab565b9250506020613d0a85828601613bab565b9150509250929050565b6000604082019050613d296000830185613bed565b613d366020830184613c57565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d7f82613b1e565b810181811067ffffffffffffffff82111715613d9e57613d9d613d47565b5b80604052505050565b6000613db1613927565b9050613dbd8282613d76565b919050565b600067ffffffffffffffff821115613ddd57613ddc613d47565b5b613de682613b1e565b9050602081019050919050565b82818337600083830152505050565b6000613e15613e1084613dc2565b613da7565b905082815260208101848484011115613e3157613e30613d42565b5b613e3c848285613df3565b509392505050565b600082601f830112613e5957613e58613d3d565b5b8135613e69848260208601613e02565b91505092915050565b600060208284031215613e8857613e87613931565b5b600082013567ffffffffffffffff811115613ea657613ea5613936565b5b613eb284828501613e44565b91505092915050565b600060208284031215613ed157613ed0613931565b5b6000613edf84828501613a3f565b91505092915050565b600080fd5b600080fd5b60008083601f840112613f0857613f07613d3d565b5b8235905067ffffffffffffffff811115613f2557613f24613ee8565b5b602083019150836001820283011115613f4157613f40613eed565b5b9250929050565b60008060208385031215613f5f57613f5e613931565b5b600083013567ffffffffffffffff811115613f7d57613f7c613936565b5b613f8985828601613ef2565b92509250509250929050565b613f9e816139c0565b8114613fa957600080fd5b50565b600081359050613fbb81613f95565b92915050565b60008060408385031215613fd857613fd7613931565b5b6000613fe685828601613a3f565b9250506020613ff785828601613fac565b9150509250929050565b600067ffffffffffffffff82111561401c5761401b613d47565b5b61402582613b1e565b9050602081019050919050565b600061404561404084614001565b613da7565b90508281526020810184848401111561406157614060613d42565b5b61406c848285613df3565b509392505050565b600082601f83011261408957614088613d3d565b5b8135614099848260208601614032565b91505092915050565b600080600080608085870312156140bc576140bb613931565b5b60006140ca87828801613a3f565b94505060206140db87828801613a3f565b93505060406140ec87828801613bab565b925050606085013567ffffffffffffffff81111561410d5761410c613936565b5b61411987828801614074565b91505092959194509250565b6000806040838503121561413c5761413b613931565b5b600061414a85828601613a3f565b925050602061415b85828601613a3f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061419b602083613ae3565b91506141a682614165565b602082019050919050565b600060208201905081810360008301526141ca8161418e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061421857607f821691505b60208210810361422b5761422a6141d1565b5b50919050565b60006040820190506142466000830185613bed565b6142536020830184613bed565b9392505050565b60008151905061426981613f95565b92915050565b60006020828403121561428557614284613931565b5b60006142938482850161425a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142d682613b8a565b91506142e183613b8a565b92508282026142ef81613b8a565b915082820484148315176143065761430561429c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061434782613b8a565b915061435283613b8a565b9250826143625761436161430d565b5b828204905092915050565b600081905092915050565b50565b600061438860008361436d565b915061439382614378565b600082019050919050565b60006143a98261437b565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026144157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826143d8565b61441f86836143d8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061445c61445761445284613b8a565b614437565b613b8a565b9050919050565b6000819050919050565b61447683614441565b61448a61448282614463565b8484546143e5565b825550505050565b600090565b61449f614492565b6144aa81848461446d565b505050565b5b818110156144ce576144c3600082614497565b6001810190506144b0565b5050565b601f821115614513576144e4816143b3565b6144ed846143c8565b810160208510156144fc578190505b614510614508856143c8565b8301826144af565b50505b505050565b600082821c905092915050565b600061453660001984600802614518565b1980831691505092915050565b600061454f8383614525565b9150826002028217905092915050565b61456882613ad8565b67ffffffffffffffff81111561458157614580613d47565b5b61458b8254614200565b6145968282856144d2565b600060209050601f8311600181146145c957600084156145b7578287015190505b6145c18582614543565b865550614629565b601f1984166145d7866143b3565b60005b828110156145ff578489015182556001820191506020850194506020810190506145da565b8683101561461c5784890151614618601f891682614525565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b6146468383614631565b67ffffffffffffffff81111561465f5761465e613d47565b5b6146698254614200565b6146748282856144d2565b6000601f8311600181146146a35760008415614691578287013590505b61469b8582614543565b865550614703565b601f1984166146b1866143b3565b60005b828110156146d9578489013582556001820191506020850194506020810190506146b4565b868310156146f657848901356146f2601f891682614525565b8355505b6001600288020188555050505b50505050505050565b600061471782613b8a565b915061472283613b8a565b925082820190508082111561473a5761473961429c565b5b92915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000614776601683613ae3565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f7075626c6963206d696e74206973206f66660000000000000000000000000000600082015250565b60006147e2601283613ae3565b91506147ed826147ac565b602082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b7f5065722077616c6c6574206c696d697420726561636865640000000000000000600082015250565b600061484e601883613ae3565b915061485982614818565b602082019050919050565b6000602082019050818103600083015261487d81614841565b9050919050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b60006148ba601583613ae3565b91506148c582614884565b602082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b600081905092915050565b6000815461490881614200565b61491281866148f0565b9450600182166000811461492d576001811461494257614975565b60ff1983168652811515820286019350614975565b61494b856143b3565b60005b8381101561496d5781548189015260018201915060208101905061494e565b838801955050505b50505092915050565b600061498982613ad8565b61499381856148f0565b93506149a3818560208601613af4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006149e56005836148f0565b91506149f0826149af565b600582019050919050565b6000614a0782856148fb565b9150614a13828461497e565b9150614a1e826149d8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a86602683613ae3565b9150614a9182614a2a565b604082019050919050565b60006020820190508181036000830152614ab581614a79565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614b18602a83613ae3565b9150614b2382614abc565b604082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614b84601983613ae3565b9150614b8f82614b4e565b602082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b6000614bc582613b8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bf757614bf661429c565b5b600182019050919050565b6000614c0d82613b8a565b9150614c1883613b8a565b9250828203905081811115614c3057614c2f61429c565b5b92915050565b6000614c4182613b8a565b9150614c4c83613b8a565b925082614c5c57614c5b61430d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614cbd82614c96565b614cc78185614ca1565b9350614cd7818560208601613af4565b614ce081613b1e565b840191505092915050565b6000608082019050614d006000830187613bed565b614d0d6020830186613bed565b614d1a6040830185613c57565b8181036060830152614d2c8184614cb2565b905095945050505050565b600081519050614d4681613967565b92915050565b600060208284031215614d6257614d61613931565b5b6000614d7084828501614d37565b9150509291505056fea264697066735822122053752884d9738f14eb55f0deb4805d5d4f8a59a05a24e4bf46a105bbb845c78e64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676d6b69366e346435627877626777777533766b713764336474617166656871617363706436336e333273616b68767566336e6d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261667962656966626f7171786b6f64797861773275706975716d3267786d6f7278617a34783436326b6b346a706f676b66756d77663633656b69000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeigmki6n4d5bxwbgwwu3vkq7d3dtaqfehqascpd63n32sakhvuf3nm/
Arg [1] : _initNotRevealedUri (string):
Arg [2] : _contractURI (string): ipfs://bafybeifboqqxkodyxaw2upiuqm2gxmorxaz4x462kk4jpogkfumwf63eki
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f62616679626569676d6b69366e346435627877626777777533
Arg [5] : 766b713764336474617166656871617363706436336e333273616b6876756633
Arg [6] : 6e6d2f0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [9] : 697066733a2f2f6261667962656966626f7171786b6f64797861773275706975
Arg [10] : 716d3267786d6f7278617a34783436326b6b346a706f676b66756d7766363365
Arg [11] : 6b69000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
171:4320:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1410:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4200:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8821:100:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;403:28:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3448:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2389:157:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1670:442:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;5034:1105:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3554:155:1;;;:::i;:::-;;2554:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;480:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;444:27:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4089:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2987:177;;;;;;;;;;;;;:::i;:::-;;8630:124:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;292:21:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:18;;;;;;;;;;;;;:::i;:::-;;322:38:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3849:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1061:87:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3721:120:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4363:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;876:522:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10600:279:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;526:33:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1908:361;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3185:220;;;;;;;;;;;;;:::i;:::-;;566:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:164:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3977:104:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3415:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1970:201:18;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1410:487:1;1558:4;1796:38;1822:11;1796:25;:38::i;:::-;:93;;;;1851:38;1877:11;1851:25;:38::i;:::-;1796:93;1776:113;;1410:487;;;:::o;4200:155::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4298:49:1::1;4317:9;4328:18;4298;:49::i;:::-;4200:155:::0;;:::o;8821:100:6:-;8875:13;8908:5;8901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821:100;:::o;10324:204::-;10392:7;10417:16;10425:7;10417;:16::i;:::-;10412:64;;10442:34;;;;;;;;;;;;;;10412:64;10496:15;:24;10512:7;10496:24;;;;;;;;;;;;;;;;;;;;;10489:31;;10324:204;;;:::o;403:28:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9887:371:6:-;9960:13;9976:24;9992:7;9976:15;:24::i;:::-;9960:40;;10021:5;10015:11;;:2;:11;;;10011:48;;10035:24;;;;;;;;;;;;;;10011:48;10092:5;10076:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10102:37;10119:5;10126:12;:10;:12::i;:::-;10102:16;:37::i;:::-;10101:38;10076:63;10072:138;;;10163:35;;;;;;;;;;;;;;10072:138;10222:28;10231:2;10235:7;10244:5;10222:8;:28::i;:::-;9949:309;9887:371;;:::o;3448:280::-;3501:7;3693:12;;;;;;;;;;;3677:13;;;;;;;;;;:28;3670:35;;;;3448:280;:::o;2389:157:1:-;1452:1:17;299:42;1406:43;;;:47;1402:221;;;299:42;1474:40;;;1523:4;1530:10;1474:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1469:144;;1587:10;1568:30;;;;;;;;;;;:::i;:::-;;;;;;;;1469:144;1402:221;2501:37:1::1;2520:4;2526:2;2530:7;2501:18;:37::i;:::-;2389:157:::0;;;:::o;1670:442:5:-;1767:7;1776;1796:26;1825:17;:27;1843:8;1825:27;;;;;;;;;;;1796:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1897:1;1869:30;;:7;:16;;;:30;;;1865:92;;1926:19;1916:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1865:92;1969:21;2034:17;:15;:17::i;:::-;1993:58;;2007:7;:23;;;1994:36;;:10;:36;;;;:::i;:::-;1993:58;;;;:::i;:::-;1969:82;;2072:7;:16;;;2090:13;2064:40;;;;;;1670:442;;;;;:::o;5034:1105:6:-;5123:7;5156:16;5166:5;5156:9;:16::i;:::-;5147:5;:25;5143:61;;5181:23;;;;;;;;;;;;;;5143:61;5215:22;5240:13;;;;;;;;;;;5215:38;;;;5264:19;5294:25;5495:9;5490:557;5510:14;5506:1;:18;5490:557;;;5550:31;5584:11;:14;5596:1;5584:14;;;;;;;;;;;5550:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:9;:16;;;5617:73;;;5662:8;;;5617:73;5738:1;5712:28;;:9;:14;;;:28;;;5708:111;;5785:9;:14;;;5765:34;;5708:111;5862:5;5841:26;;:17;:26;;;5837:195;;5911:5;5896:11;:20;5892:85;;5952:1;5945:8;;;;;;;;;5892:85;5999:13;;;;;;;5837:195;5531:516;5490:557;5526:3;;;;;;;5490:557;;;6123:8;;;5034:1105;;;;;:::o;3554:155:1:-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3611:9:1::1;3634:7;:5;:7::i;:::-;3626:21;;3655;3626:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3610:71;;;3696:4;3688:13;;;::::0;::::1;;3599:110;3554:155::o:0;2554:165::-;1452:1:17;299:42;1406:43;;;:47;1402:221;;;299:42;1474:40;;;1523:4;1530:10;1474:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1469:144;;1587:10;1568:30;;;;;;;;;;;:::i;:::-;;;;;;;;1469:144;1402:221;2670:41:1::1;2693:4;2699:2;2703:7;2670:22;:41::i;:::-;2554:165:::0;;;:::o;480:39::-;;;;:::o;4021:713:6:-;4088:7;4108:22;4133:13;;;;;;;;;;4108:38;;;;4157:19;4352:9;4347:328;4367:14;4363:1;:18;4347:328;;;4407:31;4441:11;:14;4453:1;4441:14;;;;;;;;;;;4407:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:9;:16;;;4474:186;;4539:5;4524:11;:20;4520:85;;4580:1;4573:8;;;;;;;;4520:85;4627:13;;;;;;;4474:186;4388:287;4383:3;;;;;;;4347:328;;;;4703:23;;;;;;;;;;;;;;4021:713;;;;:::o;444:27:1:-;;;;;;;;;;;;;:::o;4089:103::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:11:1::1;4164:7;:21;;;;;;:::i;:::-;;4089:103:::0;:::o;2987:177::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:5:1::1;3052:15;;:8;;;;;;;;;;;:15;;::::0;3049:108:::1;;3094:4;3083:8;;:15;;;;;;;;;;;;;;;;;;3049:108;;;3140:5;3129:8;;:16;;;;;;;;;;;;;;;;;;3049:108;2987:177::o:0;8630:124:6:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;292:21:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6647:206:6:-;6711:7;6752:1;6735:19;;:5;:19;;;6731:60;;6763:28;;;;;;;;;;;;;;6731:60;6817:12;:19;6830:5;6817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6809:36;;6802:43;;6647:206;;;:::o;1712:103:18:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;322:38:1:-;;;;;;;;;;;;;:::o;3849:120::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3946:15:1::1;3929:14;:32;;;;3849:120:::0;:::o;1061:87:18:-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;3721:120:1:-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3818:15:1::1;3801:14;:32;;;;3721:120:::0;:::o;4363:116::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4459:12:1::1;;4445:11;:26;;;;;;;:::i;:::-;;4363:116:::0;;:::o;8990:104:6:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;876:522:1:-;971:10;;959:8;943:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;935:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1039:7;:5;:7::i;:::-;1025:21;;:10;:21;;;1021:316;;1071:18;;;;;;;;;;;1063:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;1171:14;;1159:8;1135:21;1145:10;1135:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;1127:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1267:8;1250:14;;:25;;;;:::i;:::-;1236:9;:40;;1228:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1021:316;1347:31;1357:10;1369:8;1347:9;:31::i;:::-;876:522;:::o;10600:279:6:-;10703:12;:10;:12::i;:::-;10691:24;;:8;:24;;;10687:54;;10724:17;;;;;;;;;;;;;;10687:54;10799:8;10754:18;:32;10773:12;:10;:12::i;:::-;10754:32;;;;;;;;;;;;;;;:42;10787:8;10754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10852:8;10823:48;;10838:12;:10;:12::i;:::-;10823:48;;;10862:8;10823:48;;;;;;:::i;:::-;;;;;;;;10600:279;;:::o;526:33:1:-;;;;:::o;2727:222::-;1452:1:17;299:42;1406:43;;;:47;1402:221;;;299:42;1474:40;;;1523:4;1530:10;1474:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1469:144;;1587:10;1568:30;;;;;;;;;;;:::i;:::-;;;;;;;;1469:144;1402:221;2894:47:1::1;2917:4;2923:2;2927:7;2936:4;2894:22;:47::i;:::-;2727:222:::0;;;;:::o;1908:361::-;1981:13;2012:16;2020:7;2012;:16::i;:::-;2007:59;;2037:29;;;;;;;;;;;;;;2007:59;2090:5;2078:17;;:8;;;;;;;;;;;:17;;;2075:66;;2115:14;2108:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2075:66;2191:1;2172:7;2166:21;;;;;:::i;:::-;;;:26;:95;;;;;;;;;;;;;;;;;2219:7;2228:18;:7;:16;:18::i;:::-;2202:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2166:95;2159:102;;1908:361;;;;:::o;3185:220::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3283:5:1::1;3263:25;;:18;;;;;;;;;;;:25;;::::0;3260:138:::1;;3325:4;3304:18;;:25;;;;;;;;;;;;;;;;;;3260:138;;;3381:5;3360:18;;:26;;;;;;;;;;;;;;;;;;3260:138;3185:220::o:0;566:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10950:164:6:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;3977:104:1:-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4062:11:1::1;4049:10;:24;;;;3977:104:::0;:::o;3415:126::-;1292:12:18;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3518:15:1::1;3501:14;:32;;;;;;:::i;:::-;;3415:126:::0;:::o;1970:201:18:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:1:::1;2059:22;;:8;:22;;::::0;2051:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;6211:372:6:-;6313:4;6365:25;6350:40;;;:11;:40;;;;:105;;;;6422:33;6407:48;;;:11;:48;;;;6350:105;:172;;;;6487:35;6472:50;;;:11;:50;;;;6350:172;:225;;;;6539:36;6563:11;6539:23;:36::i;:::-;6350:225;6330:245;;6211:372;;;:::o;1400:215:5:-;1502:4;1541:26;1526:41;;;:11;:41;;;;:81;;;;1571:36;1595:11;1571:23;:36::i;:::-;1526:81;1519:88;;1400:215;;;:::o;656:98:2:-;709:7;736:10;729:17;;656:98;:::o;2762:332:5:-;2881:17;:15;:17::i;:::-;2865:33;;:12;:33;;;;2857:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2984:1;2964:22;;:8;:22;;;2956:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3051:35;;;;;;;;3063:8;3051:35;;;;;;3073:12;3051:35;;;;;3029:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2762:332;;:::o;12275:144:6:-;12332:4;12366:13;;;;;;;;;;;12356:23;;:7;:23;:55;;;;;12384:11;:20;12396:7;12384:20;;;;;;;;;;;:27;;;;;;;;;;;;12383:28;12356:55;12349:62;;12275:144;;;:::o;19491:196::-;19633:2;19606:15;:24;19622:7;19606:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19671:7;19667:2;19651:28;;19660:5;19651:28;;;;;;;;;;;;19491:196;;;:::o;11181:170::-;11315:28;11325:4;11331:2;11335:7;11315:9;:28::i;:::-;11181:170;;;:::o;2394:97:5:-;2452:6;2478:5;2471:12;;2394:97;:::o;11422:185:6:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;7485:1083::-;7546:21;;:::i;:::-;7580:12;7595:7;7580:22;;7651:13;;;;;;;;;;7644:20;;:4;:20;7640:861;;;7685:31;7719:11;:17;7731:4;7719:17;;;;;;;;;;;7685:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:9;:16;;;7755:731;;7831:1;7805:28;;:9;:14;;;:28;;;7801:101;;7869:9;7862:16;;;;;;7801:101;8206:261;8213:4;8206:261;;;8246:6;;;;;;;;8291:11;:17;8303:4;8291:17;;;;;;;;;;;8279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:1;8339:28;;:9;:14;;;:28;;;8335:109;;8407:9;8400:16;;;;;;8335:109;8206:261;;;7755:731;7666:835;7640:861;8529:31;;;;;;;;;;;;;;7485:1083;;;;:::o;2331:191:18:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;12427:104:6:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;11678:342::-;11845:28;11855:4;11861:2;11865:7;11845:9;:28::i;:::-;11889:48;11912:4;11918:2;11922:7;11931:5;11889:22;:48::i;:::-;11884:129;;11961:40;;;;;;;;;;;;;;11884:129;11678:342;;;;:::o;342:723:21:-;398:13;628:1;619:5;:10;615:53;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;852:157:4:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;14992:2112:6:-;15107:35;15145:20;15157:7;15145:11;:20::i;:::-;15107:58;;15178:22;15220:13;:18;;;15204:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15255:50;15272:13;:18;;;15292:12;:10;:12::i;:::-;15255:16;:50::i;:::-;15204:101;:154;;;;15346:12;:10;:12::i;:::-;15322:36;;:20;15334:7;15322:11;:20::i;:::-;:36;;;15204:154;15178:181;;15377:17;15372:66;;15403:35;;;;;;;;;;;;;;15372:66;15475:4;15453:26;;:13;:18;;;:26;;;15449:67;;15488:28;;;;;;;;;;;;;;15449:67;15545:1;15531:16;;:2;:16;;;15527:52;;15556:23;;;;;;;;;;;;;;15527:52;15592:43;15614:4;15620:2;15624:7;15633:1;15592:21;:43::i;:::-;15700:49;15717:1;15721:7;15730:13;:18;;;15700:8;:49::i;:::-;16075:1;16045:12;:18;16058:4;16045:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:1;16091:12;:16;16104:2;16091:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165:2;16137:11;:20;16149:7;16137:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16227:15;16182:11;:20;16194:7;16182:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16495:19;16527:1;16517:7;:11;16495:33;;16588:1;16547:43;;:11;:24;16559:11;16547:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16543:445;;16772:13;;;;;;;;;;16758:27;;:11;:27;16754:219;;;16842:13;:18;;;16810:11;:24;16822:11;16810:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16925:13;:28;;;16883:11;:24;16895:11;16883:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16754:219;16543:445;16020:979;17035:7;17031:2;17016:27;;17025:4;17016:27;;;;;;;;;;;;17054:42;17075:4;17081:2;17085:7;17094:1;17054:20;:42::i;:::-;15096:2008;;14992:2112;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;20252:790::-;20407:4;20428:15;:2;:13;;;:15::i;:::-;20424:611;;;20480:2;20464:36;;;20501:12;:10;:12::i;:::-;20515:4;20521:7;20530:5;20464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20460:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:1;20710:6;:13;:18;20706:259;;20760:40;;;;;;;;;;;;;;20706:259;20915:6;20909:13;20900:6;20896:2;20892:15;20885:38;20460:520;20597:45;;;20587:55;;;:6;:55;;;;20580:62;;;;;20424:611;21019:4;21012:11;;20252:790;;;;;;;:::o;21690:159::-;;;;;:::o;22508:158::-;;;;;:::o;13316:1422::-;13455:20;13478:13;;;;;;;;;;;13455:36;;;;13520:1;13506:16;;:2;:16;;;13502:48;;13531:19;;;;;;;;;;;;;;13502:48;13577:1;13565:8;:13;13561:44;;13587:18;;;;;;;;;;;;;;13561:44;13618:61;13648:1;13652:2;13656:12;13670:8;13618:21;:61::i;:::-;13992:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:8;14016:12;:16;14029:2;14016:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:2;14082:11;:25;14094:12;14082:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14182:15;14132:11;:25;14144:12;14132:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14215:20;14238:12;14215:35;;14272:9;14267:328;14287:8;14283:1;:12;14267:328;;;14351:12;14347:2;14326:38;;14343:1;14326:38;;;;;;;;;;;;14387:4;:68;;;;;14396:59;14427:1;14431:2;14435:12;14449:5;14396:22;:59::i;:::-;14395:60;14387:68;14383:164;;;14487:40;;;;;;;;;;;;;;14383:164;14565:14;;;;;;;14297:3;;;;;;;14267:328;;;;14635:12;14611:13;;:37;;;;;;;;;;;;;;;;;;13932:728;14670:60;14699:1;14703:2;14707:12;14721:8;14670:20;:60::i;:::-;13444:1294;13316:1422;;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:22:-;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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:180;7841:77;7838:1;7831:88;7938:4;7935:1;7928:15;7962:4;7959:1;7952:15;7979:281;8062:27;8084:4;8062:27;:::i;:::-;8054:6;8050:40;8192:6;8180:10;8177:22;8156:18;8144:10;8141:34;8138:62;8135:88;;;8203:18;;:::i;:::-;8135:88;8243:10;8239:2;8232:22;8022:238;7979:281;;:::o;8266:129::-;8300:6;8327:20;;:::i;:::-;8317:30;;8356:33;8384:4;8376:6;8356:33;:::i;:::-;8266:129;;;:::o;8401:308::-;8463:4;8553:18;8545:6;8542:30;8539:56;;;8575:18;;:::i;:::-;8539:56;8613:29;8635:6;8613:29;:::i;:::-;8605:37;;8697:4;8691;8687:15;8679:23;;8401:308;;;:::o;8715:146::-;8812:6;8807:3;8802;8789:30;8853:1;8844:6;8839:3;8835:16;8828:27;8715:146;;;:::o;8867:425::-;8945:5;8970:66;8986:49;9028:6;8986:49;:::i;:::-;8970:66;:::i;:::-;8961:75;;9059:6;9052:5;9045:21;9097:4;9090:5;9086:16;9135:3;9126:6;9121:3;9117:16;9114:25;9111:112;;;9142:79;;:::i;:::-;9111:112;9232:54;9279:6;9274:3;9269;9232:54;:::i;:::-;8951:341;8867:425;;;;;:::o;9312:340::-;9368:5;9417:3;9410:4;9402:6;9398:17;9394:27;9384:122;;9425:79;;:::i;:::-;9384:122;9542:6;9529:20;9567:79;9642:3;9634:6;9627:4;9619:6;9615:17;9567:79;:::i;:::-;9558:88;;9374:278;9312:340;;;;:::o;9658:509::-;9727:6;9776:2;9764:9;9755:7;9751:23;9747:32;9744:119;;;9782:79;;:::i;:::-;9744:119;9930:1;9919:9;9915:17;9902:31;9960:18;9952:6;9949:30;9946:117;;;9982:79;;:::i;:::-;9946:117;10087:63;10142:7;10133:6;10122:9;10118:22;10087:63;:::i;:::-;10077:73;;9873:287;9658:509;;;;:::o;10173:329::-;10232:6;10281:2;10269:9;10260:7;10256:23;10252:32;10249:119;;;10287:79;;:::i;:::-;10249:119;10407:1;10432:53;10477:7;10468:6;10457:9;10453:22;10432:53;:::i;:::-;10422:63;;10378:117;10173:329;;;;:::o;10508:117::-;10617:1;10614;10607:12;10631:117;10740:1;10737;10730:12;10768:553;10826:8;10836:6;10886:3;10879:4;10871:6;10867:17;10863:27;10853:122;;10894:79;;:::i;:::-;10853:122;11007:6;10994:20;10984:30;;11037:18;11029:6;11026:30;11023:117;;;11059:79;;:::i;:::-;11023:117;11173:4;11165:6;11161:17;11149:29;;11227:3;11219:4;11211:6;11207:17;11197:8;11193:32;11190:41;11187:128;;;11234:79;;:::i;:::-;11187:128;10768:553;;;;;:::o;11327:529::-;11398:6;11406;11455:2;11443:9;11434:7;11430:23;11426:32;11423:119;;;11461:79;;:::i;:::-;11423:119;11609:1;11598:9;11594:17;11581:31;11639:18;11631:6;11628:30;11625:117;;;11661:79;;:::i;:::-;11625:117;11774:65;11831:7;11822:6;11811:9;11807:22;11774:65;:::i;:::-;11756:83;;;;11552:297;11327:529;;;;;:::o;11862:116::-;11932:21;11947:5;11932:21;:::i;:::-;11925:5;11922:32;11912:60;;11968:1;11965;11958:12;11912:60;11862:116;:::o;11984:133::-;12027:5;12065:6;12052:20;12043:29;;12081:30;12105:5;12081:30;:::i;:::-;11984:133;;;;:::o;12123:468::-;12188:6;12196;12245:2;12233:9;12224:7;12220:23;12216:32;12213:119;;;12251:79;;:::i;:::-;12213:119;12371:1;12396:53;12441:7;12432:6;12421:9;12417:22;12396:53;:::i;:::-;12386:63;;12342:117;12498:2;12524:50;12566:7;12557:6;12546:9;12542:22;12524:50;:::i;:::-;12514:60;;12469:115;12123:468;;;;;:::o;12597:307::-;12658:4;12748:18;12740:6;12737:30;12734:56;;;12770:18;;:::i;:::-;12734:56;12808:29;12830:6;12808:29;:::i;:::-;12800:37;;12892:4;12886;12882:15;12874:23;;12597:307;;;:::o;12910:423::-;12987:5;13012:65;13028:48;13069:6;13028:48;:::i;:::-;13012:65;:::i;:::-;13003:74;;13100:6;13093:5;13086:21;13138:4;13131:5;13127:16;13176:3;13167:6;13162:3;13158:16;13155:25;13152:112;;;13183:79;;:::i;:::-;13152:112;13273:54;13320:6;13315:3;13310;13273:54;:::i;:::-;12993:340;12910:423;;;;;:::o;13352:338::-;13407:5;13456:3;13449:4;13441:6;13437:17;13433:27;13423:122;;13464:79;;:::i;:::-;13423:122;13581:6;13568:20;13606:78;13680:3;13672:6;13665:4;13657:6;13653:17;13606:78;:::i;:::-;13597:87;;13413:277;13352:338;;;;:::o;13696:943::-;13791:6;13799;13807;13815;13864:3;13852:9;13843:7;13839:23;13835:33;13832:120;;;13871:79;;:::i;:::-;13832:120;13991:1;14016:53;14061:7;14052:6;14041:9;14037:22;14016:53;:::i;:::-;14006:63;;13962:117;14118:2;14144:53;14189:7;14180:6;14169:9;14165:22;14144:53;:::i;:::-;14134:63;;14089:118;14246:2;14272:53;14317:7;14308:6;14297:9;14293:22;14272:53;:::i;:::-;14262:63;;14217:118;14402:2;14391:9;14387:18;14374:32;14433:18;14425:6;14422:30;14419:117;;;14455:79;;:::i;:::-;14419:117;14560:62;14614:7;14605:6;14594:9;14590:22;14560:62;:::i;:::-;14550:72;;14345:287;13696:943;;;;;;;:::o;14645:474::-;14713:6;14721;14770:2;14758:9;14749:7;14745:23;14741:32;14738:119;;;14776:79;;:::i;:::-;14738:119;14896:1;14921:53;14966:7;14957:6;14946:9;14942:22;14921:53;:::i;:::-;14911:63;;14867:117;15023:2;15049:53;15094:7;15085:6;15074:9;15070:22;15049:53;:::i;:::-;15039:63;;14994:118;14645:474;;;;;:::o;15125:182::-;15265:34;15261:1;15253:6;15249:14;15242:58;15125:182;:::o;15313:366::-;15455:3;15476:67;15540:2;15535:3;15476:67;:::i;:::-;15469:74;;15552:93;15641:3;15552:93;:::i;:::-;15670:2;15665:3;15661:12;15654:19;;15313:366;;;:::o;15685:419::-;15851:4;15889:2;15878:9;15874:18;15866:26;;15938:9;15932:4;15928:20;15924:1;15913:9;15909:17;15902:47;15966:131;16092:4;15966:131;:::i;:::-;15958:139;;15685:419;;;:::o;16110:180::-;16158:77;16155:1;16148:88;16255:4;16252:1;16245:15;16279:4;16276:1;16269:15;16296:320;16340:6;16377:1;16371:4;16367:12;16357:22;;16424:1;16418:4;16414:12;16445:18;16435:81;;16501:4;16493:6;16489:17;16479:27;;16435:81;16563:2;16555:6;16552:14;16532:18;16529:38;16526:84;;16582:18;;:::i;:::-;16526:84;16347:269;16296:320;;;:::o;16622:332::-;16743:4;16781:2;16770:9;16766:18;16758:26;;16794:71;16862:1;16851:9;16847:17;16838:6;16794:71;:::i;:::-;16875:72;16943:2;16932:9;16928:18;16919:6;16875:72;:::i;:::-;16622:332;;;;;:::o;16960:137::-;17014:5;17045:6;17039:13;17030:22;;17061:30;17085:5;17061:30;:::i;:::-;16960:137;;;;:::o;17103:345::-;17170:6;17219:2;17207:9;17198:7;17194:23;17190:32;17187:119;;;17225:79;;:::i;:::-;17187:119;17345:1;17370:61;17423:7;17414:6;17403:9;17399:22;17370:61;:::i;:::-;17360:71;;17316:125;17103:345;;;;:::o;17454:180::-;17502:77;17499:1;17492:88;17599:4;17596:1;17589:15;17623:4;17620:1;17613:15;17640:410;17680:7;17703:20;17721:1;17703:20;:::i;:::-;17698:25;;17737:20;17755:1;17737:20;:::i;:::-;17732:25;;17792:1;17789;17785:9;17814:30;17832:11;17814:30;:::i;:::-;17803:41;;17993:1;17984:7;17980:15;17977:1;17974:22;17954:1;17947:9;17927:83;17904:139;;18023:18;;:::i;:::-;17904:139;17688:362;17640:410;;;;:::o;18056:180::-;18104:77;18101:1;18094:88;18201:4;18198:1;18191:15;18225:4;18222:1;18215:15;18242:185;18282:1;18299:20;18317:1;18299:20;:::i;:::-;18294:25;;18333:20;18351:1;18333:20;:::i;:::-;18328:25;;18372:1;18362:35;;18377:18;;:::i;:::-;18362:35;18419:1;18416;18412:9;18407:14;;18242:185;;;;:::o;18433:147::-;18534:11;18571:3;18556:18;;18433:147;;;;:::o;18586:114::-;;:::o;18706:398::-;18865:3;18886:83;18967:1;18962:3;18886:83;:::i;:::-;18879:90;;18978:93;19067:3;18978:93;:::i;:::-;19096:1;19091:3;19087:11;19080:18;;18706:398;;;:::o;19110:379::-;19294:3;19316:147;19459:3;19316:147;:::i;:::-;19309:154;;19480:3;19473:10;;19110:379;;;:::o;19495:141::-;19544:4;19567:3;19559:11;;19590:3;19587:1;19580:14;19624:4;19621:1;19611:18;19603:26;;19495:141;;;:::o;19642:93::-;19679:6;19726:2;19721;19714:5;19710:14;19706:23;19696:33;;19642:93;;;:::o;19741:107::-;19785:8;19835:5;19829:4;19825:16;19804:37;;19741:107;;;;:::o;19854:393::-;19923:6;19973:1;19961:10;19957:18;19996:97;20026:66;20015:9;19996:97;:::i;:::-;20114:39;20144:8;20133:9;20114:39;:::i;:::-;20102:51;;20186:4;20182:9;20175:5;20171:21;20162:30;;20235:4;20225:8;20221:19;20214:5;20211:30;20201:40;;19930:317;;19854:393;;;;;:::o;20253:60::-;20281:3;20302:5;20295:12;;20253:60;;;:::o;20319:142::-;20369:9;20402:53;20420:34;20429:24;20447:5;20429:24;:::i;:::-;20420:34;:::i;:::-;20402:53;:::i;:::-;20389:66;;20319:142;;;:::o;20467:75::-;20510:3;20531:5;20524:12;;20467:75;;;:::o;20548:269::-;20658:39;20689:7;20658:39;:::i;:::-;20719:91;20768:41;20792:16;20768:41;:::i;:::-;20760:6;20753:4;20747:11;20719:91;:::i;:::-;20713:4;20706:105;20624:193;20548:269;;;:::o;20823:73::-;20868:3;20823:73;:::o;20902:189::-;20979:32;;:::i;:::-;21020:65;21078:6;21070;21064:4;21020:65;:::i;:::-;20955:136;20902:189;;:::o;21097:186::-;21157:120;21174:3;21167:5;21164:14;21157:120;;;21228:39;21265:1;21258:5;21228:39;:::i;:::-;21201:1;21194:5;21190:13;21181:22;;21157:120;;;21097:186;;:::o;21289:543::-;21390:2;21385:3;21382:11;21379:446;;;21424:38;21456:5;21424:38;:::i;:::-;21508:29;21526:10;21508:29;:::i;:::-;21498:8;21494:44;21691:2;21679:10;21676:18;21673:49;;;21712:8;21697:23;;21673:49;21735:80;21791:22;21809:3;21791:22;:::i;:::-;21781:8;21777:37;21764:11;21735:80;:::i;:::-;21394:431;;21379:446;21289:543;;;:::o;21838:117::-;21892:8;21942:5;21936:4;21932:16;21911:37;;21838:117;;;;:::o;21961:169::-;22005:6;22038:51;22086:1;22082:6;22074:5;22071:1;22067:13;22038:51;:::i;:::-;22034:56;22119:4;22113;22109:15;22099:25;;22012:118;21961:169;;;;:::o;22135:295::-;22211:4;22357:29;22382:3;22376:4;22357:29;:::i;:::-;22349:37;;22419:3;22416:1;22412:11;22406:4;22403:21;22395:29;;22135:295;;;;:::o;22435:1395::-;22552:37;22585:3;22552:37;:::i;:::-;22654:18;22646:6;22643:30;22640:56;;;22676:18;;:::i;:::-;22640:56;22720:38;22752:4;22746:11;22720:38;:::i;:::-;22805:67;22865:6;22857;22851:4;22805:67;:::i;:::-;22899:1;22923:4;22910:17;;22955:2;22947:6;22944:14;22972:1;22967:618;;;;23629:1;23646:6;23643:77;;;23695:9;23690:3;23686:19;23680:26;23671:35;;23643:77;23746:67;23806:6;23799:5;23746:67;:::i;:::-;23740:4;23733:81;23602:222;22937:887;;22967:618;23019:4;23015:9;23007:6;23003:22;23053:37;23085:4;23053:37;:::i;:::-;23112:1;23126:208;23140:7;23137:1;23134:14;23126:208;;;23219:9;23214:3;23210:19;23204:26;23196:6;23189:42;23270:1;23262:6;23258:14;23248:24;;23317:2;23306:9;23302:18;23289:31;;23163:4;23160:1;23156:12;23151:17;;23126:208;;;23362:6;23353:7;23350:19;23347:179;;;23420:9;23415:3;23411:19;23405:26;23463:48;23505:4;23497:6;23493:17;23482:9;23463:48;:::i;:::-;23455:6;23448:64;23370:156;23347:179;23572:1;23568;23560:6;23556:14;23552:22;23546:4;23539:36;22974:611;;;22937:887;;22527:1303;;;22435:1395;;:::o;23836:97::-;23895:6;23923:3;23913:13;;23836:97;;;;:::o;23939:1403::-;24063:44;24103:3;24098;24063:44;:::i;:::-;24172:18;24164:6;24161:30;24158:56;;;24194:18;;:::i;:::-;24158:56;24238:38;24270:4;24264:11;24238:38;:::i;:::-;24323:67;24383:6;24375;24369:4;24323:67;:::i;:::-;24417:1;24446:2;24438:6;24435:14;24463:1;24458:632;;;;25134:1;25151:6;25148:84;;;25207:9;25202:3;25198:19;25185:33;25176:42;;25148:84;25258:67;25318:6;25311:5;25258:67;:::i;:::-;25252:4;25245:81;25107:229;24428:908;;24458:632;24510:4;24506:9;24498:6;24494:22;24544:37;24576:4;24544:37;:::i;:::-;24603:1;24617:215;24631:7;24628:1;24625:14;24617:215;;;24717:9;24712:3;24708:19;24695:33;24687:6;24680:49;24768:1;24760:6;24756:14;24746:24;;24815:2;24804:9;24800:18;24787:31;;24654:4;24651:1;24647:12;24642:17;;24617:215;;;24860:6;24851:7;24848:19;24845:186;;;24925:9;24920:3;24916:19;24903:33;24968:48;25010:4;25002:6;24998:17;24987:9;24968:48;:::i;:::-;24960:6;24953:64;24868:163;24845:186;25077:1;25073;25065:6;25061:14;25057:22;25051:4;25044:36;24465:625;;;24428:908;;24038:1304;;;23939:1403;;;:::o;25348:191::-;25388:3;25407:20;25425:1;25407:20;:::i;:::-;25402:25;;25441:20;25459:1;25441:20;:::i;:::-;25436:25;;25484:1;25481;25477:9;25470:16;;25505:3;25502:1;25499:10;25496:36;;;25512:18;;:::i;:::-;25496:36;25348:191;;;;:::o;25545:172::-;25685:24;25681:1;25673:6;25669:14;25662:48;25545:172;:::o;25723:366::-;25865:3;25886:67;25950:2;25945:3;25886:67;:::i;:::-;25879:74;;25962:93;26051:3;25962:93;:::i;:::-;26080:2;26075:3;26071:12;26064:19;;25723:366;;;:::o;26095:419::-;26261:4;26299:2;26288:9;26284:18;26276:26;;26348:9;26342:4;26338:20;26334:1;26323:9;26319:17;26312:47;26376:131;26502:4;26376:131;:::i;:::-;26368:139;;26095:419;;;:::o;26520:168::-;26660:20;26656:1;26648:6;26644:14;26637:44;26520:168;:::o;26694:366::-;26836:3;26857:67;26921:2;26916:3;26857:67;:::i;:::-;26850:74;;26933:93;27022:3;26933:93;:::i;:::-;27051:2;27046:3;27042:12;27035:19;;26694:366;;;:::o;27066:419::-;27232:4;27270:2;27259:9;27255:18;27247:26;;27319:9;27313:4;27309:20;27305:1;27294:9;27290:17;27283:47;27347:131;27473:4;27347:131;:::i;:::-;27339:139;;27066:419;;;:::o;27491:174::-;27631:26;27627:1;27619:6;27615:14;27608:50;27491:174;:::o;27671:366::-;27813:3;27834:67;27898:2;27893:3;27834:67;:::i;:::-;27827:74;;27910:93;27999:3;27910:93;:::i;:::-;28028:2;28023:3;28019:12;28012:19;;27671:366;;;:::o;28043:419::-;28209:4;28247:2;28236:9;28232:18;28224:26;;28296:9;28290:4;28286:20;28282:1;28271:9;28267:17;28260:47;28324:131;28450:4;28324:131;:::i;:::-;28316:139;;28043:419;;;:::o;28468:171::-;28608:23;28604:1;28596:6;28592:14;28585:47;28468:171;:::o;28645:366::-;28787:3;28808:67;28872:2;28867:3;28808:67;:::i;:::-;28801:74;;28884:93;28973:3;28884:93;:::i;:::-;29002:2;28997:3;28993:12;28986:19;;28645:366;;;:::o;29017:419::-;29183:4;29221:2;29210:9;29206:18;29198:26;;29270:9;29264:4;29260:20;29256:1;29245:9;29241:17;29234:47;29298:131;29424:4;29298:131;:::i;:::-;29290:139;;29017:419;;;:::o;29442:148::-;29544:11;29581:3;29566:18;;29442:148;;;;:::o;29620:874::-;29723:3;29760:5;29754:12;29789:36;29815:9;29789:36;:::i;:::-;29841:89;29923:6;29918:3;29841:89;:::i;:::-;29834:96;;29961:1;29950:9;29946:17;29977:1;29972:166;;;;30152:1;30147:341;;;;29939:549;;29972:166;30056:4;30052:9;30041;30037:25;30032:3;30025:38;30118:6;30111:14;30104:22;30096:6;30092:35;30087:3;30083:45;30076:52;;29972:166;;30147:341;30214:38;30246:5;30214:38;:::i;:::-;30274:1;30288:154;30302:6;30299:1;30296:13;30288:154;;;30376:7;30370:14;30366:1;30361:3;30357:11;30350:35;30426:1;30417:7;30413:15;30402:26;;30324:4;30321:1;30317:12;30312:17;;30288:154;;;30471:6;30466:3;30462:16;30455:23;;30154:334;;29939:549;;29727:767;;29620:874;;;;:::o;30500:390::-;30606:3;30634:39;30667:5;30634:39;:::i;:::-;30689:89;30771:6;30766:3;30689:89;:::i;:::-;30682:96;;30787:65;30845:6;30840:3;30833:4;30826:5;30822:16;30787:65;:::i;:::-;30877:6;30872:3;30868:16;30861:23;;30610:280;30500:390;;;;:::o;30896:155::-;31036:7;31032:1;31024:6;31020:14;31013:31;30896:155;:::o;31057:400::-;31217:3;31238:84;31320:1;31315:3;31238:84;:::i;:::-;31231:91;;31331:93;31420:3;31331:93;:::i;:::-;31449:1;31444:3;31440:11;31433:18;;31057:400;;;:::o;31463:695::-;31741:3;31763:92;31851:3;31842:6;31763:92;:::i;:::-;31756:99;;31872:95;31963:3;31954:6;31872:95;:::i;:::-;31865:102;;31984:148;32128:3;31984:148;:::i;:::-;31977:155;;32149:3;32142:10;;31463:695;;;;;:::o;32164:225::-;32304:34;32300:1;32292:6;32288:14;32281:58;32373:8;32368:2;32360:6;32356:15;32349:33;32164:225;:::o;32395:366::-;32537:3;32558:67;32622:2;32617:3;32558:67;:::i;:::-;32551:74;;32634:93;32723:3;32634:93;:::i;:::-;32752:2;32747:3;32743:12;32736:19;;32395:366;;;:::o;32767:419::-;32933:4;32971:2;32960:9;32956:18;32948:26;;33020:9;33014:4;33010:20;33006:1;32995:9;32991:17;32984:47;33048:131;33174:4;33048:131;:::i;:::-;33040:139;;32767:419;;;:::o;33192:229::-;33332:34;33328:1;33320:6;33316:14;33309:58;33401:12;33396:2;33388:6;33384:15;33377:37;33192:229;:::o;33427:366::-;33569:3;33590:67;33654:2;33649:3;33590:67;:::i;:::-;33583:74;;33666:93;33755:3;33666:93;:::i;:::-;33784:2;33779:3;33775:12;33768:19;;33427:366;;;:::o;33799:419::-;33965:4;34003:2;33992:9;33988:18;33980:26;;34052:9;34046:4;34042:20;34038:1;34027:9;34023:17;34016:47;34080:131;34206:4;34080:131;:::i;:::-;34072:139;;33799:419;;;:::o;34224:175::-;34364:27;34360:1;34352:6;34348:14;34341:51;34224:175;:::o;34405:366::-;34547:3;34568:67;34632:2;34627:3;34568:67;:::i;:::-;34561:74;;34644:93;34733:3;34644:93;:::i;:::-;34762:2;34757:3;34753:12;34746:19;;34405:366;;;:::o;34777:419::-;34943:4;34981:2;34970:9;34966:18;34958:26;;35030:9;35024:4;35020:20;35016:1;35005:9;35001:17;34994:47;35058:131;35184:4;35058:131;:::i;:::-;35050:139;;34777:419;;;:::o;35202:233::-;35241:3;35264:24;35282:5;35264:24;:::i;:::-;35255:33;;35310:66;35303:5;35300:77;35297:103;;35380:18;;:::i;:::-;35297:103;35427:1;35420:5;35416:13;35409:20;;35202:233;;;:::o;35441:194::-;35481:4;35501:20;35519:1;35501:20;:::i;:::-;35496:25;;35535:20;35553:1;35535:20;:::i;:::-;35530:25;;35579:1;35576;35572:9;35564:17;;35603:1;35597:4;35594:11;35591:37;;;35608:18;;:::i;:::-;35591:37;35441:194;;;;:::o;35641:176::-;35673:1;35690:20;35708:1;35690:20;:::i;:::-;35685:25;;35724:20;35742:1;35724:20;:::i;:::-;35719:25;;35763:1;35753:35;;35768:18;;:::i;:::-;35753:35;35809:1;35806;35802:9;35797:14;;35641:176;;;;:::o;35823:180::-;35871:77;35868:1;35861:88;35968:4;35965:1;35958:15;35992:4;35989:1;35982:15;36009:98;36060:6;36094:5;36088:12;36078:22;;36009:98;;;:::o;36113:168::-;36196:11;36230:6;36225:3;36218:19;36270:4;36265:3;36261:14;36246:29;;36113:168;;;;:::o;36287:373::-;36373:3;36401:38;36433:5;36401:38;:::i;:::-;36455:70;36518:6;36513:3;36455:70;:::i;:::-;36448:77;;36534:65;36592:6;36587:3;36580:4;36573:5;36569:16;36534:65;:::i;:::-;36624:29;36646:6;36624:29;:::i;:::-;36619:3;36615:39;36608:46;;36377:283;36287:373;;;;:::o;36666:640::-;36861:4;36899:3;36888:9;36884:19;36876:27;;36913:71;36981:1;36970:9;36966:17;36957:6;36913:71;:::i;:::-;36994:72;37062:2;37051:9;37047:18;37038:6;36994:72;:::i;:::-;37076;37144:2;37133:9;37129:18;37120:6;37076:72;:::i;:::-;37195:9;37189:4;37185:20;37180:2;37169:9;37165:18;37158:48;37223:76;37294:4;37285:6;37223:76;:::i;:::-;37215:84;;36666:640;;;;;;;:::o;37312:141::-;37368:5;37399:6;37393:13;37384:22;;37415:32;37441:5;37415:32;:::i;:::-;37312:141;;;;:::o;37459:349::-;37528:6;37577:2;37565:9;37556:7;37552:23;37548:32;37545:119;;;37583:79;;:::i;:::-;37545:119;37703:1;37728:63;37783:7;37774:6;37763:9;37759:22;37728:63;:::i;:::-;37718:73;;37674:127;37459:349;;;;:::o
Swarm Source
ipfs://53752884d9738f14eb55f0deb4805d5d4f8a59a05a24e4bf46a105bbb845c78e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.