Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Public Mint | 18470738 | 450 days ago | IN | 0 ETH | 0.00263153 | ||||
Public Mint | 18459758 | 451 days ago | IN | 0 ETH | 0.00089341 | ||||
Public Mint | 18459676 | 451 days ago | IN | 0 ETH | 0.00093814 | ||||
Public Mint | 18459641 | 451 days ago | IN | 0 ETH | 0.00143112 | ||||
Public Mint | 18459593 | 451 days ago | IN | 0 ETH | 0.00146579 | ||||
Public Mint | 18454482 | 452 days ago | IN | 0 ETH | 0.00135641 | ||||
Public Mint | 18454409 | 452 days ago | IN | 0 ETH | 0.00128143 | ||||
Public Mint | 18454267 | 452 days ago | IN | 0 ETH | 0.00147516 | ||||
Public Mint | 18454145 | 452 days ago | IN | 0 ETH | 0.00085375 | ||||
Public Mint | 18454038 | 452 days ago | IN | 0 ETH | 0.00072579 | ||||
Public Mint | 18454034 | 452 days ago | IN | 0 ETH | 0.0010084 | ||||
Set Base URI | 18454022 | 452 days ago | IN | 0 ETH | 0.00038814 | ||||
Public Mint | 18453973 | 452 days ago | IN | 0 ETH | 0.00069314 | ||||
Public Mint | 18453970 | 452 days ago | IN | 0 ETH | 0.00103731 | ||||
Set Base URI | 18453929 | 452 days ago | IN | 0 ETH | 0.00085182 | ||||
Public Mint | 18453850 | 452 days ago | IN | 0 ETH | 0.00101896 | ||||
Toggle Mint | 18453848 | 452 days ago | IN | 0 ETH | 0.00042261 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ByteBros
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-29 */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_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; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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 payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable 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 payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // 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`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * 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 = _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`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } // File: contracts/ByteBros.sol pragma solidity ^0.8.15; contract ByteBros is ERC721A, DefaultOperatorFilterer, Ownable { mapping (address => bool) public minterAddress; bool public switchMint; string public baseURI; uint256 public price = 0; uint256 public maxSupply = 5000; uint256 public mintMax = 2; mapping (address => uint256) public walletPublic; constructor() ERC721A("ByteBros", "BYTE") Ownable(msg.sender) { switchMint = false; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // Mint function publicMint(uint256 qty) external payable { require(switchMint , "Mint has not initiated!"); require(qty <= mintMax, "Max Mint Reached!"); require(totalSupply() + qty <= maxSupply,"Sold Out!"); require(msg.value >= qty * price,"Not Enough ETH!"); walletPublic[msg.sender] += qty; _safeMint(msg.sender, qty); } ///////////////////////////// // CONTRACT MANAGEMENT ///////////////////////////// function toggleMint() public onlyOwner { switchMint = !switchMint; } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdrawFunds() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setMaxMints(uint256 newMax) public onlyOwner { mintMax = newMax; } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"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":"mintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"switchMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040525f600c55611388600d556002600e553480156200001f575f80fd5b5033733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4279746542726f730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42595445000000000000000000000000000000000000000000000000000000008152508160029081620000b5919062000698565b508060039081620000c7919062000698565b50620000d86200036960201b60201c565b5f8190555050505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002c357801562000194576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200015f929190620007bf565b5f604051808303815f87803b15801562000177575f80fd5b505af11580156200018a573d5f803e3d5ffd5b50505050620002c2565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000248576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000213929190620007bf565b5f604051808303815f87803b1580156200022b575f80fd5b505af11580156200023e573d5f803e3d5ffd5b50505050620002c1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002919190620007ea565b5f604051808303815f87803b158015620002a9575f80fd5b505af1158015620002bc573d5f803e3d5ffd5b505050505b5b5b50505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000338575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200032f9190620007ea565b60405180910390fd5b62000349816200037160201b60201c565b505f600a5f6101000a81548160ff02191690831515021790555062000805565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004b057607f821691505b602082108103620004c657620004c56200046b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200052a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ed565b620005368683620004ed565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005806200057a62000574846200054e565b62000557565b6200054e565b9050919050565b5f819050919050565b6200059b8362000560565b620005b3620005aa8262000587565b848454620004f9565b825550505050565b5f90565b620005c9620005bb565b620005d681848462000590565b505050565b5b81811015620005fd57620005f15f82620005bf565b600181019050620005dc565b5050565b601f8211156200064c576200061681620004cc565b6200062184620004de565b8101602085101562000631578190505b620006496200064085620004de565b830182620005db565b50505b505050565b5f82821c905092915050565b5f6200066e5f198460080262000651565b1980831691505092915050565b5f6200068883836200065d565b9150826002028217905092915050565b620006a38262000434565b67ffffffffffffffff811115620006bf57620006be6200043e565b5b620006cb825462000498565b620006d882828562000601565b5f60209050601f8311600181146200070e575f8415620006f9578287015190505b6200070585826200067b565b86555062000774565b601f1984166200071e86620004cc565b5f5b82811015620007475784890151825560018201915060208501945060208101905062000720565b8683101562000767578489015162000763601f8916826200065d565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007a7826200077c565b9050919050565b620007b9816200079b565b82525050565b5f604082019050620007d45f830185620007ae565b620007e36020830184620007ae565b9392505050565b5f602082019050620007ff5f830184620007ae565b92915050565b61309980620008135f395ff3fe6080604052600436106101d7575f3560e01c80636352211e11610101578063a035b1fe11610094578063d3dd5fe011610063578063d3dd5fe014610651578063d5abeb0114610667578063e985e9c514610691578063f2fde38b146106cd576101d7565b8063a035b1fe146105a7578063a22cb465146105d1578063b88d4fde146105f9578063c87b56dd14610615576101d7565b806379c9cb7b116100d057806379c9cb7b146105035780638da5cb5b1461052b57806391b7f5ed1461055557806395d89b411461057d576101d7565b80636352211e1461044b5780636c0360eb1461048757806370a08231146104b1578063715018a6146104ed576101d7565b806324600fc31161017957806342842e0e1161014857806342842e0e146103b35780634d155561146103cf57806355f804b3146103f95780635ca6a6a414610421576101d7565b806324600fc31461031b5780632be905ba146103315780632db115441461036d57806341f4343414610389576101d7565b8063095ea7b3116101b5578063095ea7b31461027d57806318160ddd1461029957806322ae7f7b146102c357806323b872dd146102ff576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190612350565b6106f5565b60405161020e9190612395565b60405180910390f35b348015610222575f80fd5b5061022b610786565b6040516102389190612438565b60405180910390f35b34801561024c575f80fd5b506102676004803603810190610262919061248b565b610816565b60405161027491906124f5565b60405180910390f35b61029760048036038101906102929190612538565b610890565b005b3480156102a4575f80fd5b506102ad610997565b6040516102ba9190612585565b60405180910390f35b3480156102ce575f80fd5b506102e960048036038101906102e4919061259e565b6109ac565b6040516102f69190612395565b60405180910390f35b610319600480360381019061031491906125c9565b6109c9565b005b348015610326575f80fd5b5061032f610b16565b005b34801561033c575f80fd5b506103576004803603810190610352919061259e565b610b64565b6040516103649190612585565b60405180910390f35b6103876004803603810190610382919061248b565b610b79565b005b348015610394575f80fd5b5061039d610d13565b6040516103aa9190612674565b60405180910390f35b6103cd60048036038101906103c891906125c9565b610d25565b005b3480156103da575f80fd5b506103e3610e72565b6040516103f09190612585565b60405180910390f35b348015610404575f80fd5b5061041f600480360381019061041a91906127b9565b610e78565b005b34801561042c575f80fd5b50610435610e93565b6040516104429190612395565b60405180910390f35b348015610456575f80fd5b50610471600480360381019061046c919061248b565b610ea5565b60405161047e91906124f5565b60405180910390f35b348015610492575f80fd5b5061049b610eb6565b6040516104a89190612438565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d2919061259e565b610f42565b6040516104e49190612585565b60405180910390f35b3480156104f8575f80fd5b50610501610ff7565b005b34801561050e575f80fd5b506105296004803603810190610524919061248b565b61100a565b005b348015610536575f80fd5b5061053f61101c565b60405161054c91906124f5565b60405180910390f35b348015610560575f80fd5b5061057b6004803603810190610576919061248b565b611044565b005b348015610588575f80fd5b50610591611056565b60405161059e9190612438565b60405180910390f35b3480156105b2575f80fd5b506105bb6110e6565b6040516105c89190612585565b60405180910390f35b3480156105dc575f80fd5b506105f760048036038101906105f2919061282a565b6110ec565b005b610613600480360381019061060e9190612906565b6111f3565b005b348015610620575f80fd5b5061063b6004803603810190610636919061248b565b611343565b6040516106489190612438565b60405180910390f35b34801561065c575f80fd5b506106656113de565b005b348015610672575f80fd5b5061067b611410565b6040516106889190612585565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b29190612986565b611416565b6040516106c49190612395565b60405180910390f35b3480156106d8575f80fd5b506106f360048036038101906106ee919061259e565b6114a4565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610795906129f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107c1906129f1565b801561080c5780601f106107e35761010080835404028352916020019161080c565b820191905f5260205f20905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b5f61082082611528565b610856576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b815f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610988576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610907929190612a21565b602060405180830381865afa158015610922573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109469190612a5c565b61098757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161097e91906124f5565b60405180910390fd5b5b6109928383611582565b505050565b5f6109a06116c1565b6001545f540303905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b04573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3a57610a358484846116c9565b610b10565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a83929190612a21565b602060405180830381865afa158015610a9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac29190612a5c565b610b0357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610afa91906124f5565b60405180910390fd5b5b610b0f8484846116c9565b5b50505050565b610b1e6119d7565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b61573d5f803e3d5ffd5b50565b600f602052805f5260405f205f915090505481565b600a5f9054906101000a900460ff16610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612ad1565b60405180910390fd5b600e54811115610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390612b39565b60405180910390fd5b600d5481610c18610997565b610c229190612b84565b1115610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90612c01565b60405180910390fd5b600c5481610c719190612c1f565b341015610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90612caa565b60405180910390fd5b80600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610cff9190612b84565b92505081905550610d103382611a5e565b50565b6daaeb6d7670e522a718067333cd4e81565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e60573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9657610d91848484611a7b565b610e6c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ddf929190612a21565b602060405180830381865afa158015610dfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e1e9190612a5c565b610e5f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e5691906124f5565b60405180910390fd5b5b610e6b848484611a7b565b5b50505050565b600e5481565b610e806119d7565b80600b9081610e8f9190612e5c565b5050565b600a5f9054906101000a900460ff1681565b5f610eaf82611a9a565b9050919050565b600b8054610ec3906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eef906129f1565b8015610f3a5780601f10610f1157610100808354040283529160200191610f3a565b820191905f5260205f20905b815481529060010190602001808311610f1d57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fff6119d7565b6110085f611b5d565b565b6110126119d7565b80600e8190555050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61104c6119d7565b80600c8190555050565b606060038054611065906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611091906129f1565b80156110dc5780601f106110b3576101008083540402835291602001916110dc565b820191905f5260205f20905b8154815290600101906020018083116110bf57829003601f168201915b5050505050905090565b600c5481565b815f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111e4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611163929190612a21565b602060405180830381865afa15801561117e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a29190612a5c565b6111e357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111da91906124f5565b60405180910390fd5b5b6111ee8383611c20565b505050565b835f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561132f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112655761126085858585611d26565b61133c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ae929190612a21565b602060405180830381865afa1580156112c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ed9190612a5c565b61132e57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161132591906124f5565b60405180910390fd5b5b61133b85858585611d26565b5b5050505050565b606061134e82611528565b611384576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61138d611d98565b90505f8151036113ab5760405180602001604052805f8152506113d6565b806113b584611e28565b6040516020016113c6929190612f65565b6040516020818303038152906040525b915050919050565b6113e66119d7565b600a5f9054906101000a900460ff1615600a5f6101000a81548160ff021916908315150217905550565b600d5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114ac6119d7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361151c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161151391906124f5565b60405180910390fd5b61152581611b5d565b50565b5f816115326116c1565b1115801561154057505f5482105b801561157b57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f61158c82610ea5565b90508073ffffffffffffffffffffffffffffffffffffffff166115ad611e77565b73ffffffffffffffffffffffffffffffffffffffff1614611610576115d9816115d4611e77565b611416565b61160f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f6116d382611a9a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461173a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061174584611e7e565b9150915061175b8187611756611e77565b611ea1565b6117a7576117708661176b611e77565b611416565b6117a6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361180c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118198686866001611ee4565b8015611823575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506118eb856118c7888887611eea565b7c020000000000000000000000000000000000000000000000000000000017611f11565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611967575f6001850190505f60045f8381526020019081526020015f205403611965575f548114611964578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119cf8686866001611f3b565b505050505050565b6119df611f41565b73ffffffffffffffffffffffffffffffffffffffff166119fd61101c565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c57611a20611f41565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611a5391906124f5565b60405180910390fd5b565b611a77828260405180602001604052805f815250611f48565b5050565b611a9583838360405180602001604052805f8152506111f3565b505050565b5f8082905080611aa86116c1565b11611b26575f54811015611b25575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611b23575b5f8103611b195760045f836001900393508381526020019081526020015f20549050611af2565b8092505050611b58565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060075f611c2c611e77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd5611e77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a9190612395565b60405180910390a35050565b611d318484846109c9565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611d9257611d5b84848484611fdf565b611d91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611da7906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd3906129f1565b8015611e1e5780601f10611df557610100808354040283529160200191611e1e565b820191905f5260205f20905b815481529060010190602001808311611e0157829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b600115611e6257600184039350600a81066030018453600a8104905080611e40575b50828103602084039350808452505050919050565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611f0086868461212a565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f33905090565b611f528383612132565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fda575f805490505f83820390505b611f8e5f868380600101945086611fdf565b611fc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f7c57815f5414611fd7575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612004611e77565b8786866040518563ffffffff1660e01b81526004016120269493929190612fda565b6020604051808303815f875af192505050801561206157506040513d601f19601f8201168201806040525081019061205e9190613038565b60015b6120d7573d805f811461208f576040519150601f19603f3d011682016040523d82523d5f602084013e612094565b606091505b505f8151036120cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f805490505f8203612170576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c5f848385611ee4565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506121ee836121df5f865f611eea565b6121e8856122db565b17611f11565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146122885780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061224f565b505f82036122c2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506122d65f848385611f3b565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61232f816122fb565b8114612339575f80fd5b50565b5f8135905061234a81612326565b92915050565b5f60208284031215612365576123646122f3565b5b5f6123728482850161233c565b91505092915050565b5f8115159050919050565b61238f8161237b565b82525050565b5f6020820190506123a85f830184612386565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156123e55780820151818401526020810190506123ca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61240a826123ae565b61241481856123b8565b93506124248185602086016123c8565b61242d816123f0565b840191505092915050565b5f6020820190508181035f8301526124508184612400565b905092915050565b5f819050919050565b61246a81612458565b8114612474575f80fd5b50565b5f8135905061248581612461565b92915050565b5f602082840312156124a05761249f6122f3565b5b5f6124ad84828501612477565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124df826124b6565b9050919050565b6124ef816124d5565b82525050565b5f6020820190506125085f8301846124e6565b92915050565b612517816124d5565b8114612521575f80fd5b50565b5f813590506125328161250e565b92915050565b5f806040838503121561254e5761254d6122f3565b5b5f61255b85828601612524565b925050602061256c85828601612477565b9150509250929050565b61257f81612458565b82525050565b5f6020820190506125985f830184612576565b92915050565b5f602082840312156125b3576125b26122f3565b5b5f6125c084828501612524565b91505092915050565b5f805f606084860312156125e0576125df6122f3565b5b5f6125ed86828701612524565b93505060206125fe86828701612524565b925050604061260f86828701612477565b9150509250925092565b5f819050919050565b5f61263c612637612632846124b6565b612619565b6124b6565b9050919050565b5f61264d82612622565b9050919050565b5f61265e82612643565b9050919050565b61266e81612654565b82525050565b5f6020820190506126875f830184612665565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6126cb826123f0565b810181811067ffffffffffffffff821117156126ea576126e9612695565b5b80604052505050565b5f6126fc6122ea565b905061270882826126c2565b919050565b5f67ffffffffffffffff82111561272757612726612695565b5b612730826123f0565b9050602081019050919050565b828183375f83830152505050565b5f61275d6127588461270d565b6126f3565b90508281526020810184848401111561277957612778612691565b5b61278484828561273d565b509392505050565b5f82601f8301126127a05761279f61268d565b5b81356127b084826020860161274b565b91505092915050565b5f602082840312156127ce576127cd6122f3565b5b5f82013567ffffffffffffffff8111156127eb576127ea6122f7565b5b6127f78482850161278c565b91505092915050565b6128098161237b565b8114612813575f80fd5b50565b5f8135905061282481612800565b92915050565b5f80604083850312156128405761283f6122f3565b5b5f61284d85828601612524565b925050602061285e85828601612816565b9150509250929050565b5f67ffffffffffffffff82111561288257612881612695565b5b61288b826123f0565b9050602081019050919050565b5f6128aa6128a584612868565b6126f3565b9050828152602081018484840111156128c6576128c5612691565b5b6128d184828561273d565b509392505050565b5f82601f8301126128ed576128ec61268d565b5b81356128fd848260208601612898565b91505092915050565b5f805f806080858703121561291e5761291d6122f3565b5b5f61292b87828801612524565b945050602061293c87828801612524565b935050604061294d87828801612477565b925050606085013567ffffffffffffffff81111561296e5761296d6122f7565b5b61297a878288016128d9565b91505092959194509250565b5f806040838503121561299c5761299b6122f3565b5b5f6129a985828601612524565b92505060206129ba85828601612524565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612a0857607f821691505b602082108103612a1b57612a1a6129c4565b5b50919050565b5f604082019050612a345f8301856124e6565b612a4160208301846124e6565b9392505050565b5f81519050612a5681612800565b92915050565b5f60208284031215612a7157612a706122f3565b5b5f612a7e84828501612a48565b91505092915050565b7f4d696e7420686173206e6f7420696e69746961746564210000000000000000005f82015250565b5f612abb6017836123b8565b9150612ac682612a87565b602082019050919050565b5f6020820190508181035f830152612ae881612aaf565b9050919050565b7f4d6178204d696e742052656163686564210000000000000000000000000000005f82015250565b5f612b236011836123b8565b9150612b2e82612aef565b602082019050919050565b5f6020820190508181035f830152612b5081612b17565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612b8e82612458565b9150612b9983612458565b9250828201905080821115612bb157612bb0612b57565b5b92915050565b7f536f6c64204f75742100000000000000000000000000000000000000000000005f82015250565b5f612beb6009836123b8565b9150612bf682612bb7565b602082019050919050565b5f6020820190508181035f830152612c1881612bdf565b9050919050565b5f612c2982612458565b9150612c3483612458565b9250828202612c4281612458565b91508282048414831517612c5957612c58612b57565b5b5092915050565b7f4e6f7420456e6f756768204554482100000000000000000000000000000000005f82015250565b5f612c94600f836123b8565b9150612c9f82612c60565b602082019050919050565b5f6020820190508181035f830152612cc181612c88565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612d247fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ce9565b612d2e8683612ce9565b95508019841693508086168417925050509392505050565b5f612d60612d5b612d5684612458565b612619565b612458565b9050919050565b5f819050919050565b612d7983612d46565b612d8d612d8582612d67565b848454612cf5565b825550505050565b5f90565b612da1612d95565b612dac818484612d70565b505050565b5b81811015612dcf57612dc45f82612d99565b600181019050612db2565b5050565b601f821115612e1457612de581612cc8565b612dee84612cda565b81016020851015612dfd578190505b612e11612e0985612cda565b830182612db1565b50505b505050565b5f82821c905092915050565b5f612e345f1984600802612e19565b1980831691505092915050565b5f612e4c8383612e25565b9150826002028217905092915050565b612e65826123ae565b67ffffffffffffffff811115612e7e57612e7d612695565b5b612e8882546129f1565b612e93828285612dd3565b5f60209050601f831160018114612ec4575f8415612eb2578287015190505b612ebc8582612e41565b865550612f23565b601f198416612ed286612cc8565b5f5b82811015612ef957848901518255600182019150602085019450602081019050612ed4565b86831015612f165784890151612f12601f891682612e25565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f612f3f826123ae565b612f498185612f2b565b9350612f598185602086016123c8565b80840191505092915050565b5f612f708285612f35565b9150612f7c8284612f35565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f612fac82612f88565b612fb68185612f92565b9350612fc68185602086016123c8565b612fcf816123f0565b840191505092915050565b5f608082019050612fed5f8301876124e6565b612ffa60208301866124e6565b6130076040830185612576565b81810360608301526130198184612fa2565b905095945050505050565b5f8151905061303281612326565b92915050565b5f6020828403121561304d5761304c6122f3565b5b5f61305a84828501613024565b9150509291505056fea2646970667358221220ffdeac3a91df7cd4d086702b70f48335b238511ce5c26f5498515bfc4b83f49164736f6c63430008150033
Deployed Bytecode
0x6080604052600436106101d7575f3560e01c80636352211e11610101578063a035b1fe11610094578063d3dd5fe011610063578063d3dd5fe014610651578063d5abeb0114610667578063e985e9c514610691578063f2fde38b146106cd576101d7565b8063a035b1fe146105a7578063a22cb465146105d1578063b88d4fde146105f9578063c87b56dd14610615576101d7565b806379c9cb7b116100d057806379c9cb7b146105035780638da5cb5b1461052b57806391b7f5ed1461055557806395d89b411461057d576101d7565b80636352211e1461044b5780636c0360eb1461048757806370a08231146104b1578063715018a6146104ed576101d7565b806324600fc31161017957806342842e0e1161014857806342842e0e146103b35780634d155561146103cf57806355f804b3146103f95780635ca6a6a414610421576101d7565b806324600fc31461031b5780632be905ba146103315780632db115441461036d57806341f4343414610389576101d7565b8063095ea7b3116101b5578063095ea7b31461027d57806318160ddd1461029957806322ae7f7b146102c357806323b872dd146102ff576101d7565b806301ffc9a7146101db57806306fdde0314610217578063081812fc14610241575b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190612350565b6106f5565b60405161020e9190612395565b60405180910390f35b348015610222575f80fd5b5061022b610786565b6040516102389190612438565b60405180910390f35b34801561024c575f80fd5b506102676004803603810190610262919061248b565b610816565b60405161027491906124f5565b60405180910390f35b61029760048036038101906102929190612538565b610890565b005b3480156102a4575f80fd5b506102ad610997565b6040516102ba9190612585565b60405180910390f35b3480156102ce575f80fd5b506102e960048036038101906102e4919061259e565b6109ac565b6040516102f69190612395565b60405180910390f35b610319600480360381019061031491906125c9565b6109c9565b005b348015610326575f80fd5b5061032f610b16565b005b34801561033c575f80fd5b506103576004803603810190610352919061259e565b610b64565b6040516103649190612585565b60405180910390f35b6103876004803603810190610382919061248b565b610b79565b005b348015610394575f80fd5b5061039d610d13565b6040516103aa9190612674565b60405180910390f35b6103cd60048036038101906103c891906125c9565b610d25565b005b3480156103da575f80fd5b506103e3610e72565b6040516103f09190612585565b60405180910390f35b348015610404575f80fd5b5061041f600480360381019061041a91906127b9565b610e78565b005b34801561042c575f80fd5b50610435610e93565b6040516104429190612395565b60405180910390f35b348015610456575f80fd5b50610471600480360381019061046c919061248b565b610ea5565b60405161047e91906124f5565b60405180910390f35b348015610492575f80fd5b5061049b610eb6565b6040516104a89190612438565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d2919061259e565b610f42565b6040516104e49190612585565b60405180910390f35b3480156104f8575f80fd5b50610501610ff7565b005b34801561050e575f80fd5b506105296004803603810190610524919061248b565b61100a565b005b348015610536575f80fd5b5061053f61101c565b60405161054c91906124f5565b60405180910390f35b348015610560575f80fd5b5061057b6004803603810190610576919061248b565b611044565b005b348015610588575f80fd5b50610591611056565b60405161059e9190612438565b60405180910390f35b3480156105b2575f80fd5b506105bb6110e6565b6040516105c89190612585565b60405180910390f35b3480156105dc575f80fd5b506105f760048036038101906105f2919061282a565b6110ec565b005b610613600480360381019061060e9190612906565b6111f3565b005b348015610620575f80fd5b5061063b6004803603810190610636919061248b565b611343565b6040516106489190612438565b60405180910390f35b34801561065c575f80fd5b506106656113de565b005b348015610672575f80fd5b5061067b611410565b6040516106889190612585565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b29190612986565b611416565b6040516106c49190612395565b60405180910390f35b3480156106d8575f80fd5b506106f360048036038101906106ee919061259e565b6114a4565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610795906129f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107c1906129f1565b801561080c5780601f106107e35761010080835404028352916020019161080c565b820191905f5260205f20905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b5f61082082611528565b610856576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b815f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610988576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610907929190612a21565b602060405180830381865afa158015610922573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109469190612a5c565b61098757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161097e91906124f5565b60405180910390fd5b5b6109928383611582565b505050565b5f6109a06116c1565b6001545f540303905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b04573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3a57610a358484846116c9565b610b10565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a83929190612a21565b602060405180830381865afa158015610a9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac29190612a5c565b610b0357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610afa91906124f5565b60405180910390fd5b5b610b0f8484846116c9565b5b50505050565b610b1e6119d7565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b61573d5f803e3d5ffd5b50565b600f602052805f5260405f205f915090505481565b600a5f9054906101000a900460ff16610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612ad1565b60405180910390fd5b600e54811115610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390612b39565b60405180910390fd5b600d5481610c18610997565b610c229190612b84565b1115610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90612c01565b60405180910390fd5b600c5481610c719190612c1f565b341015610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90612caa565b60405180910390fd5b80600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610cff9190612b84565b92505081905550610d103382611a5e565b50565b6daaeb6d7670e522a718067333cd4e81565b825f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e60573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9657610d91848484611a7b565b610e6c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ddf929190612a21565b602060405180830381865afa158015610dfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e1e9190612a5c565b610e5f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e5691906124f5565b60405180910390fd5b5b610e6b848484611a7b565b5b50505050565b600e5481565b610e806119d7565b80600b9081610e8f9190612e5c565b5050565b600a5f9054906101000a900460ff1681565b5f610eaf82611a9a565b9050919050565b600b8054610ec3906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eef906129f1565b8015610f3a5780601f10610f1157610100808354040283529160200191610f3a565b820191905f5260205f20905b815481529060010190602001808311610f1d57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fff6119d7565b6110085f611b5d565b565b6110126119d7565b80600e8190555050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61104c6119d7565b80600c8190555050565b606060038054611065906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611091906129f1565b80156110dc5780601f106110b3576101008083540402835291602001916110dc565b820191905f5260205f20905b8154815290600101906020018083116110bf57829003601f168201915b5050505050905090565b600c5481565b815f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111e4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611163929190612a21565b602060405180830381865afa15801561117e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a29190612a5c565b6111e357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111da91906124f5565b60405180910390fd5b5b6111ee8383611c20565b505050565b835f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561132f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112655761126085858585611d26565b61133c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112ae929190612a21565b602060405180830381865afa1580156112c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ed9190612a5c565b61132e57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161132591906124f5565b60405180910390fd5b5b61133b85858585611d26565b5b5050505050565b606061134e82611528565b611384576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61138d611d98565b90505f8151036113ab5760405180602001604052805f8152506113d6565b806113b584611e28565b6040516020016113c6929190612f65565b6040516020818303038152906040525b915050919050565b6113e66119d7565b600a5f9054906101000a900460ff1615600a5f6101000a81548160ff021916908315150217905550565b600d5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114ac6119d7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361151c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161151391906124f5565b60405180910390fd5b61152581611b5d565b50565b5f816115326116c1565b1115801561154057505f5482105b801561157b57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f61158c82610ea5565b90508073ffffffffffffffffffffffffffffffffffffffff166115ad611e77565b73ffffffffffffffffffffffffffffffffffffffff1614611610576115d9816115d4611e77565b611416565b61160f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f6001905090565b5f6116d382611a9a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461173a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061174584611e7e565b9150915061175b8187611756611e77565b611ea1565b6117a7576117708661176b611e77565b611416565b6117a6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361180c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118198686866001611ee4565b8015611823575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506118eb856118c7888887611eea565b7c020000000000000000000000000000000000000000000000000000000017611f11565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611967575f6001850190505f60045f8381526020019081526020015f205403611965575f548114611964578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119cf8686866001611f3b565b505050505050565b6119df611f41565b73ffffffffffffffffffffffffffffffffffffffff166119fd61101c565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c57611a20611f41565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611a5391906124f5565b60405180910390fd5b565b611a77828260405180602001604052805f815250611f48565b5050565b611a9583838360405180602001604052805f8152506111f3565b505050565b5f8082905080611aa86116c1565b11611b26575f54811015611b25575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611b23575b5f8103611b195760045f836001900393508381526020019081526020015f20549050611af2565b8092505050611b58565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060075f611c2c611e77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd5611e77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1a9190612395565b60405180910390a35050565b611d318484846109c9565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611d9257611d5b84848484611fdf565b611d91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611da7906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd3906129f1565b8015611e1e5780601f10611df557610100808354040283529160200191611e1e565b820191905f5260205f20905b815481529060010190602001808311611e0157829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b600115611e6257600184039350600a81066030018453600a8104905080611e40575b50828103602084039350808452505050919050565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611f0086868461212a565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f33905090565b611f528383612132565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611fda575f805490505f83820390505b611f8e5f868380600101945086611fdf565b611fc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f7c57815f5414611fd7575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612004611e77565b8786866040518563ffffffff1660e01b81526004016120269493929190612fda565b6020604051808303815f875af192505050801561206157506040513d601f19601f8201168201806040525081019061205e9190613038565b60015b6120d7573d805f811461208f576040519150601f19603f3d011682016040523d82523d5f602084013e612094565b606091505b505f8151036120cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f9392505050565b5f805490505f8203612170576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c5f848385611ee4565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506121ee836121df5f865f611eea565b6121e8856122db565b17611f11565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146122885780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061224f565b505f82036122c2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506122d65f848385611f3b565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61232f816122fb565b8114612339575f80fd5b50565b5f8135905061234a81612326565b92915050565b5f60208284031215612365576123646122f3565b5b5f6123728482850161233c565b91505092915050565b5f8115159050919050565b61238f8161237b565b82525050565b5f6020820190506123a85f830184612386565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156123e55780820151818401526020810190506123ca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61240a826123ae565b61241481856123b8565b93506124248185602086016123c8565b61242d816123f0565b840191505092915050565b5f6020820190508181035f8301526124508184612400565b905092915050565b5f819050919050565b61246a81612458565b8114612474575f80fd5b50565b5f8135905061248581612461565b92915050565b5f602082840312156124a05761249f6122f3565b5b5f6124ad84828501612477565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124df826124b6565b9050919050565b6124ef816124d5565b82525050565b5f6020820190506125085f8301846124e6565b92915050565b612517816124d5565b8114612521575f80fd5b50565b5f813590506125328161250e565b92915050565b5f806040838503121561254e5761254d6122f3565b5b5f61255b85828601612524565b925050602061256c85828601612477565b9150509250929050565b61257f81612458565b82525050565b5f6020820190506125985f830184612576565b92915050565b5f602082840312156125b3576125b26122f3565b5b5f6125c084828501612524565b91505092915050565b5f805f606084860312156125e0576125df6122f3565b5b5f6125ed86828701612524565b93505060206125fe86828701612524565b925050604061260f86828701612477565b9150509250925092565b5f819050919050565b5f61263c612637612632846124b6565b612619565b6124b6565b9050919050565b5f61264d82612622565b9050919050565b5f61265e82612643565b9050919050565b61266e81612654565b82525050565b5f6020820190506126875f830184612665565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6126cb826123f0565b810181811067ffffffffffffffff821117156126ea576126e9612695565b5b80604052505050565b5f6126fc6122ea565b905061270882826126c2565b919050565b5f67ffffffffffffffff82111561272757612726612695565b5b612730826123f0565b9050602081019050919050565b828183375f83830152505050565b5f61275d6127588461270d565b6126f3565b90508281526020810184848401111561277957612778612691565b5b61278484828561273d565b509392505050565b5f82601f8301126127a05761279f61268d565b5b81356127b084826020860161274b565b91505092915050565b5f602082840312156127ce576127cd6122f3565b5b5f82013567ffffffffffffffff8111156127eb576127ea6122f7565b5b6127f78482850161278c565b91505092915050565b6128098161237b565b8114612813575f80fd5b50565b5f8135905061282481612800565b92915050565b5f80604083850312156128405761283f6122f3565b5b5f61284d85828601612524565b925050602061285e85828601612816565b9150509250929050565b5f67ffffffffffffffff82111561288257612881612695565b5b61288b826123f0565b9050602081019050919050565b5f6128aa6128a584612868565b6126f3565b9050828152602081018484840111156128c6576128c5612691565b5b6128d184828561273d565b509392505050565b5f82601f8301126128ed576128ec61268d565b5b81356128fd848260208601612898565b91505092915050565b5f805f806080858703121561291e5761291d6122f3565b5b5f61292b87828801612524565b945050602061293c87828801612524565b935050604061294d87828801612477565b925050606085013567ffffffffffffffff81111561296e5761296d6122f7565b5b61297a878288016128d9565b91505092959194509250565b5f806040838503121561299c5761299b6122f3565b5b5f6129a985828601612524565b92505060206129ba85828601612524565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612a0857607f821691505b602082108103612a1b57612a1a6129c4565b5b50919050565b5f604082019050612a345f8301856124e6565b612a4160208301846124e6565b9392505050565b5f81519050612a5681612800565b92915050565b5f60208284031215612a7157612a706122f3565b5b5f612a7e84828501612a48565b91505092915050565b7f4d696e7420686173206e6f7420696e69746961746564210000000000000000005f82015250565b5f612abb6017836123b8565b9150612ac682612a87565b602082019050919050565b5f6020820190508181035f830152612ae881612aaf565b9050919050565b7f4d6178204d696e742052656163686564210000000000000000000000000000005f82015250565b5f612b236011836123b8565b9150612b2e82612aef565b602082019050919050565b5f6020820190508181035f830152612b5081612b17565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612b8e82612458565b9150612b9983612458565b9250828201905080821115612bb157612bb0612b57565b5b92915050565b7f536f6c64204f75742100000000000000000000000000000000000000000000005f82015250565b5f612beb6009836123b8565b9150612bf682612bb7565b602082019050919050565b5f6020820190508181035f830152612c1881612bdf565b9050919050565b5f612c2982612458565b9150612c3483612458565b9250828202612c4281612458565b91508282048414831517612c5957612c58612b57565b5b5092915050565b7f4e6f7420456e6f756768204554482100000000000000000000000000000000005f82015250565b5f612c94600f836123b8565b9150612c9f82612c60565b602082019050919050565b5f6020820190508181035f830152612cc181612c88565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612d247fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ce9565b612d2e8683612ce9565b95508019841693508086168417925050509392505050565b5f612d60612d5b612d5684612458565b612619565b612458565b9050919050565b5f819050919050565b612d7983612d46565b612d8d612d8582612d67565b848454612cf5565b825550505050565b5f90565b612da1612d95565b612dac818484612d70565b505050565b5b81811015612dcf57612dc45f82612d99565b600181019050612db2565b5050565b601f821115612e1457612de581612cc8565b612dee84612cda565b81016020851015612dfd578190505b612e11612e0985612cda565b830182612db1565b50505b505050565b5f82821c905092915050565b5f612e345f1984600802612e19565b1980831691505092915050565b5f612e4c8383612e25565b9150826002028217905092915050565b612e65826123ae565b67ffffffffffffffff811115612e7e57612e7d612695565b5b612e8882546129f1565b612e93828285612dd3565b5f60209050601f831160018114612ec4575f8415612eb2578287015190505b612ebc8582612e41565b865550612f23565b601f198416612ed286612cc8565b5f5b82811015612ef957848901518255600182019150602085019450602081019050612ed4565b86831015612f165784890151612f12601f891682612e25565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f612f3f826123ae565b612f498185612f2b565b9350612f598185602086016123c8565b80840191505092915050565b5f612f708285612f35565b9150612f7c8284612f35565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f612fac82612f88565b612fb68185612f92565b9350612fc68185602086016123c8565b612fcf816123f0565b840191505092915050565b5f608082019050612fed5f8301876124e6565b612ffa60208301866124e6565b6130076040830185612576565b81810360608301526130198184612fa2565b905095945050505050565b5f8151905061303281612326565b92915050565b5f6020828403121561304d5761304c6122f3565b5b5f61305a84828501613024565b9150509291505056fea2646970667358221220ffdeac3a91df7cd4d086702b70f48335b238511ce5c26f5498515bfc4b83f49164736f6c63430008150033
Deployed Bytecode Sourcemap
64774:2507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24340:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25242:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31733:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66572:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20993:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64844:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66735:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65999:100;;;;;;;;;;;;;:::i;:::-;;65032:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65294:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3122:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66904:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65003:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66105:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64893:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26635:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64918:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22177:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63865:103;;;;;;;;;;;;;:::i;:::-;;66203:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63190:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65807:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25418:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64942:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66398:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67081:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25628:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65727:70;;;;;;;;;;;;;:::i;:::-;;64969:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32682:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64123:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24340:639;24425:4;24764:10;24749:25;;:11;:25;;;;:102;;;;24841:10;24826:25;;:11;:25;;;;24749:102;:179;;;;24918:10;24903:25;;:11;:25;;;;24749:179;24729:199;;24340:639;;;:::o;25242:100::-;25296:13;25329:5;25322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25242:100;:::o;31733:218::-;31809:7;31834:16;31842:7;31834;:16::i;:::-;31829:64;;31859:34;;;;;;;;;;;;;;31829:64;31913:15;:24;31929:7;31913:24;;;;;;;;;;;:30;;;;;;;;;;;;31906:37;;31733:218;;;:::o;66572:153::-;66676:8;5164:1;3222:42;5116:45;;;:49;5112:225;;;3222:42;5187;;;5238:4;5245:8;5187:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5182:144;;5301:8;5282:28;;;;;;;;;;;:::i;:::-;;;;;;;;5182:144;5112:225;66689:32:::1;66703:8;66713:7;66689:13;:32::i;:::-;66572:153:::0;;;:::o;20993:323::-;21054:7;21282:15;:13;:15::i;:::-;21267:12;;21251:13;;:28;:46;21244:53;;20993:323;:::o;64844:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;66735:159::-;66844:4;4418:1;3222:42;4370:45;;;:49;4366:539;;;4659:10;4651:18;;:4;:18;;;4647:85;;66853:37:::1;66872:4;66878:2;66882:7;66853:18;:37::i;:::-;4710:7:::0;;4647:85;3222:42;4751;;;4802:4;4809:10;4751:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4746:148;;4867:10;4848:30;;;;;;;;;;;:::i;:::-;;;;;;;;4746:148;4366:539;66853:37:::1;66872:4;66878:2;66882:7;66853:18;:37::i;:::-;66735:159:::0;;;;;:::o;65999:100::-;63076:13;:11;:13::i;:::-;66052:10:::1;66044:28;;:51;66073:21;66044:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65999:100::o:0;65032:48::-;;;;;;;;;;;;;;;;;:::o;65294:325::-;65356:10;;;;;;;;;;;65348:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;65413:7;;65406:3;:14;;65398:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;65476:9;;65469:3;65453:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;65445:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;65528:5;;65522:3;:11;;;;:::i;:::-;65509:9;:24;;65501:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;65583:3;65555:12;:24;65568:10;65555:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;65589:26;65599:10;65611:3;65589:9;:26::i;:::-;65294:325;:::o;3122:143::-;3222:42;3122:143;:::o;66904:167::-;67017:4;4418:1;3222:42;4370:45;;;:49;4366:539;;;4659:10;4651:18;;:4;:18;;;4647:85;;67026:41:::1;67049:4;67055:2;67059:7;67026:22;:41::i;:::-;4710:7:::0;;4647:85;3222:42;4751;;;4802:4;4809:10;4751:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4746:148;;4867:10;4848:30;;;;;;;;;;;:::i;:::-;;;;;;;;4746:148;4366:539;67026:41:::1;67049:4;67055:2;67059:7;67026:22;:41::i;:::-;66904:167:::0;;;;;:::o;65003:26::-;;;;:::o;66105:88::-;63076:13;:11;:13::i;:::-;66181:8:::1;66171:7;:18;;;;;;:::i;:::-;;66105:88:::0;:::o;64893:22::-;;;;;;;;;;;;;:::o;26635:152::-;26707:7;26750:27;26769:7;26750:18;:27::i;:::-;26727:52;;26635:152;;;:::o;64918:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22177:233::-;22249:7;22290:1;22273:19;;:5;:19;;;22269:60;;22301:28;;;;;;;;;;;;;;22269:60;16336:13;22347:18;:25;22366:5;22347:25;;;;;;;;;;;;;;;;:55;22340:62;;22177:233;;;:::o;63865:103::-;63076:13;:11;:13::i;:::-;63930:30:::1;63957:1;63930:18;:30::i;:::-;63865:103::o:0;66203:85::-;63076:13;:11;:13::i;:::-;66270:6:::1;66260:7;:16;;;;66203:85:::0;:::o;63190:87::-;63236:7;63263:6;;;;;;;;;;;63256:13;;63190:87;:::o;65807:76::-;63076:13;:11;:13::i;:::-;65871:8:::1;65863:5;:16;;;;65807:76:::0;:::o;25418:104::-;25474:13;25507:7;25500:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25418:104;:::o;64942:24::-;;;;:::o;66398:164::-;66502:8;5164:1;3222:42;5116:45;;;:49;5112:225;;;3222:42;5187;;;5238:4;5245:8;5187:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5182:144;;5301:8;5282:28;;;;;;;;;;;:::i;:::-;;;;;;;;5182:144;5112:225;66515:43:::1;66539:8;66549;66515:23;:43::i;:::-;66398:164:::0;;;:::o;67081:197::-;67217:4;4418:1;3222:42;4370:45;;;:49;4366:539;;;4659:10;4651:18;;:4;:18;;;4647:85;;67227:47:::1;67250:4;67256:2;67260:7;67269:4;67227:22;:47::i;:::-;4710:7:::0;;4647:85;3222:42;4751;;;4802:4;4809:10;4751:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4746:148;;4867:10;4848:30;;;;;;;;;;;:::i;:::-;;;;;;;;4746:148;4366:539;67227:47:::1;67250:4;67256:2;67260:7;67269:4;67227:22;:47::i;:::-;67081:197:::0;;;;;;:::o;25628:318::-;25701:13;25732:16;25740:7;25732;:16::i;:::-;25727:59;;25757:29;;;;;;;;;;;;;;25727:59;25799:21;25823:10;:8;:10::i;:::-;25799:34;;25876:1;25857:7;25851:21;:26;:87;;;;;;;;;;;;;;;;;25904:7;25913:18;25923:7;25913:9;:18::i;:::-;25887:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25851:87;25844:94;;;25628:318;;;:::o;65727:70::-;63076:13;:11;:13::i;:::-;65783:10:::1;;;;;;;;;;;65782:11;65769:10;;:24;;;;;;;;;;;;;;;;;;65727:70::o:0;64969:31::-;;;;:::o;32682:164::-;32779:4;32803:18;:25;32822:5;32803:25;;;;;;;;;;;;;;;:35;32829:8;32803:35;;;;;;;;;;;;;;;;;;;;;;;;;32796:42;;32682:164;;;;:::o;64123:220::-;63076:13;:11;:13::i;:::-;64228:1:::1;64208:22;;:8;:22;;::::0;64204:93:::1;;64282:1;64254:31;;;;;;;;;;;:::i;:::-;;;;;;;;64204:93;64307:28;64326:8;64307:18;:28::i;:::-;64123:220:::0;:::o;33104:282::-;33169:4;33225:7;33206:15;:13;:15::i;:::-;:26;;:66;;;;;33259:13;;33249:7;:23;33206:66;:153;;;;;33358:1;17112:8;33310:17;:26;33328:7;33310:26;;;;;;;;;;;;:44;:49;33206:153;33186:173;;33104:282;;;:::o;31166:408::-;31255:13;31271:16;31279:7;31271;:16::i;:::-;31255:32;;31327:5;31304:28;;:19;:17;:19::i;:::-;:28;;;31300:175;;31352:44;31369:5;31376:19;:17;:19::i;:::-;31352:16;:44::i;:::-;31347:128;;31424:35;;;;;;;;;;;;;;31347:128;31300:175;31520:2;31487:15;:24;31503:7;31487:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31558:7;31554:2;31538:28;;31547:5;31538:28;;;;;;;;;;;;31244:330;31166:408;;:::o;65186:89::-;65251:7;65270:1;65263:8;;65186:89;:::o;35372:2825::-;35514:27;35544;35563:7;35544:18;:27::i;:::-;35514:57;;35629:4;35588:45;;35604:19;35588:45;;;35584:86;;35642:28;;;;;;;;;;;;;;35584:86;35684:27;35713:23;35740:35;35767:7;35740:26;:35::i;:::-;35683:92;;;;35875:68;35900:15;35917:4;35923:19;:17;:19::i;:::-;35875:24;:68::i;:::-;35870:180;;35963:43;35980:4;35986:19;:17;:19::i;:::-;35963:16;:43::i;:::-;35958:92;;36015:35;;;;;;;;;;;;;;35958:92;35870:180;36081:1;36067:16;;:2;:16;;;36063:52;;36092:23;;;;;;;;;;;;;;36063:52;36128:43;36150:4;36156:2;36160:7;36169:1;36128:21;:43::i;:::-;36264:15;36261:160;;;36404:1;36383:19;36376:30;36261:160;36801:18;:24;36820:4;36801:24;;;;;;;;;;;;;;;;36799:26;;;;;;;;;;;;36870:18;:22;36889:2;36870:22;;;;;;;;;;;;;;;;36868:24;;;;;;;;;;;37192:146;37229:2;37278:45;37293:4;37299:2;37303:19;37278:14;:45::i;:::-;17392:8;37250:73;37192:18;:146::i;:::-;37163:17;:26;37181:7;37163:26;;;;;;;;;;;:175;;;;37509:1;17392:8;37458:19;:47;:52;37454:627;;37531:19;37563:1;37553:7;:11;37531:33;;37720:1;37686:17;:30;37704:11;37686:30;;;;;;;;;;;;:35;37682:384;;37824:13;;37809:11;:28;37805:242;;38004:19;37971:17;:30;37989:11;37971:30;;;;;;;;;;;:52;;;;37805:242;37682:384;37512:569;37454:627;38128:7;38124:2;38109:27;;38118:4;38109:27;;;;;;;;;;;;38147:42;38168:4;38174:2;38178:7;38187:1;38147:20;:42::i;:::-;35503:2694;;;35372:2825;;;:::o;63355:166::-;63426:12;:10;:12::i;:::-;63415:23;;:7;:5;:7::i;:::-;:23;;;63411:103;;63489:12;:10;:12::i;:::-;63462:40;;;;;;;;;;;:::i;:::-;;;;;;;;63411:103;63355:166::o;49244:112::-;49321:27;49331:2;49335:8;49321:27;;;;;;;;;;;;:9;:27::i;:::-;49244:112;;:::o;38293:193::-;38439:39;38456:4;38462:2;38466:7;38439:39;;;;;;;;;;;;:16;:39::i;:::-;38293:193;;;:::o;27790:1275::-;27857:7;27877:12;27892:7;27877:22;;27960:4;27941:15;:13;:15::i;:::-;:23;27937:1061;;27994:13;;27987:4;:20;27983:1015;;;28032:14;28049:17;:23;28067:4;28049:23;;;;;;;;;;;;28032:40;;28166:1;17112:8;28138:6;:24;:29;28134:845;;28803:113;28820:1;28810:6;:11;28803:113;;28863:17;:25;28881:6;;;;;;;28863:25;;;;;;;;;;;;28854:34;;28803:113;;;28949:6;28942:13;;;;;;28134:845;28009:989;27983:1015;27937:1061;29026:31;;;;;;;;;;;;;;27790:1275;;;;:::o;64503:191::-;64577:16;64596:6;;;;;;;;;;;64577:25;;64622:8;64613:6;;:17;;;;;;;;;;;;;;;;;;64677:8;64646:40;;64667:8;64646:40;;;;;;;;;;;;64566:128;64503:191;:::o;32291:234::-;32438:8;32386:18;:39;32405:19;:17;:19::i;:::-;32386:39;;;;;;;;;;;;;;;:49;32426:8;32386:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32498:8;32462:55;;32477:19;:17;:19::i;:::-;32462:55;;;32508:8;32462:55;;;;;;:::i;:::-;;;;;;;;32291:234;;:::o;39084:407::-;39259:31;39272:4;39278:2;39282:7;39259:12;:31::i;:::-;39323:1;39305:2;:14;;;:19;39301:183;;39344:56;39375:4;39381:2;39385:7;39394:5;39344:30;:56::i;:::-;39339:145;;39428:40;;;;;;;;;;;;;;39339:145;39301:183;39084:407;;;;:::o;65893:96::-;65953:13;65978:7;65971:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65893:96;:::o;55619:1745::-;55684:17;56118:4;56111;56105:11;56101:22;56210:1;56204:4;56197:15;56285:4;56282:1;56278:12;56271:19;;56367:1;56362:3;56355:14;56471:3;56710:5;56692:428;56718:1;56692:428;;;56758:1;56753:3;56749:11;56742:18;;56929:2;56923:4;56919:13;56915:2;56911:22;56906:3;56898:36;57023:2;57017:4;57013:13;57005:21;;57090:4;56692:428;57080:25;56692:428;56696:21;57159:3;57154;57150:13;57274:4;57269:3;57265:14;57258:21;;57339:6;57334:3;57327:19;55723:1634;;;55619:1745;;;:::o;55412:105::-;55472:7;55499:10;55492:17;;55412:105;:::o;34267:485::-;34369:27;34398:23;34439:38;34480:15;:24;34496:7;34480:24;;;;;;;;;;;34439:65;;34657:18;34634:41;;34714:19;34708:26;34689:45;;34619:126;34267:485;;;:::o;33495:659::-;33644:11;33809:16;33802:5;33798:28;33789:37;;33969:16;33958:9;33954:32;33941:45;;34119:15;34108:9;34105:30;34097:5;34086:9;34083:20;34080:56;34070:66;;33495:659;;;;;:::o;40153:159::-;;;;;:::o;54721:311::-;54856:7;54876:16;17516:3;54902:19;:41;;54876:68;;17516:3;54970:31;54981:4;54987:2;54991:9;54970:10;:31::i;:::-;54962:40;;:62;;54955:69;;;54721:311;;;;;:::o;29613:450::-;29693:14;29861:16;29854:5;29850:28;29841:37;;30038:5;30024:11;29999:23;29995:41;29992:52;29985:5;29982:63;29972:73;;29613:450;;;;:::o;40977:158::-;;;;;:::o;61306:98::-;61359:7;61386:10;61379:17;;61306:98;:::o;48471:689::-;48602:19;48608:2;48612:8;48602:5;:19::i;:::-;48681:1;48663:2;:14;;;:19;48659:483;;48703:11;48717:13;;48703:27;;48749:13;48771:8;48765:3;:14;48749:30;;48798:233;48829:62;48868:1;48872:2;48876:7;;;;;;48885:5;48829:30;:62::i;:::-;48824:167;;48927:40;;;;;;;;;;;;;;48824:167;49026:3;49018:5;:11;48798:233;;49113:3;49096:13;;:20;49092:34;;49118:8;;;49092:34;48684:458;;48659:483;48471:689;;;:::o;41575:716::-;41738:4;41784:2;41759:45;;;41805:19;:17;:19::i;:::-;41826:4;41832:7;41841:5;41759:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41755:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42059:1;42042:6;:13;:18;42038:235;;42088:40;;;;;;;;;;;;;;42038:235;42231:6;42225:13;42216:6;42212:2;42208:15;42201:38;41755:529;41928:54;;;41918:64;;;:6;:64;;;;41911:71;;;41575:716;;;;;;:::o;54422:147::-;54559:6;54422:147;;;;;:::o;42753:2966::-;42826:20;42849:13;;42826:36;;42889:1;42877:8;:13;42873:44;;42899:18;;;;;;;;;;;;;;42873:44;42930:61;42960:1;42964:2;42968:12;42982:8;42930:21;:61::i;:::-;43474:1;16474:2;43444:1;:26;;43443:32;43431:8;:45;43405:18;:22;43424:2;43405:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43753:139;43790:2;43844:33;43867:1;43871:2;43875:1;43844:14;:33::i;:::-;43811:30;43832:8;43811:20;:30::i;:::-;:66;43753:18;:139::i;:::-;43719:17;:31;43737:12;43719:31;;;;;;;;;;;:173;;;;43909:16;43940:11;43969:8;43954:12;:23;43940:37;;44490:16;44486:2;44482:25;44470:37;;44862:12;44822:8;44781:1;44719:25;44660:1;44599;44572:335;45233:1;45219:12;45215:20;45173:346;45274:3;45265:7;45262:16;45173:346;;45492:7;45482:8;45479:1;45452:25;45449:1;45446;45441:59;45327:1;45318:7;45314:15;45303:26;;45173:346;;;45177:77;45564:1;45552:8;:13;45548:45;;45574:19;;;;;;;;;;;;;;45548:45;45626:3;45610:13;:19;;;;43179:2462;;45651:60;45680:1;45684:2;45688:12;45702:8;45651:20;:60::i;:::-;42815:2904;42753:2966;;:::o;30165:324::-;30235:14;30468:1;30458:8;30455:15;30429:24;30425:46;30415:56;;30165:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:173::-;14573:25;14569:1;14561:6;14557:14;14550:49;14433:173;:::o;14612:366::-;14754:3;14775:67;14839:2;14834:3;14775:67;:::i;:::-;14768:74;;14851:93;14940:3;14851:93;:::i;:::-;14969:2;14964:3;14960:12;14953:19;;14612:366;;;:::o;14984:419::-;15150:4;15188:2;15177:9;15173:18;15165:26;;15237:9;15231:4;15227:20;15223:1;15212:9;15208:17;15201:47;15265:131;15391:4;15265:131;:::i;:::-;15257:139;;14984:419;;;:::o;15409:167::-;15549:19;15545:1;15537:6;15533:14;15526:43;15409:167;:::o;15582:366::-;15724:3;15745:67;15809:2;15804:3;15745:67;:::i;:::-;15738:74;;15821:93;15910:3;15821:93;:::i;:::-;15939:2;15934:3;15930:12;15923:19;;15582:366;;;:::o;15954:419::-;16120:4;16158:2;16147:9;16143:18;16135:26;;16207:9;16201:4;16197:20;16193:1;16182:9;16178:17;16171:47;16235:131;16361:4;16235:131;:::i;:::-;16227:139;;15954:419;;;:::o;16379:180::-;16427:77;16424:1;16417:88;16524:4;16521:1;16514:15;16548:4;16545:1;16538:15;16565:191;16605:3;16624:20;16642:1;16624:20;:::i;:::-;16619:25;;16658:20;16676:1;16658:20;:::i;:::-;16653:25;;16701:1;16698;16694:9;16687:16;;16722:3;16719:1;16716:10;16713:36;;;16729:18;;:::i;:::-;16713:36;16565:191;;;;:::o;16762:159::-;16902:11;16898:1;16890:6;16886:14;16879:35;16762:159;:::o;16927:365::-;17069:3;17090:66;17154:1;17149:3;17090:66;:::i;:::-;17083:73;;17165:93;17254:3;17165:93;:::i;:::-;17283:2;17278:3;17274:12;17267:19;;16927:365;;;:::o;17298:419::-;17464:4;17502:2;17491:9;17487:18;17479:26;;17551:9;17545:4;17541:20;17537:1;17526:9;17522:17;17515:47;17579:131;17705:4;17579:131;:::i;:::-;17571:139;;17298:419;;;:::o;17723:410::-;17763:7;17786:20;17804:1;17786:20;:::i;:::-;17781:25;;17820:20;17838:1;17820:20;:::i;:::-;17815:25;;17875:1;17872;17868:9;17897:30;17915:11;17897:30;:::i;:::-;17886:41;;18076:1;18067:7;18063:15;18060:1;18057:22;18037:1;18030:9;18010:83;17987:139;;18106:18;;:::i;:::-;17987:139;17771:362;17723:410;;;;:::o;18139:165::-;18279:17;18275:1;18267:6;18263:14;18256:41;18139:165;:::o;18310:366::-;18452:3;18473:67;18537:2;18532:3;18473:67;:::i;:::-;18466:74;;18549:93;18638:3;18549:93;:::i;:::-;18667:2;18662:3;18658:12;18651:19;;18310:366;;;:::o;18682:419::-;18848:4;18886:2;18875:9;18871:18;18863:26;;18935:9;18929:4;18925:20;18921:1;18910:9;18906:17;18899:47;18963:131;19089:4;18963:131;:::i;:::-;18955:139;;18682:419;;;:::o;19107:141::-;19156:4;19179:3;19171:11;;19202:3;19199:1;19192:14;19236:4;19233:1;19223:18;19215:26;;19107:141;;;:::o;19254:93::-;19291:6;19338:2;19333;19326:5;19322:14;19318:23;19308:33;;19254:93;;;:::o;19353:107::-;19397:8;19447:5;19441:4;19437:16;19416:37;;19353:107;;;;:::o;19466:393::-;19535:6;19585:1;19573:10;19569:18;19608:97;19638:66;19627:9;19608:97;:::i;:::-;19726:39;19756:8;19745:9;19726:39;:::i;:::-;19714:51;;19798:4;19794:9;19787:5;19783:21;19774:30;;19847:4;19837:8;19833:19;19826:5;19823:30;19813:40;;19542:317;;19466:393;;;;;:::o;19865:142::-;19915:9;19948:53;19966:34;19975:24;19993:5;19975:24;:::i;:::-;19966:34;:::i;:::-;19948:53;:::i;:::-;19935:66;;19865:142;;;:::o;20013:75::-;20056:3;20077:5;20070:12;;20013:75;;;:::o;20094:269::-;20204:39;20235:7;20204:39;:::i;:::-;20265:91;20314:41;20338:16;20314:41;:::i;:::-;20306:6;20299:4;20293:11;20265:91;:::i;:::-;20259:4;20252:105;20170:193;20094:269;;;:::o;20369:73::-;20414:3;20369:73;:::o;20448:189::-;20525:32;;:::i;:::-;20566:65;20624:6;20616;20610:4;20566:65;:::i;:::-;20501:136;20448:189;;:::o;20643:186::-;20703:120;20720:3;20713:5;20710:14;20703:120;;;20774:39;20811:1;20804:5;20774:39;:::i;:::-;20747:1;20740:5;20736:13;20727:22;;20703:120;;;20643:186;;:::o;20835:543::-;20936:2;20931:3;20928:11;20925:446;;;20970:38;21002:5;20970:38;:::i;:::-;21054:29;21072:10;21054:29;:::i;:::-;21044:8;21040:44;21237:2;21225:10;21222:18;21219:49;;;21258:8;21243:23;;21219:49;21281:80;21337:22;21355:3;21337:22;:::i;:::-;21327:8;21323:37;21310:11;21281:80;:::i;:::-;20940:431;;20925:446;20835:543;;;:::o;21384:117::-;21438:8;21488:5;21482:4;21478:16;21457:37;;21384:117;;;;:::o;21507:169::-;21551:6;21584:51;21632:1;21628:6;21620:5;21617:1;21613:13;21584:51;:::i;:::-;21580:56;21665:4;21659;21655:15;21645:25;;21558:118;21507:169;;;;:::o;21681:295::-;21757:4;21903:29;21928:3;21922:4;21903:29;:::i;:::-;21895:37;;21965:3;21962:1;21958:11;21952:4;21949:21;21941:29;;21681:295;;;;:::o;21981:1395::-;22098:37;22131:3;22098:37;:::i;:::-;22200:18;22192:6;22189:30;22186:56;;;22222:18;;:::i;:::-;22186:56;22266:38;22298:4;22292:11;22266:38;:::i;:::-;22351:67;22411:6;22403;22397:4;22351:67;:::i;:::-;22445:1;22469:4;22456:17;;22501:2;22493:6;22490:14;22518:1;22513:618;;;;23175:1;23192:6;23189:77;;;23241:9;23236:3;23232:19;23226:26;23217:35;;23189:77;23292:67;23352:6;23345:5;23292:67;:::i;:::-;23286:4;23279:81;23148:222;22483:887;;22513:618;22565:4;22561:9;22553:6;22549:22;22599:37;22631:4;22599:37;:::i;:::-;22658:1;22672:208;22686:7;22683:1;22680:14;22672:208;;;22765:9;22760:3;22756:19;22750:26;22742:6;22735:42;22816:1;22808:6;22804:14;22794:24;;22863:2;22852:9;22848:18;22835:31;;22709:4;22706:1;22702:12;22697:17;;22672:208;;;22908:6;22899:7;22896:19;22893:179;;;22966:9;22961:3;22957:19;22951:26;23009:48;23051:4;23043:6;23039:17;23028:9;23009:48;:::i;:::-;23001:6;22994:64;22916:156;22893:179;23118:1;23114;23106:6;23102:14;23098:22;23092:4;23085:36;22520:611;;;22483:887;;22073:1303;;;21981:1395;;:::o;23382:148::-;23484:11;23521:3;23506:18;;23382:148;;;;:::o;23536:390::-;23642:3;23670:39;23703:5;23670:39;:::i;:::-;23725:89;23807:6;23802:3;23725:89;:::i;:::-;23718:96;;23823:65;23881:6;23876:3;23869:4;23862:5;23858:16;23823:65;:::i;:::-;23913:6;23908:3;23904:16;23897:23;;23646:280;23536:390;;;;:::o;23932:435::-;24112:3;24134:95;24225:3;24216:6;24134:95;:::i;:::-;24127:102;;24246:95;24337:3;24328:6;24246:95;:::i;:::-;24239:102;;24358:3;24351:10;;23932:435;;;;;:::o;24373:98::-;24424:6;24458:5;24452:12;24442:22;;24373:98;;;:::o;24477:168::-;24560:11;24594:6;24589:3;24582:19;24634:4;24629:3;24625:14;24610:29;;24477:168;;;;:::o;24651:373::-;24737:3;24765:38;24797:5;24765:38;:::i;:::-;24819:70;24882:6;24877:3;24819:70;:::i;:::-;24812:77;;24898:65;24956:6;24951:3;24944:4;24937:5;24933:16;24898:65;:::i;:::-;24988:29;25010:6;24988:29;:::i;:::-;24983:3;24979:39;24972:46;;24741:283;24651:373;;;;:::o;25030:640::-;25225:4;25263:3;25252:9;25248:19;25240:27;;25277:71;25345:1;25334:9;25330:17;25321:6;25277:71;:::i;:::-;25358:72;25426:2;25415:9;25411:18;25402:6;25358:72;:::i;:::-;25440;25508:2;25497:9;25493:18;25484:6;25440:72;:::i;:::-;25559:9;25553:4;25549:20;25544:2;25533:9;25529:18;25522:48;25587:76;25658:4;25649:6;25587:76;:::i;:::-;25579:84;;25030:640;;;;;;;:::o;25676:141::-;25732:5;25763:6;25757:13;25748:22;;25779:32;25805:5;25779:32;:::i;:::-;25676:141;;;;:::o;25823:349::-;25892:6;25941:2;25929:9;25920:7;25916:23;25912:32;25909:119;;;25947:79;;:::i;:::-;25909:119;26067:1;26092:63;26147:7;26138:6;26127:9;26123:22;26092:63;:::i;:::-;26082:73;;26038:127;25823:349;;;;:::o
Swarm Source
ipfs://ffdeac3a91df7cd4d086702b70f48335b238511ce5c26f5498515bfc4b83f491
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.