Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
B2D
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-07 */ // File: erc721a-upgradeable/contracts/IERC721AUpgradeable.sol // SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721AUpgradeable { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a-upgradeable/contracts/ERC721AStorage.sol pragma solidity ^0.8.0; library ERC721AStorage { // Reference type for token approval. struct TokenApprovalRef { address value; } struct Layout { // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 _currentIndex; // The number of tokens burned. uint256 _burnCounter; // Token name string _name; // Token symbol string _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => ERC721AStorage.TokenApprovalRef) _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) _operatorApprovals; } bytes32 internal constant STORAGE_SLOT = keccak256('ERC721A.contracts.storage.ERC721A'); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } } // File: erc721a-upgradeable/contracts/ERC721A__InitializableStorage.sol pragma solidity ^0.8.0; /** * @dev This is a base storage for the initialization function for upgradeable diamond facet contracts **/ library ERC721A__InitializableStorage { struct Layout { /* * Indicates that the contract has been initialized. */ bool _initialized; /* * Indicates that the contract is in the process of being initialized. */ bool _initializing; } bytes32 internal constant STORAGE_SLOT = keccak256('ERC721A.contracts.storage.initializable.facet'); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } } // File: erc721a-upgradeable/contracts/ERC721A__Initializable.sol pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable diamond facet contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract ERC721A__Initializable { using ERC721A__InitializableStorage for ERC721A__InitializableStorage.Layout; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializerERC721A() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require( ERC721A__InitializableStorage.layout()._initializing ? _isConstructor() : !ERC721A__InitializableStorage.layout()._initialized, 'ERC721A__Initializable: contract is already initialized' ); bool isTopLevelCall = !ERC721A__InitializableStorage.layout()._initializing; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = true; ERC721A__InitializableStorage.layout()._initialized = true; } _; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializingERC721A() { require( ERC721A__InitializableStorage.layout()._initializing, 'ERC721A__Initializable: contract is not initializing' ); _; } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } } // File: erc721a-upgradeable/contracts/ERC721AUpgradeable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721ReceiverUpgradeable { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721AUpgradeable is ERC721A__Initializable, IERC721AUpgradeable { using ERC721AStorage for ERC721AStorage.Layout; // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // CONSTRUCTOR // ============================================================= function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializingERC721A { __ERC721A_init_unchained(name_, symbol_); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializingERC721A { ERC721AStorage.layout()._name = name_; ERC721AStorage.layout()._symbol = symbol_; ERC721AStorage.layout()._currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return ERC721AStorage.layout()._currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return ERC721AStorage.layout()._currentIndex - ERC721AStorage.layout()._burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return ERC721AStorage.layout()._currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return ERC721AStorage.layout()._burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return ERC721AStorage.layout()._packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (ERC721AStorage.layout()._packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (ERC721AStorage.layout()._packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(ERC721AStorage.layout()._packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = ERC721AStorage.layout()._packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); ERC721AStorage.layout()._packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return ERC721AStorage.layout()._name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return ERC721AStorage.layout()._symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(ERC721AStorage.layout()._packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (ERC721AStorage.layout()._packedOwnerships[index] == 0) { ERC721AStorage.layout()._packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < ERC721AStorage.layout()._currentIndex) { uint256 packed = ERC721AStorage.layout()._packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = ERC721AStorage.layout()._packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } ERC721AStorage.layout()._tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return ERC721AStorage.layout()._tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); ERC721AStorage.layout()._operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return ERC721AStorage.layout()._operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < ERC721AStorage.layout()._currentIndex && // If within bounds, ERC721AStorage.layout()._packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { ERC721AStorage.TokenApprovalRef storage tokenApproval = ERC721AStorage.layout()._tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --ERC721AStorage.layout()._packedAddressData[from]; // Updates: `balance -= 1`. ++ERC721AStorage.layout()._packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. ERC721AStorage.layout()._packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721ReceiverUpgradeable(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (bytes4 retval) { return retval == ERC721A__IERC721ReceiverUpgradeable(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = ERC721AStorage.layout()._currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. ERC721AStorage.layout()._packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); ERC721AStorage.layout()._currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = ERC721AStorage.layout()._currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. ERC721AStorage.layout()._packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); ERC721AStorage.layout()._currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = ERC721AStorage.layout()._currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (ERC721AStorage.layout()._currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. ERC721AStorage.layout()._packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. ERC721AStorage.layout()._packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { ERC721AStorage.layout()._burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = ERC721AStorage.layout()._packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); ERC721AStorage.layout()._packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol // OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } } // File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol // 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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } // File: @openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol // 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 IERC165Upgradeable { /** * @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); } // File: @openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @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 IERC2981Upgradeable is IERC165Upgradeable { /** * @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); } // File: @openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @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 ERC2981Upgradeable is Initializable, IERC2981Upgradeable, ERC165Upgradeable { function __ERC2981_init() internal onlyInitializing { } function __ERC2981_init_unchained() internal onlyInitializing { } 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(IERC165Upgradeable, ERC165Upgradeable) returns (bool) { return interfaceId == type(IERC2981Upgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981Upgradeable */ 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]; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; } // File: @openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } // File: @openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } // File: contracts/B2D.sol pragma solidity ^0.8.4; /** * @title Born 2 Die. * @author Bandit * @dev the token id starts from `1`. */ contract B2D is ERC721AUpgradeable, ERC2981Upgradeable, OwnableUpgradeable, ReentrancyGuardUpgradeable, PausableUpgradeable { using StringsUpgradeable for uint256; string public baseURI; string public notRevealedURI; uint256 public maxSupply; mapping(address => bool) private whitelisted; mapping(address => bool) private tokenMinted; function __B2D_init( string memory _name, string memory _symbol, string memory _URI, uint256 _maxSupply, address _royaltyReceiver, uint96 _royalty ) external initializerERC721A initializer { __ERC721A_init(_name, _symbol); __Ownable_init_unchained(); __ERC2981_init_unchained(); __ReentrancyGuard_init_unchained(); __Pausable_init_unchained(); _setDefaultRoyalty(_royaltyReceiver, _royalty); notRevealedURI = _URI; maxSupply = _maxSupply; _pause(); } receive() external payable { revert("Not allowed"); } fallback() external payable { revert("No fallback calls"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view override(ERC2981Upgradeable, ERC721AUpgradeable) returns (bool) { return ERC2981Upgradeable.supportsInterface(interfaceId) || ERC721AUpgradeable.supportsInterface(interfaceId); } /** * @dev Token id starts from 1. */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @dev See {ERC721-_safeMint}. */ function mint() external nonReentrant whenNotPaused { require(1 + totalSupply() <= maxSupply, "supply exceeded"); require(whitelisted[msg.sender], "user not whitelisted"); require(!tokenMinted[msg.sender], "token already minted"); tokenMinted[msg.sender] = true; _safeMint(msg.sender, 1); } /** * @dev See {ERC721-_safeMint}. * @notice Only the `owner` can mint. */ function teamMint(uint256 _quantity) external onlyOwner nonReentrant { require(_quantity != 0, "invalid quantity"); require(_quantity + totalSupply() <= maxSupply, "supply exceeded"); _safeMint(msg.sender, _quantity); } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. */ function _baseURI() internal view override returns (string memory) { return baseURI; } /** * @dev See {IERC721Metadata-tokenURI}. * @notice Once the `baseURI` is set the token is assumed as revealed. */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); if (bytes(baseURI).length <= 0) { return notRevealedURI; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")) : ""; } /** * @dev To check the status of reveal. * @notice Once the `baseURI` is set the token is assumed as revealed. */ function revealed() public view returns (bool) { return bytes(baseURI).length > 0; } /** * @dev To set or update the `baseURI`. * @notice Only the owner can invoke this method, do set the `baseURI` along * with `/` at the end. */ function setBaseURI(string memory _URI) external onlyOwner { baseURI = _URI; } /** * @dev To set or update the `notRevealedURI`. * @notice Only the owner can invoke this method. */ function setNotRevealedURI(string memory _URI) external onlyOwner { notRevealedURI = _URI; } /** * @dev To set or update the `maxSupply`. * @notice Only the owner can invoke this method */ function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } /** * @dev To withdraw the funds from contract. * @notice Only the owner can invoke this method. */ function withdraw() external onlyOwner { (bool sent, ) = payable(owner()).call{ value: (address(this).balance) }(""); require(sent, "withdraw failed"); } /** * @dev To un pause the contract. * @notice Only the owner can invoke this method. */ function unpause() external onlyOwner whenPaused{ _unpause(); } /** * @dev To pause the contract. * @notice Only the owner can invoke this method. */ function pause() external onlyOwner whenNotPaused{ _pause(); } /** * @dev To whitelist wallet address for mint. * @notice Only the owner can invoke this method. */ function whitelist(address[] memory _accounts) external onlyOwner { for (uint256 i; i < _accounts.length; i++) { whitelisted[_accounts[i]] = true; } } /** * @dev To delist wallet address for mint. * @notice Only the owner can invoke this method. */ function delist(address[] memory _accounts) external onlyOwner { for (uint256 i; i < _accounts.length; i++) { whitelisted[_accounts[i]] = false; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_URI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royalty","type":"uint96"}],"name":"__B2D_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"delist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b5061492c806100206000396000f3fe6080604052600436106101fd5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610738578063d5abeb0114610775578063e985e9c5146107a0578063f2c4ce1e146107dd578063f2fde38b146108065761023d565b8063a22cb46514610694578063b88d4fde146106bd578063ba24637e146106e6578063bd8aa7801461070f5761023d565b806372250380116100dc57806372250380146105fc5780638456cb59146106275780638da5cb5b1461063e57806395d89b41146106695761023d565b80636c0360eb146105545780636f8b44b01461057f57806370a08231146105a8578063715018a6146105e55761023d565b80632fbba1151161019057806342842e0e1161015f57806342842e0e1461046f578063518302271461049857806355f804b3146104c35780635c975abb146104ec5780636352211e146105175761023d565b80632fbba115146103ef57806332cd0487146104185780633ccfd60b146104415780633f4ba83a146104585761023d565b80631249c58b116101cc5780631249c58b1461034657806318160ddd1461035d57806323b872dd146103885780632a55205a146103b15761023d565b806301ffc9a71461027857806306fdde03146102b5578063081812fc146102e0578063095ea7b31461031d5761023d565b3661023d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023490613de3565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026f90613f23565b60405180910390fd5b34801561028457600080fd5b5061029f600480360381019061029a9190613589565b61082f565b6040516102ac9190613c8b565b60405180910390f35b3480156102c157600080fd5b506102ca610851565b6040516102d79190613cc1565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061370d565b6108ec565b6040516103149190613bfb565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190613500565b610974565b005b34801561035257600080fd5b5061035b610ac1565b005b34801561036957600080fd5b50610372610cf9565b60405161037f9190613f43565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa91906133ea565b610d22565b005b3480156103bd57600080fd5b506103d860048036038101906103d3919061373a565b61107d565b6040516103e6929190613c62565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061370d565b611268565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613540565b61136f565b005b34801561044d57600080fd5b5061045661140d565b005b34801561046457600080fd5b5061046d6114cb565b005b34801561047b57600080fd5b50610496600480360381019061049191906133ea565b6114e5565b005b3480156104a457600080fd5b506104ad611505565b6040516104ba9190613c8b565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906135e3565b61151e565b005b3480156104f857600080fd5b50610501611541565b60405161050e9190613c8b565b60405180910390f35b34801561052357600080fd5b5061053e6004803603810190610539919061370d565b611558565b60405161054b9190613bfb565b60405180910390f35b34801561056057600080fd5b5061056961156a565b6040516105769190613cc1565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a1919061370d565b6115f9565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061337d565b61160c565b6040516105dc9190613f43565b60405180910390f35b3480156105f157600080fd5b506105fa6116ce565b005b34801561060857600080fd5b506106116116e2565b60405161061e9190613cc1565b60405180910390f35b34801561063357600080fd5b5061063c611771565b005b34801561064a57600080fd5b5061065361178b565b6040516106609190613bfb565b60405180910390f35b34801561067557600080fd5b5061067e6117b5565b60405161068b9190613cc1565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b691906134c0565b611850565b005b3480156106c957600080fd5b506106e460048036038101906106df919061343d565b6119d1565b005b3480156106f257600080fd5b5061070d6004803603810190610708919061362c565b611a44565b005b34801561071b57600080fd5b5061073660048036038101906107319190613540565b611cf9565b005b34801561074457600080fd5b5061075f600480360381019061075a919061370d565b611d97565b60405161076c9190613cc1565b60405180910390f35b34801561078157600080fd5b5061078a611eec565b6040516107979190613f43565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906133aa565b611ef3565b6040516107d49190613c8b565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff91906135e3565b611f90565b005b34801561081257600080fd5b5061082d6004803603810190610828919061337d565b611fb3565b005b600061083a82612037565b8061084a5750610849826120b1565b5b9050919050565b606061085b612143565b600201805461086990614276565b80601f016020809104026020016040519081016040528092919081815260200182805461089590614276565b80156108e25780601f106108b7576101008083540402835291602001916108e2565b820191906000526020600020905b8154815290600101906020018083116108c557829003601f168201915b5050505050905090565b60006108f782612170565b61092d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610935612143565b600601600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f82611558565b90508073ffffffffffffffffffffffffffffffffffffffff166109a06121e1565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c76121e1565b611ef3565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82610a0c612143565b600601600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260c9541415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613ea3565b60405180910390fd5b600260c981905550610b176121e9565b61012f54610b23610cf9565b6001610b2f9190614074565b1115610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613e43565b60405180910390fd5b61013060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490613f03565b60405180910390fd5b61013160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290613e23565b60405180910390fd5b600161013160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610cef336001612233565b600160c981905550565b6000610d03612251565b610d0b612143565b60010154610d17612143565b600001540303905090565b6000610d2d8261225a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610da084612343565b91509150610db68187610db16121e1565b612373565b610e0257610dcb86610dc66121e1565b611ef3565b610e01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e7686868660016123b7565b8015610e8157600082555b610e89612143565b60050160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550610ee0612143565b60050160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f6185610f3d8888876123bd565b7c0200000000000000000000000000000000000000000000000000000000176123e5565b610f69612143565b60040160008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561100d5760006001850190506000610fbb612143565b600401600083815260200190815260200160002054141561100b57610fde612143565b60000154811461100a5783610ff1612143565b6004016000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110758686866001612410565b505050505050565b6000806000603460008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156112135760336040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061121d612416565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661124991906140fb565b61125391906140ca565b90508160000151819350935050509250929050565b611270612420565b600260c95414156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90613ea3565b60405180910390fd5b600260c9819055506000811415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613d63565b60405180910390fd5b61012f5461130e610cf9565b826113199190614074565b111561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613e43565b60405180910390fd5b6113643382612233565b600160c98190555050565b611377612420565b60005b8151811015611409576000610130600084848151811061139d5761139c6143e0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611401906142d9565b91505061137a565b5050565b611415612420565b600061141f61178b565b73ffffffffffffffffffffffffffffffffffffffff164760405161144290613be6565b60006040518083038185875af1925050503d806000811461147f576040519150601f19603f3d011682016040523d82523d6000602084013e611484565b606091505b50509050806114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf90613ee3565b60405180910390fd5b50565b6114d3612420565b6114db61249e565b6114e36124e7565b565b611500838383604051806020016040528060008152506119d1565b505050565b60008061012d805461151690614276565b905011905090565b611526612420565b8061012d908051906020019061153d9291906130de565b5050565b600060fb60009054906101000a900460ff16905090565b60006115638261225a565b9050919050565b61012d805461157890614276565b80601f01602080910402602001604051908101604052809291908181526020018280546115a490614276565b80156115f15780601f106115c6576101008083540402835291602001916115f1565b820191906000526020600020905b8154815290600101906020018083116115d457829003601f168201915b505050505081565b611601612420565b8061012f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611674576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff611685612143565b60050160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116d6612420565b6116e0600061254a565b565b61012e80546116f090614276565b80601f016020809104026020016040519081016040528092919081815260200182805461171c90614276565b80156117695780601f1061173e57610100808354040283529160200191611769565b820191906000526020600020905b81548152906001019060200180831161174c57829003601f168201915b505050505081565b611779612420565b6117816121e9565b611789612610565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606117bf612143565b60030180546117cd90614276565b80601f01602080910402602001604051908101604052809291908181526020018280546117f990614276565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b5050505050905090565b6118586121e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806118c6612143565b60070160006118d36121e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119806121e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c59190613c8b565b60405180910390a35050565b6119dc848484610d22565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a3e57611a0784848484612673565b611a3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a4c6127d3565b60000160019054906101000a900460ff16611a8057611a696127d3565b60000160009054906101000a900460ff1615611a89565b611a88612800565b5b611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90613dc3565b60405180910390fd5b6000611ad26127d3565b60000160019054906101000a900460ff161590508015611b35576001611af66127d3565b60000160016101000a81548160ff0219169083151502179055506001611b1a6127d3565b60000160006101000a81548160ff0219169083151502179055505b60008060019054906101000a900460ff16159050808015611b665750600160008054906101000a900460ff1660ff16105b80611b935750611b7530612817565b158015611b925750600160008054906101000a900460ff1660ff16145b5b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613da3565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015611c0f576001600060016101000a81548160ff0219169083151502179055505b611c19888861283a565b611c216128a0565b611c29612901565b611c31612952565b611c396129ab565b611c438484612a17565b8561012e9080519060200190611c5a9291906130de565b508461012f81905550611c6b612610565b8015611cc45760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611cbb9190613ca6565b60405180910390a15b508015611cf0576000611cd56127d3565b60000160016101000a81548160ff0219169083151502179055505b50505050505050565b611d01612420565b60005b8151811015611d935760016101306000848481518110611d2757611d266143e0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d8b906142d9565b915050611d04565b5050565b6060611da282612170565b611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890613d03565b60405180910390fd5b600061012d8054611df190614276565b905011611e8b5761012e8054611e0690614276565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3290614276565b8015611e7f5780601f10611e5457610100808354040283529160200191611e7f565b820191906000526020600020905b815481529060010190602001808311611e6257829003601f168201915b50505050509050611ee7565b600061012d8054611e9b90614276565b905011611eb75760405180602001604052806000815250611ee4565b61012d611ec383612bad565b604051602001611ed4929190613bb7565b6040516020818303038152906040525b90505b919050565b61012f5481565b6000611efd612143565b60070160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f98612420565b8061012e9080519060200190611faf9291906130de565b5050565b611fbb612420565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290613d43565b60405180910390fd5b6120348161254a565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120aa57506120a982612d0e565b5b9050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061213c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000807f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4090508091505090565b60008161217b612251565b11158015612193575061218c612143565b6000015482105b80156121da575060007c01000000000000000000000000000000000000000000000000000000006121c2612143565b60040160008581526020019081526020016000205416145b9050919050565b600033905090565b6121f1611541565b15612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890613d83565b60405180910390fd5b565b61224d828260405180602001604052806000815250612d78565b5050565b60006001905090565b60008082905080612269612251565b1161230c57612276612143565b6000015481101561230b57600061228b612143565b600401600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612309575b60008114156122ff576122dc612143565b6004016000836001900393508381526020019081526020016000205490506122cb565b809250505061233e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000612350612143565b600601600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123d4868684612e28565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b612428612e31565b73ffffffffffffffffffffffffffffffffffffffff1661244661178b565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390613e03565b60405180910390fd5b565b6124a6611541565b6124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613ce3565b60405180910390fd5b565b6124ef61249e565b600060fb60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612533612e31565b6040516125409190613bfb565b60405180910390a1565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126186121e9565b600160fb60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861265c612e31565b6040516126699190613bfb565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126996121e1565b8786866040518563ffffffff1660e01b81526004016126bb9493929190613c16565b602060405180830381600087803b1580156126d557600080fd5b505af192505050801561270657506040513d601f19601f8201168201806040525081019061270391906135b6565b60015b612780573d8060008114612736576040519150601f19603f3d011682016040523d82523d6000602084013e61273b565b606091505b50600081511415612778576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000807fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f90508091505090565b6000803090506000813b9050600081149250505090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6128426127d3565b60000160019054906101000a900460ff16612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990613d23565b60405180910390fd5b61289c8282612e39565b5050565b600060019054906101000a900460ff166128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690613e63565b60405180910390fd5b6128ff6128fa612e31565b61254a565b565b600060019054906101000a900460ff16612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790613e63565b60405180910390fd5b565b600060019054906101000a900460ff166129a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299890613e63565b60405180910390fd5b600160c981905550565b600060019054906101000a900460ff166129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190613e63565b60405180910390fd5b600060fb60006101000a81548160ff021916908315150217905550565b612a1f612416565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490613e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490613ec3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250603360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60606000821415612bf5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d09565b600082905060005b60008214612c27578080612c10906142d9565b915050600a82612c2091906140ca565b9150612bfd565b60008167ffffffffffffffff811115612c4357612c4261440f565b5b6040519080825280601f01601f191660200182016040528015612c755781602001600182028036833780820191505090505b5090505b60008514612d0257600182612c8e9190614155565b9150600a85612c9d9190614322565b6030612ca99190614074565b60f81b818381518110612cbf57612cbe6143e0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfb91906140ca565b9450612c79565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d828383612eec565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e23576000612dab612143565b600001549050600083820390505b612dcc6000868380600101945086612673565b612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612db95781612e12612143565b6000015414612e2057600080fd5b50505b505050565b60009392505050565b600033905090565b612e416127d3565b60000160019054906101000a900460ff16612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8890613d23565b60405180910390fd5b81612e9a612143565b6002019080519060200190612eb09291906130de565b5080612eba612143565b6003019080519060200190612ed09291906130de565b50612ed9612251565b612ee1612143565b600001819055505050565b6000612ef6612143565b6000015490506000821415612f37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f4460008483856123b7565b600160406001901b178202612f57612143565b60050160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fc483612fb560008660006123bd565b612fbe856130ce565b176123e5565b612fcc612143565b600401600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461306e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613033565b5060008214156130aa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806130b3612143565b6000018190555050506130c96000848385612410565b505050565b60006001821460e11b9050919050565b8280546130ea90614276565b90600052602060002090601f01602090048101928261310c5760008555613153565b82601f1061312557805160ff1916838001178555613153565b82800160010185558215613153579182015b82811115613152578251825591602001919060010190613137565b5b5090506131609190613164565b5090565b5b8082111561317d576000816000905550600101613165565b5090565b600061319461318f84613f83565b613f5e565b905080838252602082019050828560208602820111156131b7576131b6614443565b5b60005b858110156131e757816131cd8882613275565b8452602084019350602083019250506001810190506131ba565b5050509392505050565b60006132046131ff84613faf565b613f5e565b9050828152602081018484840111156132205761321f614448565b5b61322b848285614234565b509392505050565b600061324661324184613fe0565b613f5e565b90508281526020810184848401111561326257613261614448565b5b61326d848285614234565b509392505050565b60008135905061328481614883565b92915050565b600082601f83011261329f5761329e61443e565b5b81356132af848260208601613181565b91505092915050565b6000813590506132c78161489a565b92915050565b6000813590506132dc816148b1565b92915050565b6000815190506132f1816148b1565b92915050565b600082601f83011261330c5761330b61443e565b5b813561331c8482602086016131f1565b91505092915050565b600082601f83011261333a5761333961443e565b5b813561334a848260208601613233565b91505092915050565b600081359050613362816148c8565b92915050565b600081359050613377816148df565b92915050565b60006020828403121561339357613392614452565b5b60006133a184828501613275565b91505092915050565b600080604083850312156133c1576133c0614452565b5b60006133cf85828601613275565b92505060206133e085828601613275565b9150509250929050565b60008060006060848603121561340357613402614452565b5b600061341186828701613275565b935050602061342286828701613275565b925050604061343386828701613353565b9150509250925092565b6000806000806080858703121561345757613456614452565b5b600061346587828801613275565b945050602061347687828801613275565b935050604061348787828801613353565b925050606085013567ffffffffffffffff8111156134a8576134a761444d565b5b6134b4878288016132f7565b91505092959194509250565b600080604083850312156134d7576134d6614452565b5b60006134e585828601613275565b92505060206134f6858286016132b8565b9150509250929050565b6000806040838503121561351757613516614452565b5b600061352585828601613275565b925050602061353685828601613353565b9150509250929050565b60006020828403121561355657613555614452565b5b600082013567ffffffffffffffff8111156135745761357361444d565b5b6135808482850161328a565b91505092915050565b60006020828403121561359f5761359e614452565b5b60006135ad848285016132cd565b91505092915050565b6000602082840312156135cc576135cb614452565b5b60006135da848285016132e2565b91505092915050565b6000602082840312156135f9576135f8614452565b5b600082013567ffffffffffffffff8111156136175761361661444d565b5b61362384828501613325565b91505092915050565b60008060008060008060c0878903121561364957613648614452565b5b600087013567ffffffffffffffff8111156136675761366661444d565b5b61367389828a01613325565b965050602087013567ffffffffffffffff8111156136945761369361444d565b5b6136a089828a01613325565b955050604087013567ffffffffffffffff8111156136c1576136c061444d565b5b6136cd89828a01613325565b94505060606136de89828a01613353565b93505060806136ef89828a01613275565b92505060a061370089828a01613368565b9150509295509295509295565b60006020828403121561372357613722614452565b5b600061373184828501613353565b91505092915050565b6000806040838503121561375157613750614452565b5b600061375f85828601613353565b925050602061377085828601613353565b9150509250929050565b61378381614189565b82525050565b6137928161419b565b82525050565b60006137a382614026565b6137ad818561403c565b93506137bd818560208601614243565b6137c681614457565b840191505092915050565b6137da81614222565b82525050565b60006137eb82614031565b6137f58185614058565b9350613805818560208601614243565b61380e81614457565b840191505092915050565b600061382482614031565b61382e8185614069565b935061383e818560208601614243565b80840191505092915050565b6000815461385781614276565b6138618186614069565b9450600182166000811461387c576001811461388d576138c0565b60ff198316865281860193506138c0565b61389685614011565b60005b838110156138b857815481890152600182019150602081019050613899565b838801955050505b50505092915050565b60006138d6601483614058565b91506138e182614468565b602082019050919050565b60006138f9601f83614058565b915061390482614491565b602082019050919050565b600061391c603483614058565b9150613927826144ba565b604082019050919050565b600061393f602683614058565b915061394a82614509565b604082019050919050565b6000613962601083614058565b915061396d82614558565b602082019050919050565b6000613985601083614058565b915061399082614581565b602082019050919050565b60006139a8602e83614058565b91506139b3826145aa565b604082019050919050565b60006139cb603783614058565b91506139d6826145f9565b604082019050919050565b60006139ee600583614069565b91506139f982614648565b600582019050919050565b6000613a11600b83614058565b9150613a1c82614671565b602082019050919050565b6000613a34602083614058565b9150613a3f8261469a565b602082019050919050565b6000613a57601483614058565b9150613a62826146c3565b602082019050919050565b6000613a7a600f83614058565b9150613a85826146ec565b602082019050919050565b6000613a9d60008361404d565b9150613aa882614715565b600082019050919050565b6000613ac0602b83614058565b9150613acb82614718565b604082019050919050565b6000613ae3602a83614058565b9150613aee82614767565b604082019050919050565b6000613b06601f83614058565b9150613b11826147b6565b602082019050919050565b6000613b29601983614058565b9150613b34826147df565b602082019050919050565b6000613b4c600f83614058565b9150613b5782614808565b602082019050919050565b6000613b6f601483614058565b9150613b7a82614831565b602082019050919050565b6000613b92601183614058565b9150613b9d8261485a565b602082019050919050565b613bb1816141f3565b82525050565b6000613bc3828561384a565b9150613bcf8284613819565b9150613bda826139e1565b91508190509392505050565b6000613bf182613a90565b9150819050919050565b6000602082019050613c10600083018461377a565b92915050565b6000608082019050613c2b600083018761377a565b613c38602083018661377a565b613c456040830185613ba8565b8181036060830152613c578184613798565b905095945050505050565b6000604082019050613c77600083018561377a565b613c846020830184613ba8565b9392505050565b6000602082019050613ca06000830184613789565b92915050565b6000602082019050613cbb60008301846137d1565b92915050565b60006020820190508181036000830152613cdb81846137e0565b905092915050565b60006020820190508181036000830152613cfc816138c9565b9050919050565b60006020820190508181036000830152613d1c816138ec565b9050919050565b60006020820190508181036000830152613d3c8161390f565b9050919050565b60006020820190508181036000830152613d5c81613932565b9050919050565b60006020820190508181036000830152613d7c81613955565b9050919050565b60006020820190508181036000830152613d9c81613978565b9050919050565b60006020820190508181036000830152613dbc8161399b565b9050919050565b60006020820190508181036000830152613ddc816139be565b9050919050565b60006020820190508181036000830152613dfc81613a04565b9050919050565b60006020820190508181036000830152613e1c81613a27565b9050919050565b60006020820190508181036000830152613e3c81613a4a565b9050919050565b60006020820190508181036000830152613e5c81613a6d565b9050919050565b60006020820190508181036000830152613e7c81613ab3565b9050919050565b60006020820190508181036000830152613e9c81613ad6565b9050919050565b60006020820190508181036000830152613ebc81613af9565b9050919050565b60006020820190508181036000830152613edc81613b1c565b9050919050565b60006020820190508181036000830152613efc81613b3f565b9050919050565b60006020820190508181036000830152613f1c81613b62565b9050919050565b60006020820190508181036000830152613f3c81613b85565b9050919050565b6000602082019050613f586000830184613ba8565b92915050565b6000613f68613f79565b9050613f7482826142a8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9e57613f9d61440f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613fca57613fc961440f565b5b613fd382614457565b9050602081019050919050565b600067ffffffffffffffff821115613ffb57613ffa61440f565b5b61400482614457565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061407f826141f3565b915061408a836141f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140bf576140be614353565b5b828201905092915050565b60006140d5826141f3565b91506140e0836141f3565b9250826140f0576140ef614382565b5b828204905092915050565b6000614106826141f3565b9150614111836141f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561414a57614149614353565b5b828202905092915050565b6000614160826141f3565b915061416b836141f3565b92508282101561417e5761417d614353565b5b828203905092915050565b6000614194826141d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b600061422d826141fd565b9050919050565b82818337600083830152505050565b60005b83811015614261578082015181840152602081019050614246565b83811115614270576000848401525b50505050565b6000600282049050600182168061428e57607f821691505b602082108114156142a2576142a16143b1565b5b50919050565b6142b182614457565b810181811067ffffffffffffffff821117156142d0576142cf61440f565b5b80604052505050565b60006142e4826141f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431757614316614353565b5b600182019050919050565b600061432d826141f3565b9150614338836141f3565b92508261434857614347614382565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f206973206e6f7420696e697469616c697a696e67000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f20697320616c726561647920696e697469616c697a6564000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f746f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f737570706c792065786365656465640000000000000000000000000000000000600082015250565b50565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f75736572206e6f742077686974656c6973746564000000000000000000000000600082015250565b7f4e6f2066616c6c6261636b2063616c6c73000000000000000000000000000000600082015250565b61488c81614189565b811461489757600080fd5b50565b6148a38161419b565b81146148ae57600080fd5b50565b6148ba816141a7565b81146148c557600080fd5b50565b6148d1816141f3565b81146148dc57600080fd5b50565b6148e88161420a565b81146148f357600080fd5b5056fea2646970667358221220af21b7efae4bea16c724e7f80566b53fd07413294dcb707016e94e1576d0f3a664736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610738578063d5abeb0114610775578063e985e9c5146107a0578063f2c4ce1e146107dd578063f2fde38b146108065761023d565b8063a22cb46514610694578063b88d4fde146106bd578063ba24637e146106e6578063bd8aa7801461070f5761023d565b806372250380116100dc57806372250380146105fc5780638456cb59146106275780638da5cb5b1461063e57806395d89b41146106695761023d565b80636c0360eb146105545780636f8b44b01461057f57806370a08231146105a8578063715018a6146105e55761023d565b80632fbba1151161019057806342842e0e1161015f57806342842e0e1461046f578063518302271461049857806355f804b3146104c35780635c975abb146104ec5780636352211e146105175761023d565b80632fbba115146103ef57806332cd0487146104185780633ccfd60b146104415780633f4ba83a146104585761023d565b80631249c58b116101cc5780631249c58b1461034657806318160ddd1461035d57806323b872dd146103885780632a55205a146103b15761023d565b806301ffc9a71461027857806306fdde03146102b5578063081812fc146102e0578063095ea7b31461031d5761023d565b3661023d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023490613de3565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026f90613f23565b60405180910390fd5b34801561028457600080fd5b5061029f600480360381019061029a9190613589565b61082f565b6040516102ac9190613c8b565b60405180910390f35b3480156102c157600080fd5b506102ca610851565b6040516102d79190613cc1565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061370d565b6108ec565b6040516103149190613bfb565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190613500565b610974565b005b34801561035257600080fd5b5061035b610ac1565b005b34801561036957600080fd5b50610372610cf9565b60405161037f9190613f43565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa91906133ea565b610d22565b005b3480156103bd57600080fd5b506103d860048036038101906103d3919061373a565b61107d565b6040516103e6929190613c62565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061370d565b611268565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613540565b61136f565b005b34801561044d57600080fd5b5061045661140d565b005b34801561046457600080fd5b5061046d6114cb565b005b34801561047b57600080fd5b50610496600480360381019061049191906133ea565b6114e5565b005b3480156104a457600080fd5b506104ad611505565b6040516104ba9190613c8b565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906135e3565b61151e565b005b3480156104f857600080fd5b50610501611541565b60405161050e9190613c8b565b60405180910390f35b34801561052357600080fd5b5061053e6004803603810190610539919061370d565b611558565b60405161054b9190613bfb565b60405180910390f35b34801561056057600080fd5b5061056961156a565b6040516105769190613cc1565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a1919061370d565b6115f9565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061337d565b61160c565b6040516105dc9190613f43565b60405180910390f35b3480156105f157600080fd5b506105fa6116ce565b005b34801561060857600080fd5b506106116116e2565b60405161061e9190613cc1565b60405180910390f35b34801561063357600080fd5b5061063c611771565b005b34801561064a57600080fd5b5061065361178b565b6040516106609190613bfb565b60405180910390f35b34801561067557600080fd5b5061067e6117b5565b60405161068b9190613cc1565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b691906134c0565b611850565b005b3480156106c957600080fd5b506106e460048036038101906106df919061343d565b6119d1565b005b3480156106f257600080fd5b5061070d6004803603810190610708919061362c565b611a44565b005b34801561071b57600080fd5b5061073660048036038101906107319190613540565b611cf9565b005b34801561074457600080fd5b5061075f600480360381019061075a919061370d565b611d97565b60405161076c9190613cc1565b60405180910390f35b34801561078157600080fd5b5061078a611eec565b6040516107979190613f43565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906133aa565b611ef3565b6040516107d49190613c8b565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff91906135e3565b611f90565b005b34801561081257600080fd5b5061082d6004803603810190610828919061337d565b611fb3565b005b600061083a82612037565b8061084a5750610849826120b1565b5b9050919050565b606061085b612143565b600201805461086990614276565b80601f016020809104026020016040519081016040528092919081815260200182805461089590614276565b80156108e25780601f106108b7576101008083540402835291602001916108e2565b820191906000526020600020905b8154815290600101906020018083116108c557829003601f168201915b5050505050905090565b60006108f782612170565b61092d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610935612143565b600601600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f82611558565b90508073ffffffffffffffffffffffffffffffffffffffff166109a06121e1565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c76121e1565b611ef3565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82610a0c612143565b600601600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260c9541415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613ea3565b60405180910390fd5b600260c981905550610b176121e9565b61012f54610b23610cf9565b6001610b2f9190614074565b1115610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613e43565b60405180910390fd5b61013060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490613f03565b60405180910390fd5b61013160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290613e23565b60405180910390fd5b600161013160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610cef336001612233565b600160c981905550565b6000610d03612251565b610d0b612143565b60010154610d17612143565b600001540303905090565b6000610d2d8261225a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610da084612343565b91509150610db68187610db16121e1565b612373565b610e0257610dcb86610dc66121e1565b611ef3565b610e01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e7686868660016123b7565b8015610e8157600082555b610e89612143565b60050160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550610ee0612143565b60050160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f6185610f3d8888876123bd565b7c0200000000000000000000000000000000000000000000000000000000176123e5565b610f69612143565b60040160008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561100d5760006001850190506000610fbb612143565b600401600083815260200190815260200160002054141561100b57610fde612143565b60000154811461100a5783610ff1612143565b6004016000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110758686866001612410565b505050505050565b6000806000603460008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156112135760336040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061121d612416565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661124991906140fb565b61125391906140ca565b90508160000151819350935050509250929050565b611270612420565b600260c95414156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90613ea3565b60405180910390fd5b600260c9819055506000811415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613d63565b60405180910390fd5b61012f5461130e610cf9565b826113199190614074565b111561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613e43565b60405180910390fd5b6113643382612233565b600160c98190555050565b611377612420565b60005b8151811015611409576000610130600084848151811061139d5761139c6143e0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611401906142d9565b91505061137a565b5050565b611415612420565b600061141f61178b565b73ffffffffffffffffffffffffffffffffffffffff164760405161144290613be6565b60006040518083038185875af1925050503d806000811461147f576040519150601f19603f3d011682016040523d82523d6000602084013e611484565b606091505b50509050806114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf90613ee3565b60405180910390fd5b50565b6114d3612420565b6114db61249e565b6114e36124e7565b565b611500838383604051806020016040528060008152506119d1565b505050565b60008061012d805461151690614276565b905011905090565b611526612420565b8061012d908051906020019061153d9291906130de565b5050565b600060fb60009054906101000a900460ff16905090565b60006115638261225a565b9050919050565b61012d805461157890614276565b80601f01602080910402602001604051908101604052809291908181526020018280546115a490614276565b80156115f15780601f106115c6576101008083540402835291602001916115f1565b820191906000526020600020905b8154815290600101906020018083116115d457829003601f168201915b505050505081565b611601612420565b8061012f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611674576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff611685612143565b60050160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116d6612420565b6116e0600061254a565b565b61012e80546116f090614276565b80601f016020809104026020016040519081016040528092919081815260200182805461171c90614276565b80156117695780601f1061173e57610100808354040283529160200191611769565b820191906000526020600020905b81548152906001019060200180831161174c57829003601f168201915b505050505081565b611779612420565b6117816121e9565b611789612610565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606117bf612143565b60030180546117cd90614276565b80601f01602080910402602001604051908101604052809291908181526020018280546117f990614276565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b5050505050905090565b6118586121e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806118c6612143565b60070160006118d36121e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119806121e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c59190613c8b565b60405180910390a35050565b6119dc848484610d22565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a3e57611a0784848484612673565b611a3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a4c6127d3565b60000160019054906101000a900460ff16611a8057611a696127d3565b60000160009054906101000a900460ff1615611a89565b611a88612800565b5b611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90613dc3565b60405180910390fd5b6000611ad26127d3565b60000160019054906101000a900460ff161590508015611b35576001611af66127d3565b60000160016101000a81548160ff0219169083151502179055506001611b1a6127d3565b60000160006101000a81548160ff0219169083151502179055505b60008060019054906101000a900460ff16159050808015611b665750600160008054906101000a900460ff1660ff16105b80611b935750611b7530612817565b158015611b925750600160008054906101000a900460ff1660ff16145b5b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613da3565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015611c0f576001600060016101000a81548160ff0219169083151502179055505b611c19888861283a565b611c216128a0565b611c29612901565b611c31612952565b611c396129ab565b611c438484612a17565b8561012e9080519060200190611c5a9291906130de565b508461012f81905550611c6b612610565b8015611cc45760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611cbb9190613ca6565b60405180910390a15b508015611cf0576000611cd56127d3565b60000160016101000a81548160ff0219169083151502179055505b50505050505050565b611d01612420565b60005b8151811015611d935760016101306000848481518110611d2757611d266143e0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d8b906142d9565b915050611d04565b5050565b6060611da282612170565b611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd890613d03565b60405180910390fd5b600061012d8054611df190614276565b905011611e8b5761012e8054611e0690614276565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3290614276565b8015611e7f5780601f10611e5457610100808354040283529160200191611e7f565b820191906000526020600020905b815481529060010190602001808311611e6257829003601f168201915b50505050509050611ee7565b600061012d8054611e9b90614276565b905011611eb75760405180602001604052806000815250611ee4565b61012d611ec383612bad565b604051602001611ed4929190613bb7565b6040516020818303038152906040525b90505b919050565b61012f5481565b6000611efd612143565b60070160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f98612420565b8061012e9080519060200190611faf9291906130de565b5050565b611fbb612420565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290613d43565b60405180910390fd5b6120348161254a565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120aa57506120a982612d0e565b5b9050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061213c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000807f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4090508091505090565b60008161217b612251565b11158015612193575061218c612143565b6000015482105b80156121da575060007c01000000000000000000000000000000000000000000000000000000006121c2612143565b60040160008581526020019081526020016000205416145b9050919050565b600033905090565b6121f1611541565b15612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890613d83565b60405180910390fd5b565b61224d828260405180602001604052806000815250612d78565b5050565b60006001905090565b60008082905080612269612251565b1161230c57612276612143565b6000015481101561230b57600061228b612143565b600401600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612309575b60008114156122ff576122dc612143565b6004016000836001900393508381526020019081526020016000205490506122cb565b809250505061233e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000612350612143565b600601600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123d4868684612e28565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b612428612e31565b73ffffffffffffffffffffffffffffffffffffffff1661244661178b565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390613e03565b60405180910390fd5b565b6124a6611541565b6124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613ce3565b60405180910390fd5b565b6124ef61249e565b600060fb60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612533612e31565b6040516125409190613bfb565b60405180910390a1565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126186121e9565b600160fb60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861265c612e31565b6040516126699190613bfb565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126996121e1565b8786866040518563ffffffff1660e01b81526004016126bb9493929190613c16565b602060405180830381600087803b1580156126d557600080fd5b505af192505050801561270657506040513d601f19601f8201168201806040525081019061270391906135b6565b60015b612780573d8060008114612736576040519150601f19603f3d011682016040523d82523d6000602084013e61273b565b606091505b50600081511415612778576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000807fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f90508091505090565b6000803090506000813b9050600081149250505090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6128426127d3565b60000160019054906101000a900460ff16612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990613d23565b60405180910390fd5b61289c8282612e39565b5050565b600060019054906101000a900460ff166128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690613e63565b60405180910390fd5b6128ff6128fa612e31565b61254a565b565b600060019054906101000a900460ff16612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790613e63565b60405180910390fd5b565b600060019054906101000a900460ff166129a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299890613e63565b60405180910390fd5b600160c981905550565b600060019054906101000a900460ff166129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190613e63565b60405180910390fd5b600060fb60006101000a81548160ff021916908315150217905550565b612a1f612416565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490613e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490613ec3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250603360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60606000821415612bf5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d09565b600082905060005b60008214612c27578080612c10906142d9565b915050600a82612c2091906140ca565b9150612bfd565b60008167ffffffffffffffff811115612c4357612c4261440f565b5b6040519080825280601f01601f191660200182016040528015612c755781602001600182028036833780820191505090505b5090505b60008514612d0257600182612c8e9190614155565b9150600a85612c9d9190614322565b6030612ca99190614074565b60f81b818381518110612cbf57612cbe6143e0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfb91906140ca565b9450612c79565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d828383612eec565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e23576000612dab612143565b600001549050600083820390505b612dcc6000868380600101945086612673565b612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612db95781612e12612143565b6000015414612e2057600080fd5b50505b505050565b60009392505050565b600033905090565b612e416127d3565b60000160019054906101000a900460ff16612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8890613d23565b60405180910390fd5b81612e9a612143565b6002019080519060200190612eb09291906130de565b5080612eba612143565b6003019080519060200190612ed09291906130de565b50612ed9612251565b612ee1612143565b600001819055505050565b6000612ef6612143565b6000015490506000821415612f37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f4460008483856123b7565b600160406001901b178202612f57612143565b60050160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fc483612fb560008660006123bd565b612fbe856130ce565b176123e5565b612fcc612143565b600401600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461306e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613033565b5060008214156130aa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806130b3612143565b6000018190555050506130c96000848385612410565b505050565b60006001821460e11b9050919050565b8280546130ea90614276565b90600052602060002090601f01602090048101928261310c5760008555613153565b82601f1061312557805160ff1916838001178555613153565b82800160010185558215613153579182015b82811115613152578251825591602001919060010190613137565b5b5090506131609190613164565b5090565b5b8082111561317d576000816000905550600101613165565b5090565b600061319461318f84613f83565b613f5e565b905080838252602082019050828560208602820111156131b7576131b6614443565b5b60005b858110156131e757816131cd8882613275565b8452602084019350602083019250506001810190506131ba565b5050509392505050565b60006132046131ff84613faf565b613f5e565b9050828152602081018484840111156132205761321f614448565b5b61322b848285614234565b509392505050565b600061324661324184613fe0565b613f5e565b90508281526020810184848401111561326257613261614448565b5b61326d848285614234565b509392505050565b60008135905061328481614883565b92915050565b600082601f83011261329f5761329e61443e565b5b81356132af848260208601613181565b91505092915050565b6000813590506132c78161489a565b92915050565b6000813590506132dc816148b1565b92915050565b6000815190506132f1816148b1565b92915050565b600082601f83011261330c5761330b61443e565b5b813561331c8482602086016131f1565b91505092915050565b600082601f83011261333a5761333961443e565b5b813561334a848260208601613233565b91505092915050565b600081359050613362816148c8565b92915050565b600081359050613377816148df565b92915050565b60006020828403121561339357613392614452565b5b60006133a184828501613275565b91505092915050565b600080604083850312156133c1576133c0614452565b5b60006133cf85828601613275565b92505060206133e085828601613275565b9150509250929050565b60008060006060848603121561340357613402614452565b5b600061341186828701613275565b935050602061342286828701613275565b925050604061343386828701613353565b9150509250925092565b6000806000806080858703121561345757613456614452565b5b600061346587828801613275565b945050602061347687828801613275565b935050604061348787828801613353565b925050606085013567ffffffffffffffff8111156134a8576134a761444d565b5b6134b4878288016132f7565b91505092959194509250565b600080604083850312156134d7576134d6614452565b5b60006134e585828601613275565b92505060206134f6858286016132b8565b9150509250929050565b6000806040838503121561351757613516614452565b5b600061352585828601613275565b925050602061353685828601613353565b9150509250929050565b60006020828403121561355657613555614452565b5b600082013567ffffffffffffffff8111156135745761357361444d565b5b6135808482850161328a565b91505092915050565b60006020828403121561359f5761359e614452565b5b60006135ad848285016132cd565b91505092915050565b6000602082840312156135cc576135cb614452565b5b60006135da848285016132e2565b91505092915050565b6000602082840312156135f9576135f8614452565b5b600082013567ffffffffffffffff8111156136175761361661444d565b5b61362384828501613325565b91505092915050565b60008060008060008060c0878903121561364957613648614452565b5b600087013567ffffffffffffffff8111156136675761366661444d565b5b61367389828a01613325565b965050602087013567ffffffffffffffff8111156136945761369361444d565b5b6136a089828a01613325565b955050604087013567ffffffffffffffff8111156136c1576136c061444d565b5b6136cd89828a01613325565b94505060606136de89828a01613353565b93505060806136ef89828a01613275565b92505060a061370089828a01613368565b9150509295509295509295565b60006020828403121561372357613722614452565b5b600061373184828501613353565b91505092915050565b6000806040838503121561375157613750614452565b5b600061375f85828601613353565b925050602061377085828601613353565b9150509250929050565b61378381614189565b82525050565b6137928161419b565b82525050565b60006137a382614026565b6137ad818561403c565b93506137bd818560208601614243565b6137c681614457565b840191505092915050565b6137da81614222565b82525050565b60006137eb82614031565b6137f58185614058565b9350613805818560208601614243565b61380e81614457565b840191505092915050565b600061382482614031565b61382e8185614069565b935061383e818560208601614243565b80840191505092915050565b6000815461385781614276565b6138618186614069565b9450600182166000811461387c576001811461388d576138c0565b60ff198316865281860193506138c0565b61389685614011565b60005b838110156138b857815481890152600182019150602081019050613899565b838801955050505b50505092915050565b60006138d6601483614058565b91506138e182614468565b602082019050919050565b60006138f9601f83614058565b915061390482614491565b602082019050919050565b600061391c603483614058565b9150613927826144ba565b604082019050919050565b600061393f602683614058565b915061394a82614509565b604082019050919050565b6000613962601083614058565b915061396d82614558565b602082019050919050565b6000613985601083614058565b915061399082614581565b602082019050919050565b60006139a8602e83614058565b91506139b3826145aa565b604082019050919050565b60006139cb603783614058565b91506139d6826145f9565b604082019050919050565b60006139ee600583614069565b91506139f982614648565b600582019050919050565b6000613a11600b83614058565b9150613a1c82614671565b602082019050919050565b6000613a34602083614058565b9150613a3f8261469a565b602082019050919050565b6000613a57601483614058565b9150613a62826146c3565b602082019050919050565b6000613a7a600f83614058565b9150613a85826146ec565b602082019050919050565b6000613a9d60008361404d565b9150613aa882614715565b600082019050919050565b6000613ac0602b83614058565b9150613acb82614718565b604082019050919050565b6000613ae3602a83614058565b9150613aee82614767565b604082019050919050565b6000613b06601f83614058565b9150613b11826147b6565b602082019050919050565b6000613b29601983614058565b9150613b34826147df565b602082019050919050565b6000613b4c600f83614058565b9150613b5782614808565b602082019050919050565b6000613b6f601483614058565b9150613b7a82614831565b602082019050919050565b6000613b92601183614058565b9150613b9d8261485a565b602082019050919050565b613bb1816141f3565b82525050565b6000613bc3828561384a565b9150613bcf8284613819565b9150613bda826139e1565b91508190509392505050565b6000613bf182613a90565b9150819050919050565b6000602082019050613c10600083018461377a565b92915050565b6000608082019050613c2b600083018761377a565b613c38602083018661377a565b613c456040830185613ba8565b8181036060830152613c578184613798565b905095945050505050565b6000604082019050613c77600083018561377a565b613c846020830184613ba8565b9392505050565b6000602082019050613ca06000830184613789565b92915050565b6000602082019050613cbb60008301846137d1565b92915050565b60006020820190508181036000830152613cdb81846137e0565b905092915050565b60006020820190508181036000830152613cfc816138c9565b9050919050565b60006020820190508181036000830152613d1c816138ec565b9050919050565b60006020820190508181036000830152613d3c8161390f565b9050919050565b60006020820190508181036000830152613d5c81613932565b9050919050565b60006020820190508181036000830152613d7c81613955565b9050919050565b60006020820190508181036000830152613d9c81613978565b9050919050565b60006020820190508181036000830152613dbc8161399b565b9050919050565b60006020820190508181036000830152613ddc816139be565b9050919050565b60006020820190508181036000830152613dfc81613a04565b9050919050565b60006020820190508181036000830152613e1c81613a27565b9050919050565b60006020820190508181036000830152613e3c81613a4a565b9050919050565b60006020820190508181036000830152613e5c81613a6d565b9050919050565b60006020820190508181036000830152613e7c81613ab3565b9050919050565b60006020820190508181036000830152613e9c81613ad6565b9050919050565b60006020820190508181036000830152613ebc81613af9565b9050919050565b60006020820190508181036000830152613edc81613b1c565b9050919050565b60006020820190508181036000830152613efc81613b3f565b9050919050565b60006020820190508181036000830152613f1c81613b62565b9050919050565b60006020820190508181036000830152613f3c81613b85565b9050919050565b6000602082019050613f586000830184613ba8565b92915050565b6000613f68613f79565b9050613f7482826142a8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9e57613f9d61440f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613fca57613fc961440f565b5b613fd382614457565b9050602081019050919050565b600067ffffffffffffffff821115613ffb57613ffa61440f565b5b61400482614457565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061407f826141f3565b915061408a836141f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140bf576140be614353565b5b828201905092915050565b60006140d5826141f3565b91506140e0836141f3565b9250826140f0576140ef614382565b5b828204905092915050565b6000614106826141f3565b9150614111836141f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561414a57614149614353565b5b828202905092915050565b6000614160826141f3565b915061416b836141f3565b92508282101561417e5761417d614353565b5b828203905092915050565b6000614194826141d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b600061422d826141fd565b9050919050565b82818337600083830152505050565b60005b83811015614261578082015181840152602081019050614246565b83811115614270576000848401525b50505050565b6000600282049050600182168061428e57607f821691505b602082108114156142a2576142a16143b1565b5b50919050565b6142b182614457565b810181811067ffffffffffffffff821117156142d0576142cf61440f565b5b80604052505050565b60006142e4826141f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431757614316614353565b5b600182019050919050565b600061432d826141f3565b9150614338836141f3565b92508261434857614347614382565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f206973206e6f7420696e697469616c697a696e67000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f20697320616c726561647920696e697469616c697a6564000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f746f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b7f737570706c792065786365656465640000000000000000000000000000000000600082015250565b50565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f75736572206e6f742077686974656c6973746564000000000000000000000000600082015250565b7f4e6f2066616c6c6261636b2063616c6c73000000000000000000000000000000600082015250565b61488c81614189565b811461489757600080fd5b50565b6148a38161419b565b81146148ae57600080fd5b50565b6148ba816141a7565b81146148c557600080fd5b50565b6148d1816141f3565b81146148dc57600080fd5b50565b6148e88161420a565b81146148f357600080fd5b5056fea2646970667358221220af21b7efae4bea16c724e7f80566b53fd07413294dcb707016e94e1576d0f3a664736f6c63430008070033
Deployed Bytecode Sourcemap
92864:5673:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93882:21;;;;;;;;;;:::i;:::-;;;;;;;;92864:5673;93958:27;;;;;;;;;;:::i;:::-;;;;;;;;94065:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24826:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31525:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30942:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94584:340;;;;;;;;;;;;;:::i;:::-;;20311:371;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35397:2961;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83453:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;95030:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98350:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97315:198;;;;;;;;;;;;;:::i;:::-;;97633:77;;;;;;;;;;;;;:::i;:::-;;38454:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96312:130;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96624:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91422:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26267:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93038:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97082:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21591:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76991:103;;;;;;;;;;;;;:::i;:::-;;93066:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97827:76;;;;;;;;;;;;;:::i;:::-;;76343:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25026:128;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32107:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39237:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93240:596;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98035:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95713:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93101:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32596:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96849:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77249:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94065:292;94218:4;94247:49;94284:11;94247:36;:49::i;:::-;:102;;;;94300:49;94337:11;94300:36;:49::i;:::-;94247:102;94240:109;;94065:292;;;:::o;24826:124::-;24880:13;24913:23;:21;:23::i;:::-;:29;;24906:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24826:124;:::o;31525:242::-;31601:7;31626:16;31634:7;31626;:16::i;:::-;31621:64;;31651:34;;;;;;;;;;;;;;31621:64;31705:23;:21;:23::i;:::-;:39;;:48;31745:7;31705:48;;;;;;;;;;;:54;;;;;;;;;;;;31698:61;;31525:242;;;:::o;30942:424::-;31023:13;31039:16;31047:7;31039;:16::i;:::-;31023:32;;31095:5;31072:28;;:19;:17;:19::i;:::-;:28;;;31068:175;;31120:44;31137:5;31144:19;:17;:19::i;:::-;31120:16;:44::i;:::-;31115:128;;31192:35;;;;;;;;;;;;;;31115:128;31068:175;31312:2;31255:23;:21;:23::i;:::-;:39;;:48;31295:7;31255:48;;;;;;;;;;;:54;;;:59;;;;;;;;;;;;;;;;;;31350:7;31346:2;31330:28;;31339:5;31330:28;;;;;;;;;;;;31012:354;30942:424;;:::o;94584:340::-;88111:1;88886:7;;:19;;88878:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;88111:1;89019:7;:18;;;;91027:19:::1;:17;:19::i;:::-;94676:9:::2;;94659:13;:11;:13::i;:::-;94655:1;:17;;;;:::i;:::-;:30;;94647:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;94724:11;:23;94736:10;94724:23;;;;;;;;;;;;;;;;;;;;;;;;;94716:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;94792:11;:23;94804:10;94792:23;;;;;;;;;;;;;;;;;;;;;;;;;94791:24;94783:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;94877:4;94851:11;:23;94863:10;94851:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;94892:24;94902:10;94914:1;94892:9;:24::i;:::-;88067:1:::0;89198:7;:22;;;;94584:340::o;20311:371::-;20372:7;20648:15;:13;:15::i;:::-;20609:23;:21;:23::i;:::-;:36;;;20569:23;:21;:23::i;:::-;:37;;;:76;:94;20562:101;;20311:371;:::o;35397:2961::-;35531:27;35561;35580:7;35561:18;:27::i;:::-;35531:57;;35646:4;35605:45;;35621:19;35605:45;;;35601:86;;35659:28;;;;;;;;;;;;;;35601:86;35701:27;35730:23;35757:35;35784:7;35757:26;:35::i;:::-;35700:92;;;;35892:68;35917:15;35934:4;35940:19;:17;:19::i;:::-;35892:24;:68::i;:::-;35887:180;;35980:43;35997:4;36003:19;:17;:19::i;:::-;35980:16;:43::i;:::-;35975:92;;36032:35;;;;;;;;;;;;;;35975:92;35887:180;36098:1;36084:16;;:2;:16;;;36080:52;;;36109:23;;;;;;;;;;;;;;36080:52;36145:43;36167:4;36173:2;36177:7;36186:1;36145:21;:43::i;:::-;36281:15;36278:160;;;36421:1;36400:19;36393:30;36278:160;36818:23;:21;:23::i;:::-;:42;;:48;36861:4;36818:48;;;;;;;;;;;;;;;;36816:50;;;;;;;;;;;;36911:23;:21;:23::i;:::-;:42;;:46;36954:2;36911:46;;;;;;;;;;;;;;;;36909:48;;;;;;;;;;;37281:146;37318:2;37367:45;37382:4;37388:2;37392:19;37367:14;:45::i;:::-;17795:8;37339:73;37281:18;:146::i;:::-;37228:23;:21;:23::i;:::-;:41;;:50;37270:7;37228:50;;;;;;;;;;;:199;;;;37598:1;17795:8;37547:19;:47;:52;37543:699;;;37620:19;37652:1;37642:7;:11;37620:33;;37833:1;37775:23;:21;:23::i;:::-;:41;;:54;37817:11;37775:54;;;;;;;;;;;;:59;37771:456;;;37937:23;:21;:23::i;:::-;:37;;;37922:11;:52;37918:290;;38165:19;38108:23;:21;:23::i;:::-;:41;;:54;38150:11;38108:54;;;;;;;;;;;:76;;;;37918:290;37771:456;37601:641;37543:699;38289:7;38285:2;38270:27;;38279:4;38270:27;;;;;;;;;;;;38308:42;38329:4;38335:2;38339:7;38348:1;38308:20;:42::i;:::-;35520:2838;;;35397:2961;;;:::o;83453:442::-;83550:7;83559;83579:26;83608:17;:27;83626:8;83608:27;;;;;;;;;;;83579:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83680:1;83652:30;;:7;:16;;;:30;;;83648:92;;;83709:19;83699:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83648:92;83752:21;83817:17;:15;:17::i;:::-;83776:58;;83790:7;:23;;;83777:36;;:10;:36;;;;:::i;:::-;83776:58;;;;:::i;:::-;83752:82;;83855:7;:16;;;83873:13;83847:40;;;;;;83453:442;;;;;:::o;95030:251::-;76229:13;:11;:13::i;:::-;88111:1:::1;88886:7;;:19;;88878:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;88111:1;89019:7;:18;;;;95131:1:::2;95118:9;:14;;95110:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;95201:9;;95184:13;:11;:13::i;:::-;95172:9;:25;;;;:::i;:::-;:38;;95164:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;95241:32;95251:10;95263:9;95241;:32::i;:::-;88067:1:::1;89198:7;:22;;;;95030:251:::0;:::o;98350:184::-;76229:13;:11;:13::i;:::-;98429:9:::1;98424:103;98444:9;:16;98440:1;:20;98424:103;;;98510:5;98482:11;:25;98494:9;98504:1;98494:12;;;;;;;;:::i;:::-;;;;;;;;98482:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;98462:3;;;;;:::i;:::-;;;;98424:103;;;;98350:184:::0;:::o;97315:198::-;76229:13;:11;:13::i;:::-;97366:9:::1;97389:7;:5;:7::i;:::-;97381:21;;97425;97381:81;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97365:97;;;97481:4;97473:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;97354:159;97315:198::o:0;97633:77::-;76229:13;:11;:13::i;:::-;91286:16:::1;:14;:16::i;:::-;97692:10:::2;:8;:10::i;:::-;97633:77::o:0;38454:185::-;38592:39;38609:4;38615:2;38619:7;38592:39;;;;;;;;;;;;:16;:39::i;:::-;38454:185;;;:::o;96312:130::-;96380:4;96433:1;96415:7;96409:21;;;;;:::i;:::-;;;:25;96402:32;;96312:130;:::o;96624:92::-;76229:13;:11;:13::i;:::-;96704:4:::1;96694:7;:14;;;;;;;;;;;;:::i;:::-;;96624:92:::0;:::o;91422:86::-;91469:4;91493:7;;;;;;;;;;;91486:14;;91422:86;:::o;26267:152::-;26339:7;26382:27;26401:7;26382:18;:27::i;:::-;26359:52;;26267:152;;;:::o;93038:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;97082:102::-;76229:13;:11;:13::i;:::-;97166:10:::1;97154:9;:22;;;;97082:102:::0;:::o;21591:257::-;21663:7;21704:1;21687:19;;:5;:19;;;21683:60;;;21715:28;;;;;;;;;;;;;;21683:60;16739:13;21761:23;:21;:23::i;:::-;:42;;:49;21804:5;21761:49;;;;;;;;;;;;;;;;:79;21754:86;;21591:257;;;:::o;76991:103::-;76229:13;:11;:13::i;:::-;77056:30:::1;77083:1;77056:18;:30::i;:::-;76991:103::o:0;93066:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;97827:76::-;76229:13;:11;:13::i;:::-;91027:19:::1;:17;:19::i;:::-;97887:8:::2;:6;:8::i;:::-;97827:76::o:0;76343:87::-;76389:7;76416:6;;;;;;;;;;;76409:13;;76343:87;:::o;25026:128::-;25082:13;25115:23;:21;:23::i;:::-;:31;;25108:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25026:128;:::o;32107:332::-;32218:19;:17;:19::i;:::-;32206:31;;:8;:31;;;32202:61;;;32246:17;;;;;;;;;;;;;;32202:61;32352:8;32276:23;:21;:23::i;:::-;:42;;:63;32319:19;:17;:19::i;:::-;32276:63;;;;;;;;;;;;;;;:73;32340:8;32276:73;;;;;;;;;;;;;;;;:84;;;;;;;;;;;;;;;;;;32412:8;32376:55;;32391:19;:17;:19::i;:::-;32376:55;;;32422:8;32376:55;;;;;;:::i;:::-;;;;;;;;32107:332;;:::o;39237:399::-;39404:31;39417:4;39423:2;39427:7;39404:12;:31::i;:::-;39468:1;39450:2;:14;;;:19;39446:183;;39489:56;39520:4;39526:2;39530:7;39539:5;39489:30;:56::i;:::-;39484:145;;39573:40;;;;;;;;;;;;;;39484:145;39446:183;39237:399;;;;:::o;93240:596::-;13616:38;:36;:38::i;:::-;:52;;;;;;;;;;;;:160;;13725:38;:36;:38::i;:::-;:51;;;;;;;;;;;;13724:52;13616:160;;;13688:16;:14;:16::i;:::-;13616:160;13594:265;;;;;;;;;;;;:::i;:::-;;;;;;;;;13872:19;13895:38;:36;:38::i;:::-;:52;;;;;;;;;;;;13894:53;13872:75;;13962:14;13958:179;;;14048:4;13993:38;:36;:38::i;:::-;:52;;;:59;;;;;;;;;;;;;;;;;;14121:4;14067:38;:36;:38::i;:::-;:51;;;:58;;;;;;;;;;;;;;;;;;13958:179;70888:19:::1;70911:13:::0;::::1;;;;;;;;;;70910:14;70888:36;;70958:14;:34;;;;;70991:1;70976:12;::::0;::::1;;;;;;;;:16;;;70958:34;70957:108;;;;70999:44;71037:4;70999:29;:44::i;:::-;70998:45;:66;;;;;71063:1;71047:12;::::0;::::1;;;;;;;;:17;;;70998:66;70957:108;70935:204;;;;;;;;;;;;:::i;:::-;;;;;;;;;71165:1;71150:12;::::0;:16:::1;;;;;;;;;;;;;;;;;;71181:14;71177:67;;;71228:4;71212:13;;:20;;;;;;;;;;;;;;;;;;71177:67;93500:30:::2;93515:5;93522:7;93500:14;:30::i;:::-;93541:26;:24;:26::i;:::-;93578;:24;:26::i;:::-;93615:34;:32;:34::i;:::-;93660:27;:25;:27::i;:::-;93698:46;93717:16;93735:8;93698:18;:46::i;:::-;93772:4;93755:14;:21;;;;;;;;;;;;:::i;:::-;;93799:10;93787:9;:22;;;;93820:8;:6;:8::i;:::-;71270:14:::1;71266:102;;;71317:5;71301:13:::0;::::1;:21;;;;;;;;;;;;;;;;;;71342:14;71354:1;71342:14;;;;;;:::i;:::-;;;;;;;;71266:102;70877:498;14167:14:::0;14163:107;;;14253:5;14198:38;:36;:38::i;:::-;:52;;;:60;;;;;;;;;;;;;;;;;;14163:107;13309:968;93240:596;;;;;;:::o;98035:186::-;76229:13;:11;:13::i;:::-;98117:9:::1;98112:102;98132:9;:16;98128:1;:20;98112:102;;;98198:4;98170:11;:25;98182:9;98192:1;98182:12;;;;;;;;:::i;:::-;;;;;;;;98170:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;98150:3;;;;;:::i;:::-;;;;98112:102;;;;98035:186:::0;:::o;95713:453::-;95815:13;95854:17;95862:8;95854:7;:17::i;:::-;95846:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;95947:1;95928:7;95922:21;;;;;:::i;:::-;;;:26;95918:80;;95972:14;95965:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95918:80;96052:1;96034:7;96028:21;;;;;:::i;:::-;;;:25;:130;;;;;;;;;;;;;;;;;96097:7;96106:19;:8;:17;:19::i;:::-;96080:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96028:130;96008:150;;95713:453;;;;:::o;93101:24::-;;;;:::o;32596:188::-;32693:4;32717:23;:21;:23::i;:::-;:42;;:49;32760:5;32717:49;;;;;;;;;;;;;;;:59;32767:8;32717:59;;;;;;;;;;;;;;;;;;;;;;;;;32710:66;;32596:188;;;;:::o;96849:106::-;76229:13;:11;:13::i;:::-;96943:4:::1;96926:14;:21;;;;;;;;;;;;:::i;:::-;;96849:106:::0;:::o;77249:201::-;76229:13;:11;:13::i;:::-;77358:1:::1;77338:22;;:8;:22;;;;77330:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;77414:28;77433:8;77414:18;:28::i;:::-;77249:201:::0;:::o;83139:248::-;83263:4;83302:37;83287:52;;;:11;:52;;;;:92;;;;83343:36;83367:11;83343:23;:36::i;:::-;83287:92;83280:99;;83139:248;;;:::o;23924:639::-;24009:4;24348:10;24333:25;;:11;:25;;;;:102;;;;24425:10;24410:25;;:11;:25;;;;24333:102;:179;;;;24502:10;24487:25;;:11;:25;;;;24333:179;24313:199;;23924:639;;;:::o;10978:164::-;11019:16;11048:12;10923:46;11048:27;;11120:4;11110:14;;11095:40;10978:164;:::o;33042:330::-;33107:4;33163:7;33144:15;:13;:15::i;:::-;:26;;:90;;;;;33197:23;:21;:23::i;:::-;:37;;;33187:7;:47;33144:90;:201;;;;;33344:1;17515:8;33272:23;:21;:23::i;:::-;:41;;:50;33314:7;33272:50;;;;;;;;;;;;:68;:73;33144:201;33124:221;;33042:330;;;:::o;55763:105::-;55823:7;55850:10;55843:17;;55763:105;:::o;91581:108::-;91652:8;:6;:8::i;:::-;91651:9;91643:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;91581:108::o;49403:112::-;49480:27;49490:2;49494:8;49480:27;;;;;;;;;;;;:9;:27::i;:::-;49403:112;;:::o;94420:101::-;94485:7;94512:1;94505:8;;94420:101;:::o;27494:1347::-;27561:7;27581:12;27596:7;27581:22;;27664:4;27645:15;:13;:15::i;:::-;:23;27641:1133;;27698:23;:21;:23::i;:::-;:37;;;27691:4;:44;27687:1087;;;27760:14;27777:23;:21;:23::i;:::-;:41;;:47;27819:4;27777:47;;;;;;;;;;;;27760:64;;27918:1;17515:8;27890:6;:24;:29;27886:869;;;28555:137;28572:1;28562:6;:11;28555:137;;;28615:23;:21;:23::i;:::-;:41;;:49;28657:6;;;;;;;28615:49;;;;;;;;;;;;28606:58;;28555:137;;;28725:6;28718:13;;;;;;27886:869;27737:1037;27687:1087;27641:1133;28802:31;;;;;;;;;;;;;;27494:1347;;;;:::o;34253:524::-;34355:27;34384:23;34425:53;34481:23;:21;:23::i;:::-;:39;;:48;34521:7;34481:48;;;;;;;;;;;34425:104;;34682:18;34659:41;;34739:19;34733:26;34714:45;;34644:126;34253:524;;;:::o;33481:659::-;33630:11;33795:16;33788:5;33784:28;33775:37;;33955:16;33944:9;33940:32;33927:45;;34105:15;34094:9;34091:30;34083:5;34072:9;34069:20;34066:56;34056:66;;33481:659;;;;;:::o;40298:159::-;;;;;:::o;55072:311::-;55207:7;55227:16;17919:3;55253:19;:41;;55227:68;;17919:3;55321:31;55332:4;55338:2;55342:9;55321:10;:31::i;:::-;55313:40;;:62;;55306:69;;;55072:311;;;;;:::o;29389:450::-;29469:14;29637:16;29630:5;29626:28;29617:37;;29814:5;29800:11;29775:23;29771:41;29768:52;29761:5;29758:63;29748:73;;29389:450;;;;:::o;41122:158::-;;;;;:::o;84177:97::-;84235:6;84261:5;84254:12;;84177:97;:::o;76508:132::-;76583:12;:10;:12::i;:::-;76572:23;;:7;:5;:7::i;:::-;:23;;;76564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76508:132::o;91766:108::-;91833:8;:6;:8::i;:::-;91825:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;91766:108::o;92277:120::-;91286:16;:14;:16::i;:::-;92346:5:::1;92336:7;;:15;;;;;;;;;;;;;;;;;;92367:22;92376:12;:10;:12::i;:::-;92367:22;;;;;;:::i;:::-;;;;;;;;92277:120::o:0;77610:191::-;77684:16;77703:6;;;;;;;;;;;77684:25;;77729:8;77720:6;;:17;;;;;;;;;;;;;;;;;;77784:8;77753:40;;77774:8;77753:40;;;;;;;;;;;;77673:128;77610:191;:::o;92018:118::-;91027:19;:17;:19::i;:::-;92088:4:::1;92078:7;;:14;;;;;;;;;;;;;;;;;;92108:20;92115:12;:10;:12::i;:::-;92108:20;;;;;;:::i;:::-;;;;;;;;92018:118::o:0;41720:736::-;41883:4;41953:2;41917:56;;;41974:19;:17;:19::i;:::-;41995:4;42001:7;42010:5;41917:99;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41900:549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42224:1;42207:6;:13;:18;42203:235;;;42253:40;;;;;;;;;;;;;;42203:235;42396:6;42390:13;42381:6;42377:2;42373:15;42366:38;41900:549;42082:65;;;42072:75;;;:6;:75;;;;42065:82;;;41720:736;;;;;;:::o;11806:164::-;11847:16;11876:12;11739:58;11876:27;;11948:4;11938:14;;11923:40;11806:164;:::o;14785:569::-;14833:4;15204:12;15227:4;15204:28;;15243:10;15306:4;15294:17;15288:23;;15345:1;15339:2;:7;15332:14;;;;14785:569;:::o;61357:326::-;61417:4;61674:1;61652:7;:19;;;:23;61645:30;;61357:326;;;:::o;19014:160::-;14540:38;:36;:38::i;:::-;:52;;;;;;;;;;;;14518:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;19126:40:::1;19151:5;19158:7;19126:24;:40::i;:::-;19014:160:::0;;:::o;75991:113::-;72729:13;;;;;;;;;;;72721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;76064:32:::1;76083:12;:10;:12::i;:::-;76064:18;:32::i;:::-;75991:113::o:0;82792:70::-;72729:13;;;;;;;;;;;72721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;82792:70::o;88274:111::-;72729:13;;;;;;;;;;;72721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;88067:1:::1;88355:7;:22;;;;88274:111::o:0;90699:97::-;72729:13;;;;;;;;;;;72721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;90783:5:::1;90773:7;;:15;;;;;;;;;;;;;;;;;;90699:97::o:0;84545:332::-;84664:17;:15;:17::i;:::-;84648:33;;:12;:33;;;;84640:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;84767:1;84747:22;;:8;:22;;;;84739:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;84834:35;;;;;;;;84846:8;84834:35;;;;;;84856:12;84834:35;;;;;84812:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84545:332;;:::o;58023:723::-;58079:13;58309:1;58300:5;:10;58296:53;;;58327:10;;;;;;;;;;;;;;;;;;;;;58296:53;58359:12;58374:5;58359:20;;58390:14;58415:78;58430:1;58422:4;:9;58415:78;;58448:8;;;;;:::i;:::-;;;;58479:2;58471:10;;;;;:::i;:::-;;;58415:78;;;58503:19;58535:6;58525:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58503:39;;58553:154;58569:1;58560:5;:10;58553:154;;58597:1;58587:11;;;;;:::i;:::-;;;58664:2;58656:5;:10;;;;:::i;:::-;58643:2;:24;;;;:::i;:::-;58630:39;;58613:6;58620;58613:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;58693:2;58684:11;;;;;:::i;:::-;;;58553:154;;;58731:6;58717:21;;;;;58023:723;;;;:::o;81065:168::-;81150:4;81189:36;81174:51;;;:11;:51;;;;81167:58;;81065:168;;;:::o;48582:737::-;48713:19;48719:2;48723:8;48713:5;:19::i;:::-;48792:1;48774:2;:14;;;:19;48770:531;;48814:11;48828:23;:21;:23::i;:::-;:37;;;48814:51;;48884:13;48906:8;48900:3;:14;48884:30;;48933:233;48964:62;49003:1;49007:2;49011:7;;;;;;49020:5;48964:30;:62::i;:::-;48959:167;;49062:40;;;;;;;;;;;;;;48959:167;49161:3;49153:5;:11;48933:233;;49272:3;49231:23;:21;:23::i;:::-;:37;;;:44;49227:58;;49277:8;;;49227:58;48795:506;;48770:531;48582:737;;;:::o;54773:147::-;54910:6;54773:147;;;;;:::o;74383:98::-;74436:7;74463:10;74456:17;;74383:98;:::o;19182:285::-;14540:38;:36;:38::i;:::-;:52;;;;;;;;;;;;14518:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;19336:5:::1;19304:23;:21;:23::i;:::-;:29;;:37;;;;;;;;;;;;:::i;:::-;;19386:7;19352:23;:21;:23::i;:::-;:31;;:41;;;;;;;;;;;;:::i;:::-;;19444:15;:13;:15::i;:::-;19404:23;:21;:23::i;:::-;:37;;:55;;;;19182:285:::0;;:::o;42918:2816::-;42991:20;43014:23;:21;:23::i;:::-;:37;;;42991:60;;43078:1;43066:8;:13;43062:44;;;43088:18;;;;;;;;;;;;;;43062:44;43119:61;43149:1;43153:2;43157:12;43171:8;43119:21;:61::i;:::-;43687:1;16877:2;43657:1;:26;;43656:32;43644:8;:45;43594:23;:21;:23::i;:::-;:42;;:46;43637:2;43594:46;;;;;;;;;;;;;;;;:95;;;;;;;;;;;43990:139;44027:2;44081:33;44104:1;44108:2;44112:1;44081:14;:33::i;:::-;44048:30;44069:8;44048:20;:30::i;:::-;:66;43990:18;:139::i;:::-;43932:23;:21;:23::i;:::-;:41;;:55;43974:12;43932:55;;;;;;;;;;;:197;;;;44146:16;44177:11;44206:8;44191:12;:23;44177:37;;44727:16;44723:2;44719:25;44707:37;;45099:12;45059:8;45018:1;44956:25;44897:1;44836;44809:335;45224:1;45210:12;45206:20;45164:346;45265:3;45256:7;45253:16;45164:346;;45483:7;45473:8;45470:1;45443:25;45440:1;45437;45432:59;45318:1;45309:7;45305:15;45294:26;;45164:346;;;45168:77;45555:1;45543:8;:13;45539:45;;;45565:19;;;;;;;;;;;;;;45539:45;45641:3;45601:23;:21;:23::i;:::-;:37;;:43;;;;43368:2288;;45666:60;45695:1;45699:2;45703:12;45717:8;45666:20;:60::i;:::-;42980:2754;42918:2816;;:::o;29941:324::-;30011:14;30244:1;30234:8;30231:15;30205:24;30201:46;30191:56;;29941:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:137::-;3460:5;3498:6;3485:20;3476:29;;3514:32;3540:5;3514:32;:::i;:::-;3415:137;;;;:::o;3558:329::-;3617:6;3666:2;3654:9;3645:7;3641:23;3637:32;3634:119;;;3672:79;;:::i;:::-;3634:119;3792:1;3817:53;3862:7;3853:6;3842:9;3838:22;3817:53;:::i;:::-;3807:63;;3763:117;3558:329;;;;:::o;3893:474::-;3961:6;3969;4018:2;4006:9;3997:7;3993:23;3989:32;3986:119;;;4024:79;;:::i;:::-;3986:119;4144:1;4169:53;4214:7;4205:6;4194:9;4190:22;4169:53;:::i;:::-;4159:63;;4115:117;4271:2;4297:53;4342:7;4333:6;4322:9;4318:22;4297:53;:::i;:::-;4287:63;;4242:118;3893:474;;;;;:::o;4373:619::-;4450:6;4458;4466;4515:2;4503:9;4494:7;4490:23;4486:32;4483:119;;;4521:79;;:::i;:::-;4483:119;4641:1;4666:53;4711:7;4702:6;4691:9;4687:22;4666:53;:::i;:::-;4656:63;;4612:117;4768:2;4794:53;4839:7;4830:6;4819:9;4815:22;4794:53;:::i;:::-;4784:63;;4739:118;4896:2;4922:53;4967:7;4958:6;4947:9;4943:22;4922:53;:::i;:::-;4912:63;;4867:118;4373:619;;;;;:::o;4998:943::-;5093:6;5101;5109;5117;5166:3;5154:9;5145:7;5141:23;5137:33;5134:120;;;5173:79;;:::i;:::-;5134:120;5293:1;5318:53;5363:7;5354:6;5343:9;5339:22;5318:53;:::i;:::-;5308:63;;5264:117;5420:2;5446:53;5491:7;5482:6;5471:9;5467:22;5446:53;:::i;:::-;5436:63;;5391:118;5548:2;5574:53;5619:7;5610:6;5599:9;5595:22;5574:53;:::i;:::-;5564:63;;5519:118;5704:2;5693:9;5689:18;5676:32;5735:18;5727:6;5724:30;5721:117;;;5757:79;;:::i;:::-;5721:117;5862:62;5916:7;5907:6;5896:9;5892:22;5862:62;:::i;:::-;5852:72;;5647:287;4998:943;;;;;;;:::o;5947:468::-;6012:6;6020;6069:2;6057:9;6048:7;6044:23;6040:32;6037:119;;;6075:79;;:::i;:::-;6037:119;6195:1;6220:53;6265:7;6256:6;6245:9;6241:22;6220:53;:::i;:::-;6210:63;;6166:117;6322:2;6348:50;6390:7;6381:6;6370:9;6366:22;6348:50;:::i;:::-;6338:60;;6293:115;5947:468;;;;;:::o;6421:474::-;6489:6;6497;6546:2;6534:9;6525:7;6521:23;6517:32;6514:119;;;6552:79;;:::i;:::-;6514:119;6672:1;6697:53;6742:7;6733:6;6722:9;6718:22;6697:53;:::i;:::-;6687:63;;6643:117;6799:2;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6770:118;6421:474;;;;;:::o;6901:539::-;6985:6;7034:2;7022:9;7013:7;7009:23;7005:32;7002:119;;;7040:79;;:::i;:::-;7002:119;7188:1;7177:9;7173:17;7160:31;7218:18;7210:6;7207:30;7204:117;;;7240:79;;:::i;:::-;7204:117;7345:78;7415:7;7406:6;7395:9;7391:22;7345:78;:::i;:::-;7335:88;;7131:302;6901:539;;;;:::o;7446:327::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:52;7748:7;7739:6;7728:9;7724:22;7704:52;:::i;:::-;7694:62;;7650:116;7446:327;;;;:::o;7779:349::-;7848:6;7897:2;7885:9;7876:7;7872:23;7868:32;7865:119;;;7903:79;;:::i;:::-;7865:119;8023:1;8048:63;8103:7;8094:6;8083:9;8079:22;8048:63;:::i;:::-;8038:73;;7994:127;7779:349;;;;:::o;8134:509::-;8203:6;8252:2;8240:9;8231:7;8227:23;8223:32;8220:119;;;8258:79;;:::i;:::-;8220:119;8406:1;8395:9;8391:17;8378:31;8436:18;8428:6;8425:30;8422:117;;;8458:79;;:::i;:::-;8422:117;8563:63;8618:7;8609:6;8598:9;8594:22;8563:63;:::i;:::-;8553:73;;8349:287;8134:509;;;;:::o;8649:1595::-;8782:6;8790;8798;8806;8814;8822;8871:3;8859:9;8850:7;8846:23;8842:33;8839:120;;;8878:79;;:::i;:::-;8839:120;9026:1;9015:9;9011:17;8998:31;9056:18;9048:6;9045:30;9042:117;;;9078:79;;:::i;:::-;9042:117;9183:63;9238:7;9229:6;9218:9;9214:22;9183:63;:::i;:::-;9173:73;;8969:287;9323:2;9312:9;9308:18;9295:32;9354:18;9346:6;9343:30;9340:117;;;9376:79;;:::i;:::-;9340:117;9481:63;9536:7;9527:6;9516:9;9512:22;9481:63;:::i;:::-;9471:73;;9266:288;9621:2;9610:9;9606:18;9593:32;9652:18;9644:6;9641:30;9638:117;;;9674:79;;:::i;:::-;9638:117;9779:63;9834:7;9825:6;9814:9;9810:22;9779:63;:::i;:::-;9769:73;;9564:288;9891:2;9917:53;9962:7;9953:6;9942:9;9938:22;9917:53;:::i;:::-;9907:63;;9862:118;10019:3;10046:53;10091:7;10082:6;10071:9;10067:22;10046:53;:::i;:::-;10036:63;;9990:119;10148:3;10175:52;10219:7;10210:6;10199:9;10195:22;10175:52;:::i;:::-;10165:62;;10119:118;8649:1595;;;;;;;;:::o;10250:329::-;10309:6;10358:2;10346:9;10337:7;10333:23;10329:32;10326:119;;;10364:79;;:::i;:::-;10326:119;10484:1;10509:53;10554:7;10545:6;10534:9;10530:22;10509:53;:::i;:::-;10499:63;;10455:117;10250:329;;;;:::o;10585:474::-;10653:6;10661;10710:2;10698:9;10689:7;10685:23;10681:32;10678:119;;;10716:79;;:::i;:::-;10678:119;10836:1;10861:53;10906:7;10897:6;10886:9;10882:22;10861:53;:::i;:::-;10851:63;;10807:117;10963:2;10989:53;11034:7;11025:6;11014:9;11010:22;10989:53;:::i;:::-;10979:63;;10934:118;10585:474;;;;;:::o;11065:118::-;11152:24;11170:5;11152:24;:::i;:::-;11147:3;11140:37;11065:118;;:::o;11189:109::-;11270:21;11285:5;11270:21;:::i;:::-;11265:3;11258:34;11189:109;;:::o;11304:360::-;11390:3;11418:38;11450:5;11418:38;:::i;:::-;11472:70;11535:6;11530:3;11472:70;:::i;:::-;11465:77;;11551:52;11596:6;11591:3;11584:4;11577:5;11573:16;11551:52;:::i;:::-;11628:29;11650:6;11628:29;:::i;:::-;11623:3;11619:39;11612:46;;11394:270;11304:360;;;;:::o;11670:143::-;11763:43;11800:5;11763:43;:::i;:::-;11758:3;11751:56;11670:143;;:::o;11819:364::-;11907:3;11935:39;11968:5;11935:39;:::i;:::-;11990:71;12054:6;12049:3;11990:71;:::i;:::-;11983:78;;12070:52;12115:6;12110:3;12103:4;12096:5;12092:16;12070:52;:::i;:::-;12147:29;12169:6;12147:29;:::i;:::-;12142:3;12138:39;12131:46;;11911:272;11819:364;;;;:::o;12189:377::-;12295:3;12323:39;12356:5;12323:39;:::i;:::-;12378:89;12460:6;12455:3;12378:89;:::i;:::-;12371:96;;12476:52;12521:6;12516:3;12509:4;12502:5;12498:16;12476:52;:::i;:::-;12553:6;12548:3;12544:16;12537:23;;12299:267;12189:377;;;;:::o;12596:845::-;12699:3;12736:5;12730:12;12765:36;12791:9;12765:36;:::i;:::-;12817:89;12899:6;12894:3;12817:89;:::i;:::-;12810:96;;12937:1;12926:9;12922:17;12953:1;12948:137;;;;13099:1;13094:341;;;;12915:520;;12948:137;13032:4;13028:9;13017;13013:25;13008:3;13001:38;13068:6;13063:3;13059:16;13052:23;;12948:137;;13094:341;13161:38;13193:5;13161:38;:::i;:::-;13221:1;13235:154;13249:6;13246:1;13243:13;13235:154;;;13323:7;13317:14;13313:1;13308:3;13304:11;13297:35;13373:1;13364:7;13360:15;13349:26;;13271:4;13268:1;13264:12;13259:17;;13235:154;;;13418:6;13413:3;13409:16;13402:23;;13101:334;;12915:520;;12703:738;;12596:845;;;;:::o;13447:366::-;13589:3;13610:67;13674:2;13669:3;13610:67;:::i;:::-;13603:74;;13686:93;13775:3;13686:93;:::i;:::-;13804:2;13799:3;13795:12;13788:19;;13447:366;;;:::o;13819:::-;13961:3;13982:67;14046:2;14041:3;13982:67;:::i;:::-;13975:74;;14058:93;14147:3;14058:93;:::i;:::-;14176:2;14171:3;14167:12;14160:19;;13819:366;;;:::o;14191:::-;14333:3;14354:67;14418:2;14413:3;14354:67;:::i;:::-;14347:74;;14430:93;14519:3;14430:93;:::i;:::-;14548:2;14543:3;14539:12;14532:19;;14191:366;;;:::o;14563:::-;14705:3;14726:67;14790:2;14785:3;14726:67;:::i;:::-;14719:74;;14802:93;14891:3;14802:93;:::i;:::-;14920:2;14915:3;14911:12;14904:19;;14563:366;;;:::o;14935:::-;15077:3;15098:67;15162:2;15157:3;15098:67;:::i;:::-;15091:74;;15174:93;15263:3;15174:93;:::i;:::-;15292:2;15287:3;15283:12;15276:19;;14935:366;;;:::o;15307:::-;15449:3;15470:67;15534:2;15529:3;15470:67;:::i;:::-;15463:74;;15546:93;15635:3;15546:93;:::i;:::-;15664:2;15659:3;15655:12;15648:19;;15307:366;;;:::o;15679:::-;15821:3;15842:67;15906:2;15901:3;15842:67;:::i;:::-;15835:74;;15918:93;16007:3;15918:93;:::i;:::-;16036:2;16031:3;16027:12;16020:19;;15679:366;;;:::o;16051:::-;16193:3;16214:67;16278:2;16273:3;16214:67;:::i;:::-;16207:74;;16290:93;16379:3;16290:93;:::i;:::-;16408:2;16403:3;16399:12;16392:19;;16051:366;;;:::o;16423:400::-;16583:3;16604:84;16686:1;16681:3;16604:84;:::i;:::-;16597:91;;16697:93;16786:3;16697:93;:::i;:::-;16815:1;16810:3;16806:11;16799:18;;16423:400;;;:::o;16829:366::-;16971:3;16992:67;17056:2;17051:3;16992:67;:::i;:::-;16985:74;;17068:93;17157:3;17068:93;:::i;:::-;17186:2;17181:3;17177:12;17170:19;;16829:366;;;:::o;17201:::-;17343:3;17364:67;17428:2;17423:3;17364:67;:::i;:::-;17357:74;;17440:93;17529:3;17440:93;:::i;:::-;17558:2;17553:3;17549:12;17542:19;;17201:366;;;:::o;17573:::-;17715:3;17736:67;17800:2;17795:3;17736:67;:::i;:::-;17729:74;;17812:93;17901:3;17812:93;:::i;:::-;17930:2;17925:3;17921:12;17914:19;;17573:366;;;:::o;17945:::-;18087:3;18108:67;18172:2;18167:3;18108:67;:::i;:::-;18101:74;;18184:93;18273:3;18184:93;:::i;:::-;18302:2;18297:3;18293:12;18286:19;;17945:366;;;:::o;18317:398::-;18476:3;18497:83;18578:1;18573:3;18497:83;:::i;:::-;18490:90;;18589:93;18678:3;18589:93;:::i;:::-;18707:1;18702:3;18698:11;18691:18;;18317:398;;;:::o;18721:366::-;18863:3;18884:67;18948:2;18943:3;18884:67;:::i;:::-;18877:74;;18960:93;19049:3;18960:93;:::i;:::-;19078:2;19073:3;19069:12;19062:19;;18721:366;;;:::o;19093:::-;19235:3;19256:67;19320:2;19315:3;19256:67;:::i;:::-;19249:74;;19332:93;19421:3;19332:93;:::i;:::-;19450:2;19445:3;19441:12;19434:19;;19093:366;;;:::o;19465:::-;19607:3;19628:67;19692:2;19687:3;19628:67;:::i;:::-;19621:74;;19704:93;19793:3;19704:93;:::i;:::-;19822:2;19817:3;19813:12;19806:19;;19465:366;;;:::o;19837:::-;19979:3;20000:67;20064:2;20059:3;20000:67;:::i;:::-;19993:74;;20076:93;20165:3;20076:93;:::i;:::-;20194:2;20189:3;20185:12;20178:19;;19837:366;;;:::o;20209:::-;20351:3;20372:67;20436:2;20431:3;20372:67;:::i;:::-;20365:74;;20448:93;20537:3;20448:93;:::i;:::-;20566:2;20561:3;20557:12;20550:19;;20209:366;;;:::o;20581:::-;20723:3;20744:67;20808:2;20803:3;20744:67;:::i;:::-;20737:74;;20820:93;20909:3;20820:93;:::i;:::-;20938:2;20933:3;20929:12;20922:19;;20581:366;;;:::o;20953:::-;21095:3;21116:67;21180:2;21175:3;21116:67;:::i;:::-;21109:74;;21192:93;21281:3;21192:93;:::i;:::-;21310:2;21305:3;21301:12;21294:19;;20953:366;;;:::o;21325:118::-;21412:24;21430:5;21412:24;:::i;:::-;21407:3;21400:37;21325:118;;:::o;21449:695::-;21727:3;21749:92;21837:3;21828:6;21749:92;:::i;:::-;21742:99;;21858:95;21949:3;21940:6;21858:95;:::i;:::-;21851:102;;21970:148;22114:3;21970:148;:::i;:::-;21963:155;;22135:3;22128:10;;21449:695;;;;;:::o;22150:379::-;22334:3;22356:147;22499:3;22356:147;:::i;:::-;22349:154;;22520:3;22513:10;;22150:379;;;:::o;22535:222::-;22628:4;22666:2;22655:9;22651:18;22643:26;;22679:71;22747:1;22736:9;22732:17;22723:6;22679:71;:::i;:::-;22535:222;;;;:::o;22763:640::-;22958:4;22996:3;22985:9;22981:19;22973:27;;23010:71;23078:1;23067:9;23063:17;23054:6;23010:71;:::i;:::-;23091:72;23159:2;23148:9;23144:18;23135:6;23091:72;:::i;:::-;23173;23241:2;23230:9;23226:18;23217:6;23173:72;:::i;:::-;23292:9;23286:4;23282:20;23277:2;23266:9;23262:18;23255:48;23320:76;23391:4;23382:6;23320:76;:::i;:::-;23312:84;;22763:640;;;;;;;:::o;23409:332::-;23530:4;23568:2;23557:9;23553:18;23545:26;;23581:71;23649:1;23638:9;23634:17;23625:6;23581:71;:::i;:::-;23662:72;23730:2;23719:9;23715:18;23706:6;23662:72;:::i;:::-;23409:332;;;;;:::o;23747:210::-;23834:4;23872:2;23861:9;23857:18;23849:26;;23885:65;23947:1;23936:9;23932:17;23923:6;23885:65;:::i;:::-;23747:210;;;;:::o;23963:234::-;24062:4;24100:2;24089:9;24085:18;24077:26;;24113:77;24187:1;24176:9;24172:17;24163:6;24113:77;:::i;:::-;23963:234;;;;:::o;24203:313::-;24316:4;24354:2;24343:9;24339:18;24331:26;;24403:9;24397:4;24393:20;24389:1;24378:9;24374:17;24367:47;24431:78;24504:4;24495:6;24431:78;:::i;:::-;24423:86;;24203:313;;;;:::o;24522:419::-;24688:4;24726:2;24715:9;24711:18;24703:26;;24775:9;24769:4;24765:20;24761:1;24750:9;24746:17;24739:47;24803:131;24929:4;24803:131;:::i;:::-;24795:139;;24522:419;;;:::o;24947:::-;25113:4;25151:2;25140:9;25136:18;25128:26;;25200:9;25194:4;25190:20;25186:1;25175:9;25171:17;25164:47;25228:131;25354:4;25228:131;:::i;:::-;25220:139;;24947:419;;;:::o;25372:::-;25538:4;25576:2;25565:9;25561:18;25553:26;;25625:9;25619:4;25615:20;25611:1;25600:9;25596:17;25589:47;25653:131;25779:4;25653:131;:::i;:::-;25645:139;;25372:419;;;:::o;25797:::-;25963:4;26001:2;25990:9;25986:18;25978:26;;26050:9;26044:4;26040:20;26036:1;26025:9;26021:17;26014:47;26078:131;26204:4;26078:131;:::i;:::-;26070:139;;25797:419;;;:::o;26222:::-;26388:4;26426:2;26415:9;26411:18;26403:26;;26475:9;26469:4;26465:20;26461:1;26450:9;26446:17;26439:47;26503:131;26629:4;26503:131;:::i;:::-;26495:139;;26222:419;;;:::o;26647:::-;26813:4;26851:2;26840:9;26836:18;26828:26;;26900:9;26894:4;26890:20;26886:1;26875:9;26871:17;26864:47;26928:131;27054:4;26928:131;:::i;:::-;26920:139;;26647:419;;;:::o;27072:::-;27238:4;27276:2;27265:9;27261:18;27253:26;;27325:9;27319:4;27315:20;27311:1;27300:9;27296:17;27289:47;27353:131;27479:4;27353:131;:::i;:::-;27345:139;;27072:419;;;:::o;27497:::-;27663:4;27701:2;27690:9;27686:18;27678:26;;27750:9;27744:4;27740:20;27736:1;27725:9;27721:17;27714:47;27778:131;27904:4;27778:131;:::i;:::-;27770:139;;27497:419;;;:::o;27922:::-;28088:4;28126:2;28115:9;28111:18;28103:26;;28175:9;28169:4;28165:20;28161:1;28150:9;28146:17;28139:47;28203:131;28329:4;28203:131;:::i;:::-;28195:139;;27922:419;;;:::o;28347:::-;28513:4;28551:2;28540:9;28536:18;28528:26;;28600:9;28594:4;28590:20;28586:1;28575:9;28571:17;28564:47;28628:131;28754:4;28628:131;:::i;:::-;28620:139;;28347:419;;;:::o;28772:::-;28938:4;28976:2;28965:9;28961:18;28953:26;;29025:9;29019:4;29015:20;29011:1;29000:9;28996:17;28989:47;29053:131;29179:4;29053:131;:::i;:::-;29045:139;;28772:419;;;:::o;29197:::-;29363:4;29401:2;29390:9;29386:18;29378:26;;29450:9;29444:4;29440:20;29436:1;29425:9;29421:17;29414:47;29478:131;29604:4;29478:131;:::i;:::-;29470:139;;29197:419;;;:::o;29622:::-;29788:4;29826:2;29815:9;29811:18;29803:26;;29875:9;29869:4;29865:20;29861:1;29850:9;29846:17;29839:47;29903:131;30029:4;29903:131;:::i;:::-;29895:139;;29622:419;;;:::o;30047:::-;30213:4;30251:2;30240:9;30236:18;30228:26;;30300:9;30294:4;30290:20;30286:1;30275:9;30271:17;30264:47;30328:131;30454:4;30328:131;:::i;:::-;30320:139;;30047:419;;;:::o;30472:::-;30638:4;30676:2;30665:9;30661:18;30653:26;;30725:9;30719:4;30715:20;30711:1;30700:9;30696:17;30689:47;30753:131;30879:4;30753:131;:::i;:::-;30745:139;;30472:419;;;:::o;30897:::-;31063:4;31101:2;31090:9;31086:18;31078:26;;31150:9;31144:4;31140:20;31136:1;31125:9;31121:17;31114:47;31178:131;31304:4;31178:131;:::i;:::-;31170:139;;30897:419;;;:::o;31322:::-;31488:4;31526:2;31515:9;31511:18;31503:26;;31575:9;31569:4;31565:20;31561:1;31550:9;31546:17;31539:47;31603:131;31729:4;31603:131;:::i;:::-;31595:139;;31322:419;;;:::o;31747:::-;31913:4;31951:2;31940:9;31936:18;31928:26;;32000:9;31994:4;31990:20;31986:1;31975:9;31971:17;31964:47;32028:131;32154:4;32028:131;:::i;:::-;32020:139;;31747:419;;;:::o;32172:::-;32338:4;32376:2;32365:9;32361:18;32353:26;;32425:9;32419:4;32415:20;32411:1;32400:9;32396:17;32389:47;32453:131;32579:4;32453:131;:::i;:::-;32445:139;;32172:419;;;:::o;32597:222::-;32690:4;32728:2;32717:9;32713:18;32705:26;;32741:71;32809:1;32798:9;32794:17;32785:6;32741:71;:::i;:::-;32597:222;;;;:::o;32825:129::-;32859:6;32886:20;;:::i;:::-;32876:30;;32915:33;32943:4;32935:6;32915:33;:::i;:::-;32825:129;;;:::o;32960:75::-;32993:6;33026:2;33020:9;33010:19;;32960:75;:::o;33041:311::-;33118:4;33208:18;33200:6;33197:30;33194:56;;;33230:18;;:::i;:::-;33194:56;33280:4;33272:6;33268:17;33260:25;;33340:4;33334;33330:15;33322:23;;33041:311;;;:::o;33358:307::-;33419:4;33509:18;33501:6;33498:30;33495:56;;;33531:18;;:::i;:::-;33495:56;33569:29;33591:6;33569:29;:::i;:::-;33561:37;;33653:4;33647;33643:15;33635:23;;33358:307;;;:::o;33671:308::-;33733:4;33823:18;33815:6;33812:30;33809:56;;;33845:18;;:::i;:::-;33809:56;33883:29;33905:6;33883:29;:::i;:::-;33875:37;;33967:4;33961;33957:15;33949:23;;33671:308;;;:::o;33985:141::-;34034:4;34057:3;34049:11;;34080:3;34077:1;34070:14;34114:4;34111:1;34101:18;34093:26;;33985:141;;;:::o;34132:98::-;34183:6;34217:5;34211:12;34201:22;;34132:98;;;:::o;34236:99::-;34288:6;34322:5;34316:12;34306:22;;34236:99;;;:::o;34341:168::-;34424:11;34458:6;34453:3;34446:19;34498:4;34493:3;34489:14;34474:29;;34341:168;;;;:::o;34515:147::-;34616:11;34653:3;34638:18;;34515:147;;;;:::o;34668:169::-;34752:11;34786:6;34781:3;34774:19;34826:4;34821:3;34817:14;34802:29;;34668:169;;;;:::o;34843:148::-;34945:11;34982:3;34967:18;;34843:148;;;;:::o;34997:305::-;35037:3;35056:20;35074:1;35056:20;:::i;:::-;35051:25;;35090:20;35108:1;35090:20;:::i;:::-;35085:25;;35244:1;35176:66;35172:74;35169:1;35166:81;35163:107;;;35250:18;;:::i;:::-;35163:107;35294:1;35291;35287:9;35280:16;;34997:305;;;;:::o;35308:185::-;35348:1;35365:20;35383:1;35365:20;:::i;:::-;35360:25;;35399:20;35417:1;35399:20;:::i;:::-;35394:25;;35438:1;35428:35;;35443:18;;:::i;:::-;35428:35;35485:1;35482;35478:9;35473:14;;35308:185;;;;:::o;35499:348::-;35539:7;35562:20;35580:1;35562:20;:::i;:::-;35557:25;;35596:20;35614:1;35596:20;:::i;:::-;35591:25;;35784:1;35716:66;35712:74;35709:1;35706:81;35701:1;35694:9;35687:17;35683:105;35680:131;;;35791:18;;:::i;:::-;35680:131;35839:1;35836;35832:9;35821:20;;35499:348;;;;:::o;35853:191::-;35893:4;35913:20;35931:1;35913:20;:::i;:::-;35908:25;;35947:20;35965:1;35947:20;:::i;:::-;35942:25;;35986:1;35983;35980:8;35977:34;;;35991:18;;:::i;:::-;35977:34;36036:1;36033;36029:9;36021:17;;35853:191;;;;:::o;36050:96::-;36087:7;36116:24;36134:5;36116:24;:::i;:::-;36105:35;;36050:96;;;:::o;36152:90::-;36186:7;36229:5;36222:13;36215:21;36204:32;;36152:90;;;:::o;36248:149::-;36284:7;36324:66;36317:5;36313:78;36302:89;;36248:149;;;:::o;36403:126::-;36440:7;36480:42;36473:5;36469:54;36458:65;;36403:126;;;:::o;36535:77::-;36572:7;36601:5;36590:16;;36535:77;;;:::o;36618:86::-;36653:7;36693:4;36686:5;36682:16;36671:27;;36618:86;;;:::o;36710:109::-;36746:7;36786:26;36779:5;36775:38;36764:49;;36710:109;;;:::o;36825:117::-;36881:9;36914:22;36930:5;36914:22;:::i;:::-;36901:35;;36825:117;;;:::o;36948:154::-;37032:6;37027:3;37022;37009:30;37094:1;37085:6;37080:3;37076:16;37069:27;36948:154;;;:::o;37108:307::-;37176:1;37186:113;37200:6;37197:1;37194:13;37186:113;;;37285:1;37280:3;37276:11;37270:18;37266:1;37261:3;37257:11;37250:39;37222:2;37219:1;37215:10;37210:15;;37186:113;;;37317:6;37314:1;37311:13;37308:101;;;37397:1;37388:6;37383:3;37379:16;37372:27;37308:101;37157:258;37108:307;;;:::o;37421:320::-;37465:6;37502:1;37496:4;37492:12;37482:22;;37549:1;37543:4;37539:12;37570:18;37560:81;;37626:4;37618:6;37614:17;37604:27;;37560:81;37688:2;37680:6;37677:14;37657:18;37654:38;37651:84;;;37707:18;;:::i;:::-;37651:84;37472:269;37421:320;;;:::o;37747:281::-;37830:27;37852:4;37830:27;:::i;:::-;37822:6;37818:40;37960:6;37948:10;37945:22;37924:18;37912:10;37909:34;37906:62;37903:88;;;37971:18;;:::i;:::-;37903:88;38011:10;38007:2;38000:22;37790:238;37747:281;;:::o;38034:233::-;38073:3;38096:24;38114:5;38096:24;:::i;:::-;38087:33;;38142:66;38135:5;38132:77;38129:103;;;38212:18;;:::i;:::-;38129:103;38259:1;38252:5;38248:13;38241:20;;38034:233;;;:::o;38273:176::-;38305:1;38322:20;38340:1;38322:20;:::i;:::-;38317:25;;38356:20;38374:1;38356:20;:::i;:::-;38351:25;;38395:1;38385:35;;38400:18;;:::i;:::-;38385:35;38441:1;38438;38434:9;38429:14;;38273:176;;;;:::o;38455:180::-;38503:77;38500:1;38493:88;38600:4;38597:1;38590:15;38624:4;38621:1;38614:15;38641:180;38689:77;38686:1;38679:88;38786:4;38783:1;38776:15;38810:4;38807:1;38800:15;38827:180;38875:77;38872:1;38865:88;38972:4;38969:1;38962:15;38996:4;38993:1;38986:15;39013:180;39061:77;39058:1;39051:88;39158:4;39155:1;39148:15;39182:4;39179:1;39172:15;39199:180;39247:77;39244:1;39237:88;39344:4;39341:1;39334:15;39368:4;39365:1;39358:15;39385:117;39494:1;39491;39484:12;39508:117;39617:1;39614;39607:12;39631:117;39740:1;39737;39730:12;39754:117;39863:1;39860;39853:12;39877:117;39986:1;39983;39976:12;40000:102;40041:6;40092:2;40088:7;40083:2;40076:5;40072:14;40068:28;40058:38;;40000:102;;;:::o;40108:170::-;40248:22;40244:1;40236:6;40232:14;40225:46;40108:170;:::o;40284:181::-;40424:33;40420:1;40412:6;40408:14;40401:57;40284:181;:::o;40471:239::-;40611:34;40607:1;40599:6;40595:14;40588:58;40680:22;40675:2;40667:6;40663:15;40656:47;40471:239;:::o;40716:225::-;40856:34;40852:1;40844:6;40840:14;40833:58;40925:8;40920:2;40912:6;40908:15;40901:33;40716:225;:::o;40947:166::-;41087:18;41083:1;41075:6;41071:14;41064:42;40947:166;:::o;41119:::-;41259:18;41255:1;41247:6;41243:14;41236:42;41119:166;:::o;41291:233::-;41431:34;41427:1;41419:6;41415:14;41408:58;41500:16;41495:2;41487:6;41483:15;41476:41;41291:233;:::o;41530:242::-;41670:34;41666:1;41658:6;41654:14;41647:58;41739:25;41734:2;41726:6;41722:15;41715:50;41530:242;:::o;41778:155::-;41918:7;41914:1;41906:6;41902:14;41895:31;41778:155;:::o;41939:161::-;42079:13;42075:1;42067:6;42063:14;42056:37;41939:161;:::o;42106:182::-;42246:34;42242:1;42234:6;42230:14;42223:58;42106:182;:::o;42294:170::-;42434:22;42430:1;42422:6;42418:14;42411:46;42294:170;:::o;42470:165::-;42610:17;42606:1;42598:6;42594:14;42587:41;42470:165;:::o;42641:114::-;;:::o;42761:230::-;42901:34;42897:1;42889:6;42885:14;42878:58;42970:13;42965:2;42957:6;42953:15;42946:38;42761:230;:::o;42997:229::-;43137:34;43133:1;43125:6;43121:14;43114:58;43206:12;43201:2;43193:6;43189:15;43182:37;42997:229;:::o;43232:181::-;43372:33;43368:1;43360:6;43356:14;43349:57;43232:181;:::o;43419:175::-;43559:27;43555:1;43547:6;43543:14;43536:51;43419:175;:::o;43600:165::-;43740:17;43736:1;43728:6;43724:14;43717:41;43600:165;:::o;43771:170::-;43911:22;43907:1;43899:6;43895:14;43888:46;43771:170;:::o;43947:167::-;44087:19;44083:1;44075:6;44071:14;44064:43;43947:167;:::o;44120:122::-;44193:24;44211:5;44193:24;:::i;:::-;44186:5;44183:35;44173:63;;44232:1;44229;44222:12;44173:63;44120:122;:::o;44248:116::-;44318:21;44333:5;44318:21;:::i;:::-;44311:5;44308:32;44298:60;;44354:1;44351;44344:12;44298:60;44248:116;:::o;44370:120::-;44442:23;44459:5;44442:23;:::i;:::-;44435:5;44432:34;44422:62;;44480:1;44477;44470:12;44422:62;44370:120;:::o;44496:122::-;44569:24;44587:5;44569:24;:::i;:::-;44562:5;44559:35;44549:63;;44608:1;44605;44598:12;44549:63;44496:122;:::o;44624:120::-;44696:23;44713:5;44696:23;:::i;:::-;44689:5;44686:34;44676:62;;44734:1;44731;44724:12;44676:62;44624:120;:::o
Swarm Source
ipfs://af21b7efae4bea16c724e7f80566b53fd07413294dcb707016e94e1576d0f3a6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.