ERC-721
Overview
Max Total Supply
2,222 BKG
Holders
991
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BKGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitKitGlobal
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-27 */ // 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.8.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; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract 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 v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/BitKitGlobal.sol pragma solidity ^0.8.15; contract BitKitGlobal is ERC721A, DefaultOperatorFilterer, Ownable { mapping (address => bool) public minterAddress; bool public mintSwitch; string public baseURI; uint256 public mintLock = 10; uint256 public price = 10000000000000000; uint256 public globalSupply = 2222; mapping (address => uint256) public walletPublic; constructor () ERC721A("BITKIT GLOBAL", "BKG") { mintSwitch = false; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function publicMint(uint256 qty) external payable { require(mintSwitch , "Mint is not switched on."); require(qty <= mintLock, "Over Mint Security Lock!"); require(totalSupply() + qty <= globalSupply,"Global Supply has been depleted!"); require(msg.value >= qty * price,"Need more ETH to mint."); walletPublic[msg.sender] += qty; _safeMint(msg.sender, qty); } function toggleMint() public onlyOwner { mintSwitch = !mintSwitch; } 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 { mintLock = newMax; } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function teamMint(uint256 qty) external onlyOwner { _safeMint(msg.sender, qty); } 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":[],"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":[],"name":"globalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mintLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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
6080604052600a600c55662386f26fc10000600d556108ae600e553480156200002757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f4249544b495420474c4f42414c000000000000000000000000000000000000008152506040518060400160405280600381526020017f424b4700000000000000000000000000000000000000000000000000000000008152508160029081620000bc919062000670565b508060039081620000ce919062000670565b50620000df6200031f60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002dc578015620001a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001689291906200079c565b600060405180830381600087803b1580156200018357600080fd5b505af115801562000198573d6000803e3d6000fd5b50505050620002db565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200025c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002229291906200079c565b600060405180830381600087803b1580156200023d57600080fd5b505af115801562000252573d6000803e3d6000fd5b50505050620002da565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002a59190620007c9565b600060405180830381600087803b158015620002c057600080fd5b505af1158015620002d5573d6000803e3d6000fd5b505050505b5b5b5050620002fe620002f26200032860201b60201c565b6200033060201b60201c565b6000600a60006101000a81548160ff021916908315150217905550620007e6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047857607f821691505b6020821081036200048e576200048d62000430565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b9565b620005048683620004b9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005516200054b62000545846200051c565b62000526565b6200051c565b9050919050565b6000819050919050565b6200056d8362000530565b620005856200057c8262000558565b848454620004c6565b825550505050565b600090565b6200059c6200058d565b620005a981848462000562565b505050565b5b81811015620005d157620005c560008262000592565b600181019050620005af565b5050565b601f8211156200062057620005ea8162000494565b620005f584620004a9565b8101602085101562000605578190505b6200061d6200061485620004a9565b830182620005ae565b50505b505050565b600082821c905092915050565b6000620006456000198460080262000625565b1980831691505092915050565b600062000660838362000632565b9150826002028217905092915050565b6200067b82620003f6565b67ffffffffffffffff81111562000697576200069662000401565b5b620006a382546200045f565b620006b0828285620005d5565b600060209050601f831160018114620006e85760008415620006d3578287015190505b620006df858262000652565b8655506200074f565b601f198416620006f88662000494565b60005b828110156200072257848901518255600182019150602085019450602081019050620006fb565b868310156200074257848901516200073e601f89168262000632565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007848262000757565b9050919050565b620007968162000777565b82525050565b6000604082019050620007b360008301856200078b565b620007c260208301846200078b565b9392505050565b6000602082019050620007e060008301846200078b565b92915050565b61330980620007f66000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a035b1fe11610095578063d3dd5fe011610064578063d3dd5fe01461069d578063e985e9c5146106b4578063eacb912d146106f1578063f2fde38b1461071c576101e3565b8063a035b1fe146105f0578063a22cb4651461061b578063b88d4fde14610644578063c87b56dd14610660576101e3565b80638b723821116100d15780638b723821146105465780638da5cb5b1461057157806391b7f5ed1461059c57806395d89b41146105c5576101e3565b80636c0360eb1461049e57806370a08231146104c9578063715018a61461050657806379c9cb7b1461051d576101e3565b80632be905ba1161017a57806342842e0e1161014957806342842e0e146103f1578063488e7f2d1461040d57806355f804b3146104385780636352211e14610461576101e3565b80632be905ba146103445780632db11544146103815780632fbba1151461039d57806341f43434146103c6576101e3565b806318160ddd116101b657806318160ddd146102a957806322ae7f7b146102d457806323b872dd1461031157806324600fc31461032d576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061244c565b610745565b60405161021c9190612494565b60405180910390f35b34801561023157600080fd5b5061023a6107d7565b604051610247919061253f565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612597565b610869565b6040516102849190612605565b60405180910390f35b6102a760048036038101906102a2919061264c565b6108e8565b005b3480156102b557600080fd5b506102be6109f2565b6040516102cb919061269b565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906126b6565b610a09565b6040516103089190612494565b60405180910390f35b61032b600480360381019061032691906126e3565b610a29565b005b34801561033957600080fd5b50610342610b79565b005b34801561035057600080fd5b5061036b600480360381019061036691906126b6565b610bca565b604051610378919061269b565b60405180910390f35b61039b60048036038101906103969190612597565b610be2565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612597565b610d80565b005b3480156103d257600080fd5b506103db610d95565b6040516103e89190612795565b60405180910390f35b61040b600480360381019061040691906126e3565b610da7565b005b34801561041957600080fd5b50610422610ef7565b60405161042f919061269b565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906128e5565b610efd565b005b34801561046d57600080fd5b5061048860048036038101906104839190612597565b610f18565b6040516104959190612605565b60405180910390f35b3480156104aa57600080fd5b506104b3610f2a565b6040516104c0919061253f565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906126b6565b610fb8565b6040516104fd919061269b565b60405180910390f35b34801561051257600080fd5b5061051b611070565b005b34801561052957600080fd5b50610544600480360381019061053f9190612597565b611084565b005b34801561055257600080fd5b5061055b611096565b604051610568919061269b565b60405180910390f35b34801561057d57600080fd5b5061058661109c565b6040516105939190612605565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612597565b6110c6565b005b3480156105d157600080fd5b506105da6110d8565b6040516105e7919061253f565b60405180910390f35b3480156105fc57600080fd5b5061060561116a565b604051610612919061269b565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d919061295a565b611170565b005b61065e60048036038101906106599190612a3b565b61127a565b005b34801561066c57600080fd5b5061068760048036038101906106829190612597565b6113cd565b604051610694919061253f565b60405180910390f35b3480156106a957600080fd5b506106b261146b565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612abe565b61149f565b6040516106e89190612494565b60405180910390f35b3480156106fd57600080fd5b50610706611533565b6040516107139190612494565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906126b6565b611546565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e690612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461081290612b2d565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b6000610874826115c9565b6108aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109e3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610960929190612b5e565b602060405180830381865afa15801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190612b9c565b6109e257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109d99190612605565b60405180910390fd5b5b6109ed8383611628565b505050565b60006109fc61176c565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b67573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9b57610a96848484611775565b610b73565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ae4929190612b5e565b602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190612b9c565b610b6657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b5d9190612605565b60405180910390fd5b5b610b72848484611775565b5b50505050565b610b81611a97565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc7573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612c15565b60405180910390fd5b600c54811115610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90612c81565b60405180910390fd5b600e5481610c826109f2565b610c8c9190612cd0565b1115610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612d50565b60405180910390fd5b600d5481610cdb9190612d70565b341015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490612dfe565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d6c9190612cd0565b92505081905550610d7d3382611b15565b50565b610d88611a97565b610d923382611b15565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ee5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1957610e14848484611b33565b610ef1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e62929190612b5e565b602060405180830381865afa158015610e7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea39190612b9c565b610ee457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610edb9190612605565b60405180910390fd5b5b610ef0848484611b33565b5b50505050565b600c5481565b610f05611a97565b80600b9081610f149190612fc0565b5050565b6000610f2382611b53565b9050919050565b600b8054610f3790612b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6390612b2d565b8015610fb05780601f10610f8557610100808354040283529160200191610fb0565b820191906000526020600020905b815481529060010190602001808311610f9357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611078611a97565b6110826000611c1f565b565b61108c611a97565b80600c8190555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ce611a97565b80600d8190555050565b6060600380546110e790612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461111390612b2d565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b600d5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561126b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e8929190612b5e565b602060405180830381865afa158015611205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112299190612b9c565b61126a57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112619190612605565b60405180910390fd5b5b6112758383611ce5565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113b9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ed576112e885858585611df0565b6113c6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611336929190612b5e565b602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190612b9c565b6113b857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113af9190612605565b60405180910390fd5b5b6113c585858585611df0565b5b5050505050565b60606113d8826115c9565b61140e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611418611e63565b905060008151036114385760405180602001604052806000815250611463565b8061144284611ef5565b6040516020016114539291906130ce565b6040516020818303038152906040525b915050919050565b611473611a97565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61154e611a97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613164565b60405180910390fd5b6115c681611c1f565b50565b6000816115d461176c565b111580156115e3575060005482105b8015611621575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061163382610f18565b90508073ffffffffffffffffffffffffffffffffffffffff16611654611f45565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576116808161167b611f45565b61149f565b6116b6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061178082611b53565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117e7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117f384611f4d565b915091506118098187611804611f45565b611f74565b6118555761181e86611819611f45565b61149f565b611854576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118c88686866001611fb8565b80156118d357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119a18561197d888887611fbe565b7c020000000000000000000000000000000000000000000000000000000017611fe6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a275760006001850190506000600460008381526020019081526020016000205403611a25576000548114611a24578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a8f8686866001612011565b505050505050565b611a9f612017565b73ffffffffffffffffffffffffffffffffffffffff16611abd61109c565b73ffffffffffffffffffffffffffffffffffffffff1614611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906131d0565b60405180910390fd5b565b611b2f82826040518060200160405280600081525061201f565b5050565b611b4e8383836040518060200160405280600081525061127a565b505050565b60008082905080611b6261176c565b11611be857600054811015611be75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611be5575b60008103611bdb576004600083600190039350838152602001908152602001600020549050611bb1565b8092505050611c1a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611cf2611f45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d9f611f45565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de49190612494565b60405180910390a35050565b611dfb848484610a29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5d57611e26848484846120bc565b611e5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611e7290612b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9e90612b2d565b8015611eeb5780601f10611ec057610100808354040283529160200191611eeb565b820191906000526020600020905b815481529060010190602001808311611ece57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f3057600184039350600a81066030018453600a8104905080611f0e575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fd586868461220c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6120298383612215565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120b757600080549050600083820390505b61206960008683806001019450866120bc565b61209f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120565781600054146120b457600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e2611f45565b8786866040518563ffffffff1660e01b81526004016121049493929190613245565b6020604051808303816000875af192505050801561214057506040513d601f19601f8201168201806040525081019061213d91906132a6565b60015b6121b9573d8060008114612170576040519150601f19603f3d011682016040523d82523d6000602084013e612175565b606091505b5060008151036121b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612255576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122626000848385611fb8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122d9836122ca6000866000611fbe565b6122d3856123d0565b17611fe6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461237a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061233f565b50600082036123b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123cb6000848385612011565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612429816123f4565b811461243457600080fd5b50565b60008135905061244681612420565b92915050565b600060208284031215612462576124616123ea565b5b600061247084828501612437565b91505092915050565b60008115159050919050565b61248e81612479565b82525050565b60006020820190506124a96000830184612485565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124e95780820151818401526020810190506124ce565b60008484015250505050565b6000601f19601f8301169050919050565b6000612511826124af565b61251b81856124ba565b935061252b8185602086016124cb565b612534816124f5565b840191505092915050565b600060208201905081810360008301526125598184612506565b905092915050565b6000819050919050565b61257481612561565b811461257f57600080fd5b50565b6000813590506125918161256b565b92915050565b6000602082840312156125ad576125ac6123ea565b5b60006125bb84828501612582565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125ef826125c4565b9050919050565b6125ff816125e4565b82525050565b600060208201905061261a60008301846125f6565b92915050565b612629816125e4565b811461263457600080fd5b50565b60008135905061264681612620565b92915050565b60008060408385031215612663576126626123ea565b5b600061267185828601612637565b925050602061268285828601612582565b9150509250929050565b61269581612561565b82525050565b60006020820190506126b0600083018461268c565b92915050565b6000602082840312156126cc576126cb6123ea565b5b60006126da84828501612637565b91505092915050565b6000806000606084860312156126fc576126fb6123ea565b5b600061270a86828701612637565b935050602061271b86828701612637565b925050604061272c86828701612582565b9150509250925092565b6000819050919050565b600061275b612756612751846125c4565b612736565b6125c4565b9050919050565b600061276d82612740565b9050919050565b600061277f82612762565b9050919050565b61278f81612774565b82525050565b60006020820190506127aa6000830184612786565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127f2826124f5565b810181811067ffffffffffffffff82111715612811576128106127ba565b5b80604052505050565b60006128246123e0565b905061283082826127e9565b919050565b600067ffffffffffffffff8211156128505761284f6127ba565b5b612859826124f5565b9050602081019050919050565b82818337600083830152505050565b600061288861288384612835565b61281a565b9050828152602081018484840111156128a4576128a36127b5565b5b6128af848285612866565b509392505050565b600082601f8301126128cc576128cb6127b0565b5b81356128dc848260208601612875565b91505092915050565b6000602082840312156128fb576128fa6123ea565b5b600082013567ffffffffffffffff811115612919576129186123ef565b5b612925848285016128b7565b91505092915050565b61293781612479565b811461294257600080fd5b50565b6000813590506129548161292e565b92915050565b60008060408385031215612971576129706123ea565b5b600061297f85828601612637565b925050602061299085828601612945565b9150509250929050565b600067ffffffffffffffff8211156129b5576129b46127ba565b5b6129be826124f5565b9050602081019050919050565b60006129de6129d98461299a565b61281a565b9050828152602081018484840111156129fa576129f96127b5565b5b612a05848285612866565b509392505050565b600082601f830112612a2257612a216127b0565b5b8135612a328482602086016129cb565b91505092915050565b60008060008060808587031215612a5557612a546123ea565b5b6000612a6387828801612637565b9450506020612a7487828801612637565b9350506040612a8587828801612582565b925050606085013567ffffffffffffffff811115612aa657612aa56123ef565b5b612ab287828801612a0d565b91505092959194509250565b60008060408385031215612ad557612ad46123ea565b5b6000612ae385828601612637565b9250506020612af485828601612637565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4557607f821691505b602082108103612b5857612b57612afe565b5b50919050565b6000604082019050612b7360008301856125f6565b612b8060208301846125f6565b9392505050565b600081519050612b968161292e565b92915050565b600060208284031215612bb257612bb16123ea565b5b6000612bc084828501612b87565b91505092915050565b7f4d696e74206973206e6f74207377697463686564206f6e2e0000000000000000600082015250565b6000612bff6018836124ba565b9150612c0a82612bc9565b602082019050919050565b60006020820190508181036000830152612c2e81612bf2565b9050919050565b7f4f766572204d696e74205365637572697479204c6f636b210000000000000000600082015250565b6000612c6b6018836124ba565b9150612c7682612c35565b602082019050919050565b60006020820190508181036000830152612c9a81612c5e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cdb82612561565b9150612ce683612561565b9250828201905080821115612cfe57612cfd612ca1565b5b92915050565b7f476c6f62616c20537570706c7920686173206265656e206465706c6574656421600082015250565b6000612d3a6020836124ba565b9150612d4582612d04565b602082019050919050565b60006020820190508181036000830152612d6981612d2d565b9050919050565b6000612d7b82612561565b9150612d8683612561565b9250828202612d9481612561565b91508282048414831517612dab57612daa612ca1565b5b5092915050565b7f4e656564206d6f72652045544820746f206d696e742e00000000000000000000600082015250565b6000612de86016836124ba565b9150612df382612db2565b602082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e43565b612e8a8683612e43565b95508019841693508086168417925050509392505050565b6000612ebd612eb8612eb384612561565b612736565b612561565b9050919050565b6000819050919050565b612ed783612ea2565b612eeb612ee382612ec4565b848454612e50565b825550505050565b600090565b612f00612ef3565b612f0b818484612ece565b505050565b5b81811015612f2f57612f24600082612ef8565b600181019050612f11565b5050565b601f821115612f7457612f4581612e1e565b612f4e84612e33565b81016020851015612f5d578190505b612f71612f6985612e33565b830182612f10565b50505b505050565b600082821c905092915050565b6000612f9760001984600802612f79565b1980831691505092915050565b6000612fb08383612f86565b9150826002028217905092915050565b612fc9826124af565b67ffffffffffffffff811115612fe257612fe16127ba565b5b612fec8254612b2d565b612ff7828285612f33565b600060209050601f83116001811461302a5760008415613018578287015190505b6130228582612fa4565b86555061308a565b601f19841661303886612e1e565b60005b828110156130605784890151825560018201915060208501945060208101905061303b565b8683101561307d5784890151613079601f891682612f86565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006130a8826124af565b6130b28185613092565b93506130c28185602086016124cb565b80840191505092915050565b60006130da828561309d565b91506130e6828461309d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061314e6026836124ba565b9150613159826130f2565b604082019050919050565b6000602082019050818103600083015261317d81613141565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131ba6020836124ba565b91506131c582613184565b602082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613217826131f0565b61322181856131fb565b93506132318185602086016124cb565b61323a816124f5565b840191505092915050565b600060808201905061325a60008301876125f6565b61326760208301866125f6565b613274604083018561268c565b8181036060830152613286818461320c565b905095945050505050565b6000815190506132a081612420565b92915050565b6000602082840312156132bc576132bb6123ea565b5b60006132ca84828501613291565b9150509291505056fea2646970667358221220cdbc1e01bda12fbc5c3f3559c9a3cb04b33f1aa146badcb12fb8a87feec2c1d164736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a035b1fe11610095578063d3dd5fe011610064578063d3dd5fe01461069d578063e985e9c5146106b4578063eacb912d146106f1578063f2fde38b1461071c576101e3565b8063a035b1fe146105f0578063a22cb4651461061b578063b88d4fde14610644578063c87b56dd14610660576101e3565b80638b723821116100d15780638b723821146105465780638da5cb5b1461057157806391b7f5ed1461059c57806395d89b41146105c5576101e3565b80636c0360eb1461049e57806370a08231146104c9578063715018a61461050657806379c9cb7b1461051d576101e3565b80632be905ba1161017a57806342842e0e1161014957806342842e0e146103f1578063488e7f2d1461040d57806355f804b3146104385780636352211e14610461576101e3565b80632be905ba146103445780632db11544146103815780632fbba1151461039d57806341f43434146103c6576101e3565b806318160ddd116101b657806318160ddd146102a957806322ae7f7b146102d457806323b872dd1461031157806324600fc31461032d576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061244c565b610745565b60405161021c9190612494565b60405180910390f35b34801561023157600080fd5b5061023a6107d7565b604051610247919061253f565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612597565b610869565b6040516102849190612605565b60405180910390f35b6102a760048036038101906102a2919061264c565b6108e8565b005b3480156102b557600080fd5b506102be6109f2565b6040516102cb919061269b565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906126b6565b610a09565b6040516103089190612494565b60405180910390f35b61032b600480360381019061032691906126e3565b610a29565b005b34801561033957600080fd5b50610342610b79565b005b34801561035057600080fd5b5061036b600480360381019061036691906126b6565b610bca565b604051610378919061269b565b60405180910390f35b61039b60048036038101906103969190612597565b610be2565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612597565b610d80565b005b3480156103d257600080fd5b506103db610d95565b6040516103e89190612795565b60405180910390f35b61040b600480360381019061040691906126e3565b610da7565b005b34801561041957600080fd5b50610422610ef7565b60405161042f919061269b565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906128e5565b610efd565b005b34801561046d57600080fd5b5061048860048036038101906104839190612597565b610f18565b6040516104959190612605565b60405180910390f35b3480156104aa57600080fd5b506104b3610f2a565b6040516104c0919061253f565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906126b6565b610fb8565b6040516104fd919061269b565b60405180910390f35b34801561051257600080fd5b5061051b611070565b005b34801561052957600080fd5b50610544600480360381019061053f9190612597565b611084565b005b34801561055257600080fd5b5061055b611096565b604051610568919061269b565b60405180910390f35b34801561057d57600080fd5b5061058661109c565b6040516105939190612605565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612597565b6110c6565b005b3480156105d157600080fd5b506105da6110d8565b6040516105e7919061253f565b60405180910390f35b3480156105fc57600080fd5b5061060561116a565b604051610612919061269b565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d919061295a565b611170565b005b61065e60048036038101906106599190612a3b565b61127a565b005b34801561066c57600080fd5b5061068760048036038101906106829190612597565b6113cd565b604051610694919061253f565b60405180910390f35b3480156106a957600080fd5b506106b261146b565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612abe565b61149f565b6040516106e89190612494565b60405180910390f35b3480156106fd57600080fd5b50610706611533565b6040516107139190612494565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906126b6565b611546565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e690612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461081290612b2d565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b6000610874826115c9565b6108aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109e3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610960929190612b5e565b602060405180830381865afa15801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190612b9c565b6109e257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109d99190612605565b60405180910390fd5b5b6109ed8383611628565b505050565b60006109fc61176c565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b67573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9b57610a96848484611775565b610b73565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ae4929190612b5e565b602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190612b9c565b610b6657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b5d9190612605565b60405180910390fd5b5b610b72848484611775565b5b50505050565b610b81611a97565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc7573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612c15565b60405180910390fd5b600c54811115610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90612c81565b60405180910390fd5b600e5481610c826109f2565b610c8c9190612cd0565b1115610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612d50565b60405180910390fd5b600d5481610cdb9190612d70565b341015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490612dfe565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d6c9190612cd0565b92505081905550610d7d3382611b15565b50565b610d88611a97565b610d923382611b15565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ee5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1957610e14848484611b33565b610ef1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e62929190612b5e565b602060405180830381865afa158015610e7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea39190612b9c565b610ee457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610edb9190612605565b60405180910390fd5b5b610ef0848484611b33565b5b50505050565b600c5481565b610f05611a97565b80600b9081610f149190612fc0565b5050565b6000610f2382611b53565b9050919050565b600b8054610f3790612b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6390612b2d565b8015610fb05780601f10610f8557610100808354040283529160200191610fb0565b820191906000526020600020905b815481529060010190602001808311610f9357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611078611a97565b6110826000611c1f565b565b61108c611a97565b80600c8190555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ce611a97565b80600d8190555050565b6060600380546110e790612b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461111390612b2d565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b600d5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561126b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111e8929190612b5e565b602060405180830381865afa158015611205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112299190612b9c565b61126a57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112619190612605565b60405180910390fd5b5b6112758383611ce5565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113b9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ed576112e885858585611df0565b6113c6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611336929190612b5e565b602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190612b9c565b6113b857336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113af9190612605565b60405180910390fd5b5b6113c585858585611df0565b5b5050505050565b60606113d8826115c9565b61140e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611418611e63565b905060008151036114385760405180602001604052806000815250611463565b8061144284611ef5565b6040516020016114539291906130ce565b6040516020818303038152906040525b915050919050565b611473611a97565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61154e611a97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613164565b60405180910390fd5b6115c681611c1f565b50565b6000816115d461176c565b111580156115e3575060005482105b8015611621575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061163382610f18565b90508073ffffffffffffffffffffffffffffffffffffffff16611654611f45565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576116808161167b611f45565b61149f565b6116b6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061178082611b53565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117e7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117f384611f4d565b915091506118098187611804611f45565b611f74565b6118555761181e86611819611f45565b61149f565b611854576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118c88686866001611fb8565b80156118d357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119a18561197d888887611fbe565b7c020000000000000000000000000000000000000000000000000000000017611fe6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a275760006001850190506000600460008381526020019081526020016000205403611a25576000548114611a24578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a8f8686866001612011565b505050505050565b611a9f612017565b73ffffffffffffffffffffffffffffffffffffffff16611abd61109c565b73ffffffffffffffffffffffffffffffffffffffff1614611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906131d0565b60405180910390fd5b565b611b2f82826040518060200160405280600081525061201f565b5050565b611b4e8383836040518060200160405280600081525061127a565b505050565b60008082905080611b6261176c565b11611be857600054811015611be75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611be5575b60008103611bdb576004600083600190039350838152602001908152602001600020549050611bb1565b8092505050611c1a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611cf2611f45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d9f611f45565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de49190612494565b60405180910390a35050565b611dfb848484610a29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5d57611e26848484846120bc565b611e5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611e7290612b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9e90612b2d565b8015611eeb5780601f10611ec057610100808354040283529160200191611eeb565b820191906000526020600020905b815481529060010190602001808311611ece57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f3057600184039350600a81066030018453600a8104905080611f0e575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fd586868461220c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6120298383612215565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120b757600080549050600083820390505b61206960008683806001019450866120bc565b61209f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120565781600054146120b457600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120e2611f45565b8786866040518563ffffffff1660e01b81526004016121049493929190613245565b6020604051808303816000875af192505050801561214057506040513d601f19601f8201168201806040525081019061213d91906132a6565b60015b6121b9573d8060008114612170576040519150601f19603f3d011682016040523d82523d6000602084013e612175565b606091505b5060008151036121b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612255576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122626000848385611fb8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122d9836122ca6000866000611fbe565b6122d3856123d0565b17611fe6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461237a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061233f565b50600082036123b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123cb6000848385612011565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612429816123f4565b811461243457600080fd5b50565b60008135905061244681612420565b92915050565b600060208284031215612462576124616123ea565b5b600061247084828501612437565b91505092915050565b60008115159050919050565b61248e81612479565b82525050565b60006020820190506124a96000830184612485565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124e95780820151818401526020810190506124ce565b60008484015250505050565b6000601f19601f8301169050919050565b6000612511826124af565b61251b81856124ba565b935061252b8185602086016124cb565b612534816124f5565b840191505092915050565b600060208201905081810360008301526125598184612506565b905092915050565b6000819050919050565b61257481612561565b811461257f57600080fd5b50565b6000813590506125918161256b565b92915050565b6000602082840312156125ad576125ac6123ea565b5b60006125bb84828501612582565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125ef826125c4565b9050919050565b6125ff816125e4565b82525050565b600060208201905061261a60008301846125f6565b92915050565b612629816125e4565b811461263457600080fd5b50565b60008135905061264681612620565b92915050565b60008060408385031215612663576126626123ea565b5b600061267185828601612637565b925050602061268285828601612582565b9150509250929050565b61269581612561565b82525050565b60006020820190506126b0600083018461268c565b92915050565b6000602082840312156126cc576126cb6123ea565b5b60006126da84828501612637565b91505092915050565b6000806000606084860312156126fc576126fb6123ea565b5b600061270a86828701612637565b935050602061271b86828701612637565b925050604061272c86828701612582565b9150509250925092565b6000819050919050565b600061275b612756612751846125c4565b612736565b6125c4565b9050919050565b600061276d82612740565b9050919050565b600061277f82612762565b9050919050565b61278f81612774565b82525050565b60006020820190506127aa6000830184612786565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127f2826124f5565b810181811067ffffffffffffffff82111715612811576128106127ba565b5b80604052505050565b60006128246123e0565b905061283082826127e9565b919050565b600067ffffffffffffffff8211156128505761284f6127ba565b5b612859826124f5565b9050602081019050919050565b82818337600083830152505050565b600061288861288384612835565b61281a565b9050828152602081018484840111156128a4576128a36127b5565b5b6128af848285612866565b509392505050565b600082601f8301126128cc576128cb6127b0565b5b81356128dc848260208601612875565b91505092915050565b6000602082840312156128fb576128fa6123ea565b5b600082013567ffffffffffffffff811115612919576129186123ef565b5b612925848285016128b7565b91505092915050565b61293781612479565b811461294257600080fd5b50565b6000813590506129548161292e565b92915050565b60008060408385031215612971576129706123ea565b5b600061297f85828601612637565b925050602061299085828601612945565b9150509250929050565b600067ffffffffffffffff8211156129b5576129b46127ba565b5b6129be826124f5565b9050602081019050919050565b60006129de6129d98461299a565b61281a565b9050828152602081018484840111156129fa576129f96127b5565b5b612a05848285612866565b509392505050565b600082601f830112612a2257612a216127b0565b5b8135612a328482602086016129cb565b91505092915050565b60008060008060808587031215612a5557612a546123ea565b5b6000612a6387828801612637565b9450506020612a7487828801612637565b9350506040612a8587828801612582565b925050606085013567ffffffffffffffff811115612aa657612aa56123ef565b5b612ab287828801612a0d565b91505092959194509250565b60008060408385031215612ad557612ad46123ea565b5b6000612ae385828601612637565b9250506020612af485828601612637565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b4557607f821691505b602082108103612b5857612b57612afe565b5b50919050565b6000604082019050612b7360008301856125f6565b612b8060208301846125f6565b9392505050565b600081519050612b968161292e565b92915050565b600060208284031215612bb257612bb16123ea565b5b6000612bc084828501612b87565b91505092915050565b7f4d696e74206973206e6f74207377697463686564206f6e2e0000000000000000600082015250565b6000612bff6018836124ba565b9150612c0a82612bc9565b602082019050919050565b60006020820190508181036000830152612c2e81612bf2565b9050919050565b7f4f766572204d696e74205365637572697479204c6f636b210000000000000000600082015250565b6000612c6b6018836124ba565b9150612c7682612c35565b602082019050919050565b60006020820190508181036000830152612c9a81612c5e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cdb82612561565b9150612ce683612561565b9250828201905080821115612cfe57612cfd612ca1565b5b92915050565b7f476c6f62616c20537570706c7920686173206265656e206465706c6574656421600082015250565b6000612d3a6020836124ba565b9150612d4582612d04565b602082019050919050565b60006020820190508181036000830152612d6981612d2d565b9050919050565b6000612d7b82612561565b9150612d8683612561565b9250828202612d9481612561565b91508282048414831517612dab57612daa612ca1565b5b5092915050565b7f4e656564206d6f72652045544820746f206d696e742e00000000000000000000600082015250565b6000612de86016836124ba565b9150612df382612db2565b602082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e43565b612e8a8683612e43565b95508019841693508086168417925050509392505050565b6000612ebd612eb8612eb384612561565b612736565b612561565b9050919050565b6000819050919050565b612ed783612ea2565b612eeb612ee382612ec4565b848454612e50565b825550505050565b600090565b612f00612ef3565b612f0b818484612ece565b505050565b5b81811015612f2f57612f24600082612ef8565b600181019050612f11565b5050565b601f821115612f7457612f4581612e1e565b612f4e84612e33565b81016020851015612f5d578190505b612f71612f6985612e33565b830182612f10565b50505b505050565b600082821c905092915050565b6000612f9760001984600802612f79565b1980831691505092915050565b6000612fb08383612f86565b9150826002028217905092915050565b612fc9826124af565b67ffffffffffffffff811115612fe257612fe16127ba565b5b612fec8254612b2d565b612ff7828285612f33565b600060209050601f83116001811461302a5760008415613018578287015190505b6130228582612fa4565b86555061308a565b601f19841661303886612e1e565b60005b828110156130605784890151825560018201915060208501945060208101905061303b565b8683101561307d5784890151613079601f891682612f86565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006130a8826124af565b6130b28185613092565b93506130c28185602086016124cb565b80840191505092915050565b60006130da828561309d565b91506130e6828461309d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061314e6026836124ba565b9150613159826130f2565b604082019050919050565b6000602082019050818103600083015261317d81613141565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131ba6020836124ba565b91506131c582613184565b602082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613217826131f0565b61322181856131fb565b93506132318185602086016124cb565b61323a816124f5565b840191505092915050565b600060808201905061325a60008301876125f6565b61326760208301866125f6565b613274604083018561268c565b8181036060830152613286818461320c565b905095945050505050565b6000815190506132a081612420565b92915050565b6000602082840312156132bc576132bb6123ea565b5b60006132ca84828501613291565b9150509291505056fea2646970667358221220cdbc1e01bda12fbc5c3f3559c9a3cb04b33f1aa146badcb12fb8a87feec2c1d164736f6c63430008130033
Deployed Bytecode Sourcemap
63995:2687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24338:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25240:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31731:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65909:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20991:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64071:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66082:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65162:114;;;;;;;;;;;;;:::i;:::-;;64292:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64545:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65604:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3120:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66261:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64175:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65288:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26633:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64149:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22175:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63091:103;;;;;;;;;;;;;:::i;:::-;;65404:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64253:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62443:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65507:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25416:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64208:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65725:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66448:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25626:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64960:78;;;;;;;;;;;;;:::i;:::-;;32680:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64122:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63349:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24338:639;24423:4;24762:10;24747:25;;:11;:25;;;;:102;;;;24839:10;24824:25;;:11;:25;;;;24747:102;:179;;;;24916:10;24901:25;;:11;:25;;;;24747:179;24727:199;;24338:639;;;:::o;25240:100::-;25294:13;25327:5;25320:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:100;:::o;31731:218::-;31807:7;31832:16;31840:7;31832;:16::i;:::-;31827:64;;31857:34;;;;;;;;;;;;;;31827:64;31911:15;:24;31927:7;31911:24;;;;;;;;;;;:30;;;;;;;;;;;;31904:37;;31731:218;;;:::o;65909:161::-;66013:8;5162:1;3220:42;5114:45;;;:49;5110:225;;;3220:42;5185;;;5236:4;5243:8;5185:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5180:144;;5299:8;5280:28;;;;;;;;;;;:::i;:::-;;;;;;;;5180:144;5110:225;66032:32:::1;66046:8;66056:7;66032:13;:32::i;:::-;65909:161:::0;;;:::o;20991:323::-;21052:7;21280:15;:13;:15::i;:::-;21265:12;;21249:13;;:28;:46;21242:53;;20991:323;:::o;64071:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;66082:167::-;66191:4;4416:1;3220:42;4368:45;;;:49;4364:539;;;4657:10;4649:18;;:4;:18;;;4645:85;;66206:37:::1;66225:4;66231:2;66235:7;66206:18;:37::i;:::-;4708:7:::0;;4645:85;3220:42;4749;;;4800:4;4807:10;4749:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:148;;4865:10;4846:30;;;;;;;;;;;:::i;:::-;;;;;;;;4744:148;4364:539;66206:37:::1;66225:4;66231:2;66235:7;66206:18;:37::i;:::-;66082:167:::0;;;;;:::o;65162:114::-;62329:13;:11;:13::i;:::-;65221:10:::1;65213:28;;:51;65242:21;65213:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65162:114::o:0;64292:48::-;;;;;;;;;;;;;;;;;:::o;64545:407::-;64615:10;;;;;;;;;;;64607:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;64679:8;;64672:3;:15;;64664:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;64756:12;;64749:3;64733:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;;64725:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;64840:5;;64834:3;:11;;;;:::i;:::-;64821:9;:24;;64813:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;64908:3;64880:12;:24;64893:10;64880:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64920:26;64930:10;64942:3;64920:9;:26::i;:::-;64545:407;:::o;65604:108::-;62329:13;:11;:13::i;:::-;65670:26:::1;65680:10;65692:3;65670:9;:26::i;:::-;65604:108:::0;:::o;3120:143::-;3220:42;3120:143;:::o;66261:175::-;66374:4;4416:1;3220:42;4368:45;;;:49;4364:539;;;4657:10;4649:18;;:4;:18;;;4645:85;;66389:41:::1;66412:4;66418:2;66422:7;66389:22;:41::i;:::-;4708:7:::0;;4645:85;3220:42;4749;;;4800:4;4807:10;4749:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:148;;4865:10;4846:30;;;;;;;;;;;:::i;:::-;;;;;;;;4744:148;4364:539;66389:41:::1;66412:4;66418:2;66422:7;66389:22;:41::i;:::-;66261:175:::0;;;;;:::o;64175:28::-;;;;:::o;65288:102::-;62329:13;:11;:13::i;:::-;65370:8:::1;65360:7;:18;;;;;;:::i;:::-;;65288:102:::0;:::o;26633:152::-;26705:7;26748:27;26767:7;26748:18;:27::i;:::-;26725:52;;26633:152;;;:::o;64149:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22175:233::-;22247:7;22288:1;22271:19;;:5;:19;;;22267:60;;22299:28;;;;;;;;;;;;;;22267:60;16334:13;22345:18;:25;22364:5;22345:25;;;;;;;;;;;;;;;;:55;22338:62;;22175:233;;;:::o;63091:103::-;62329:13;:11;:13::i;:::-;63156:30:::1;63183:1;63156:18;:30::i;:::-;63091:103::o:0;65404:92::-;62329:13;:11;:13::i;:::-;65478:6:::1;65467:8;:17;;;;65404:92:::0;:::o;64253:34::-;;;;:::o;62443:87::-;62489:7;62516:6;;;;;;;;;;;62509:13;;62443:87;:::o;65507:84::-;62329:13;:11;:13::i;:::-;65577:8:::1;65569:5;:16;;;;65507:84:::0;:::o;25416:104::-;25472:13;25505:7;25498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25416:104;:::o;64208:40::-;;;;:::o;65725:172::-;65829:8;5162:1;3220:42;5114:45;;;:49;5110:225;;;3220:42;5185;;;5236:4;5243:8;5185:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5180:144;;5299:8;5280:28;;;;;;;;;;;:::i;:::-;;;;;;;;5180:144;5110:225;65848:43:::1;65872:8;65882;65848:23;:43::i;:::-;65725:172:::0;;;:::o;66448:231::-;66608:4;4416:1;3220:42;4368:45;;;:49;4364:539;;;4657:10;4649:18;;:4;:18;;;4645:85;;66626:47:::1;66649:4;66655:2;66659:7;66668:4;66626:22;:47::i;:::-;4708:7:::0;;4645:85;3220:42;4749;;;4800:4;4807:10;4749:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:148;;4865:10;4846:30;;;;;;;;;;;:::i;:::-;;;;;;;;4744:148;4364:539;66626:47:::1;66649:4;66655:2;66659:7;66668:4;66626:22;:47::i;:::-;66448:231:::0;;;;;;:::o;25626:318::-;25699:13;25730:16;25738:7;25730;:16::i;:::-;25725:59;;25755:29;;;;;;;;;;;;;;25725:59;25797:21;25821:10;:8;:10::i;:::-;25797:34;;25874:1;25855:7;25849:21;:26;:87;;;;;;;;;;;;;;;;;25902:7;25911:18;25921:7;25911:9;:18::i;:::-;25885:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25849:87;25842:94;;;25626:318;;;:::o;64960:78::-;62329:13;:11;:13::i;:::-;65022:10:::1;;;;;;;;;;;65021:11;65008:10;;:24;;;;;;;;;;;;;;;;;;64960:78::o:0;32680:164::-;32777:4;32801:18;:25;32820:5;32801:25;;;;;;;;;;;;;;;:35;32827:8;32801:35;;;;;;;;;;;;;;;;;;;;;;;;;32794:42;;32680:164;;;;:::o;64122:22::-;;;;;;;;;;;;;:::o;63349:201::-;62329:13;:11;:13::i;:::-;63458:1:::1;63438:22;;:8;:22;;::::0;63430:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63514:28;63533:8;63514:18;:28::i;:::-;63349:201:::0;:::o;33102:282::-;33167:4;33223:7;33204:15;:13;:15::i;:::-;:26;;:66;;;;;33257:13;;33247:7;:23;33204:66;:153;;;;;33356:1;17110:8;33308:17;:26;33326:7;33308:26;;;;;;;;;;;;:44;:49;33204:153;33184:173;;33102:282;;;:::o;31164:408::-;31253:13;31269:16;31277:7;31269;:16::i;:::-;31253:32;;31325:5;31302:28;;:19;:17;:19::i;:::-;:28;;;31298:175;;31350:44;31367:5;31374:19;:17;:19::i;:::-;31350:16;:44::i;:::-;31345:128;;31422:35;;;;;;;;;;;;;;31345:128;31298:175;31518:2;31485:15;:24;31501:7;31485:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31556:7;31552:2;31536:28;;31545:5;31536:28;;;;;;;;;;;;31242:330;31164:408;;:::o;64439:97::-;64504:7;64529:1;64522:8;;64439:97;:::o;35370:2825::-;35512:27;35542;35561:7;35542:18;:27::i;:::-;35512:57;;35627:4;35586:45;;35602:19;35586:45;;;35582:86;;35640:28;;;;;;;;;;;;;;35582:86;35682:27;35711:23;35738:35;35765:7;35738:26;:35::i;:::-;35681:92;;;;35873:68;35898:15;35915:4;35921:19;:17;:19::i;:::-;35873:24;:68::i;:::-;35868:180;;35961:43;35978:4;35984:19;:17;:19::i;:::-;35961:16;:43::i;:::-;35956:92;;36013:35;;;;;;;;;;;;;;35956:92;35868:180;36079:1;36065:16;;:2;:16;;;36061:52;;36090:23;;;;;;;;;;;;;;36061:52;36126:43;36148:4;36154:2;36158:7;36167:1;36126:21;:43::i;:::-;36262:15;36259:160;;;36402:1;36381:19;36374:30;36259:160;36799:18;:24;36818:4;36799:24;;;;;;;;;;;;;;;;36797:26;;;;;;;;;;;;36868:18;:22;36887:2;36868:22;;;;;;;;;;;;;;;;36866:24;;;;;;;;;;;37190:146;37227:2;37276:45;37291:4;37297:2;37301:19;37276:14;:45::i;:::-;17390:8;37248:73;37190:18;:146::i;:::-;37161:17;:26;37179:7;37161:26;;;;;;;;;;;:175;;;;37507:1;17390:8;37456:19;:47;:52;37452:627;;37529:19;37561:1;37551:7;:11;37529:33;;37718:1;37684:17;:30;37702:11;37684:30;;;;;;;;;;;;:35;37680:384;;37822:13;;37807:11;:28;37803:242;;38002:19;37969:17;:30;37987:11;37969:30;;;;;;;;;;;:52;;;;37803:242;37680:384;37510:569;37452:627;38126:7;38122:2;38107:27;;38116:4;38107:27;;;;;;;;;;;;38145:42;38166:4;38172:2;38176:7;38185:1;38145:20;:42::i;:::-;35501:2694;;;35370:2825;;;:::o;62608:132::-;62683:12;:10;:12::i;:::-;62672:23;;:7;:5;:7::i;:::-;:23;;;62664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62608:132::o;49242:112::-;49319:27;49329:2;49333:8;49319:27;;;;;;;;;;;;:9;:27::i;:::-;49242:112;;:::o;38291:193::-;38437:39;38454:4;38460:2;38464:7;38437:39;;;;;;;;;;;;:16;:39::i;:::-;38291:193;;;:::o;27788:1275::-;27855:7;27875:12;27890:7;27875:22;;27958:4;27939:15;:13;:15::i;:::-;:23;27935:1061;;27992:13;;27985:4;:20;27981:1015;;;28030:14;28047:17;:23;28065:4;28047:23;;;;;;;;;;;;28030:40;;28164:1;17110:8;28136:6;:24;:29;28132:845;;28801:113;28818:1;28808:6;:11;28801:113;;28861:17;:25;28879:6;;;;;;;28861:25;;;;;;;;;;;;28852:34;;28801:113;;;28947:6;28940:13;;;;;;28132:845;28007:989;27981:1015;27935:1061;29024:31;;;;;;;;;;;;;;27788:1275;;;;:::o;63710:191::-;63784:16;63803:6;;;;;;;;;;;63784:25;;63829:8;63820:6;;:17;;;;;;;;;;;;;;;;;;63884:8;63853:40;;63874:8;63853:40;;;;;;;;;;;;63773:128;63710:191;:::o;32289:234::-;32436:8;32384:18;:39;32403:19;:17;:19::i;:::-;32384:39;;;;;;;;;;;;;;;:49;32424:8;32384:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32496:8;32460:55;;32475:19;:17;:19::i;:::-;32460:55;;;32506:8;32460:55;;;;;;:::i;:::-;;;;;;;;32289:234;;:::o;39082:407::-;39257:31;39270:4;39276:2;39280:7;39257:12;:31::i;:::-;39321:1;39303:2;:14;;;:19;39299:183;;39342:56;39373:4;39379:2;39383:7;39392:5;39342:30;:56::i;:::-;39337:145;;39426:40;;;;;;;;;;;;;;39337:145;39299:183;39082:407;;;;:::o;65048:104::-;65108:13;65139:7;65132:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65048:104;:::o;55617:1745::-;55682:17;56116:4;56109;56103:11;56099:22;56208:1;56202:4;56195:15;56283:4;56280:1;56276:12;56269:19;;56365:1;56360:3;56353:14;56469:3;56708:5;56690:428;56716:1;56690:428;;;56756:1;56751:3;56747:11;56740:18;;56927:2;56921:4;56917:13;56913:2;56909:22;56904:3;56896:36;57021:2;57015:4;57011:13;57003:21;;57088:4;56690:428;57078:25;56690:428;56694:21;57157:3;57152;57148:13;57272:4;57267:3;57263:14;57256:21;;57337:6;57332:3;57325:19;55721:1634;;;55617:1745;;;:::o;55410:105::-;55470:7;55497:10;55490:17;;55410:105;:::o;34265:485::-;34367:27;34396:23;34437:38;34478:15;:24;34494:7;34478:24;;;;;;;;;;;34437:65;;34655:18;34632:41;;34712:19;34706:26;34687:45;;34617:126;34265:485;;;:::o;33493:659::-;33642:11;33807:16;33800:5;33796:28;33787:37;;33967:16;33956:9;33952:32;33939:45;;34117:15;34106:9;34103:30;34095:5;34084:9;34081:20;34078:56;34068:66;;33493:659;;;;;:::o;40151:159::-;;;;;:::o;54719:311::-;54854:7;54874:16;17514:3;54900:19;:41;;54874:68;;17514:3;54968:31;54979:4;54985:2;54989:9;54968:10;:31::i;:::-;54960:40;;:62;;54953:69;;;54719:311;;;;;:::o;29611:450::-;29691:14;29859:16;29852:5;29848:28;29839:37;;30036:5;30022:11;29997:23;29993:41;29990:52;29983:5;29980:63;29970:73;;29611:450;;;;:::o;40975:158::-;;;;;:::o;60994:98::-;61047:7;61074:10;61067:17;;60994:98;:::o;48469:689::-;48600:19;48606:2;48610:8;48600:5;:19::i;:::-;48679:1;48661:2;:14;;;:19;48657:483;;48701:11;48715:13;;48701:27;;48747:13;48769:8;48763:3;:14;48747:30;;48796:233;48827:62;48866:1;48870:2;48874:7;;;;;;48883:5;48827:30;:62::i;:::-;48822:167;;48925:40;;;;;;;;;;;;;;48822:167;49024:3;49016:5;:11;48796:233;;49111:3;49094:13;;:20;49090:34;;49116:8;;;49090:34;48682:458;;48657:483;48469:689;;;:::o;41573:716::-;41736:4;41782:2;41757:45;;;41803:19;:17;:19::i;:::-;41824:4;41830:7;41839:5;41757:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41753:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42057:1;42040:6;:13;:18;42036:235;;42086:40;;;;;;;;;;;;;;42036:235;42229:6;42223:13;42214:6;42210:2;42206:15;42199:38;41753:529;41926:54;;;41916:64;;;:6;:64;;;;41909:71;;;41573:716;;;;;;:::o;54420:147::-;54557:6;54420:147;;;;;:::o;42751:2966::-;42824:20;42847:13;;42824:36;;42887:1;42875:8;:13;42871:44;;42897:18;;;;;;;;;;;;;;42871:44;42928:61;42958:1;42962:2;42966:12;42980:8;42928:21;:61::i;:::-;43472:1;16472:2;43442:1;:26;;43441:32;43429:8;:45;43403:18;:22;43422:2;43403:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43751:139;43788:2;43842:33;43865:1;43869:2;43873:1;43842:14;:33::i;:::-;43809:30;43830:8;43809:20;:30::i;:::-;:66;43751:18;:139::i;:::-;43717:17;:31;43735:12;43717:31;;;;;;;;;;;:173;;;;43907:16;43938:11;43967:8;43952:12;:23;43938:37;;44488:16;44484:2;44480:25;44468:37;;44860:12;44820:8;44779:1;44717:25;44658:1;44597;44570:335;45231:1;45217:12;45213:20;45171:346;45272:3;45263:7;45260:16;45171:346;;45490:7;45480:8;45477:1;45450:25;45447:1;45444;45439:59;45325:1;45316:7;45312:15;45301:26;;45171:346;;;45175:77;45562:1;45550:8;:13;45546:45;;45572:19;;;;;;;;;;;;;;45546:45;45624:3;45608:13;:19;;;;43177:2462;;45649:60;45678:1;45682:2;45686:12;45700:8;45649:20;:60::i;:::-;42813:2904;42751:2966;;:::o;30163:324::-;30233:14;30466:1;30456:8;30453:15;30427:24;30423:46;30413:56;;30163: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:174::-;14573:26;14569:1;14561:6;14557:14;14550:50;14433:174;:::o;14613:366::-;14755:3;14776:67;14840:2;14835:3;14776:67;:::i;:::-;14769:74;;14852:93;14941:3;14852:93;:::i;:::-;14970:2;14965:3;14961:12;14954:19;;14613:366;;;:::o;14985:419::-;15151:4;15189:2;15178:9;15174:18;15166:26;;15238:9;15232:4;15228:20;15224:1;15213:9;15209:17;15202:47;15266:131;15392:4;15266:131;:::i;:::-;15258:139;;14985:419;;;:::o;15410:174::-;15550:26;15546:1;15538:6;15534:14;15527:50;15410:174;:::o;15590:366::-;15732:3;15753:67;15817:2;15812:3;15753:67;:::i;:::-;15746:74;;15829:93;15918:3;15829:93;:::i;:::-;15947:2;15942:3;15938:12;15931:19;;15590:366;;;:::o;15962:419::-;16128:4;16166:2;16155:9;16151:18;16143:26;;16215:9;16209:4;16205:20;16201:1;16190:9;16186:17;16179:47;16243:131;16369:4;16243:131;:::i;:::-;16235:139;;15962:419;;;:::o;16387:180::-;16435:77;16432:1;16425:88;16532:4;16529:1;16522:15;16556:4;16553:1;16546:15;16573:191;16613:3;16632:20;16650:1;16632:20;:::i;:::-;16627:25;;16666:20;16684:1;16666:20;:::i;:::-;16661:25;;16709:1;16706;16702:9;16695:16;;16730:3;16727:1;16724:10;16721:36;;;16737:18;;:::i;:::-;16721:36;16573:191;;;;:::o;16770:182::-;16910:34;16906:1;16898:6;16894:14;16887:58;16770:182;:::o;16958:366::-;17100:3;17121:67;17185:2;17180:3;17121:67;:::i;:::-;17114:74;;17197:93;17286:3;17197:93;:::i;:::-;17315:2;17310:3;17306:12;17299:19;;16958:366;;;:::o;17330:419::-;17496:4;17534:2;17523:9;17519:18;17511:26;;17583:9;17577:4;17573:20;17569:1;17558:9;17554:17;17547:47;17611:131;17737:4;17611:131;:::i;:::-;17603:139;;17330:419;;;:::o;17755:410::-;17795:7;17818:20;17836:1;17818:20;:::i;:::-;17813:25;;17852:20;17870:1;17852:20;:::i;:::-;17847:25;;17907:1;17904;17900:9;17929:30;17947:11;17929:30;:::i;:::-;17918:41;;18108:1;18099:7;18095:15;18092:1;18089:22;18069:1;18062:9;18042:83;18019:139;;18138:18;;:::i;:::-;18019:139;17803:362;17755:410;;;;:::o;18171:172::-;18311:24;18307:1;18299:6;18295:14;18288:48;18171:172;:::o;18349:366::-;18491:3;18512:67;18576:2;18571:3;18512:67;:::i;:::-;18505:74;;18588:93;18677:3;18588:93;:::i;:::-;18706:2;18701:3;18697:12;18690:19;;18349:366;;;:::o;18721:419::-;18887:4;18925:2;18914:9;18910:18;18902:26;;18974:9;18968:4;18964:20;18960:1;18949:9;18945:17;18938:47;19002:131;19128:4;19002:131;:::i;:::-;18994:139;;18721:419;;;:::o;19146:141::-;19195:4;19218:3;19210:11;;19241:3;19238:1;19231:14;19275:4;19272:1;19262:18;19254:26;;19146:141;;;:::o;19293:93::-;19330:6;19377:2;19372;19365:5;19361:14;19357:23;19347:33;;19293:93;;;:::o;19392:107::-;19436:8;19486:5;19480:4;19476:16;19455:37;;19392:107;;;;:::o;19505:393::-;19574:6;19624:1;19612:10;19608:18;19647:97;19677:66;19666:9;19647:97;:::i;:::-;19765:39;19795:8;19784:9;19765:39;:::i;:::-;19753:51;;19837:4;19833:9;19826:5;19822:21;19813:30;;19886:4;19876:8;19872:19;19865:5;19862:30;19852:40;;19581:317;;19505:393;;;;;:::o;19904:142::-;19954:9;19987:53;20005:34;20014:24;20032:5;20014:24;:::i;:::-;20005:34;:::i;:::-;19987:53;:::i;:::-;19974:66;;19904:142;;;:::o;20052:75::-;20095:3;20116:5;20109:12;;20052:75;;;:::o;20133:269::-;20243:39;20274:7;20243:39;:::i;:::-;20304:91;20353:41;20377:16;20353:41;:::i;:::-;20345:6;20338:4;20332:11;20304:91;:::i;:::-;20298:4;20291:105;20209:193;20133:269;;;:::o;20408:73::-;20453:3;20408:73;:::o;20487:189::-;20564:32;;:::i;:::-;20605:65;20663:6;20655;20649:4;20605:65;:::i;:::-;20540:136;20487:189;;:::o;20682:186::-;20742:120;20759:3;20752:5;20749:14;20742:120;;;20813:39;20850:1;20843:5;20813:39;:::i;:::-;20786:1;20779:5;20775:13;20766:22;;20742:120;;;20682:186;;:::o;20874:543::-;20975:2;20970:3;20967:11;20964:446;;;21009:38;21041:5;21009:38;:::i;:::-;21093:29;21111:10;21093:29;:::i;:::-;21083:8;21079:44;21276:2;21264:10;21261:18;21258:49;;;21297:8;21282:23;;21258:49;21320:80;21376:22;21394:3;21376:22;:::i;:::-;21366:8;21362:37;21349:11;21320:80;:::i;:::-;20979:431;;20964:446;20874:543;;;:::o;21423:117::-;21477:8;21527:5;21521:4;21517:16;21496:37;;21423:117;;;;:::o;21546:169::-;21590:6;21623:51;21671:1;21667:6;21659:5;21656:1;21652:13;21623:51;:::i;:::-;21619:56;21704:4;21698;21694:15;21684:25;;21597:118;21546:169;;;;:::o;21720:295::-;21796:4;21942:29;21967:3;21961:4;21942:29;:::i;:::-;21934:37;;22004:3;22001:1;21997:11;21991:4;21988:21;21980:29;;21720:295;;;;:::o;22020:1395::-;22137:37;22170:3;22137:37;:::i;:::-;22239:18;22231:6;22228:30;22225:56;;;22261:18;;:::i;:::-;22225:56;22305:38;22337:4;22331:11;22305:38;:::i;:::-;22390:67;22450:6;22442;22436:4;22390:67;:::i;:::-;22484:1;22508:4;22495:17;;22540:2;22532:6;22529:14;22557:1;22552:618;;;;23214:1;23231:6;23228:77;;;23280:9;23275:3;23271:19;23265:26;23256:35;;23228:77;23331:67;23391:6;23384:5;23331:67;:::i;:::-;23325:4;23318:81;23187:222;22522:887;;22552:618;22604:4;22600:9;22592:6;22588:22;22638:37;22670:4;22638:37;:::i;:::-;22697:1;22711:208;22725:7;22722:1;22719:14;22711:208;;;22804:9;22799:3;22795:19;22789:26;22781:6;22774:42;22855:1;22847:6;22843:14;22833:24;;22902:2;22891:9;22887:18;22874:31;;22748:4;22745:1;22741:12;22736:17;;22711:208;;;22947:6;22938:7;22935:19;22932:179;;;23005:9;23000:3;22996:19;22990:26;23048:48;23090:4;23082:6;23078:17;23067:9;23048:48;:::i;:::-;23040:6;23033:64;22955:156;22932:179;23157:1;23153;23145:6;23141:14;23137:22;23131:4;23124:36;22559:611;;;22522:887;;22112:1303;;;22020:1395;;:::o;23421:148::-;23523:11;23560:3;23545:18;;23421:148;;;;:::o;23575:390::-;23681:3;23709:39;23742:5;23709:39;:::i;:::-;23764:89;23846:6;23841:3;23764:89;:::i;:::-;23757:96;;23862:65;23920:6;23915:3;23908:4;23901:5;23897:16;23862:65;:::i;:::-;23952:6;23947:3;23943:16;23936:23;;23685:280;23575:390;;;;:::o;23971:435::-;24151:3;24173:95;24264:3;24255:6;24173:95;:::i;:::-;24166:102;;24285:95;24376:3;24367:6;24285:95;:::i;:::-;24278:102;;24397:3;24390:10;;23971:435;;;;;:::o;24412:225::-;24552:34;24548:1;24540:6;24536:14;24529:58;24621:8;24616:2;24608:6;24604:15;24597:33;24412:225;:::o;24643:366::-;24785:3;24806:67;24870:2;24865:3;24806:67;:::i;:::-;24799:74;;24882:93;24971:3;24882:93;:::i;:::-;25000:2;24995:3;24991:12;24984:19;;24643:366;;;:::o;25015:419::-;25181:4;25219:2;25208:9;25204:18;25196:26;;25268:9;25262:4;25258:20;25254:1;25243:9;25239:17;25232:47;25296:131;25422:4;25296:131;:::i;:::-;25288:139;;25015:419;;;:::o;25440:182::-;25580:34;25576:1;25568:6;25564:14;25557:58;25440:182;:::o;25628:366::-;25770:3;25791:67;25855:2;25850:3;25791:67;:::i;:::-;25784:74;;25867:93;25956:3;25867:93;:::i;:::-;25985:2;25980:3;25976:12;25969:19;;25628:366;;;:::o;26000:419::-;26166:4;26204:2;26193:9;26189:18;26181:26;;26253:9;26247:4;26243:20;26239:1;26228:9;26224:17;26217:47;26281:131;26407:4;26281:131;:::i;:::-;26273:139;;26000:419;;;:::o;26425:98::-;26476:6;26510:5;26504:12;26494:22;;26425:98;;;:::o;26529:168::-;26612:11;26646:6;26641:3;26634:19;26686:4;26681:3;26677:14;26662:29;;26529:168;;;;:::o;26703:373::-;26789:3;26817:38;26849:5;26817:38;:::i;:::-;26871:70;26934:6;26929:3;26871:70;:::i;:::-;26864:77;;26950:65;27008:6;27003:3;26996:4;26989:5;26985:16;26950:65;:::i;:::-;27040:29;27062:6;27040:29;:::i;:::-;27035:3;27031:39;27024:46;;26793:283;26703:373;;;;:::o;27082:640::-;27277:4;27315:3;27304:9;27300:19;27292:27;;27329:71;27397:1;27386:9;27382:17;27373:6;27329:71;:::i;:::-;27410:72;27478:2;27467:9;27463:18;27454:6;27410:72;:::i;:::-;27492;27560:2;27549:9;27545:18;27536:6;27492:72;:::i;:::-;27611:9;27605:4;27601:20;27596:2;27585:9;27581:18;27574:48;27639:76;27710:4;27701:6;27639:76;:::i;:::-;27631:84;;27082:640;;;;;;;:::o;27728:141::-;27784:5;27815:6;27809:13;27800:22;;27831:32;27857:5;27831:32;:::i;:::-;27728:141;;;;:::o;27875:349::-;27944:6;27993:2;27981:9;27972:7;27968:23;27964:32;27961:119;;;27999:79;;:::i;:::-;27961:119;28119:1;28144:63;28199:7;28190:6;28179:9;28175:22;28144:63;:::i;:::-;28134:73;;28090:127;27875:349;;;;:::o
Swarm Source
ipfs://cdbc1e01bda12fbc5c3f3559c9a3cb04b33f1aa146badcb12fb8a87feec2c1d1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.