ERC-20
Overview
Max Total Supply
524 AcidBurn-Genesis
Holders
0
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Balance
0 AcidBurn-GenesisValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ABGenesis
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-14 */ // 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: erc721a/contracts/extensions/IERC721ABurnable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File: erc721a/contracts/extensions/ERC721ABurnable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // File: filterer/IOperatorFilterRegistry.sol pragma solidity ^0.8.17; 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: filterer/OperatorFilterer.sol pragma solidity ^0.8.17; /** * @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 { // 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) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view 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: filterer/DefaultOperatorFilterer.sol pragma solidity ^0.8.17; /** * @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: @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: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: AB-Genesis.sol pragma solidity 0.8.17; /// @author Viv_0002 contract ABGenesis is ERC721ABurnable, ERC2981, Ownable, DefaultOperatorFilterer{ enum MintState { PAUSED, FREECLAIM, ALLOWLIST, PUBLIC, ENDED } MintState public state = MintState.PAUSED; uint256 public mintcost = 1 ether; uint256 public maxSupply = 1069; uint256 public publicMax = 3; bytes32 public whitelistMerkleRoot; string public tokenUriBase = "http://metadata.mintfud.com:3333/abgenesis/"; bool public burnEnabled = false; address public payee; constructor() ERC721A("AcidBurn Genesis", "AcidBurn-Genesis") { _setDefaultRoyalty(owner(), 500); payee = owner(); } // OVERRIDES function _startTokenId() internal view virtual override returns (uint256) { return 0; } // MODIFIERS modifier mintCompliance(uint256 _mintAmount) { require( _mintAmount > 0,"Invalid mint amount"); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded" ); _; } // MERKLE TREE function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, whitelistMerkleRoot, leaf); } function _leaf(address account, uint256 maxMint) internal pure returns (bytes32) { return keccak256(bytes.concat(keccak256(abi.encode(account, maxMint)))); } // MINTING FUNCTIONS function freeclaim( uint256 amount, uint256 maxMint, bytes32[] calldata proof ) public mintCompliance(amount) { require(state == MintState.FREECLAIM, "Free Claim period not open"); require(_verify(_leaf(msg.sender, maxMint), proof), "Invalid proof"); require(numberMinted(msg.sender) + amount <= maxMint,"Exceeds allowed number of mints"); _safeMint(msg.sender, amount); } function ALMint( uint256 amount, uint256 maxMint, bytes32[] calldata proof ) public payable mintCompliance(amount) { require(state == MintState.ALLOWLIST , "AllowList mint is not available right now"); require(_verify(_leaf(msg.sender, maxMint), proof), "Invalid proof"); require(msg.value >= mintcost * amount, "Insufficient funds"); require(numberMinted(msg.sender) + amount <= maxMint,"Exceeds allowed number of mints"); _safeMint(msg.sender, amount); } function mint(uint256 amount) public payable mintCompliance(amount) { require(state == MintState.PUBLIC, "Public mint is not available yet"); require (amount <= publicMax, "Too many mints per transaction requested"); require(msg.value >= mintcost * amount, "Insufficient funds"); _safeMint(msg.sender, amount); } function mintForAddress(uint256 amount, address _receiver) public onlyOwner { require(totalSupply() + amount <= maxSupply, "Max supply exceeded"); _safeMint(_receiver, amount); } // GETTERS function numberMinted(address _minter) public view returns (uint256) { return _numberMinted(_minter); } function numberBurned(address _minter) public view returns (uint256) { return _numberBurned(_minter); } function tokenURI( uint256 tokenId ) public view override(ERC721A, IERC721A) returns (string memory) { return string(abi.encodePacked(tokenUriBase, _toString(tokenId), ".json")); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownerTokens = new uint256[](ownerTokenCount); uint256 ownerTokenIdx = 0; for ( uint256 tokenIdx = _startTokenId(); tokenIdx < _totalMinted(); tokenIdx++ ) { if (_exists(tokenIdx)){ if (ownerOf(tokenIdx) == _owner) { ownerTokens[ownerTokenIdx] = tokenIdx; ownerTokenIdx++; }} } return ownerTokens; } function getBurnCounter() public view returns (uint256) { return _totalBurned(); } function getTotalMinted() public view returns (uint256) { return _totalMinted(); } // SETTERS function setState(MintState _state) public onlyOwner { state = _state; } function setCost(uint256 _newcost) public onlyOwner { mintcost = _newcost; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } function setTokenURI(string memory newUriBase) external onlyOwner { tokenUriBase = newUriBase; } function setPublicMax(uint256 _newmax) public onlyOwner { publicMax = _newmax; } function enableBurn(bool _burn) public onlyOwner { burnEnabled = _burn; } function setPayee(address _payee) public onlyOwner { payee = _payee; } // 2981 function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981, IERC721A) returns (bool) { return super.supportsInterface(interfaceId); } // OS function setApprovalForAll(address operator, bool approved) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } // WITHDRAW function withdraw() public onlyOwner { uint256 contractBalance = address(this).balance; bool success = true; (success, ) = payable(payee).call{ value: contractBalance}(""); require(success, "Transfer failed"); } // BURN function burn(uint256 tokenId) public virtual override { require(burnEnabled!=false, "Burn is not enabled"); _burn(tokenId, true); } function bulkburn(uint256[] calldata tokenIDs) public virtual { require(burnEnabled!=false, "Burn is not enabled"); for (uint i = 0; i < tokenIDs.length; i++) { burn(tokenIDs[i]); } } }
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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"ALMint","outputs":[],"stateMutability":"payable","type":"function"},{"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":[{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"bulkburn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_burn","type":"bool"}],"name":"enableBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeclaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_newcost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payee","type":"address"}],"name":"setPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmax","type":"uint256"}],"name":"setPublicMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ABGenesis.MintState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUriBase","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum ABGenesis.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenUriBase","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff021916908360048111156200002d576200002c62000696565b5b0217905550670de0b6b3a7640000600b5561042d600c556003600d556040518060600160405280602b8152602001620059a4602b9139600f90816200007391906200093f565b506000601060006101000a81548160ff0219169083151502179055503480156200009c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f416369644275726e2047656e65736973000000000000000000000000000000008152506040518060400160405280601081526020017f416369644275726e2d47656e657369730000000000000000000000000000000081525081600290816200013191906200093f565b5080600390816200014391906200093f565b5062000154620003ec60201b60201c565b60008190555050506200017c62000170620003f160201b60201c565b620003f960201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037157801562000237576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001fd92919062000a6b565b600060405180830381600087803b1580156200021857600080fd5b505af11580156200022d573d6000803e3d6000fd5b5050505062000370565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002b792919062000a6b565b600060405180830381600087803b158015620002d257600080fd5b505af1158015620002e7573d6000803e3d6000fd5b505050506200036f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033a919062000a98565b600060405180830381600087803b1580156200035557600080fd5b505af11580156200036a573d6000803e3d6000fd5b505050505b5b5b50506200039662000387620004bf60201b60201c565b6101f4620004e960201b60201c565b620003a6620004bf60201b60201c565b601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000bd0565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004f96200068c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200055a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005519062000b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c39062000bae565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074757607f821691505b6020821081036200075d576200075c620006ff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000788565b620007d3868362000788565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008206200081a6200081484620007eb565b620007f5565b620007eb565b9050919050565b6000819050919050565b6200083c83620007ff565b620008546200084b8262000827565b84845462000795565b825550505050565b600090565b6200086b6200085c565b6200087881848462000831565b505050565b5b81811015620008a0576200089460008262000861565b6001810190506200087e565b5050565b601f821115620008ef57620008b98162000763565b620008c48462000778565b81016020851015620008d4578190505b620008ec620008e38562000778565b8301826200087d565b50505b505050565b600082821c905092915050565b60006200091460001984600802620008f4565b1980831691505092915050565b60006200092f838362000901565b9150826002028217905092915050565b6200094a82620006c5565b67ffffffffffffffff811115620009665762000965620006d0565b5b6200097282546200072e565b6200097f828285620008a4565b600060209050601f831160018114620009b75760008415620009a2578287015190505b620009ae858262000921565b86555062000a1e565b601f198416620009c78662000763565b60005b82811015620009f157848901518255600182019150602085019450602081019050620009ca565b8683101562000a11578489015162000a0d601f89168262000901565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a538262000a26565b9050919050565b62000a658162000a46565b82525050565b600060408201905062000a82600083018562000a5a565b62000a91602083018462000a5a565b9392505050565b600060208201905062000aaf600083018462000a5a565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b24602a8362000ab5565b915062000b318262000ac6565b604082019050919050565b6000602082019050818103600083015262000b578162000b15565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000b9660198362000ab5565b915062000ba38262000b5e565b602082019050919050565b6000602082019050818103600083015262000bc98162000b87565b9050919050565b614dc48062000be06000396000f3fe6080604052600436106102935760003560e01c8063665660461161015a578063b88d4fde116100c1578063e0df5b6f1161007a578063e0df5b6f146109b1578063e527c6dd146109da578063e985e9c514610a05578063efbd73f414610a42578063f229abbd14610a6b578063f2fde38b14610a9457610293565b8063b88d4fde1461089c578063bd32fb66146108b8578063c19d93fb146108e1578063c87b56dd1461090c578063d5abeb0114610949578063dc33e6811461097457610293565b806394c3cbf41161011357806394c3cbf4146107ab57806395d89b41146107d6578063a0712d6814610801578063a22cb4651461081d578063aa98e0c614610846578063ae90b2131461087157610293565b806366566046146106af5780636f8b44b0146106d857806370a0823114610701578063715018a61461073e5780637a344ba9146107555780638da5cb5b1461078057610293565b80632b37a4b9116101fe578063438b6300116101b7578063438b63001461058d57806344a0d68a146105ca578063540c2a97146105f357806356de96db1461061e5780635dc96d16146106475780636352211e1461067257610293565b80632b37a4b9146104b45780633ccfd60b146104dd578063410459ad146104f457806341f434341461051d57806342842e0e1461054857806342966c681461056457610293565b80630ca1c5c9116102505780630ca1c5c9146103ab57806318160ddd146103d6578063183bed901461040157806323b872dd1461041d5780632478d639146104395780632a55205a1461047657610293565b806301ffc9a71461029857806304634d8d146102d557806306fdde03146102fe578063081812fc14610329578063095ea7b3146103665780630aa3bee514610382575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613374565b610abd565b6040516102cc91906133bc565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613479565b610acf565b005b34801561030a57600080fd5b50610313610ae5565b6040516103209190613549565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906135a1565b610b77565b60405161035d91906135dd565b60405180910390f35b610380600480360381019061037b91906135f8565b610bf6565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061369d565b610c0f565b005b3480156103b757600080fd5b506103c0610e1a565b6040516103cd9190613720565b60405180910390f35b3480156103e257600080fd5b506103eb610e29565b6040516103f89190613720565b60405180910390f35b61041b6004803603810190610416919061369d565b610e40565b005b6104376004803603810190610432919061373b565b61109b565b005b34801561044557600080fd5b50610460600480360381019061045b919061378e565b6110ea565b60405161046d9190613720565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906137bb565b6110fc565b6040516104ab9291906137fb565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061387a565b6112e6565b005b3480156104e957600080fd5b506104f2611384565b005b34801561050057600080fd5b5061051b6004803603810190610516919061378e565b611469565b005b34801561052957600080fd5b506105326114b5565b60405161053f9190613926565b60405180910390f35b610562600480360381019061055d919061373b565b6114c7565b005b34801561057057600080fd5b5061058b600480360381019061058691906135a1565b611516565b005b34801561059957600080fd5b506105b460048036038101906105af919061378e565b61157a565b6040516105c191906139ff565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906135a1565b61168b565b005b3480156105ff57600080fd5b5061060861169d565b6040516106159190613549565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613a46565b61172b565b005b34801561065357600080fd5b5061065c611760565b60405161066991906133bc565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906135a1565b611773565b6040516106a691906135dd565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906135a1565b611785565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906135a1565b611797565b005b34801561070d57600080fd5b506107286004803603810190610723919061378e565b6117a9565b6040516107359190613720565b60405180910390f35b34801561074a57600080fd5b50610753611861565b005b34801561076157600080fd5b5061076a611875565b6040516107779190613720565b60405180910390f35b34801561078c57600080fd5b50610795611884565b6040516107a291906135dd565b60405180910390f35b3480156107b757600080fd5b506107c06118ae565b6040516107cd9190613720565b60405180910390f35b3480156107e257600080fd5b506107eb6118b4565b6040516107f89190613549565b60405180910390f35b61081b600480360381019061081691906135a1565b611946565b005b34801561082957600080fd5b50610844600480360381019061083f9190613a9f565b611afa565b005b34801561085257600080fd5b5061085b611b13565b6040516108689190613af8565b60405180910390f35b34801561087d57600080fd5b50610886611b19565b60405161089391906135dd565b60405180910390f35b6108b660048036038101906108b19190613c43565b611b3f565b005b3480156108c457600080fd5b506108df60048036038101906108da9190613cf2565b611b90565b005b3480156108ed57600080fd5b506108f6611ba2565b6040516109039190613d96565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e91906135a1565b611bb5565b6040516109409190613549565b60405180910390f35b34801561095557600080fd5b5061095e611be9565b60405161096b9190613720565b60405180910390f35b34801561098057600080fd5b5061099b6004803603810190610996919061378e565b611bef565b6040516109a89190613720565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190613e52565b611c01565b005b3480156109e657600080fd5b506109ef611c1c565b6040516109fc9190613720565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613e9b565b611c22565b604051610a3991906133bc565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a649190613edb565b611cb6565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613f1b565b611d23565b005b348015610aa057600080fd5b50610abb6004803603810190610ab6919061378e565b611d48565b005b6000610ac882611dcb565b9050919050565b610ad7611e45565b610ae18282611ec3565b5050565b606060028054610af490613f77565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2090613f77565b8015610b6d5780601f10610b4257610100808354040283529160200191610b6d565b820191906000526020600020905b815481529060010190602001808311610b5057829003601f168201915b5050505050905090565b6000610b8282612058565b610bb8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c00816120b7565b610c0a83836121b4565b505050565b8360008111610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90613ff4565b60405180910390fd5b600c5481610c5f610e29565b610c699190614043565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906140c3565b60405180910390fd5b60016004811115610cbe57610cbd613d1f565b5b600a60149054906101000a900460ff166004811115610ce057610cdf613d1f565b5b14610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d179061412f565b60405180910390fd5b610d74610d2d33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061419b565b60405180910390fd5b8385610dbe33611bef565b610dc89190614043565b1115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090614207565b60405180910390fd5b610e133386612368565b5050505050565b6000610e24612386565b905090565b6000610e33612399565b6001546000540303905090565b8360008111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613ff4565b60405180910390fd5b600c5481610e90610e29565b610e9a9190614043565b1115610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906140c3565b60405180910390fd5b60026004811115610eef57610eee613d1f565b5b600a60149054906101000a900460ff166004811115610f1157610f10613d1f565b5b14610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890614299565b60405180910390fd5b610fa5610f5e33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061419b565b60405180910390fd5b84600b54610ff291906142b9565b341015611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614347565b60405180910390fd5b838561103f33611bef565b6110499190614043565b111561108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190614207565b60405180910390fd5b6110943386612368565b5050505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d9576110d8336120b7565b5b6110e484848461239e565b50505050565b60006110f5826126c0565b9050919050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036112915760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061129b612717565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112c791906142b9565b6112d19190614396565b90508160000151819350935050509250929050565b60001515601060009054906101000a900460ff1615150361133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390614413565b60405180910390fd5b60005b8282905081101561137f5761136c8383838181106113605761135f614433565b5b90506020020135611516565b808061137790614462565b91505061133f565b505050565b61138c611e45565b6000479050600060019050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516113dd906144db565b60006040518083038185875af1925050503d806000811461141a576040519150601f19603f3d011682016040523d82523d6000602084013e61141f565b606091505b50508091505080611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c9061453c565b60405180910390fd5b5050565b611471611e45565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150557611504336120b7565b5b611510848484612721565b50505050565b60001515601060009054906101000a900460ff1615150361156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614413565b60405180910390fd5b611577816001612741565b50565b60606000611587836117a9565b905060008167ffffffffffffffff8111156115a5576115a4613b18565b5b6040519080825280602002602001820160405280156115d35781602001602082028036833780820191505090505b5090506000806115e1612399565b90505b6115ec612386565b81101561167f576115fc81612058565b1561166c578573ffffffffffffffffffffffffffffffffffffffff1661162182611773565b73ffffffffffffffffffffffffffffffffffffffff160361166b57808383815181106116505761164f614433565b5b602002602001018181525050818061166790614462565b9250505b5b808061167790614462565b9150506115e4565b50819350505050919050565b611693611e45565b80600b8190555050565b600f80546116aa90613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613f77565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b611733611e45565b80600a60146101000a81548160ff0219169083600481111561175857611757613d1f565b5b021790555050565b601060009054906101000a900460ff1681565b600061177e82612993565b9050919050565b61178d611e45565b80600d8190555050565b61179f611e45565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611810576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611869611e45565b6118736000612a5f565b565b600061187f612b25565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546118c390613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613f77565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b5050505050905090565b806000811161198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613ff4565b60405180910390fd5b600c5481611996610e29565b6119a09190614043565b11156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d8906140c3565b60405180910390fd5b600360048111156119f5576119f4613d1f565b5b600a60149054906101000a900460ff166004811115611a1757611a16613d1f565b5b14611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906145a8565b60405180910390fd5b600d54821115611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061463a565b60405180910390fd5b81600b54611aaa91906142b9565b341015611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614347565b60405180910390fd5b611af63383612368565b5050565b81611b04816120b7565b611b0e8383612b2f565b505050565b600e5481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b7d57611b7c336120b7565b5b611b8985858585612c3a565b5050505050565b611b98611e45565b80600e8190555050565b600a60149054906101000a900460ff1681565b6060600f611bc283612cad565b604051602001611bd392919061477a565b6040516020818303038152906040529050919050565b600c5481565b6000611bfa82612cfd565b9050919050565b611c09611e45565b80600f9081611c189190614936565b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbe611e45565b600c5482611cca610e29565b611cd49190614043565b1115611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906140c3565b60405180910390fd5b611d1f8183612368565b5050565b611d2b611e45565b80601060006101000a81548160ff02191690831515021790555050565b611d50611e45565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690614a7a565b60405180910390fd5b611dc881612a5f565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e3e5750611e3d82612d54565b5b9050919050565b611e4d612dbe565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611884565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614ae6565b60405180910390fd5b565b611ecb612717565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614be4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612063612399565b11158015612072575060005482105b80156120b0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156121b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161212e929190614c04565b602060405180830381865afa15801561214b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216f9190614c42565b6121b057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016121a791906135dd565b60405180910390fd5b5b50565b60006121bf82611773565b90508073ffffffffffffffffffffffffffffffffffffffff166121e0612dc6565b73ffffffffffffffffffffffffffffffffffffffff16146122435761220c81612207612dc6565b611c22565b612242576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000828260405160200161230d9291906137fb565b604051602081830303815290604052805190602001206040516020016123339190614c90565b60405160208183030381529060405280519060200120905092915050565b600061236082600e5485612dce565b905092915050565b612382828260405180602001604052806000815250612de5565b5050565b6000612390612399565b60005403905090565b600090565b60006123a982612993565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612410576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061241c84612e82565b91509150612432818761242d612dc6565b612ea9565b61247e5761244786612442612dc6565b611c22565b61247d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124e4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f18686866001612eed565b80156124fc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506125ca856125a6888887612ef3565b7c020000000000000000000000000000000000000000000000000000000017612f1b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612650576000600185019050600060046000838152602001908152602001600020540361264e57600054811461264d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b88686866001612f46565b505050505050565b600067ffffffffffffffff6080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000612710905090565b61273c83838360405180602001604052806000815250611b3f565b505050565b600061274c83612993565b9050600081905060008061275f86612e82565b9150915084156127c85761277b8184612776612dc6565b612ea9565b6127c7576127908361278b612dc6565b611c22565b6127c6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6127d6836000886001612eed565b80156127e157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128898361284685600088612ef3565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612f1b565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361290f576000600187019050600060046000838152602001908152602001600020540361290d57600054811461290c578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612979836000886001612f46565b600160008154809291906001019190505550505050505050565b600080829050806129a2612399565b11612a2857600054811015612a275760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612a25575b60008103612a1b5760046000836001900393508381526020019081526020016000205490506129f1565b8092505050612a5a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600154905090565b8060076000612b3c612dc6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612be9612dc6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c2e91906133bc565b60405180910390a35050565b612c4584848461109b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ca757612c7084848484612f4c565b612ca6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115612ce857600184039350600a81066030018453600a8104905080612cc6575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b600082612ddb858461309c565b1490509392505050565b612def83836130f2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e7d57600080549050600083820390505b612e2f6000868380600101945086612f4c565b612e65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e1c578160005414612e7a57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f0a8686846132ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f72612dc6565b8786866040518563ffffffff1660e01b8152600401612f949493929190614d00565b6020604051808303816000875af1925050508015612fd057506040513d601f19601f82011682018060405250810190612fcd9190614d61565b60015b613049573d8060008114613000576040519150601f19603f3d011682016040523d82523d6000602084013e613005565b606091505b506000815103613041576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156130e7576130d2828683815181106130c5576130c4614433565b5b60200260200101516132b6565b915080806130df90614462565b9150506130a5565b508091505092915050565b60008054905060008203613132576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61313f6000848385612eed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506131b6836131a76000866000612ef3565b6131b0856132e1565b17612f1b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461325757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061321c565b5060008203613292576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506132a86000848385612f46565b505050565b60009392505050565b60008183106132ce576132c982846132f1565b6132d9565b6132d883836132f1565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133518161331c565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b60006020828403121561338a57613389613312565b5b60006133988482850161335f565b91505092915050565b60008115159050919050565b6133b6816133a1565b82525050565b60006020820190506133d160008301846133ad565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613402826133d7565b9050919050565b613412816133f7565b811461341d57600080fd5b50565b60008135905061342f81613409565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61345681613435565b811461346157600080fd5b50565b6000813590506134738161344d565b92915050565b600080604083850312156134905761348f613312565b5b600061349e85828601613420565b92505060206134af85828601613464565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134f35780820151818401526020810190506134d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061351b826134b9565b61352581856134c4565b93506135358185602086016134d5565b61353e816134ff565b840191505092915050565b600060208201905081810360008301526135638184613510565b905092915050565b6000819050919050565b61357e8161356b565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b6000602082840312156135b7576135b6613312565b5b60006135c58482850161358c565b91505092915050565b6135d7816133f7565b82525050565b60006020820190506135f260008301846135ce565b92915050565b6000806040838503121561360f5761360e613312565b5b600061361d85828601613420565b925050602061362e8582860161358c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261365d5761365c613638565b5b8235905067ffffffffffffffff81111561367a5761367961363d565b5b60208301915083602082028301111561369657613695613642565b5b9250929050565b600080600080606085870312156136b7576136b6613312565b5b60006136c58782880161358c565b94505060206136d68782880161358c565b935050604085013567ffffffffffffffff8111156136f7576136f6613317565b5b61370387828801613647565b925092505092959194509250565b61371a8161356b565b82525050565b60006020820190506137356000830184613711565b92915050565b60008060006060848603121561375457613753613312565b5b600061376286828701613420565b935050602061377386828701613420565b92505060406137848682870161358c565b9150509250925092565b6000602082840312156137a4576137a3613312565b5b60006137b284828501613420565b91505092915050565b600080604083850312156137d2576137d1613312565b5b60006137e08582860161358c565b92505060206137f18582860161358c565b9150509250929050565b600060408201905061381060008301856135ce565b61381d6020830184613711565b9392505050565b60008083601f84011261383a57613839613638565b5b8235905067ffffffffffffffff8111156138575761385661363d565b5b60208301915083602082028301111561387357613872613642565b5b9250929050565b6000806020838503121561389157613890613312565b5b600083013567ffffffffffffffff8111156138af576138ae613317565b5b6138bb85828601613824565b92509250509250929050565b6000819050919050565b60006138ec6138e76138e2846133d7565b6138c7565b6133d7565b9050919050565b60006138fe826138d1565b9050919050565b6000613910826138f3565b9050919050565b61392081613905565b82525050565b600060208201905061393b6000830184613917565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139768161356b565b82525050565b6000613988838361396d565b60208301905092915050565b6000602082019050919050565b60006139ac82613941565b6139b6818561394c565b93506139c18361395d565b8060005b838110156139f25781516139d9888261397c565b97506139e483613994565b9250506001810190506139c5565b5085935050505092915050565b60006020820190508181036000830152613a1981846139a1565b905092915050565b60058110613a2e57600080fd5b50565b600081359050613a4081613a21565b92915050565b600060208284031215613a5c57613a5b613312565b5b6000613a6a84828501613a31565b91505092915050565b613a7c816133a1565b8114613a8757600080fd5b50565b600081359050613a9981613a73565b92915050565b60008060408385031215613ab657613ab5613312565b5b6000613ac485828601613420565b9250506020613ad585828601613a8a565b9150509250929050565b6000819050919050565b613af281613adf565b82525050565b6000602082019050613b0d6000830184613ae9565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b50826134ff565b810181811067ffffffffffffffff82111715613b6f57613b6e613b18565b5b80604052505050565b6000613b82613308565b9050613b8e8282613b47565b919050565b600067ffffffffffffffff821115613bae57613bad613b18565b5b613bb7826134ff565b9050602081019050919050565b82818337600083830152505050565b6000613be6613be184613b93565b613b78565b905082815260208101848484011115613c0257613c01613b13565b5b613c0d848285613bc4565b509392505050565b600082601f830112613c2a57613c29613638565b5b8135613c3a848260208601613bd3565b91505092915050565b60008060008060808587031215613c5d57613c5c613312565b5b6000613c6b87828801613420565b9450506020613c7c87828801613420565b9350506040613c8d8782880161358c565b925050606085013567ffffffffffffffff811115613cae57613cad613317565b5b613cba87828801613c15565b91505092959194509250565b613ccf81613adf565b8114613cda57600080fd5b50565b600081359050613cec81613cc6565b92915050565b600060208284031215613d0857613d07613312565b5b6000613d1684828501613cdd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613d5f57613d5e613d1f565b5b50565b6000819050613d7082613d4e565b919050565b6000613d8082613d62565b9050919050565b613d9081613d75565b82525050565b6000602082019050613dab6000830184613d87565b92915050565b600067ffffffffffffffff821115613dcc57613dcb613b18565b5b613dd5826134ff565b9050602081019050919050565b6000613df5613df084613db1565b613b78565b905082815260208101848484011115613e1157613e10613b13565b5b613e1c848285613bc4565b509392505050565b600082601f830112613e3957613e38613638565b5b8135613e49848260208601613de2565b91505092915050565b600060208284031215613e6857613e67613312565b5b600082013567ffffffffffffffff811115613e8657613e85613317565b5b613e9284828501613e24565b91505092915050565b60008060408385031215613eb257613eb1613312565b5b6000613ec085828601613420565b9250506020613ed185828601613420565b9150509250929050565b60008060408385031215613ef257613ef1613312565b5b6000613f008582860161358c565b9250506020613f1185828601613420565b9150509250929050565b600060208284031215613f3157613f30613312565b5b6000613f3f84828501613a8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f8f57607f821691505b602082108103613fa257613fa1613f48565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613fde6013836134c4565b9150613fe982613fa8565b602082019050919050565b6000602082019050818103600083015261400d81613fd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061404e8261356b565b91506140598361356b565b925082820190508082111561407157614070614014565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006140ad6013836134c4565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f4672656520436c61696d20706572696f64206e6f74206f70656e000000000000600082015250565b6000614119601a836134c4565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614185600d836134c4565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4578636565647320616c6c6f776564206e756d626572206f66206d696e747300600082015250565b60006141f1601f836134c4565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f416c6c6f774c697374206d696e74206973206e6f7420617661696c61626c652060008201527f7269676874206e6f770000000000000000000000000000000000000000000000602082015250565b60006142836029836134c4565b915061428e82614227565b604082019050919050565b600060208201905081810360008301526142b281614276565b9050919050565b60006142c48261356b565b91506142cf8361356b565b92508282026142dd8161356b565b915082820484148315176142f4576142f3614014565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006143316012836134c4565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a18261356b565b91506143ac8361356b565b9250826143bc576143bb614367565b5b828204905092915050565b7f4275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b60006143fd6013836134c4565b9150614408826143c7565b602082019050919050565b6000602082019050818103600083015261442c816143f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061446d8261356b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361449f5761449e614014565b5b600182019050919050565b600081905092915050565b50565b60006144c56000836144aa565b91506144d0826144b5565b600082019050919050565b60006144e6826144b8565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000614526600f836134c4565b9150614531826144f0565b602082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f5075626c6963206d696e74206973206e6f7420617661696c61626c6520796574600082015250565b60006145926020836134c4565b915061459d8261455c565b602082019050919050565b600060208201905081810360008301526145c181614585565b9050919050565b7f546f6f206d616e79206d696e747320706572207472616e73616374696f6e207260008201527f6571756573746564000000000000000000000000000000000000000000000000602082015250565b60006146246028836134c4565b915061462f826145c8565b604082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461468781613f77565b614691818661465a565b945060018216600081146146ac57600181146146c1576146f4565b60ff19831686528115158202860193506146f4565b6146ca85614665565b60005b838110156146ec578154818901526001820191506020810190506146cd565b838801955050505b50505092915050565b6000614708826134b9565b614712818561465a565b93506147228185602086016134d5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061476460058361465a565b915061476f8261472e565b600582019050919050565b6000614786828561467a565b915061479282846146fd565b915061479d82614757565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826147b9565b61480086836147b9565b95508019841693508086168417925050509392505050565b600061483361482e6148298461356b565b6138c7565b61356b565b9050919050565b6000819050919050565b61484d83614818565b6148616148598261483a565b8484546147c6565b825550505050565b600090565b614876614869565b614881818484614844565b505050565b5b818110156148a55761489a60008261486e565b600181019050614887565b5050565b601f8211156148ea576148bb81614665565b6148c4846147a9565b810160208510156148d3578190505b6148e76148df856147a9565b830182614886565b50505b505050565b600082821c905092915050565b600061490d600019846008026148ef565b1980831691505092915050565b600061492683836148fc565b9150826002028217905092915050565b61493f826134b9565b67ffffffffffffffff81111561495857614957613b18565b5b6149628254613f77565b61496d8282856148a9565b600060209050601f8311600181146149a0576000841561498e578287015190505b614998858261491a565b865550614a00565b601f1984166149ae86614665565b60005b828110156149d6578489015182556001820191506020850194506020810190506149b1565b868310156149f357848901516149ef601f8916826148fc565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a646026836134c4565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ad06020836134c4565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614b62602a836134c4565b9150614b6d82614b06565b604082019050919050565b60006020820190508181036000830152614b9181614b55565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614bce6019836134c4565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b6000604082019050614c1960008301856135ce565b614c2660208301846135ce565b9392505050565b600081519050614c3c81613a73565b92915050565b600060208284031215614c5857614c57613312565b5b6000614c6684828501614c2d565b91505092915050565b6000819050919050565b614c8a614c8582613adf565b614c6f565b82525050565b6000614c9c8284614c79565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614cd282614cab565b614cdc8185614cb6565b9350614cec8185602086016134d5565b614cf5816134ff565b840191505092915050565b6000608082019050614d1560008301876135ce565b614d2260208301866135ce565b614d2f6040830185613711565b8181036060830152614d418184614cc7565b905095945050505050565b600081519050614d5b81613348565b92915050565b600060208284031215614d7757614d76613312565b5b6000614d8584828501614d4c565b9150509291505056fea2646970667358221220f1b8a95691883e4363bfa30078cbb88d853d3f4987938ca2b0f8311a7a2acbdf64736f6c63430008110033687474703a2f2f6d657461646174612e6d696e746675642e636f6d3a333333332f616267656e657369732f
Deployed Bytecode
0x6080604052600436106102935760003560e01c8063665660461161015a578063b88d4fde116100c1578063e0df5b6f1161007a578063e0df5b6f146109b1578063e527c6dd146109da578063e985e9c514610a05578063efbd73f414610a42578063f229abbd14610a6b578063f2fde38b14610a9457610293565b8063b88d4fde1461089c578063bd32fb66146108b8578063c19d93fb146108e1578063c87b56dd1461090c578063d5abeb0114610949578063dc33e6811461097457610293565b806394c3cbf41161011357806394c3cbf4146107ab57806395d89b41146107d6578063a0712d6814610801578063a22cb4651461081d578063aa98e0c614610846578063ae90b2131461087157610293565b806366566046146106af5780636f8b44b0146106d857806370a0823114610701578063715018a61461073e5780637a344ba9146107555780638da5cb5b1461078057610293565b80632b37a4b9116101fe578063438b6300116101b7578063438b63001461058d57806344a0d68a146105ca578063540c2a97146105f357806356de96db1461061e5780635dc96d16146106475780636352211e1461067257610293565b80632b37a4b9146104b45780633ccfd60b146104dd578063410459ad146104f457806341f434341461051d57806342842e0e1461054857806342966c681461056457610293565b80630ca1c5c9116102505780630ca1c5c9146103ab57806318160ddd146103d6578063183bed901461040157806323b872dd1461041d5780632478d639146104395780632a55205a1461047657610293565b806301ffc9a71461029857806304634d8d146102d557806306fdde03146102fe578063081812fc14610329578063095ea7b3146103665780630aa3bee514610382575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613374565b610abd565b6040516102cc91906133bc565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613479565b610acf565b005b34801561030a57600080fd5b50610313610ae5565b6040516103209190613549565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906135a1565b610b77565b60405161035d91906135dd565b60405180910390f35b610380600480360381019061037b91906135f8565b610bf6565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061369d565b610c0f565b005b3480156103b757600080fd5b506103c0610e1a565b6040516103cd9190613720565b60405180910390f35b3480156103e257600080fd5b506103eb610e29565b6040516103f89190613720565b60405180910390f35b61041b6004803603810190610416919061369d565b610e40565b005b6104376004803603810190610432919061373b565b61109b565b005b34801561044557600080fd5b50610460600480360381019061045b919061378e565b6110ea565b60405161046d9190613720565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906137bb565b6110fc565b6040516104ab9291906137fb565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061387a565b6112e6565b005b3480156104e957600080fd5b506104f2611384565b005b34801561050057600080fd5b5061051b6004803603810190610516919061378e565b611469565b005b34801561052957600080fd5b506105326114b5565b60405161053f9190613926565b60405180910390f35b610562600480360381019061055d919061373b565b6114c7565b005b34801561057057600080fd5b5061058b600480360381019061058691906135a1565b611516565b005b34801561059957600080fd5b506105b460048036038101906105af919061378e565b61157a565b6040516105c191906139ff565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec91906135a1565b61168b565b005b3480156105ff57600080fd5b5061060861169d565b6040516106159190613549565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613a46565b61172b565b005b34801561065357600080fd5b5061065c611760565b60405161066991906133bc565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906135a1565b611773565b6040516106a691906135dd565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906135a1565b611785565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906135a1565b611797565b005b34801561070d57600080fd5b506107286004803603810190610723919061378e565b6117a9565b6040516107359190613720565b60405180910390f35b34801561074a57600080fd5b50610753611861565b005b34801561076157600080fd5b5061076a611875565b6040516107779190613720565b60405180910390f35b34801561078c57600080fd5b50610795611884565b6040516107a291906135dd565b60405180910390f35b3480156107b757600080fd5b506107c06118ae565b6040516107cd9190613720565b60405180910390f35b3480156107e257600080fd5b506107eb6118b4565b6040516107f89190613549565b60405180910390f35b61081b600480360381019061081691906135a1565b611946565b005b34801561082957600080fd5b50610844600480360381019061083f9190613a9f565b611afa565b005b34801561085257600080fd5b5061085b611b13565b6040516108689190613af8565b60405180910390f35b34801561087d57600080fd5b50610886611b19565b60405161089391906135dd565b60405180910390f35b6108b660048036038101906108b19190613c43565b611b3f565b005b3480156108c457600080fd5b506108df60048036038101906108da9190613cf2565b611b90565b005b3480156108ed57600080fd5b506108f6611ba2565b6040516109039190613d96565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e91906135a1565b611bb5565b6040516109409190613549565b60405180910390f35b34801561095557600080fd5b5061095e611be9565b60405161096b9190613720565b60405180910390f35b34801561098057600080fd5b5061099b6004803603810190610996919061378e565b611bef565b6040516109a89190613720565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190613e52565b611c01565b005b3480156109e657600080fd5b506109ef611c1c565b6040516109fc9190613720565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613e9b565b611c22565b604051610a3991906133bc565b60405180910390f35b348015610a4e57600080fd5b50610a696004803603810190610a649190613edb565b611cb6565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613f1b565b611d23565b005b348015610aa057600080fd5b50610abb6004803603810190610ab6919061378e565b611d48565b005b6000610ac882611dcb565b9050919050565b610ad7611e45565b610ae18282611ec3565b5050565b606060028054610af490613f77565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2090613f77565b8015610b6d5780601f10610b4257610100808354040283529160200191610b6d565b820191906000526020600020905b815481529060010190602001808311610b5057829003601f168201915b5050505050905090565b6000610b8282612058565b610bb8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c00816120b7565b610c0a83836121b4565b505050565b8360008111610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90613ff4565b60405180910390fd5b600c5481610c5f610e29565b610c699190614043565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906140c3565b60405180910390fd5b60016004811115610cbe57610cbd613d1f565b5b600a60149054906101000a900460ff166004811115610ce057610cdf613d1f565b5b14610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d179061412f565b60405180910390fd5b610d74610d2d33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa9061419b565b60405180910390fd5b8385610dbe33611bef565b610dc89190614043565b1115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090614207565b60405180910390fd5b610e133386612368565b5050505050565b6000610e24612386565b905090565b6000610e33612399565b6001546000540303905090565b8360008111610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613ff4565b60405180910390fd5b600c5481610e90610e29565b610e9a9190614043565b1115610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906140c3565b60405180910390fd5b60026004811115610eef57610eee613d1f565b5b600a60149054906101000a900460ff166004811115610f1157610f10613d1f565b5b14610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890614299565b60405180910390fd5b610fa5610f5e33866122f8565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612351565b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061419b565b60405180910390fd5b84600b54610ff291906142b9565b341015611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614347565b60405180910390fd5b838561103f33611bef565b6110499190614043565b111561108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190614207565b60405180910390fd5b6110943386612368565b5050505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d9576110d8336120b7565b5b6110e484848461239e565b50505050565b60006110f5826126c0565b9050919050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036112915760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061129b612717565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112c791906142b9565b6112d19190614396565b90508160000151819350935050509250929050565b60001515601060009054906101000a900460ff1615150361133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390614413565b60405180910390fd5b60005b8282905081101561137f5761136c8383838181106113605761135f614433565b5b90506020020135611516565b808061137790614462565b91505061133f565b505050565b61138c611e45565b6000479050600060019050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516113dd906144db565b60006040518083038185875af1925050503d806000811461141a576040519150601f19603f3d011682016040523d82523d6000602084013e61141f565b606091505b50508091505080611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c9061453c565b60405180910390fd5b5050565b611471611e45565b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150557611504336120b7565b5b611510848484612721565b50505050565b60001515601060009054906101000a900460ff1615150361156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614413565b60405180910390fd5b611577816001612741565b50565b60606000611587836117a9565b905060008167ffffffffffffffff8111156115a5576115a4613b18565b5b6040519080825280602002602001820160405280156115d35781602001602082028036833780820191505090505b5090506000806115e1612399565b90505b6115ec612386565b81101561167f576115fc81612058565b1561166c578573ffffffffffffffffffffffffffffffffffffffff1661162182611773565b73ffffffffffffffffffffffffffffffffffffffff160361166b57808383815181106116505761164f614433565b5b602002602001018181525050818061166790614462565b9250505b5b808061167790614462565b9150506115e4565b50819350505050919050565b611693611e45565b80600b8190555050565b600f80546116aa90613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613f77565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b611733611e45565b80600a60146101000a81548160ff0219169083600481111561175857611757613d1f565b5b021790555050565b601060009054906101000a900460ff1681565b600061177e82612993565b9050919050565b61178d611e45565b80600d8190555050565b61179f611e45565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611810576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611869611e45565b6118736000612a5f565b565b600061187f612b25565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546118c390613f77565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613f77565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b5050505050905090565b806000811161198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613ff4565b60405180910390fd5b600c5481611996610e29565b6119a09190614043565b11156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d8906140c3565b60405180910390fd5b600360048111156119f5576119f4613d1f565b5b600a60149054906101000a900460ff166004811115611a1757611a16613d1f565b5b14611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e906145a8565b60405180910390fd5b600d54821115611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061463a565b60405180910390fd5b81600b54611aaa91906142b9565b341015611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614347565b60405180910390fd5b611af63383612368565b5050565b81611b04816120b7565b611b0e8383612b2f565b505050565b600e5481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b7d57611b7c336120b7565b5b611b8985858585612c3a565b5050505050565b611b98611e45565b80600e8190555050565b600a60149054906101000a900460ff1681565b6060600f611bc283612cad565b604051602001611bd392919061477a565b6040516020818303038152906040529050919050565b600c5481565b6000611bfa82612cfd565b9050919050565b611c09611e45565b80600f9081611c189190614936565b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbe611e45565b600c5482611cca610e29565b611cd49190614043565b1115611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906140c3565b60405180910390fd5b611d1f8183612368565b5050565b611d2b611e45565b80601060006101000a81548160ff02191690831515021790555050565b611d50611e45565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690614a7a565b60405180910390fd5b611dc881612a5f565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e3e5750611e3d82612d54565b5b9050919050565b611e4d612dbe565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611884565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890614ae6565b60405180910390fd5b565b611ecb612717565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614b78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90614be4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612063612399565b11158015612072575060005482105b80156120b0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156121b1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161212e929190614c04565b602060405180830381865afa15801561214b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216f9190614c42565b6121b057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016121a791906135dd565b60405180910390fd5b5b50565b60006121bf82611773565b90508073ffffffffffffffffffffffffffffffffffffffff166121e0612dc6565b73ffffffffffffffffffffffffffffffffffffffff16146122435761220c81612207612dc6565b611c22565b612242576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000828260405160200161230d9291906137fb565b604051602081830303815290604052805190602001206040516020016123339190614c90565b60405160208183030381529060405280519060200120905092915050565b600061236082600e5485612dce565b905092915050565b612382828260405180602001604052806000815250612de5565b5050565b6000612390612399565b60005403905090565b600090565b60006123a982612993565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612410576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061241c84612e82565b91509150612432818761242d612dc6565b612ea9565b61247e5761244786612442612dc6565b611c22565b61247d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124e4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f18686866001612eed565b80156124fc57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506125ca856125a6888887612ef3565b7c020000000000000000000000000000000000000000000000000000000017612f1b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612650576000600185019050600060046000838152602001908152602001600020540361264e57600054811461264d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b88686866001612f46565b505050505050565b600067ffffffffffffffff6080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000612710905090565b61273c83838360405180602001604052806000815250611b3f565b505050565b600061274c83612993565b9050600081905060008061275f86612e82565b9150915084156127c85761277b8184612776612dc6565b612ea9565b6127c7576127908361278b612dc6565b611c22565b6127c6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6127d6836000886001612eed565b80156127e157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128898361284685600088612ef3565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612f1b565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361290f576000600187019050600060046000838152602001908152602001600020540361290d57600054811461290c578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612979836000886001612f46565b600160008154809291906001019190505550505050505050565b600080829050806129a2612399565b11612a2857600054811015612a275760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612a25575b60008103612a1b5760046000836001900393508381526020019081526020016000205490506129f1565b8092505050612a5a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600154905090565b8060076000612b3c612dc6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612be9612dc6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c2e91906133bc565b60405180910390a35050565b612c4584848461109b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ca757612c7084848484612f4c565b612ca6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115612ce857600184039350600a81066030018453600a8104905080612cc6575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b600082612ddb858461309c565b1490509392505050565b612def83836130f2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e7d57600080549050600083820390505b612e2f6000868380600101945086612f4c565b612e65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e1c578160005414612e7a57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f0a8686846132ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f72612dc6565b8786866040518563ffffffff1660e01b8152600401612f949493929190614d00565b6020604051808303816000875af1925050508015612fd057506040513d601f19601f82011682018060405250810190612fcd9190614d61565b60015b613049573d8060008114613000576040519150601f19603f3d011682016040523d82523d6000602084013e613005565b606091505b506000815103613041576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156130e7576130d2828683815181106130c5576130c4614433565b5b60200260200101516132b6565b915080806130df90614462565b9150506130a5565b508091505092915050565b60008054905060008203613132576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61313f6000848385612eed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506131b6836131a76000866000612ef3565b6131b0856132e1565b17612f1b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461325757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061321c565b5060008203613292576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506132a86000848385612f46565b505050565b60009392505050565b60008183106132ce576132c982846132f1565b6132d9565b6132d883836132f1565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133518161331c565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b60006020828403121561338a57613389613312565b5b60006133988482850161335f565b91505092915050565b60008115159050919050565b6133b6816133a1565b82525050565b60006020820190506133d160008301846133ad565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613402826133d7565b9050919050565b613412816133f7565b811461341d57600080fd5b50565b60008135905061342f81613409565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61345681613435565b811461346157600080fd5b50565b6000813590506134738161344d565b92915050565b600080604083850312156134905761348f613312565b5b600061349e85828601613420565b92505060206134af85828601613464565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134f35780820151818401526020810190506134d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061351b826134b9565b61352581856134c4565b93506135358185602086016134d5565b61353e816134ff565b840191505092915050565b600060208201905081810360008301526135638184613510565b905092915050565b6000819050919050565b61357e8161356b565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b6000602082840312156135b7576135b6613312565b5b60006135c58482850161358c565b91505092915050565b6135d7816133f7565b82525050565b60006020820190506135f260008301846135ce565b92915050565b6000806040838503121561360f5761360e613312565b5b600061361d85828601613420565b925050602061362e8582860161358c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261365d5761365c613638565b5b8235905067ffffffffffffffff81111561367a5761367961363d565b5b60208301915083602082028301111561369657613695613642565b5b9250929050565b600080600080606085870312156136b7576136b6613312565b5b60006136c58782880161358c565b94505060206136d68782880161358c565b935050604085013567ffffffffffffffff8111156136f7576136f6613317565b5b61370387828801613647565b925092505092959194509250565b61371a8161356b565b82525050565b60006020820190506137356000830184613711565b92915050565b60008060006060848603121561375457613753613312565b5b600061376286828701613420565b935050602061377386828701613420565b92505060406137848682870161358c565b9150509250925092565b6000602082840312156137a4576137a3613312565b5b60006137b284828501613420565b91505092915050565b600080604083850312156137d2576137d1613312565b5b60006137e08582860161358c565b92505060206137f18582860161358c565b9150509250929050565b600060408201905061381060008301856135ce565b61381d6020830184613711565b9392505050565b60008083601f84011261383a57613839613638565b5b8235905067ffffffffffffffff8111156138575761385661363d565b5b60208301915083602082028301111561387357613872613642565b5b9250929050565b6000806020838503121561389157613890613312565b5b600083013567ffffffffffffffff8111156138af576138ae613317565b5b6138bb85828601613824565b92509250509250929050565b6000819050919050565b60006138ec6138e76138e2846133d7565b6138c7565b6133d7565b9050919050565b60006138fe826138d1565b9050919050565b6000613910826138f3565b9050919050565b61392081613905565b82525050565b600060208201905061393b6000830184613917565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139768161356b565b82525050565b6000613988838361396d565b60208301905092915050565b6000602082019050919050565b60006139ac82613941565b6139b6818561394c565b93506139c18361395d565b8060005b838110156139f25781516139d9888261397c565b97506139e483613994565b9250506001810190506139c5565b5085935050505092915050565b60006020820190508181036000830152613a1981846139a1565b905092915050565b60058110613a2e57600080fd5b50565b600081359050613a4081613a21565b92915050565b600060208284031215613a5c57613a5b613312565b5b6000613a6a84828501613a31565b91505092915050565b613a7c816133a1565b8114613a8757600080fd5b50565b600081359050613a9981613a73565b92915050565b60008060408385031215613ab657613ab5613312565b5b6000613ac485828601613420565b9250506020613ad585828601613a8a565b9150509250929050565b6000819050919050565b613af281613adf565b82525050565b6000602082019050613b0d6000830184613ae9565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b50826134ff565b810181811067ffffffffffffffff82111715613b6f57613b6e613b18565b5b80604052505050565b6000613b82613308565b9050613b8e8282613b47565b919050565b600067ffffffffffffffff821115613bae57613bad613b18565b5b613bb7826134ff565b9050602081019050919050565b82818337600083830152505050565b6000613be6613be184613b93565b613b78565b905082815260208101848484011115613c0257613c01613b13565b5b613c0d848285613bc4565b509392505050565b600082601f830112613c2a57613c29613638565b5b8135613c3a848260208601613bd3565b91505092915050565b60008060008060808587031215613c5d57613c5c613312565b5b6000613c6b87828801613420565b9450506020613c7c87828801613420565b9350506040613c8d8782880161358c565b925050606085013567ffffffffffffffff811115613cae57613cad613317565b5b613cba87828801613c15565b91505092959194509250565b613ccf81613adf565b8114613cda57600080fd5b50565b600081359050613cec81613cc6565b92915050565b600060208284031215613d0857613d07613312565b5b6000613d1684828501613cdd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613d5f57613d5e613d1f565b5b50565b6000819050613d7082613d4e565b919050565b6000613d8082613d62565b9050919050565b613d9081613d75565b82525050565b6000602082019050613dab6000830184613d87565b92915050565b600067ffffffffffffffff821115613dcc57613dcb613b18565b5b613dd5826134ff565b9050602081019050919050565b6000613df5613df084613db1565b613b78565b905082815260208101848484011115613e1157613e10613b13565b5b613e1c848285613bc4565b509392505050565b600082601f830112613e3957613e38613638565b5b8135613e49848260208601613de2565b91505092915050565b600060208284031215613e6857613e67613312565b5b600082013567ffffffffffffffff811115613e8657613e85613317565b5b613e9284828501613e24565b91505092915050565b60008060408385031215613eb257613eb1613312565b5b6000613ec085828601613420565b9250506020613ed185828601613420565b9150509250929050565b60008060408385031215613ef257613ef1613312565b5b6000613f008582860161358c565b9250506020613f1185828601613420565b9150509250929050565b600060208284031215613f3157613f30613312565b5b6000613f3f84828501613a8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f8f57607f821691505b602082108103613fa257613fa1613f48565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613fde6013836134c4565b9150613fe982613fa8565b602082019050919050565b6000602082019050818103600083015261400d81613fd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061404e8261356b565b91506140598361356b565b925082820190508082111561407157614070614014565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006140ad6013836134c4565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f4672656520436c61696d20706572696f64206e6f74206f70656e000000000000600082015250565b6000614119601a836134c4565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000614185600d836134c4565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4578636565647320616c6c6f776564206e756d626572206f66206d696e747300600082015250565b60006141f1601f836134c4565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f416c6c6f774c697374206d696e74206973206e6f7420617661696c61626c652060008201527f7269676874206e6f770000000000000000000000000000000000000000000000602082015250565b60006142836029836134c4565b915061428e82614227565b604082019050919050565b600060208201905081810360008301526142b281614276565b9050919050565b60006142c48261356b565b91506142cf8361356b565b92508282026142dd8161356b565b915082820484148315176142f4576142f3614014565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006143316012836134c4565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a18261356b565b91506143ac8361356b565b9250826143bc576143bb614367565b5b828204905092915050565b7f4275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b60006143fd6013836134c4565b9150614408826143c7565b602082019050919050565b6000602082019050818103600083015261442c816143f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061446d8261356b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361449f5761449e614014565b5b600182019050919050565b600081905092915050565b50565b60006144c56000836144aa565b91506144d0826144b5565b600082019050919050565b60006144e6826144b8565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000614526600f836134c4565b9150614531826144f0565b602082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f5075626c6963206d696e74206973206e6f7420617661696c61626c6520796574600082015250565b60006145926020836134c4565b915061459d8261455c565b602082019050919050565b600060208201905081810360008301526145c181614585565b9050919050565b7f546f6f206d616e79206d696e747320706572207472616e73616374696f6e207260008201527f6571756573746564000000000000000000000000000000000000000000000000602082015250565b60006146246028836134c4565b915061462f826145c8565b604082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461468781613f77565b614691818661465a565b945060018216600081146146ac57600181146146c1576146f4565b60ff19831686528115158202860193506146f4565b6146ca85614665565b60005b838110156146ec578154818901526001820191506020810190506146cd565b838801955050505b50505092915050565b6000614708826134b9565b614712818561465a565b93506147228185602086016134d5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061476460058361465a565b915061476f8261472e565b600582019050919050565b6000614786828561467a565b915061479282846146fd565b915061479d82614757565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826147b9565b61480086836147b9565b95508019841693508086168417925050509392505050565b600061483361482e6148298461356b565b6138c7565b61356b565b9050919050565b6000819050919050565b61484d83614818565b6148616148598261483a565b8484546147c6565b825550505050565b600090565b614876614869565b614881818484614844565b505050565b5b818110156148a55761489a60008261486e565b600181019050614887565b5050565b601f8211156148ea576148bb81614665565b6148c4846147a9565b810160208510156148d3578190505b6148e76148df856147a9565b830182614886565b50505b505050565b600082821c905092915050565b600061490d600019846008026148ef565b1980831691505092915050565b600061492683836148fc565b9150826002028217905092915050565b61493f826134b9565b67ffffffffffffffff81111561495857614957613b18565b5b6149628254613f77565b61496d8282856148a9565b600060209050601f8311600181146149a0576000841561498e578287015190505b614998858261491a565b865550614a00565b601f1984166149ae86614665565b60005b828110156149d6578489015182556001820191506020850194506020810190506149b1565b868310156149f357848901516149ef601f8916826148fc565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a646026836134c4565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ad06020836134c4565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614b62602a836134c4565b9150614b6d82614b06565b604082019050919050565b60006020820190508181036000830152614b9181614b55565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614bce6019836134c4565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b6000604082019050614c1960008301856135ce565b614c2660208301846135ce565b9392505050565b600081519050614c3c81613a73565b92915050565b600060208284031215614c5857614c57613312565b5b6000614c6684828501614c2d565b91505092915050565b6000819050919050565b614c8a614c8582613adf565b614c6f565b82525050565b6000614c9c8284614c79565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614cd282614cab565b614cdc8185614cb6565b9350614cec8185602086016134d5565b614cf5816134ff565b840191505092915050565b6000608082019050614d1560008301876135ce565b614d2260208301866135ce565b614d2f6040830185613711565b8181036060830152614d418184614cc7565b905095945050505050565b600081519050614d5b81613348565b92915050565b600060208284031215614d7757614d76613312565b5b6000614d8584828501614d4c565b9150509291505056fea2646970667358221220f1b8a95691883e4363bfa30078cbb88d853d3f4987938ca2b0f8311a7a2acbdf64736f6c63430008110033
Deployed Bytecode Sourcemap
78095:7686:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83782:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83614:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19304:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25795:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84208:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79697:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82593:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15055:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80176:568;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84400:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81488:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65959:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;85548:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85095:267;;;;;;;;;;;;;:::i;:::-;;83507:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55390:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84598:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85385:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81829:652;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82809:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78512:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82715:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78593:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20697:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83306:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82907:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16239:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60642:103;;;;;;;;;;;;;:::i;:::-;;82489:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59994:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78358:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19480:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80752:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84005:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78471:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78631:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84804:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83015:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78308:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81613:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78398:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81363:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83188:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78436:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26744:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81115:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83408:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60900:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83782:199;83907:4;83937:36;83961:11;83937:23;:36::i;:::-;83930:43;;83782:199;;;:::o;83614:161::-;59880:13;:11;:13::i;:::-;83725:42:::1;83744:8;83754:12;83725:18;:42::i;:::-;83614:161:::0;;:::o;19304:100::-;19358:13;19391:5;19384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19304:100;:::o;25795:218::-;25871:7;25896:16;25904:7;25896;:16::i;:::-;25891:64;;25921:34;;;;;;;;;;;;;;25891:64;25975:15;:24;25991:7;25975:24;;;;;;;;;;;:30;;;;;;;;;;;;25968:37;;25795:218;;;:::o;84208:184::-;84331:8;56911:30;56932:8;56911:20;:30::i;:::-;84352:32:::1;84366:8;84376:7;84352:13;:32::i;:::-;84208:184:::0;;;:::o;79697:471::-;79835:6;79054:1;79040:11;:15;79018:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79152:9;;79137:11;79121:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;79099:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;79875:19:::1;79866:28;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;79858:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79948:42;79956:26;79962:10;79974:7;79956:5;:26::i;:::-;79984:5;;79948:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:42::i;:::-;79940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80068:7;80058:6;80031:24;80044:10;80031:12;:24::i;:::-;:33;;;;:::i;:::-;:44;;80023:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;80127:29;80137:10;80149:6;80127:9;:29::i;:::-;79697:471:::0;;;;;:::o;82593:96::-;82640:7;82667:14;:12;:14::i;:::-;82660:21;;82593:96;:::o;15055:323::-;15116:7;15344:15;:13;:15::i;:::-;15329:12;;15313:13;;:28;:46;15306:53;;15055:323;:::o;80176:568::-;80319:6;79054:1;79040:11;:15;79018:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79152:9;;79137:11;79121:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;79099:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;80363:19:::1;80354:28;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;80346:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;80452:42;80460:26;80466:10;80478:7;80460:5;:26::i;:::-;80488:5;;80452:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:42::i;:::-;80444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80559:6;80548:8;;:17;;;;:::i;:::-;80535:9;:30;;80527:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;80648:7;80638:6;80611:24;80624:10;80611:12;:24::i;:::-;:33;;;;:::i;:::-;:44;;80603:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;80707:29;80717:10;80729:6;80707:9;:29::i;:::-;80176:568:::0;;;;;:::o;84400:190::-;84528:4;56739:10;56731:18;;:4;:18;;;56727:83;;56766:32;56787:10;56766:20;:32::i;:::-;56727:83;84545:37:::1;84564:4;84570:2;84574:7;84545:18;:37::i;:::-;84400:190:::0;;;;:::o;81488:117::-;81548:7;81575:22;81589:7;81575:13;:22::i;:::-;81568:29;;81488:117;;;:::o;65959:442::-;66056:7;66065;66085:26;66114:17;:27;66132:8;66114:27;;;;;;;;;;;66085:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66186:1;66158:30;;:7;:16;;;:30;;;66154:92;;66215:19;66205:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66154:92;66258:21;66323:17;:15;:17::i;:::-;66282:58;;66296:7;:23;;;66283:36;;:10;:36;;;;:::i;:::-;66282:58;;;;:::i;:::-;66258:82;;66361:7;:16;;;66379:13;66353:40;;;;;;65959:442;;;;;:::o;85548:228::-;85642:5;85629:18;;:11;;;;;;;;;;;:18;;;85621:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;85687:6;85682:87;85703:8;;:15;;85699:1;:19;85682:87;;;85740:17;85745:8;;85754:1;85745:11;;;;;;;:::i;:::-;;;;;;;;85740:4;:17::i;:::-;85720:3;;;;;:::i;:::-;;;;85682:87;;;;85548:228;;:::o;85095:267::-;59880:13;:11;:13::i;:::-;85143:23:::1;85169:21;85143:47;;85201:12;85216:4;85201:19;;85255:5;;;;;;;;;;;85247:19;;85288:15;85247:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85233:75;;;;;85327:7;85319:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;85132:230;;85095:267::o:0;83507:84::-;59880:13;:11;:13::i;:::-;83577:6:::1;83569:5;;:14;;;;;;;;;;;;;;;;;;83507:84:::0;:::o;55390:143::-;55490:42;55390:143;:::o;84598:198::-;84730:4;56739:10;56731:18;;:4;:18;;;56727:83;;56766:32;56787:10;56766:20;:32::i;:::-;56727:83;84747:41:::1;84770:4;84776:2;84780:7;84747:22;:41::i;:::-;84598:198:::0;;;;:::o;85385:155::-;85472:5;85459:18;;:11;;;;;;;;;;;:18;;;85451:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;85512:20;85518:7;85527:4;85512:5;:20::i;:::-;85385:155;:::o;81829:652::-;81916:16;81950:23;81976:17;81986:6;81976:9;:17::i;:::-;81950:43;;82004:28;82049:15;82035:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82004:61;;82076:21;82131:16;82150:15;:13;:15::i;:::-;82131:34;;82112:333;82191:14;:12;:14::i;:::-;82180:8;:25;82112:333;;;82261:17;82269:8;82261:7;:17::i;:::-;82257:177;;;82319:6;82298:27;;:17;82306:8;82298:7;:17::i;:::-;:27;;;82294:139;;82375:8;82346:11;82358:13;82346:26;;;;;;;;:::i;:::-;;;;;;;:37;;;;;82402:15;;;;;:::i;:::-;;;;82294:139;82257:177;82220:10;;;;;:::i;:::-;;;;82112:333;;;;82462:11;82455:18;;;;;81829:652;;;:::o;82809:90::-;59880:13;:11;:13::i;:::-;82883:8:::1;82872;:19;;;;82809:90:::0;:::o;78512:74::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82715:86::-;59880:13;:11;:13::i;:::-;82787:6:::1;82779:5;;:14;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;82715:86:::0;:::o;78593:31::-;;;;;;;;;;;;;:::o;20697:152::-;20769:7;20812:27;20831:7;20812:18;:27::i;:::-;20789:52;;20697:152;;;:::o;83306:94::-;59880:13;:11;:13::i;:::-;83385:7:::1;83373:9;:19;;;;83306:94:::0;:::o;82907:100::-;59880:13;:11;:13::i;:::-;82989:10:::1;82977:9;:22;;;;82907:100:::0;:::o;16239:233::-;16311:7;16352:1;16335:19;;:5;:19;;;16331:60;;16363:28;;;;;;;;;;;;;;16331:60;10398:13;16409:18;:25;16428:5;16409:25;;;;;;;;;;;;;;;;:55;16402:62;;16239:233;;;:::o;60642:103::-;59880:13;:11;:13::i;:::-;60707:30:::1;60734:1;60707:18;:30::i;:::-;60642:103::o:0;82489:96::-;82536:7;82563:14;:12;:14::i;:::-;82556:21;;82489:96;:::o;59994:87::-;60040:7;60067:6;;;;;;;;;;;60060:13;;59994:87;:::o;78358:33::-;;;;:::o;19480:104::-;19536:13;19569:7;19562:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19480:104;:::o;80752:355::-;80812:6;79054:1;79040:11;:15;79018:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79152:9;;79137:11;79121:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;79099:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;80848:16:::1;80839:25;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:25;;;;;;;;:::i;:::-;;;80831:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;80931:9;;80921:6;:19;;80912:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81028:6;81017:8;;:17;;;;:::i;:::-;81004:9;:30;;80996:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;81070:29;81080:10;81092:6;81070:9;:29::i;:::-;80752:355:::0;;:::o;84005:195::-;84128:8;56911:30;56932:8;56911:20;:30::i;:::-;84149:43:::1;84173:8;84183;84149:23;:43::i;:::-;84005:195:::0;;;:::o;78471:34::-;;;;:::o;78631:20::-;;;;;;;;;;;;;:::o;84804:264::-;84991:4;56739:10;56731:18;;:4;:18;;;56727:83;;56766:32;56787:10;56766:20;:32::i;:::-;56727:83;85013:47:::1;85036:4;85042:2;85046:7;85055:4;85013:22;:47::i;:::-;84804:264:::0;;;;;:::o;83015:165::-;59880:13;:11;:13::i;:::-;83152:20:::1;83130:19;:42;;;;83015:165:::0;:::o;78308:41::-;;;;;;;;;;;;;:::o;81613:208::-;81713:13;81770:12;81784:18;81794:7;81784:9;:18::i;:::-;81753:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81739:74;;81613:208;;;:::o;78398:31::-;;;;:::o;81363:117::-;81423:7;81450:22;81464:7;81450:13;:22::i;:::-;81443:29;;81363:117;;;:::o;83188:110::-;59880:13;:11;:13::i;:::-;83280:10:::1;83265:12;:25;;;;;;:::i;:::-;;83188:110:::0;:::o;78436:28::-;;;;:::o;26744:164::-;26841:4;26865:18;:25;26884:5;26865:25;;;;;;;;;;;;;;;:35;26891:8;26865:35;;;;;;;;;;;;;;;;;;;;;;;;;26858:42;;26744:164;;;;:::o;81115:224::-;59880:13;:11;:13::i;:::-;81259:9:::1;;81249:6;81233:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;81225:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;81303:28;81313:9;81324:6;81303:9;:28::i;:::-;81115:224:::0;;:::o;83408:87::-;59880:13;:11;:13::i;:::-;83482:5:::1;83468:11;;:19;;;;;;;;;;;;;;;;;;83408:87:::0;:::o;60900:201::-;59880:13;:11;:13::i;:::-;61009:1:::1;60989:22;;:8;:22;;::::0;60981:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;61065:28;61084:8;61065:18;:28::i;:::-;60900:201:::0;:::o;65689:215::-;65791:4;65830:26;65815:41;;;:11;:41;;;;:81;;;;65860:36;65884:11;65860:23;:36::i;:::-;65815:81;65808:88;;65689:215;;;:::o;60159:132::-;60234:12;:10;:12::i;:::-;60223:23;;:7;:5;:7::i;:::-;:23;;;60215:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60159:132::o;67051:332::-;67170:17;:15;:17::i;:::-;67154:33;;:12;:33;;;;67146:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;67273:1;67253:22;;:8;:22;;;67245:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67340:35;;;;;;;;67352:8;67340:35;;;;;;67362:12;67340:35;;;;;67318:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67051:332;;:::o;27166:282::-;27231:4;27287:7;27268:15;:13;:15::i;:::-;:26;;:66;;;;;27321:13;;27311:7;:23;27268:66;:153;;;;;27420:1;11174:8;27372:17;:26;27390:7;27372:26;;;;;;;;;;;;:44;:49;27268:153;27248:173;;27166:282;;;:::o;56969:419::-;57208:1;55490:42;57160:45;;;:49;57156:225;;;55490:42;57231;;;57282:4;57289:8;57231:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57226:144;;57345:8;57326:28;;;;;;;;;;;:::i;:::-;;;;;;;;57226:144;57156:225;56969:419;:::o;25228:408::-;25317:13;25333:16;25341:7;25333;:16::i;:::-;25317:32;;25389:5;25366:28;;:19;:17;:19::i;:::-;:28;;;25362:175;;25414:44;25431:5;25438:19;:17;:19::i;:::-;25414:16;:44::i;:::-;25409:128;;25486:35;;;;;;;;;;;;;;25409:128;25362:175;25582:2;25549:15;:24;25565:7;25549:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25620:7;25616:2;25600:28;;25609:5;25600:28;;;;;;;;;;;;25306:330;25228:408;;:::o;79458:203::-;79557:7;79633;79642;79622:28;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79612:39;;;;;;79599:53;;;;;;;;:::i;:::-;;;;;;;;;;;;;79589:64;;;;;;79582:71;;79458:203;;;;:::o;79256:194::-;79361:4;79390:52;79409:5;79416:19;;79437:4;79390:18;:52::i;:::-;79383:59;;79256:194;;;;:::o;43306:112::-;43383:27;43393:2;43397:8;43383:27;;;;;;;;;;;;:9;:27::i;:::-;43306:112;;:::o;15476:296::-;15531:7;15738:15;:13;:15::i;:::-;15722:13;;:31;15715:38;;15476:296;:::o;78835:101::-;78900:7;78835:101;:::o;29434:2825::-;29576:27;29606;29625:7;29606:18;:27::i;:::-;29576:57;;29691:4;29650:45;;29666:19;29650:45;;;29646:86;;29704:28;;;;;;;;;;;;;;29646:86;29746:27;29775:23;29802:35;29829:7;29802:26;:35::i;:::-;29745:92;;;;29937:68;29962:15;29979:4;29985:19;:17;:19::i;:::-;29937:24;:68::i;:::-;29932:180;;30025:43;30042:4;30048:19;:17;:19::i;:::-;30025:16;:43::i;:::-;30020:92;;30077:35;;;;;;;;;;;;;;30020:92;29932:180;30143:1;30129:16;;:2;:16;;;30125:52;;30154:23;;;;;;;;;;;;;;30125:52;30190:43;30212:4;30218:2;30222:7;30231:1;30190:21;:43::i;:::-;30326:15;30323:160;;;30466:1;30445:19;30438:30;30323:160;30863:18;:24;30882:4;30863:24;;;;;;;;;;;;;;;;30861:26;;;;;;;;;;;;30932:18;:22;30951:2;30932:22;;;;;;;;;;;;;;;;30930:24;;;;;;;;;;;31254:146;31291:2;31340:45;31355:4;31361:2;31365:19;31340:14;:45::i;:::-;11454:8;31312:73;31254:18;:146::i;:::-;31225:17;:26;31243:7;31225:26;;;;;;;;;;;:175;;;;31571:1;11454:8;31520:19;:47;:52;31516:627;;31593:19;31625:1;31615:7;:11;31593:33;;31782:1;31748:17;:30;31766:11;31748:30;;;;;;;;;;;;:35;31744:384;;31886:13;;31871:11;:28;31867:242;;32066:19;32033:17;:30;32051:11;32033:30;;;;;;;;;;;:52;;;;31867:242;31744:384;31574:569;31516:627;32190:7;32186:2;32171:27;;32180:4;32171:27;;;;;;;;;;;;32209:42;32230:4;32236:2;32240:7;32249:1;32209:20;:42::i;:::-;29565:2694;;;29434:2825;;;:::o;16830:178::-;16891:7;10398:13;10663:3;16919:18;:25;16938:5;16919:25;;;;;;;;;;;;;;;;:50;;16918:82;16911:89;;16830:178;;;:::o;66683:97::-;66741:6;66767:5;66760:12;;66683:97;:::o;32355:193::-;32501:39;32518:4;32524:2;32528:7;32501:39;;;;;;;;;;;;:16;:39::i;:::-;32355:193;;;:::o;44003:3081::-;44083:27;44113;44132:7;44113:18;:27::i;:::-;44083:57;;44153:12;44184:19;44153:52;;44219:27;44248:23;44275:35;44302:7;44275:26;:35::i;:::-;44218:92;;;;44327:13;44323:316;;;44448:68;44473:15;44490:4;44496:19;:17;:19::i;:::-;44448:24;:68::i;:::-;44443:184;;44540:43;44557:4;44563:19;:17;:19::i;:::-;44540:16;:43::i;:::-;44535:92;;44592:35;;;;;;;;;;;;;;44535:92;44443:184;44323:316;44651:51;44673:4;44687:1;44691:7;44700:1;44651:21;:51::i;:::-;44795:15;44792:160;;;44935:1;44914:19;44907:30;44792:160;45613:1;10663:3;45583:1;:26;;45582:32;45554:18;:24;45573:4;45554:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45881:176;45918:4;45989:53;46004:4;46018:1;46022:19;45989:14;:53::i;:::-;11454:8;11174;45942:43;45941:101;45881:18;:176::i;:::-;45852:17;:26;45870:7;45852:26;;;;;;;;;;;:205;;;;46228:1;11454:8;46177:19;:47;:52;46173:627;;46250:19;46282:1;46272:7;:11;46250:33;;46439:1;46405:17;:30;46423:11;46405:30;;;;;;;;;;;;:35;46401:384;;46543:13;;46528:11;:28;46524:242;;46723:19;46690:17;:30;46708:11;46690:30;;;;;;;;;;;:52;;;;46524:242;46401:384;46231:569;46173:627;46855:7;46851:1;46828:35;;46837:4;46828:35;;;;;;;;;;;;46874:50;46895:4;46909:1;46913:7;46922:1;46874:20;:50::i;:::-;47051:12;;:14;;;;;;;;;;;;;44072:3012;;;;44003:3081;;:::o;21852:1275::-;21919:7;21939:12;21954:7;21939:22;;22022:4;22003:15;:13;:15::i;:::-;:23;21999:1061;;22056:13;;22049:4;:20;22045:1015;;;22094:14;22111:17;:23;22129:4;22111:23;;;;;;;;;;;;22094:40;;22228:1;11174:8;22200:6;:24;:29;22196:845;;22865:113;22882:1;22872:6;:11;22865:113;;22925:17;:25;22943:6;;;;;;;22925:25;;;;;;;;;;;;22916:34;;22865:113;;;23011:6;23004:13;;;;;;22196:845;22071:989;22045:1015;21999:1061;23088:31;;;;;;;;;;;;;;21852:1275;;;;:::o;61261:191::-;61335:16;61354:6;;;;;;;;;;;61335:25;;61380:8;61371:6;;:17;;;;;;;;;;;;;;;;;;61435:8;61404:40;;61425:8;61404:40;;;;;;;;;;;;61324:128;61261:191;:::o;15854:102::-;15909:7;15936:12;;15929:19;;15854:102;:::o;26353:234::-;26500:8;26448:18;:39;26467:19;:17;:19::i;:::-;26448:39;;;;;;;;;;;;;;;:49;26488:8;26448:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26560:8;26524:55;;26539:19;:17;:19::i;:::-;26524:55;;;26570:8;26524:55;;;;;;:::i;:::-;;;;;;;;26353:234;;:::o;33146:407::-;33321:31;33334:4;33340:2;33344:7;33321:12;:31::i;:::-;33385:1;33367:2;:14;;;:19;33363:183;;33406:56;33437:4;33443:2;33447:7;33456:5;33406:30;:56::i;:::-;33401:145;;33490:40;;;;;;;;;;;;;;33401:145;33363:183;33146:407;;;;:::o;49681:1745::-;49746:17;50180:4;50173;50167:11;50163:22;50272:1;50266:4;50259:15;50347:4;50344:1;50340:12;50333:19;;50429:1;50424:3;50417:14;50533:3;50772:5;50754:428;50780:1;50754:428;;;50820:1;50815:3;50811:11;50804:18;;50991:2;50985:4;50981:13;50977:2;50973:22;50968:3;50960:36;51085:2;51079:4;51075:13;51067:21;;51152:4;50754:428;51142:25;50754:428;50758:21;51221:3;51216;51212:13;51336:4;51331:3;51327:14;51320:21;;51401:6;51396:3;51389:19;49785:1634;;;49681:1745;;;:::o;16554:178::-;16615:7;10398:13;10536:2;16643:18;:25;16662:5;16643:25;;;;;;;;;;;;;;;;:50;;16642:82;16635:89;;16554:178;;;:::o;63241:157::-;63326:4;63365:25;63350:40;;;:11;:40;;;;63343:47;;63241:157;;;:::o;58545:98::-;58598:7;58625:10;58618:17;;58545:98;:::o;49474:105::-;49534:7;49561:10;49554:17;;49474:105;:::o;69678:190::-;69803:4;69856;69827:25;69840:5;69847:4;69827:12;:25::i;:::-;:33;69820:40;;69678:190;;;;;:::o;42533:689::-;42664:19;42670:2;42674:8;42664:5;:19::i;:::-;42743:1;42725:2;:14;;;:19;42721:483;;42765:11;42779:13;;42765:27;;42811:13;42833:8;42827:3;:14;42811:30;;42860:233;42891:62;42930:1;42934:2;42938:7;;;;;;42947:5;42891:30;:62::i;:::-;42886:167;;42989:40;;;;;;;;;;;;;;42886:167;43088:3;43080:5;:11;42860:233;;43175:3;43158:13;;:20;43154:34;;43180:8;;;43154:34;42746:458;;42721:483;42533:689;;;:::o;28329:485::-;28431:27;28460:23;28501:38;28542:15;:24;28558:7;28542:24;;;;;;;;;;;28501:65;;28719:18;28696:41;;28776:19;28770:26;28751:45;;28681:126;28329:485;;;:::o;27557:659::-;27706:11;27871:16;27864:5;27860:28;27851:37;;28031:16;28020:9;28016:32;28003:45;;28181:15;28170:9;28167:30;28159:5;28148:9;28145:20;28142:56;28132:66;;27557:659;;;;;:::o;34215:159::-;;;;;:::o;48783:311::-;48918:7;48938:16;11578:3;48964:19;:41;;48938:68;;11578:3;49032:31;49043:4;49049:2;49053:9;49032:10;:31::i;:::-;49024:40;;:62;;49017:69;;;48783:311;;;;;:::o;23675:450::-;23755:14;23923:16;23916:5;23912:28;23903:37;;24100:5;24086:11;24061:23;24057:41;24054:52;24047:5;24044:63;24034:73;;23675:450;;;;:::o;35039:158::-;;;;;:::o;35637:716::-;35800:4;35846:2;35821:45;;;35867:19;:17;:19::i;:::-;35888:4;35894:7;35903:5;35821:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35817:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36121:1;36104:6;:13;:18;36100:235;;36150:40;;;;;;;;;;;;;;36100:235;36293:6;36287:13;36278:6;36274:2;36270:15;36263:38;35817:529;35990:54;;;35980:64;;;:6;:64;;;;35973:71;;;35637:716;;;;;;:::o;70545:296::-;70628:7;70648:20;70671:4;70648:27;;70691:9;70686:118;70710:5;:12;70706:1;:16;70686:118;;;70759:33;70769:12;70783:5;70789:1;70783:8;;;;;;;;:::i;:::-;;;;;;;;70759:9;:33::i;:::-;70744:48;;70724:3;;;;;:::i;:::-;;;;70686:118;;;;70821:12;70814:19;;;70545:296;;;;:::o;36815:2966::-;36888:20;36911:13;;36888:36;;36951:1;36939:8;:13;36935:44;;36961:18;;;;;;;;;;;;;;36935:44;36992:61;37022:1;37026:2;37030:12;37044:8;36992:21;:61::i;:::-;37536:1;10536:2;37506:1;:26;;37505:32;37493:8;:45;37467:18;:22;37486:2;37467:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37815:139;37852:2;37906:33;37929:1;37933:2;37937:1;37906:14;:33::i;:::-;37873:30;37894:8;37873:20;:30::i;:::-;:66;37815:18;:139::i;:::-;37781:17;:31;37799:12;37781:31;;;;;;;;;;;:173;;;;37971:16;38002:11;38031:8;38016:12;:23;38002:37;;38552:16;38548:2;38544:25;38532:37;;38924:12;38884:8;38843:1;38781:25;38722:1;38661;38634:335;39295:1;39281:12;39277:20;39235:346;39336:3;39327:7;39324:16;39235:346;;39554:7;39544:8;39541:1;39514:25;39511:1;39508;39503:59;39389:1;39380:7;39376:15;39365:26;;39235:346;;;39239:77;39626:1;39614:8;:13;39610:45;;39636:19;;;;;;;;;;;;;;39610:45;39688:3;39672:13;:19;;;;37241:2462;;39713:60;39742:1;39746:2;39750:12;39764:8;39713:20;:60::i;:::-;36877:2904;36815:2966;;:::o;48484:147::-;48621:6;48484:147;;;;;:::o;77585:149::-;77648:7;77679:1;77675;:5;:51;;77706:20;77721:1;77724;77706:14;:20::i;:::-;77675:51;;;77683:20;77698:1;77701;77683:14;:20::i;:::-;77675:51;77668:58;;77585:149;;;;:::o;24227:324::-;24297:14;24530:1;24520:8;24517:15;24491:24;24487:46;24477:56;;24227:324;;;:::o;77742:268::-;77810:13;77917:1;77911:4;77904:15;77946:1;77940:4;77933:15;77987:4;77981;77971:21;77962:30;;77742:268;;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:117::-;5861:1;5858;5851:12;5875:117;5984:1;5981;5974:12;5998:117;6107:1;6104;6097:12;6138:568;6211:8;6221:6;6271:3;6264:4;6256:6;6252:17;6248:27;6238:122;;6279:79;;:::i;:::-;6238:122;6392:6;6379:20;6369:30;;6422:18;6414:6;6411:30;6408:117;;;6444:79;;:::i;:::-;6408:117;6558:4;6550:6;6546:17;6534:29;;6612:3;6604:4;6596:6;6592:17;6582:8;6578:32;6575:41;6572:128;;;6619:79;;:::i;:::-;6572:128;6138:568;;;;;:::o;6712:849::-;6816:6;6824;6832;6840;6889:2;6877:9;6868:7;6864:23;6860:32;6857:119;;;6895:79;;:::i;:::-;6857:119;7015:1;7040:53;7085:7;7076:6;7065:9;7061:22;7040:53;:::i;:::-;7030:63;;6986:117;7142:2;7168:53;7213:7;7204:6;7193:9;7189:22;7168:53;:::i;:::-;7158:63;;7113:118;7298:2;7287:9;7283:18;7270:32;7329:18;7321:6;7318:30;7315:117;;;7351:79;;:::i;:::-;7315:117;7464:80;7536:7;7527:6;7516:9;7512:22;7464:80;:::i;:::-;7446:98;;;;7241:313;6712:849;;;;;;;:::o;7567:118::-;7654:24;7672:5;7654:24;:::i;:::-;7649:3;7642:37;7567:118;;:::o;7691:222::-;7784:4;7822:2;7811:9;7807:18;7799:26;;7835:71;7903:1;7892:9;7888:17;7879:6;7835:71;:::i;:::-;7691:222;;;;:::o;7919:619::-;7996:6;8004;8012;8061:2;8049:9;8040:7;8036:23;8032:32;8029:119;;;8067:79;;:::i;:::-;8029:119;8187:1;8212:53;8257:7;8248:6;8237:9;8233:22;8212:53;:::i;:::-;8202:63;;8158:117;8314:2;8340:53;8385:7;8376:6;8365:9;8361:22;8340:53;:::i;:::-;8330:63;;8285:118;8442:2;8468:53;8513:7;8504:6;8493:9;8489:22;8468:53;:::i;:::-;8458:63;;8413:118;7919:619;;;;;:::o;8544:329::-;8603:6;8652:2;8640:9;8631:7;8627:23;8623:32;8620:119;;;8658:79;;:::i;:::-;8620:119;8778:1;8803:53;8848:7;8839:6;8828:9;8824:22;8803:53;:::i;:::-;8793:63;;8749:117;8544:329;;;;:::o;8879:474::-;8947:6;8955;9004:2;8992:9;8983:7;8979:23;8975:32;8972:119;;;9010:79;;:::i;:::-;8972:119;9130:1;9155:53;9200:7;9191:6;9180:9;9176:22;9155:53;:::i;:::-;9145:63;;9101:117;9257:2;9283:53;9328:7;9319:6;9308:9;9304:22;9283:53;:::i;:::-;9273:63;;9228:118;8879:474;;;;;:::o;9359:332::-;9480:4;9518:2;9507:9;9503:18;9495:26;;9531:71;9599:1;9588:9;9584:17;9575:6;9531:71;:::i;:::-;9612:72;9680:2;9669:9;9665:18;9656:6;9612:72;:::i;:::-;9359:332;;;;;:::o;9714:568::-;9787:8;9797:6;9847:3;9840:4;9832:6;9828:17;9824:27;9814:122;;9855:79;;:::i;:::-;9814:122;9968:6;9955:20;9945:30;;9998:18;9990:6;9987:30;9984:117;;;10020:79;;:::i;:::-;9984:117;10134:4;10126:6;10122:17;10110:29;;10188:3;10180:4;10172:6;10168:17;10158:8;10154:32;10151:41;10148:128;;;10195:79;;:::i;:::-;10148:128;9714:568;;;;;:::o;10288:559::-;10374:6;10382;10431:2;10419:9;10410:7;10406:23;10402:32;10399:119;;;10437:79;;:::i;:::-;10399:119;10585:1;10574:9;10570:17;10557:31;10615:18;10607:6;10604:30;10601:117;;;10637:79;;:::i;:::-;10601:117;10750:80;10822:7;10813:6;10802:9;10798:22;10750:80;:::i;:::-;10732:98;;;;10528:312;10288:559;;;;;:::o;10853:60::-;10881:3;10902:5;10895:12;;10853:60;;;:::o;10919:142::-;10969:9;11002:53;11020:34;11029:24;11047:5;11029:24;:::i;:::-;11020:34;:::i;:::-;11002:53;:::i;:::-;10989:66;;10919:142;;;:::o;11067:126::-;11117:9;11150:37;11181:5;11150:37;:::i;:::-;11137:50;;11067:126;;;:::o;11199:158::-;11281:9;11314:37;11345:5;11314:37;:::i;:::-;11301:50;;11199:158;;;:::o;11363:195::-;11482:69;11545:5;11482:69;:::i;:::-;11477:3;11470:82;11363:195;;:::o;11564:286::-;11689:4;11727:2;11716:9;11712:18;11704:26;;11740:103;11840:1;11829:9;11825:17;11816:6;11740:103;:::i;:::-;11564:286;;;;:::o;11856:114::-;11923:6;11957:5;11951:12;11941:22;;11856:114;;;:::o;11976:184::-;12075:11;12109:6;12104:3;12097:19;12149:4;12144:3;12140:14;12125:29;;11976:184;;;;:::o;12166:132::-;12233:4;12256:3;12248:11;;12286:4;12281:3;12277:14;12269:22;;12166:132;;;:::o;12304:108::-;12381:24;12399:5;12381:24;:::i;:::-;12376:3;12369:37;12304:108;;:::o;12418:179::-;12487:10;12508:46;12550:3;12542:6;12508:46;:::i;:::-;12586:4;12581:3;12577:14;12563:28;;12418:179;;;;:::o;12603:113::-;12673:4;12705;12700:3;12696:14;12688:22;;12603:113;;;:::o;12752:732::-;12871:3;12900:54;12948:5;12900:54;:::i;:::-;12970:86;13049:6;13044:3;12970:86;:::i;:::-;12963:93;;13080:56;13130:5;13080:56;:::i;:::-;13159:7;13190:1;13175:284;13200:6;13197:1;13194:13;13175:284;;;13276:6;13270:13;13303:63;13362:3;13347:13;13303:63;:::i;:::-;13296:70;;13389:60;13442:6;13389:60;:::i;:::-;13379:70;;13235:224;13222:1;13219;13215:9;13210:14;;13175:284;;;13179:14;13475:3;13468:10;;12876:608;;;12752:732;;;;:::o;13490:373::-;13633:4;13671:2;13660:9;13656:18;13648:26;;13720:9;13714:4;13710:20;13706:1;13695:9;13691:17;13684:47;13748:108;13851:4;13842:6;13748:108;:::i;:::-;13740:116;;13490:373;;;;:::o;13869:113::-;13956:1;13949:5;13946:12;13936:40;;13972:1;13969;13962:12;13936:40;13869:113;:::o;13988:167::-;14048:5;14086:6;14073:20;14064:29;;14102:47;14143:5;14102:47;:::i;:::-;13988:167;;;;:::o;14161:357::-;14234:6;14283:2;14271:9;14262:7;14258:23;14254:32;14251:119;;;14289:79;;:::i;:::-;14251:119;14409:1;14434:67;14493:7;14484:6;14473:9;14469:22;14434:67;:::i;:::-;14424:77;;14380:131;14161:357;;;;:::o;14524:116::-;14594:21;14609:5;14594:21;:::i;:::-;14587:5;14584:32;14574:60;;14630:1;14627;14620:12;14574:60;14524:116;:::o;14646:133::-;14689:5;14727:6;14714:20;14705:29;;14743:30;14767:5;14743:30;:::i;:::-;14646:133;;;;:::o;14785:468::-;14850:6;14858;14907:2;14895:9;14886:7;14882:23;14878:32;14875:119;;;14913:79;;:::i;:::-;14875:119;15033:1;15058:53;15103:7;15094:6;15083:9;15079:22;15058:53;:::i;:::-;15048:63;;15004:117;15160:2;15186:50;15228:7;15219:6;15208:9;15204:22;15186:50;:::i;:::-;15176:60;;15131:115;14785:468;;;;;:::o;15259:77::-;15296:7;15325:5;15314:16;;15259:77;;;:::o;15342:118::-;15429:24;15447:5;15429:24;:::i;:::-;15424:3;15417:37;15342:118;;:::o;15466:222::-;15559:4;15597:2;15586:9;15582:18;15574:26;;15610:71;15678:1;15667:9;15663:17;15654:6;15610:71;:::i;:::-;15466:222;;;;:::o;15694:117::-;15803:1;15800;15793:12;15817:180;15865:77;15862:1;15855:88;15962:4;15959:1;15952:15;15986:4;15983:1;15976:15;16003:281;16086:27;16108:4;16086:27;:::i;:::-;16078:6;16074:40;16216:6;16204:10;16201:22;16180:18;16168:10;16165:34;16162:62;16159:88;;;16227:18;;:::i;:::-;16159:88;16267:10;16263:2;16256:22;16046:238;16003:281;;:::o;16290:129::-;16324:6;16351:20;;:::i;:::-;16341:30;;16380:33;16408:4;16400:6;16380:33;:::i;:::-;16290:129;;;:::o;16425:307::-;16486:4;16576:18;16568:6;16565:30;16562:56;;;16598:18;;:::i;:::-;16562:56;16636:29;16658:6;16636:29;:::i;:::-;16628:37;;16720:4;16714;16710:15;16702:23;;16425:307;;;:::o;16738:146::-;16835:6;16830:3;16825;16812:30;16876:1;16867:6;16862:3;16858:16;16851:27;16738:146;;;:::o;16890:423::-;16967:5;16992:65;17008:48;17049:6;17008:48;:::i;:::-;16992:65;:::i;:::-;16983:74;;17080:6;17073:5;17066:21;17118:4;17111:5;17107:16;17156:3;17147:6;17142:3;17138:16;17135:25;17132:112;;;17163:79;;:::i;:::-;17132:112;17253:54;17300:6;17295:3;17290;17253:54;:::i;:::-;16973:340;16890:423;;;;;:::o;17332:338::-;17387:5;17436:3;17429:4;17421:6;17417:17;17413:27;17403:122;;17444:79;;:::i;:::-;17403:122;17561:6;17548:20;17586:78;17660:3;17652:6;17645:4;17637:6;17633:17;17586:78;:::i;:::-;17577:87;;17393:277;17332:338;;;;:::o;17676:943::-;17771:6;17779;17787;17795;17844:3;17832:9;17823:7;17819:23;17815:33;17812:120;;;17851:79;;:::i;:::-;17812:120;17971:1;17996:53;18041:7;18032:6;18021:9;18017:22;17996:53;:::i;:::-;17986:63;;17942:117;18098:2;18124:53;18169:7;18160:6;18149:9;18145:22;18124:53;:::i;:::-;18114:63;;18069:118;18226:2;18252:53;18297:7;18288:6;18277:9;18273:22;18252:53;:::i;:::-;18242:63;;18197:118;18382:2;18371:9;18367:18;18354:32;18413:18;18405:6;18402:30;18399:117;;;18435:79;;:::i;:::-;18399:117;18540:62;18594:7;18585:6;18574:9;18570:22;18540:62;:::i;:::-;18530:72;;18325:287;17676:943;;;;;;;:::o;18625:122::-;18698:24;18716:5;18698:24;:::i;:::-;18691:5;18688:35;18678:63;;18737:1;18734;18727:12;18678:63;18625:122;:::o;18753:139::-;18799:5;18837:6;18824:20;18815:29;;18853:33;18880:5;18853:33;:::i;:::-;18753:139;;;;:::o;18898:329::-;18957:6;19006:2;18994:9;18985:7;18981:23;18977:32;18974:119;;;19012:79;;:::i;:::-;18974:119;19132:1;19157:53;19202:7;19193:6;19182:9;19178:22;19157:53;:::i;:::-;19147:63;;19103:117;18898:329;;;;:::o;19233:180::-;19281:77;19278:1;19271:88;19378:4;19375:1;19368:15;19402:4;19399:1;19392:15;19419:119;19506:1;19499:5;19496:12;19486:46;;19512:18;;:::i;:::-;19486:46;19419:119;:::o;19544:139::-;19595:7;19624:5;19613:16;;19630:47;19671:5;19630:47;:::i;:::-;19544:139;;;:::o;19689:::-;19751:9;19784:38;19816:5;19784:38;:::i;:::-;19771:51;;19689:139;;;:::o;19834:155::-;19933:49;19976:5;19933:49;:::i;:::-;19928:3;19921:62;19834:155;;:::o;19995:246::-;20100:4;20138:2;20127:9;20123:18;20115:26;;20151:83;20231:1;20220:9;20216:17;20207:6;20151:83;:::i;:::-;19995:246;;;;:::o;20247:308::-;20309:4;20399:18;20391:6;20388:30;20385:56;;;20421:18;;:::i;:::-;20385:56;20459:29;20481:6;20459:29;:::i;:::-;20451:37;;20543:4;20537;20533:15;20525:23;;20247:308;;;:::o;20561:425::-;20639:5;20664:66;20680:49;20722:6;20680:49;:::i;:::-;20664:66;:::i;:::-;20655:75;;20753:6;20746:5;20739:21;20791:4;20784:5;20780:16;20829:3;20820:6;20815:3;20811:16;20808:25;20805:112;;;20836:79;;:::i;:::-;20805:112;20926:54;20973:6;20968:3;20963;20926:54;:::i;:::-;20645:341;20561:425;;;;;:::o;21006:340::-;21062:5;21111:3;21104:4;21096:6;21092:17;21088:27;21078:122;;21119:79;;:::i;:::-;21078:122;21236:6;21223:20;21261:79;21336:3;21328:6;21321:4;21313:6;21309:17;21261:79;:::i;:::-;21252:88;;21068:278;21006:340;;;;:::o;21352:509::-;21421:6;21470:2;21458:9;21449:7;21445:23;21441:32;21438:119;;;21476:79;;:::i;:::-;21438:119;21624:1;21613:9;21609:17;21596:31;21654:18;21646:6;21643:30;21640:117;;;21676:79;;:::i;:::-;21640:117;21781:63;21836:7;21827:6;21816:9;21812:22;21781:63;:::i;:::-;21771:73;;21567:287;21352:509;;;;:::o;21867:474::-;21935:6;21943;21992:2;21980:9;21971:7;21967:23;21963:32;21960:119;;;21998:79;;:::i;:::-;21960:119;22118:1;22143:53;22188:7;22179:6;22168:9;22164:22;22143:53;:::i;:::-;22133:63;;22089:117;22245:2;22271:53;22316:7;22307:6;22296:9;22292:22;22271:53;:::i;:::-;22261:63;;22216:118;21867:474;;;;;:::o;22347:::-;22415:6;22423;22472:2;22460:9;22451:7;22447:23;22443:32;22440:119;;;22478:79;;:::i;:::-;22440:119;22598:1;22623:53;22668:7;22659:6;22648:9;22644:22;22623:53;:::i;:::-;22613:63;;22569:117;22725:2;22751:53;22796:7;22787:6;22776:9;22772:22;22751:53;:::i;:::-;22741:63;;22696:118;22347:474;;;;;:::o;22827:323::-;22883:6;22932:2;22920:9;22911:7;22907:23;22903:32;22900:119;;;22938:79;;:::i;:::-;22900:119;23058:1;23083:50;23125:7;23116:6;23105:9;23101:22;23083:50;:::i;:::-;23073:60;;23029:114;22827:323;;;;:::o;23156:180::-;23204:77;23201:1;23194:88;23301:4;23298:1;23291:15;23325:4;23322:1;23315:15;23342:320;23386:6;23423:1;23417:4;23413:12;23403:22;;23470:1;23464:4;23460:12;23491:18;23481:81;;23547:4;23539:6;23535:17;23525:27;;23481:81;23609:2;23601:6;23598:14;23578:18;23575:38;23572:84;;23628:18;;:::i;:::-;23572:84;23393:269;23342:320;;;:::o;23668:169::-;23808:21;23804:1;23796:6;23792:14;23785:45;23668:169;:::o;23843:366::-;23985:3;24006:67;24070:2;24065:3;24006:67;:::i;:::-;23999:74;;24082:93;24171:3;24082:93;:::i;:::-;24200:2;24195:3;24191:12;24184:19;;23843:366;;;:::o;24215:419::-;24381:4;24419:2;24408:9;24404:18;24396:26;;24468:9;24462:4;24458:20;24454:1;24443:9;24439:17;24432:47;24496:131;24622:4;24496:131;:::i;:::-;24488:139;;24215:419;;;:::o;24640:180::-;24688:77;24685:1;24678:88;24785:4;24782:1;24775:15;24809:4;24806:1;24799:15;24826:191;24866:3;24885:20;24903:1;24885:20;:::i;:::-;24880:25;;24919:20;24937:1;24919:20;:::i;:::-;24914:25;;24962:1;24959;24955:9;24948:16;;24983:3;24980:1;24977:10;24974:36;;;24990:18;;:::i;:::-;24974:36;24826:191;;;;:::o;25023:169::-;25163:21;25159:1;25151:6;25147:14;25140:45;25023:169;:::o;25198:366::-;25340:3;25361:67;25425:2;25420:3;25361:67;:::i;:::-;25354:74;;25437:93;25526:3;25437:93;:::i;:::-;25555:2;25550:3;25546:12;25539:19;;25198:366;;;:::o;25570:419::-;25736:4;25774:2;25763:9;25759:18;25751:26;;25823:9;25817:4;25813:20;25809:1;25798:9;25794:17;25787:47;25851:131;25977:4;25851:131;:::i;:::-;25843:139;;25570:419;;;:::o;25995:176::-;26135:28;26131:1;26123:6;26119:14;26112:52;25995:176;:::o;26177:366::-;26319:3;26340:67;26404:2;26399:3;26340:67;:::i;:::-;26333:74;;26416:93;26505:3;26416:93;:::i;:::-;26534:2;26529:3;26525:12;26518:19;;26177:366;;;:::o;26549:419::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:131;26956:4;26830:131;:::i;:::-;26822:139;;26549:419;;;:::o;26974:163::-;27114:15;27110:1;27102:6;27098:14;27091:39;26974:163;:::o;27143:366::-;27285:3;27306:67;27370:2;27365:3;27306:67;:::i;:::-;27299:74;;27382:93;27471:3;27382:93;:::i;:::-;27500:2;27495:3;27491:12;27484:19;;27143:366;;;:::o;27515:419::-;27681:4;27719:2;27708:9;27704:18;27696:26;;27768:9;27762:4;27758:20;27754:1;27743:9;27739:17;27732:47;27796:131;27922:4;27796:131;:::i;:::-;27788:139;;27515:419;;;:::o;27940:181::-;28080:33;28076:1;28068:6;28064:14;28057:57;27940:181;:::o;28127:366::-;28269:3;28290:67;28354:2;28349:3;28290:67;:::i;:::-;28283:74;;28366:93;28455:3;28366:93;:::i;:::-;28484:2;28479:3;28475:12;28468:19;;28127:366;;;:::o;28499:419::-;28665:4;28703:2;28692:9;28688:18;28680:26;;28752:9;28746:4;28742:20;28738:1;28727:9;28723:17;28716:47;28780:131;28906:4;28780:131;:::i;:::-;28772:139;;28499:419;;;:::o;28924:228::-;29064:34;29060:1;29052:6;29048:14;29041:58;29133:11;29128:2;29120:6;29116:15;29109:36;28924:228;:::o;29158:366::-;29300:3;29321:67;29385:2;29380:3;29321:67;:::i;:::-;29314:74;;29397:93;29486:3;29397:93;:::i;:::-;29515:2;29510:3;29506:12;29499:19;;29158:366;;;:::o;29530:419::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:410::-;29995:7;30018:20;30036:1;30018:20;:::i;:::-;30013:25;;30052:20;30070:1;30052:20;:::i;:::-;30047:25;;30107:1;30104;30100:9;30129:30;30147:11;30129:30;:::i;:::-;30118:41;;30308:1;30299:7;30295:15;30292:1;30289:22;30269:1;30262:9;30242:83;30219:139;;30338:18;;:::i;:::-;30219:139;30003:362;29955:410;;;;:::o;30371:168::-;30511:20;30507:1;30499:6;30495:14;30488:44;30371:168;:::o;30545:366::-;30687:3;30708:67;30772:2;30767:3;30708:67;:::i;:::-;30701:74;;30784:93;30873:3;30784:93;:::i;:::-;30902:2;30897:3;30893:12;30886:19;;30545:366;;;:::o;30917:419::-;31083:4;31121:2;31110:9;31106:18;31098:26;;31170:9;31164:4;31160:20;31156:1;31145:9;31141:17;31134:47;31198:131;31324:4;31198:131;:::i;:::-;31190:139;;30917:419;;;:::o;31342:180::-;31390:77;31387:1;31380:88;31487:4;31484:1;31477:15;31511:4;31508:1;31501:15;31528:185;31568:1;31585:20;31603:1;31585:20;:::i;:::-;31580:25;;31619:20;31637:1;31619:20;:::i;:::-;31614:25;;31658:1;31648:35;;31663:18;;:::i;:::-;31648:35;31705:1;31702;31698:9;31693:14;;31528:185;;;;:::o;31719:169::-;31859:21;31855:1;31847:6;31843:14;31836:45;31719:169;:::o;31894:366::-;32036:3;32057:67;32121:2;32116:3;32057:67;:::i;:::-;32050:74;;32133:93;32222:3;32133:93;:::i;:::-;32251:2;32246:3;32242:12;32235:19;;31894:366;;;:::o;32266:419::-;32432:4;32470:2;32459:9;32455:18;32447:26;;32519:9;32513:4;32509:20;32505:1;32494:9;32490:17;32483:47;32547:131;32673:4;32547:131;:::i;:::-;32539:139;;32266:419;;;:::o;32691:180::-;32739:77;32736:1;32729:88;32836:4;32833:1;32826:15;32860:4;32857:1;32850:15;32877:233;32916:3;32939:24;32957:5;32939:24;:::i;:::-;32930:33;;32985:66;32978:5;32975:77;32972:103;;33055:18;;:::i;:::-;32972:103;33102:1;33095:5;33091:13;33084:20;;32877:233;;;:::o;33116:147::-;33217:11;33254:3;33239:18;;33116:147;;;;:::o;33269:114::-;;:::o;33389:398::-;33548:3;33569:83;33650:1;33645:3;33569:83;:::i;:::-;33562:90;;33661:93;33750:3;33661:93;:::i;:::-;33779:1;33774:3;33770:11;33763:18;;33389:398;;;:::o;33793:379::-;33977:3;33999:147;34142:3;33999:147;:::i;:::-;33992:154;;34163:3;34156:10;;33793:379;;;:::o;34178:165::-;34318:17;34314:1;34306:6;34302:14;34295:41;34178:165;:::o;34349:366::-;34491:3;34512:67;34576:2;34571:3;34512:67;:::i;:::-;34505:74;;34588:93;34677:3;34588:93;:::i;:::-;34706:2;34701:3;34697:12;34690:19;;34349:366;;;:::o;34721:419::-;34887:4;34925:2;34914:9;34910:18;34902:26;;34974:9;34968:4;34964:20;34960:1;34949:9;34945:17;34938:47;35002:131;35128:4;35002:131;:::i;:::-;34994:139;;34721:419;;;:::o;35146:182::-;35286:34;35282:1;35274:6;35270:14;35263:58;35146:182;:::o;35334:366::-;35476:3;35497:67;35561:2;35556:3;35497:67;:::i;:::-;35490:74;;35573:93;35662:3;35573:93;:::i;:::-;35691:2;35686:3;35682:12;35675:19;;35334:366;;;:::o;35706:419::-;35872:4;35910:2;35899:9;35895:18;35887:26;;35959:9;35953:4;35949:20;35945:1;35934:9;35930:17;35923:47;35987:131;36113:4;35987:131;:::i;:::-;35979:139;;35706:419;;;:::o;36131:227::-;36271:34;36267:1;36259:6;36255:14;36248:58;36340:10;36335:2;36327:6;36323:15;36316:35;36131:227;:::o;36364:366::-;36506:3;36527:67;36591:2;36586:3;36527:67;:::i;:::-;36520:74;;36603:93;36692:3;36603:93;:::i;:::-;36721:2;36716:3;36712:12;36705:19;;36364:366;;;:::o;36736:419::-;36902:4;36940:2;36929:9;36925:18;36917:26;;36989:9;36983:4;36979:20;36975:1;36964:9;36960:17;36953:47;37017:131;37143:4;37017:131;:::i;:::-;37009:139;;36736:419;;;:::o;37161:148::-;37263:11;37300:3;37285:18;;37161:148;;;;:::o;37315:141::-;37364:4;37387:3;37379:11;;37410:3;37407:1;37400:14;37444:4;37441:1;37431:18;37423:26;;37315:141;;;:::o;37486:874::-;37589:3;37626:5;37620:12;37655:36;37681:9;37655:36;:::i;:::-;37707:89;37789:6;37784:3;37707:89;:::i;:::-;37700:96;;37827:1;37816:9;37812:17;37843:1;37838:166;;;;38018:1;38013:341;;;;37805:549;;37838:166;37922:4;37918:9;37907;37903:25;37898:3;37891:38;37984:6;37977:14;37970:22;37962:6;37958:35;37953:3;37949:45;37942:52;;37838:166;;38013:341;38080:38;38112:5;38080:38;:::i;:::-;38140:1;38154:154;38168:6;38165:1;38162:13;38154:154;;;38242:7;38236:14;38232:1;38227:3;38223:11;38216:35;38292:1;38283:7;38279:15;38268:26;;38190:4;38187:1;38183:12;38178:17;;38154:154;;;38337:6;38332:3;38328:16;38321:23;;38020:334;;37805:549;;37593:767;;37486:874;;;;:::o;38366:390::-;38472:3;38500:39;38533:5;38500:39;:::i;:::-;38555:89;38637:6;38632:3;38555:89;:::i;:::-;38548:96;;38653:65;38711:6;38706:3;38699:4;38692:5;38688:16;38653:65;:::i;:::-;38743:6;38738:3;38734:16;38727:23;;38476:280;38366:390;;;;:::o;38762:155::-;38902:7;38898:1;38890:6;38886:14;38879:31;38762:155;:::o;38923:400::-;39083:3;39104:84;39186:1;39181:3;39104:84;:::i;:::-;39097:91;;39197:93;39286:3;39197:93;:::i;:::-;39315:1;39310:3;39306:11;39299:18;;38923:400;;;:::o;39329:695::-;39607:3;39629:92;39717:3;39708:6;39629:92;:::i;:::-;39622:99;;39738:95;39829:3;39820:6;39738:95;:::i;:::-;39731:102;;39850:148;39994:3;39850:148;:::i;:::-;39843:155;;40015:3;40008:10;;39329:695;;;;;:::o;40030:93::-;40067:6;40114:2;40109;40102:5;40098:14;40094:23;40084:33;;40030:93;;;:::o;40129:107::-;40173:8;40223:5;40217:4;40213:16;40192:37;;40129:107;;;;:::o;40242:393::-;40311:6;40361:1;40349:10;40345:18;40384:97;40414:66;40403:9;40384:97;:::i;:::-;40502:39;40532:8;40521:9;40502:39;:::i;:::-;40490:51;;40574:4;40570:9;40563:5;40559:21;40550:30;;40623:4;40613:8;40609:19;40602:5;40599:30;40589:40;;40318:317;;40242:393;;;;;:::o;40641:142::-;40691:9;40724:53;40742:34;40751:24;40769:5;40751:24;:::i;:::-;40742:34;:::i;:::-;40724:53;:::i;:::-;40711:66;;40641:142;;;:::o;40789:75::-;40832:3;40853:5;40846:12;;40789:75;;;:::o;40870:269::-;40980:39;41011:7;40980:39;:::i;:::-;41041:91;41090:41;41114:16;41090:41;:::i;:::-;41082:6;41075:4;41069:11;41041:91;:::i;:::-;41035:4;41028:105;40946:193;40870:269;;;:::o;41145:73::-;41190:3;41145:73;:::o;41224:189::-;41301:32;;:::i;:::-;41342:65;41400:6;41392;41386:4;41342:65;:::i;:::-;41277:136;41224:189;;:::o;41419:186::-;41479:120;41496:3;41489:5;41486:14;41479:120;;;41550:39;41587:1;41580:5;41550:39;:::i;:::-;41523:1;41516:5;41512:13;41503:22;;41479:120;;;41419:186;;:::o;41611:543::-;41712:2;41707:3;41704:11;41701:446;;;41746:38;41778:5;41746:38;:::i;:::-;41830:29;41848:10;41830:29;:::i;:::-;41820:8;41816:44;42013:2;42001:10;41998:18;41995:49;;;42034:8;42019:23;;41995:49;42057:80;42113:22;42131:3;42113:22;:::i;:::-;42103:8;42099:37;42086:11;42057:80;:::i;:::-;41716:431;;41701:446;41611:543;;;:::o;42160:117::-;42214:8;42264:5;42258:4;42254:16;42233:37;;42160:117;;;;:::o;42283:169::-;42327:6;42360:51;42408:1;42404:6;42396:5;42393:1;42389:13;42360:51;:::i;:::-;42356:56;42441:4;42435;42431:15;42421:25;;42334:118;42283:169;;;;:::o;42457:295::-;42533:4;42679:29;42704:3;42698:4;42679:29;:::i;:::-;42671:37;;42741:3;42738:1;42734:11;42728:4;42725:21;42717:29;;42457:295;;;;:::o;42757:1395::-;42874:37;42907:3;42874:37;:::i;:::-;42976:18;42968:6;42965:30;42962:56;;;42998:18;;:::i;:::-;42962:56;43042:38;43074:4;43068:11;43042:38;:::i;:::-;43127:67;43187:6;43179;43173:4;43127:67;:::i;:::-;43221:1;43245:4;43232:17;;43277:2;43269:6;43266:14;43294:1;43289:618;;;;43951:1;43968:6;43965:77;;;44017:9;44012:3;44008:19;44002:26;43993:35;;43965:77;44068:67;44128:6;44121:5;44068:67;:::i;:::-;44062:4;44055:81;43924:222;43259:887;;43289:618;43341:4;43337:9;43329:6;43325:22;43375:37;43407:4;43375:37;:::i;:::-;43434:1;43448:208;43462:7;43459:1;43456:14;43448:208;;;43541:9;43536:3;43532:19;43526:26;43518:6;43511:42;43592:1;43584:6;43580:14;43570:24;;43639:2;43628:9;43624:18;43611:31;;43485:4;43482:1;43478:12;43473:17;;43448:208;;;43684:6;43675:7;43672:19;43669:179;;;43742:9;43737:3;43733:19;43727:26;43785:48;43827:4;43819:6;43815:17;43804:9;43785:48;:::i;:::-;43777:6;43770:64;43692:156;43669:179;43894:1;43890;43882:6;43878:14;43874:22;43868:4;43861:36;43296:611;;;43259:887;;42849:1303;;;42757:1395;;:::o;44158:225::-;44298:34;44294:1;44286:6;44282:14;44275:58;44367:8;44362:2;44354:6;44350:15;44343:33;44158:225;:::o;44389:366::-;44531:3;44552:67;44616:2;44611:3;44552:67;:::i;:::-;44545:74;;44628:93;44717:3;44628:93;:::i;:::-;44746:2;44741:3;44737:12;44730:19;;44389:366;;;:::o;44761:419::-;44927:4;44965:2;44954:9;44950:18;44942:26;;45014:9;45008:4;45004:20;45000:1;44989:9;44985:17;44978:47;45042:131;45168:4;45042:131;:::i;:::-;45034:139;;44761:419;;;:::o;45186:182::-;45326:34;45322:1;45314:6;45310:14;45303:58;45186:182;:::o;45374:366::-;45516:3;45537:67;45601:2;45596:3;45537:67;:::i;:::-;45530:74;;45613:93;45702:3;45613:93;:::i;:::-;45731:2;45726:3;45722:12;45715:19;;45374:366;;;:::o;45746:419::-;45912:4;45950:2;45939:9;45935:18;45927:26;;45999:9;45993:4;45989:20;45985:1;45974:9;45970:17;45963:47;46027:131;46153:4;46027:131;:::i;:::-;46019:139;;45746:419;;;:::o;46171:229::-;46311:34;46307:1;46299:6;46295:14;46288:58;46380:12;46375:2;46367:6;46363:15;46356:37;46171:229;:::o;46406:366::-;46548:3;46569:67;46633:2;46628:3;46569:67;:::i;:::-;46562:74;;46645:93;46734:3;46645:93;:::i;:::-;46763:2;46758:3;46754:12;46747:19;;46406:366;;;:::o;46778:419::-;46944:4;46982:2;46971:9;46967:18;46959:26;;47031:9;47025:4;47021:20;47017:1;47006:9;47002:17;46995:47;47059:131;47185:4;47059:131;:::i;:::-;47051:139;;46778:419;;;:::o;47203:175::-;47343:27;47339:1;47331:6;47327:14;47320:51;47203:175;:::o;47384:366::-;47526:3;47547:67;47611:2;47606:3;47547:67;:::i;:::-;47540:74;;47623:93;47712:3;47623:93;:::i;:::-;47741:2;47736:3;47732:12;47725:19;;47384:366;;;:::o;47756:419::-;47922:4;47960:2;47949:9;47945:18;47937:26;;48009:9;48003:4;47999:20;47995:1;47984:9;47980:17;47973:47;48037:131;48163:4;48037:131;:::i;:::-;48029:139;;47756:419;;;:::o;48181:332::-;48302:4;48340:2;48329:9;48325:18;48317:26;;48353:71;48421:1;48410:9;48406:17;48397:6;48353:71;:::i;:::-;48434:72;48502:2;48491:9;48487:18;48478:6;48434:72;:::i;:::-;48181:332;;;;;:::o;48519:137::-;48573:5;48604:6;48598:13;48589:22;;48620:30;48644:5;48620:30;:::i;:::-;48519:137;;;;:::o;48662:345::-;48729:6;48778:2;48766:9;48757:7;48753:23;48749:32;48746:119;;;48784:79;;:::i;:::-;48746:119;48904:1;48929:61;48982:7;48973:6;48962:9;48958:22;48929:61;:::i;:::-;48919:71;;48875:125;48662:345;;;;:::o;49013:79::-;49052:7;49081:5;49070:16;;49013:79;;;:::o;49098:157::-;49203:45;49223:24;49241:5;49223:24;:::i;:::-;49203:45;:::i;:::-;49198:3;49191:58;49098:157;;:::o;49261:256::-;49373:3;49388:75;49459:3;49450:6;49388:75;:::i;:::-;49488:2;49483:3;49479:12;49472:19;;49508:3;49501:10;;49261:256;;;;:::o;49523:98::-;49574:6;49608:5;49602:12;49592:22;;49523:98;;;:::o;49627:168::-;49710:11;49744:6;49739:3;49732:19;49784:4;49779:3;49775:14;49760:29;;49627:168;;;;:::o;49801:373::-;49887:3;49915:38;49947:5;49915:38;:::i;:::-;49969:70;50032:6;50027:3;49969:70;:::i;:::-;49962:77;;50048:65;50106:6;50101:3;50094:4;50087:5;50083:16;50048:65;:::i;:::-;50138:29;50160:6;50138:29;:::i;:::-;50133:3;50129:39;50122:46;;49891:283;49801:373;;;;:::o;50180:640::-;50375:4;50413:3;50402:9;50398:19;50390:27;;50427:71;50495:1;50484:9;50480:17;50471:6;50427:71;:::i;:::-;50508:72;50576:2;50565:9;50561:18;50552:6;50508:72;:::i;:::-;50590;50658:2;50647:9;50643:18;50634:6;50590:72;:::i;:::-;50709:9;50703:4;50699:20;50694:2;50683:9;50679:18;50672:48;50737:76;50808:4;50799:6;50737:76;:::i;:::-;50729:84;;50180:640;;;;;;;:::o;50826:141::-;50882:5;50913:6;50907:13;50898:22;;50929:32;50955:5;50929:32;:::i;:::-;50826:141;;;;:::o;50973:349::-;51042:6;51091:2;51079:9;51070:7;51066:23;51062:32;51059:119;;;51097:79;;:::i;:::-;51059:119;51217:1;51242:63;51297:7;51288:6;51277:9;51273:22;51242:63;:::i;:::-;51232:73;;51188:127;50973:349;;;;:::o
Swarm Source
ipfs://f1b8a95691883e4363bfa30078cbb88d853d3f4987938ca2b0f8311a7a2acbdf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.