ERC-721
Overview
Max Total Supply
6,262 MECH
Holders
974
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MECHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GraycraftOmega
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-22 */ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //....................................................................................................................................// //... MMMMMMMMMMM..MMMMMMMMMMMM...MMMMMMMMMMM...MMM......MMM...MMMMMMMMMMM..MMMMMMMMMMMM...MMMMMMMMMMM...MMMMMMMMMMMM..MMMMMMMMMMMM...// //...MMMMMMMMMMMM..MMMMMMMMMMMM..MMMMMMMMMMMMM..MMM......MMM..MMMMMMMMMMMM..MMMMMMMMMMMM..MMMMMMMMMMMMM..MMMMMMMMMMMM..MMMMMMMMMMMM...// //...MMM.....................MM..MMM.......MMM..MMM......MMM..MMM....................MMM..MMM.......MMM....................MMM........// //...MMM..MMMMMMM..MMMMMMMMMMMM..MMMMMMMMMMMMM..MMMMMMMMMMMM..MMM...........MMMMMMMMMMMM..MMMMMMMMMMMMM..MMMMMMMMMMMM......MMM........// //...MMM..MMMMMMM..MMMMMMMMMMMM..MMMMMMMMMMMMM..MMMMMMMMMMMM..MMM...........MMMMMMMMMMMM..MMMMMMMMMMMMM..MMMMMMMMMMMM......MMM........// //...MMM.......MM..MMM.....MMM...MMM.......MMM................MMM...........MMM.....MM....MMM.......MMM..MMM...............MMM........// //...MMMMMMMMMMMM..MMM......MMM..MMM.......MMM..MMMMMMMMMMMM..MMMMMMMMMMMM..MMM.....MMM...MMM.......MMM..MMM...............MMM........// //....MMMMMMMMMMM..MMM.......MM..MMM.......MMM...MMMMMMMMMM....MMMMMMMMMMM..MMM......MMM..MMM.......MMM..MMM...............MMM........// //....................................................................................................................................// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // File erc721a/contracts/[email protected] // SPDX-License-Identifier: MIT // 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/[email protected] // 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/[email protected] // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File erc721a/contracts/extensions/[email protected] // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File erc721a/contracts/extensions/[email protected] // 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/[email protected] // 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 contracts/OperatorFilterer.sol pragma solidity ^0.8.0; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) { // If the function selector has not been overwritten, // it is an out-of-gas error. if eq(shr(224, mload(0x00)), functionSelector) { // To prevent gas under-estimation. revert(0, 0) } } // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. modifier onlyAllowedOperator(address from) virtual { if (from != msg.sender) { if (!_isPriorityOperator(msg.sender)) { if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender); } } _; } /// @dev Modifier to guard a function from approving a blocked operator.. modifier onlyAllowedOperatorApproval(address operator) virtual { if (!_isPriorityOperator(operator)) { if (_operatorFilteringEnabled()) _revertIfBlocked(operator); } _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, so that operator filtering /// can be turned on / off. /// Returns true by default. function _operatorFilteringEnabled() internal view virtual returns (bool) { return true; } /// @dev For deriving contracts to override, so that preferred marketplaces can /// skip operator filtering, helping users save gas. /// Returns false for all inputs by default. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // 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/[email protected] // 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/interfaces/[email protected] // 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/utils/introspection/[email protected] // 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/token/common/[email protected] // 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/structs/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/BitMaps.sol) pragma solidity ^0.8.0; /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get(BitMap storage bitmap, uint256 index) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo( BitMap storage bitmap, uint256 index, bool value ) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] &= ~mask; } } // File contracts/GraycraftOmega.sol pragma solidity 0.8.4; interface IERC721 { /** * @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); } contract GraycraftOmega is ERC721AQueryable, ERC721ABurnable, OperatorFilterer, Ownable, ReentrancyGuard, ERC2981 { using BitMaps for BitMaps.BitMap; address public constant GRAYCRAFT1_ADDRESS = 0x9030807ba4C71831808408CbF892bfA1261A6E7D; // mainnet address public constant GRAYCRAFT2_ADDRESS = 0x2BD60F290060451e3644a7559D520C2e9b32C7e9; // mainnet uint256 public constant MAX_GRAYCRAFT = 8888; // max of 8,888 uint256 public constant MAX_RESERVED = 5585; // max of 5,585 string public constant GC_PROVENANCE = ""; uint public graycraftPrice = 0.25 ether; uint public teamGraycrafts = 60; // These are reserved for team uint public reservedGraycrafts = 0; // These are the total amount that has been reserved bool public saleIsActive = false; // determines whether sales is active bool public claimIsActive = false; // determines whether claiming phase is active mapping(address => uint) public mintPerAddress; // owner => amount minted mapping(address => bool) public admins; // account => has permissions BitMaps.BitMap private gc1Claimed; // tokenId => hasClaimed? BitMaps.BitMap private gc2Claimed; // tokenId => hasClaimed? bool public operatorFilteringEnabled; string private _baseTokenURI; constructor() ERC721A("GRAYCRAFT Omega Project", "MECH") { _registerForOperatorFiltering(); operatorFilteringEnabled = true; // Set royalty receiver to the contract creator, // at 7.5% (default denominator is 10000). _setDefaultRoyalty(msg.sender, 750); } /* ========== Public view functions ========== */ // Checks to see if user has graycraft function hasGraycraft(address _owner) public view returns (bool) { return IERC721(GRAYCRAFT1_ADDRESS).balanceOf(_owner) > 0 || IERC721(GRAYCRAFT2_ADDRESS).balanceOf(_owner) > 0; } function claimableGc1Amount(address _owner) public view returns (uint256) { return IERC721(GRAYCRAFT1_ADDRESS).balanceOf(_owner) * 5; } function claimableGc2Amount(address _owner) public view returns (uint256) { return IERC721(GRAYCRAFT2_ADDRESS).balanceOf(_owner); } function gc1HasClaimed(uint index) external view returns (bool) { return gc1Claimed.get(index); } function gc2HasClaimed(uint index) external view returns (bool) { return gc2Claimed.get(index); } /* ========== External public sales functions ========== */ function claimGraycraft1(uint256[] calldata tokenIds) external nonReentrant { require(claimIsActive); // Loops to check if all specified tokenIds are from owners // Ensures that tokenId has never claimed before // Also will record which tokenId has issued a claim before for (uint i = 0; i < tokenIds.length; ++i) { uint256 tokenId = tokenIds[i]; require(IERC721(GRAYCRAFT1_ADDRESS).ownerOf(tokenId) == msg.sender, "not owner"); require(!gc1Claimed.get(tokenId), "claimed before"); gc1Claimed.setTo(tokenId, true); } // Gets the number of crafts that can be claimed, will apply necessary multiplier uint numberOfTokens = tokenIds.length * 5; // Max supply exceeded require(_totalMinted() + numberOfTokens <= MAX_GRAYCRAFT); // Exceeded reserved slots require(reservedGraycrafts + numberOfTokens <= MAX_RESERVED); // For each craft that we allow for claims, we add to count reservedGraycrafts += numberOfTokens; _mint(msg.sender, numberOfTokens); } function claimGraycraft2(uint256[] calldata tokenIds) external nonReentrant { require(claimIsActive); // Loops to check if all specified tokenIds are from owners // Ensures that tokenId has never claimed before // Also will record which tokenId has issued a claim before for (uint i = 0; i < tokenIds.length; ++i) { uint256 tokenId = tokenIds[i]; require(IERC721(GRAYCRAFT2_ADDRESS).ownerOf(tokenId) == msg.sender, "not owner"); require(!gc2Claimed.get(tokenId), "claimed before"); gc2Claimed.setTo(tokenId, true); } // Gets the number of crafts that can be claimed, will apply necessary multiplier uint numberOfTokens = tokenIds.length; // Max supply exceeded require(_totalMinted() + numberOfTokens <= MAX_GRAYCRAFT); // Exceeded reserved slots require(reservedGraycrafts + numberOfTokens <= MAX_RESERVED); // For each craft that we allow for claims, we add to count reservedGraycrafts += numberOfTokens; _mint(msg.sender, numberOfTokens); } // Allows whitelisted users to mint // Number of slots per address function whitelistMintGraycraft(uint numberOfTokens) external payable nonReentrant { require(claimIsActive); // During claim phase, whitelisted users can start minting require(_totalMinted() + numberOfTokens <= MAX_GRAYCRAFT); // Max supply exceeded require(graycraftPrice * numberOfTokens <= msg.value); // Value sent is not correct require(numberOfTokens <= mintPerAddress[msg.sender]); // Ensure WL mint limit is enforced mintPerAddress[msg.sender] = mintPerAddress[msg.sender] - numberOfTokens; // WL mint has a limit _mint(msg.sender, numberOfTokens); } // mints graycraft for the general public function mintGraycraft(uint numberOfTokens) external payable nonReentrant { require(saleIsActive); // Sale must be active require(_totalMinted() + numberOfTokens <= MAX_GRAYCRAFT); // Max supply exceeded require(graycraftPrice * numberOfTokens <= msg.value); // Value sent is not correct _mint(msg.sender, numberOfTokens); } /* ========== External owner functions ========== */ // mints graycraft as giveaways function giveAway(address to, uint numberOfTokens) external nonReentrant onlyOwnerOrAdmin { require(_totalMinted() + numberOfTokens <= MAX_GRAYCRAFT); require(numberOfTokens <= teamGraycrafts); // Max supply exceeded _mint(to, numberOfTokens); teamGraycrafts = teamGraycrafts - numberOfTokens; } // we set the number of whitelisted amounts per user that is whitelisted that can mint function setWhitelist(address[] calldata _accounts, uint[] calldata _amounts) external onlyOwnerOrAdmin { for (uint i = 0; i < _accounts.length; ++i) { mintPerAddress[_accounts[i]] = _amounts[i]; } } // withdraw funds function withdraw() external onlyOwnerOrAdmin { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } // flips the state for claims // if state is flipped from the closed state to open state, do nothing (this means we are opening claims for the first time) // if state is flipped from open to closed state, we will set the RESERVED amounts to 0, thus allowing public to mint them function flipClaimState() external onlyOwnerOrAdmin { claimIsActive = !claimIsActive; } // flips the state for sales function flipSaleState() external onlyOwnerOrAdmin { saleIsActive = !saleIsActive; } // sets price of graycraft function setGraycraftPrice(uint256 _price) external onlyOwnerOrAdmin { graycraftPrice = _price; } // set admin permissions function setAdmin(address _account, bool _activate) public onlyOwner { admins[_account] = _activate; } // set team allocation function setTeamAllocation(uint256 _amount) public onlyOwnerOrAdmin { teamGraycrafts = _amount; } // Allows the owner to set the base token URI. function setTokenURI(string calldata newUriBase) external onlyOwnerOrAdmin { _baseTokenURI = newUriBase; } /* ========== Modifiers ========== */ modifier onlyOwnerOrAdmin() { require(owner() == msg.sender || admins[msg.sender], "not owner or admin"); _; } /* ========== Standard token functions ========== */ function setApprovalForAll(address operator, bool approved) public override (ERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override (ERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override (ERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override (ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override (ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function supportsInterface(bytes4 interfaceId) public view override (ERC721A, ERC2981) returns (bool) { // Supports the following `interfaceId`s: // - IERC165: 0x01ffc9a7 // - IERC721: 0x80ac58cd // - IERC721Metadata: 0x5b5e139f // - IERC2981: 0x2a55205a return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setOperatorFilteringEnabled(bool value) public onlyOwner { operatorFilteringEnabled = value; } function _isPriorityOperator(address operator) internal pure override returns (bool) { // OpenSea Seaport Conduit: // https://etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71 // https://goerli.etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71 return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71); } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } }
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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GC_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GRAYCRAFT1_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GRAYCRAFT2_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GRAYCRAFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimGraycraft1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimGraycraft2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"claimableGc1Amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"claimableGc2Amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"gc1HasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"gc2HasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"graycraftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"hasGraycraft","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintGraycraft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedGraycrafts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_activate","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setGraycraftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTeamAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUriBase","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamGraycrafts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"whitelistMintGraycraft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526703782dace9d90000600c55603c600d556000600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200005d57600080fd5b506040518060400160405280601781526020017f475241594352414654204f6d6567612050726f6a6563740000000000000000008152506040518060400160405280600481526020017f4d454348000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e2929190620004a6565b508060039080519060200190620000fb929190620004a6565b506200010c6200018160201b60201c565b600081905550505062000134620001286200018660201b60201c565b6200018e60201b60201c565b60016009819055506200014c6200025460201b60201c565b6001601460006101000a81548160ff0219169083151502179055506200017b336102ee6200027d60201b60201c565b620006d6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200027b733cc6cdda760b79bafa08df41ecfa224f810dceb660016200042160201b60201c565b565b6200028d6200049c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e590620005a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035890620005c6565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200045057826200044857634420e486905062000450565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af162000492578060005160e01c14156200049157600080fd5b5b6000602452505050565b6000612710905090565b828054620004b490620005f9565b90600052602060002090601f016020900481019282620004d8576000855562000524565b82601f10620004f357805160ff191683800117855562000524565b8280016001018555821562000524579182015b828111156200052357825182559160200191906001019062000506565b5b50905062000533919062000537565b5090565b5b808211156200055257600081600090555060010162000538565b5090565b600062000565602a83620005e8565b915062000572826200065e565b604082019050919050565b60006200058c601983620005e8565b91506200059982620006ad565b602082019050919050565b60006020820190508181036000830152620005bf8162000556565b9050919050565b60006020820190508181036000830152620005e1816200057d565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200061257607f821691505b602082108114156200062957620006286200062f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6159ba80620006e66000396000f3fe60806040526004361061036b5760003560e01c8063692e46ea116101c6578063c23dc68f116100f7578063dadbde9811610095578063eb8d24441161006f578063eb8d244414610cb1578063f013e0e114610cdc578063f2fde38b14610d05578063fb796e6c14610d2e5761036b565b8063dadbde9814610c22578063e0df5b6f14610c4b578063e985e9c514610c745761036b565b8063ca800144116100d1578063ca80014414610b66578063d603ef6f14610b8f578063d8ed82bd14610bba578063da1119e814610bf75761036b565b8063c23dc68f14610aaf578063c87b56dd14610aec578063ca44486a14610b295761036b565b80638462151c1161016457806399a2557a1161013e57806399a2557a14610a04578063a22cb46514610a41578063b7c0b8e814610a6a578063b88d4fde14610a935761036b565b80638462151c146109715780638da5cb5b146109ae57806395d89b41146109d95761036b565b806370a08231116101a057806370a08231146108a3578063715018a6146108e057806375200ac6146108f7578063769b5ef2146109345761036b565b8063692e46ea146108455780636ba90c6e146108615780636d60e6c11461088c5761036b565b80633ccdbedc116102a05780634b0bddd21161023e5780635313142611610218578063531314261461077757806358e4294b146107a25780635bbb2177146107cb5780636352211e146108085761036b565b80634b0bddd2146106f85780634bd3ead8146107215780635303f68c1461074c5761036b565b806342966c681161027a57806342966c6814610639578063429b62e514610662578063440ec94c1461069f5780634453d0e5146106bb5761036b565b80633ccdbedc146105dd5780633ccfd60b1461060657806342842e0e1461061d5761036b565b806318160ddd1161030d57806323b872dd116102e757806323b872dd146105415780632a55205a1461055d57806334918dfd1461059b5780633647e62a146105b25761036b565b806318160ddd146104ae57806318ef3dee146104d95780631a57812e146105045761036b565b806307b6fb4f1161034957806307b6fb4f14610401578063081812fc1461042a578063095ea7b314610467578063138589c5146104835761036b565b806301ffc9a71461037057806304634d8d146103ad57806306fdde03146103d6575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190614ae8565b610d59565b6040516103a49190615129565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906149c9565b610d7b565b005b3480156103e257600080fd5b506103eb610d91565b6040516103f89190615144565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190614b7f565b610e23565b005b34801561043657600080fd5b50610451600480360381019061044c9190614b7f565b610ef6565b60405161045e9190615055565b60405180910390f35b610481600480360381019061047c919061493e565b610f75565b005b34801561048f57600080fd5b50610498610faa565b6040516104a59190615055565b60405180910390f35b3480156104ba57600080fd5b506104c3610fc2565b6040516104d091906152a1565b60405180910390f35b3480156104e557600080fd5b506104ee610fd9565b6040516104fb9190615144565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190614b7f565b610fec565b6040516105389190615129565b60405180910390f35b61055b60048036038101906105569190614838565b611009565b005b34801561056957600080fd5b50610584600480360381019061057f9190614bd1565b611074565b6040516105929291906150bc565b60405180910390f35b3480156105a757600080fd5b506105b061125f565b005b3480156105be57600080fd5b506105c7611354565b6040516105d491906152a1565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190614a7a565b61135a565b005b34801561061257600080fd5b5061061b6115ca565b005b61063760048036038101906106329190614838565b611742565b005b34801561064557600080fd5b50610660600480360381019061065b9190614b7f565b6117ad565b005b34801561066e57600080fd5b50610689600480360381019061068491906147aa565b6117bb565b6040516106969190615129565b60405180910390f35b6106b960048036038101906106b49190614b7f565b6117db565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190614b7f565b61184c565b6040516106ef9190615129565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190614902565b611869565b005b34801561072d57600080fd5b506107366118cc565b6040516107439190615055565b60405180910390f35b34801561075857600080fd5b506107616118e4565b60405161076e9190615129565b60405180910390f35b34801561078357600080fd5b5061078c6118f7565b60405161079991906152a1565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190614b7f565b6118fd565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190614a7a565b6119d0565b6040516107ff91906150e5565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190614b7f565b611b05565b60405161083c9190615055565b60405180910390f35b61085f600480360381019061085a9190614b7f565b611b17565b005b34801561086d57600080fd5b50610876611c62565b60405161088391906152a1565b60405180910390f35b34801561089857600080fd5b506108a1611c68565b005b3480156108af57600080fd5b506108ca60048036038101906108c591906147aa565b611d5d565b6040516108d791906152a1565b60405180910390f35b3480156108ec57600080fd5b506108f5611e16565b005b34801561090357600080fd5b5061091e600480360381019061091991906147aa565b611e2a565b60405161092b91906152a1565b60405180910390f35b34801561094057600080fd5b5061095b600480360381019061095691906147aa565b611ed0565b60405161096891906152a1565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906147aa565b611ee8565b6040516109a59190615107565b60405180910390f35b3480156109ba57600080fd5b506109c361207e565b6040516109d09190615055565b60405180910390f35b3480156109e557600080fd5b506109ee6120a8565b6040516109fb9190615144565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a26919061497a565b61213a565b604051610a389190615107565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190614902565b61239a565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190614abf565b6123cf565b005b610aad6004803603810190610aa89190614887565b6123f4565b005b348015610abb57600080fd5b50610ad66004803603810190610ad19190614b7f565b612461565b604051610ae39190615286565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e9190614b7f565b6124cb565b604051610b209190615144565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b91906147aa565b61256a565b604051610b5d91906152a1565b60405180910390f35b348015610b7257600080fd5b50610b8d6004803603810190610b88919061493e565b61261c565b005b348015610b9b57600080fd5b50610ba4612747565b604051610bb191906152a1565b60405180910390f35b348015610bc657600080fd5b50610be16004803603810190610bdc91906147aa565b61274d565b604051610bee9190615129565b60405180910390f35b348015610c0357600080fd5b50610c0c61289c565b604051610c1991906152a1565b60405180910390f35b348015610c2e57600080fd5b50610c496004803603810190610c449190614a7a565b6128a2565b005b348015610c5757600080fd5b50610c726004803603810190610c6d9190614b3a565b612b1e565b005b348015610c8057600080fd5b50610c9b6004803603810190610c9691906147fc565b612bfd565b604051610ca89190615129565b60405180910390f35b348015610cbd57600080fd5b50610cc6612c91565b604051610cd39190615129565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe9190614a05565b612ca4565b005b348015610d1157600080fd5b50610d2c6004803603810190610d2791906147aa565b612e63565b005b348015610d3a57600080fd5b50610d43612ee7565b604051610d509190615129565b60405180910390f35b6000610d6482612efa565b80610d745750610d7382612f8c565b5b9050919050565b610d83613006565b610d8d8282613084565b5050565b606060028054610da0906155d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcc906155d8565b8015610e195780601f10610dee57610100808354040283529160200191610e19565b820191906000526020600020905b815481529060010190602001808311610dfc57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16610e4261207e565b73ffffffffffffffffffffffffffffffffffffffff161480610ead5750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906151c6565b60405180910390fd5b80600d8190555050565b6000610f018261321a565b610f37576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610f7f81613279565b610f9b57610f8b6132c5565b15610f9a57610f99816132ce565b5b5b610fa58383613312565b505050565b739030807ba4c71831808408cbf892bfa1261a6e7d81565b6000610fcc613456565b6001546000540303905090565b6040518060200160405280600081525081565b600061100282601361345b90919063ffffffff16565b9050919050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110635761104633613279565b611062576110526132c5565b1561106157611060336132ce565b5b5b5b61106e848484613497565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561120a57600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006112146137bc565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112409190615459565b61124a9190615428565b90508160000151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff1661127e61207e565b73ffffffffffffffffffffffffffffffffffffffff1614806112e95750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906151c6565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600c5481565b6113626137c6565b600f60019054906101000a900460ff1661137b57600080fd5b60005b828290508110156115545760008383838181106113c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16732bd60f290060451e3644a7559d520c2e9b32c7e973ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161143191906152a1565b60206040518083038186803b15801561144957600080fd5b505afa15801561145d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148191906147d3565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90615246565b60405180910390fd5b6114eb81601361345b90919063ffffffff16565b1561152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906151a6565b60405180910390fd5b61154281600160136138169092919063ffffffff16565b508061154d9061563b565b905061137e565b5060008282905090506122b88161156961383b565b61157391906153d2565b111561157e57600080fd5b6115d181600e5461158f91906153d2565b111561159a57600080fd5b80600e60008282546115ac91906153d2565b925050819055506115bd338261384e565b506115c6613a0b565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166115e961207e565b73ffffffffffffffffffffffffffffffffffffffff1614806116545750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906151c6565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516116b990615040565b60006040518083038185875af1925050503d80600081146116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b505090508061173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906151e6565b60405180910390fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179c5761177f33613279565b61179b5761178b6132c5565b1561179a57611799336132ce565b5b5b5b6117a7848484613a15565b50505050565b6117b8816001613a35565b50565b60116020528060005260406000206000915054906101000a900460ff1681565b6117e36137c6565b600f60009054906101000a900460ff166117fc57600080fd5b6122b88161180861383b565b61181291906153d2565b111561181d57600080fd5b3481600c5461182c9190615459565b111561183757600080fd5b611841338261384e565b611849613a0b565b50565b600061186282601261345b90919063ffffffff16565b9050919050565b611871613006565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b732bd60f290060451e3644a7559d520c2e9b32c7e981565b600f60019054906101000a900460ff1681565b6122b881565b3373ffffffffffffffffffffffffffffffffffffffff1661191c61207e565b73ffffffffffffffffffffffffffffffffffffffff1614806119875750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd906151c6565b60405180910390fd5b80600c8190555050565b6060600083839050905060008167ffffffffffffffff811115611a1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a5557816020015b611a426144ca565b815260200190600190039081611a3a5790505b50905060005b828114611af957611aaa868683818110611a9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612461565b828281518110611ae3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250806001019050611a5b565b50809250505092915050565b6000611b1082613c89565b9050919050565b611b1f6137c6565b600f60019054906101000a900460ff16611b3857600080fd5b6122b881611b4461383b565b611b4e91906153d2565b1115611b5957600080fd5b3481600c54611b689190615459565b1115611b7357600080fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611bbf57600080fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0a91906154b3565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c57338261384e565b611c5f613a0b565b50565b6115d181565b3373ffffffffffffffffffffffffffffffffffffffff16611c8761207e565b73ffffffffffffffffffffffffffffffffffffffff161480611cf25750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906151c6565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611e1e613006565b611e286000613d57565b565b6000732bd60f290060451e3644a7559d520c2e9b32c7e973ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611e799190615055565b60206040518083038186803b158015611e9157600080fd5b505afa158015611ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec99190614ba8565b9050919050565b60106020528060005260406000206000915090505481565b60606000806000611ef885611d5d565b905060008167ffffffffffffffff811115611f3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611f6a5781602001602082028036833780820191505090505b509050611f756144ca565b6000611f7f613456565b90505b83861461207057611f9281613e1d565b9150816040015115611fa357612065565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fe357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156120645780838780600101985081518110612057577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050611f82565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546120b7906155d8565b80601f01602080910402602001604051908101604052809291908181526020018280546120e3906155d8565b80156121305780601f1061210557610100808354040283529160200191612130565b820191906000526020600020905b81548152906001019060200180831161211357829003601f168201915b5050505050905090565b6060818310612175576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612180613e48565b905061218a613456565b85101561219c57612199613456565b94505b808411156121a8578093505b60006121b387611d5d565b9050848610156121d65760008686039050818110156121d0578091505b506121db565b600090505b60008167ffffffffffffffff81111561221d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561224b5781602001602082028036833780820191505090505b50905060008214156122635780945050505050612393565b600061226e88612461565b90506000816040015161228357816000015190505b60008990505b8881141580156122995750848714155b15612385576122a781613e1d565b92508260400151156122b85761237a565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146122f857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612379578084888060010199508151811061236c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050612289565b508583528296505050505050505b9392505050565b816123a481613279565b6123c0576123b06132c5565b156123bf576123be816132ce565b5b5b6123ca8383613e51565b505050565b6123d7613006565b80601460006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461244e5761243133613279565b61244d5761243d6132c5565b1561244c5761244b336132ce565b5b5b5b61245a85858585613f5c565b5050505050565b6124696144ca565b6124716144ca565b612479613456565b83108061248d5750612489613e48565b8310155b1561249b57809150506124c6565b6124a483613e1d565b90508060400151156124b957809150506124c6565b6124c283613fcf565b9150505b919050565b60606124d68261321a565b61250c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612516613fef565b90506000815114156125375760405180602001604052806000815250612562565b8061254184614081565b60405160200161255292919061501c565b6040516020818303038152906040525b915050919050565b60006005739030807ba4c71831808408cbf892bfa1261a6e7d73ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016125bb9190615055565b60206040518083038186803b1580156125d357600080fd5b505afa1580156125e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260b9190614ba8565b6126159190615459565b9050919050565b6126246137c6565b3373ffffffffffffffffffffffffffffffffffffffff1661264361207e565b73ffffffffffffffffffffffffffffffffffffffff1614806126ae5750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e4906151c6565b60405180910390fd5b6122b8816126f961383b565b61270391906153d2565b111561270e57600080fd5b600d5481111561271d57600080fd5b612727828261384e565b80600d5461273591906154b3565b600d81905550612743613a0b565b5050565b600d5481565b600080739030807ba4c71831808408cbf892bfa1261a6e7d73ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161279d9190615055565b60206040518083038186803b1580156127b557600080fd5b505afa1580156127c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ed9190614ba8565b118061289557506000732bd60f290060451e3644a7559d520c2e9b32c7e973ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016128439190615055565b60206040518083038186803b15801561285b57600080fd5b505afa15801561286f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128939190614ba8565b115b9050919050565b600e5481565b6128aa6137c6565b600f60019054906101000a900460ff166128c357600080fd5b60005b82829050811015612a9c57600083838381811061290c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16739030807ba4c71831808408cbf892bfa1261a6e7d73ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161297991906152a1565b60206040518083038186803b15801561299157600080fd5b505afa1580156129a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129c991906147d3565b73ffffffffffffffffffffffffffffffffffffffff1614612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690615246565b60405180910390fd5b612a3381601261345b90919063ffffffff16565b15612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a906151a6565b60405180910390fd5b612a8a81600160126138169092919063ffffffff16565b5080612a959061563b565b90506128c6565b506000600583839050612aaf9190615459565b90506122b881612abd61383b565b612ac791906153d2565b1115612ad257600080fd5b6115d181600e54612ae391906153d2565b1115612aee57600080fd5b80600e6000828254612b0091906153d2565b92505081905550612b11338261384e565b50612b1a613a0b565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612b3d61207e565b73ffffffffffffffffffffffffffffffffffffffff161480612ba85750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde906151c6565b60405180910390fd5b818160159190612bf8929190614519565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16612cc361207e565b73ffffffffffffffffffffffffffffffffffffffff161480612d2e5750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d64906151c6565b60405180910390fd5b60005b84849050811015612e5c57828282818110612db4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560106000878785818110612df8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612e0d91906147aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080612e559061563b565b9050612d70565b5050505050565b612e6b613006565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed290615166565b60405180910390fd5b612ee481613d57565b50565b601460009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f5557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f855750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fff5750612ffe826140da565b5b9050919050565b61300e614144565b73ffffffffffffffffffffffffffffffffffffffff1661302c61207e565b73ffffffffffffffffffffffffffffffffffffffff1614613082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307990615186565b60405180910390fd5b565b61308c6137bc565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156130ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e190615206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561315a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315190615266565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081613225613456565b11158015613234575060005482105b8015613272575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b60006001905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61330a573d6000803e3d6000fd5b6000603a5250565b600061331d82611b05565b90508073ffffffffffffffffffffffffffffffffffffffff1661333e61414c565b73ffffffffffffffffffffffffffffffffffffffff16146133a15761336a8161336561414c565b612bfd565b6133a0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600080600883901c9050600060ff84166001901b9050600081866000016000858152602001908152602001600020541614159250505092915050565b60006134a282613c89565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614613509576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061351584614154565b9150915061352b818761352661414c565b61417b565b613577576135408661353b61414c565b612bfd565b613576576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135eb86868660016141bf565b80156135f657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506136c4856136a08888876141c5565b7c0200000000000000000000000000000000000000000000000000000000176141ed565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561374c57600060018501905060006004600083815260200190815260200160002054141561374a576000548114613749578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137b48686866001614218565b505050505050565b6000612710905090565b6002600954141561380c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380390615226565b60405180910390fd5b6002600981905550565b801561382b57613826838361421e565b613836565b613835838361425c565b5b505050565b6000613845613456565b60005403905090565b600080549050600082141561388f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61389c60008483856141bf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139138361390460008660006141c5565b61390d8561429b565b176141ed565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146139b457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613979565b5060008214156139f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a066000848385614218565b505050565b6001600981905550565b613a30838383604051806020016040528060008152506123f4565b505050565b6000613a4083613c89565b90506000819050600080613a5386614154565b915091508415613abc57613a6f8184613a6a61414c565b61417b565b613abb57613a8483613a7f61414c565b612bfd565b613aba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b613aca8360008860016141bf565b8015613ad557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613b7d83613b3a856000886141c5565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176141ed565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415613c05576000600187019050600060046000838152602001908152602001600020541415613c03576000548114613c02578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c6f836000886001614218565b600160008154809291906001019190505550505050505050565b60008082905080613c98613456565b11613d2057600054811015613d1f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613d1d575b6000811415613d13576004600083600190039350838152602001908152602001600020549050613ce8565b8092505050613d52565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613e256144ca565b613e4160046000848152602001908152602001600020546142ab565b9050919050565b60008054905090565b8060076000613e5e61414c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16613f0b61414c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613f509190615129565b60405180910390a35050565b613f67848484611009565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613fc957613f9284848484614361565b613fc8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b613fd76144ca565b613fe8613fe383613c89565b6142ab565b9050919050565b606060158054613ffe906155d8565b80601f016020809104026020016040519081016040528092919081815260200182805461402a906155d8565b80156140775780601f1061404c57610100808354040283529160200191614077565b820191906000526020600020905b81548152906001019060200180831161405a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156140c557600184039350600a81066030018453600a81049050806140c0576140c5565b61409a565b50828103602084039350808452505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86141dc8686846144c1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600882901c9050600060ff83166001901b9050808460000160008481526020019081526020016000206000828254179250508190555050505050565b6000600882901c9050600060ff83166001901b905080198460000160008481526020019081526020016000206000828254169250508190555050505050565b60006001821460e11b9050919050565b6142b36144ca565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261438761414c565b8786866040518563ffffffff1660e01b81526004016143a99493929190615070565b602060405180830381600087803b1580156143c357600080fd5b505af19250505080156143f457506040513d601f19601f820116820180604052508101906143f19190614b11565b60015b61446e573d8060008114614424576040519150601f19603f3d011682016040523d82523d6000602084013e614429565b606091505b50600081511415614466576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b828054614525906155d8565b90600052602060002090601f016020900481019282614547576000855561458e565b82601f1061456057803560ff191683800117855561458e565b8280016001018555821561458e579182015b8281111561458d578235825591602001919060010190614572565b5b50905061459b919061459f565b5090565b5b808211156145b85760008160009055506001016145a0565b5090565b60006145cf6145ca846152e1565b6152bc565b9050828152602081018484840111156145e757600080fd5b6145f2848285615596565b509392505050565b60008135905061460981615911565b92915050565b60008151905061461e81615911565b92915050565b60008083601f84011261463657600080fd5b8235905067ffffffffffffffff81111561464f57600080fd5b60208301915083602082028301111561466757600080fd5b9250929050565b60008083601f84011261468057600080fd5b8235905067ffffffffffffffff81111561469957600080fd5b6020830191508360208202830111156146b157600080fd5b9250929050565b6000813590506146c781615928565b92915050565b6000813590506146dc8161593f565b92915050565b6000815190506146f18161593f565b92915050565b600082601f83011261470857600080fd5b81356147188482602086016145bc565b91505092915050565b60008083601f84011261473357600080fd5b8235905067ffffffffffffffff81111561474c57600080fd5b60208301915083600182028301111561476457600080fd5b9250929050565b60008135905061477a81615956565b92915050565b60008151905061478f81615956565b92915050565b6000813590506147a48161596d565b92915050565b6000602082840312156147bc57600080fd5b60006147ca848285016145fa565b91505092915050565b6000602082840312156147e557600080fd5b60006147f38482850161460f565b91505092915050565b6000806040838503121561480f57600080fd5b600061481d858286016145fa565b925050602061482e858286016145fa565b9150509250929050565b60008060006060848603121561484d57600080fd5b600061485b868287016145fa565b935050602061486c868287016145fa565b925050604061487d8682870161476b565b9150509250925092565b6000806000806080858703121561489d57600080fd5b60006148ab878288016145fa565b94505060206148bc878288016145fa565b93505060406148cd8782880161476b565b925050606085013567ffffffffffffffff8111156148ea57600080fd5b6148f6878288016146f7565b91505092959194509250565b6000806040838503121561491557600080fd5b6000614923858286016145fa565b9250506020614934858286016146b8565b9150509250929050565b6000806040838503121561495157600080fd5b600061495f858286016145fa565b92505060206149708582860161476b565b9150509250929050565b60008060006060848603121561498f57600080fd5b600061499d868287016145fa565b93505060206149ae8682870161476b565b92505060406149bf8682870161476b565b9150509250925092565b600080604083850312156149dc57600080fd5b60006149ea858286016145fa565b92505060206149fb85828601614795565b9150509250929050565b60008060008060408587031215614a1b57600080fd5b600085013567ffffffffffffffff811115614a3557600080fd5b614a4187828801614624565b9450945050602085013567ffffffffffffffff811115614a6057600080fd5b614a6c8782880161466e565b925092505092959194509250565b60008060208385031215614a8d57600080fd5b600083013567ffffffffffffffff811115614aa757600080fd5b614ab38582860161466e565b92509250509250929050565b600060208284031215614ad157600080fd5b6000614adf848285016146b8565b91505092915050565b600060208284031215614afa57600080fd5b6000614b08848285016146cd565b91505092915050565b600060208284031215614b2357600080fd5b6000614b31848285016146e2565b91505092915050565b60008060208385031215614b4d57600080fd5b600083013567ffffffffffffffff811115614b6757600080fd5b614b7385828601614721565b92509250509250929050565b600060208284031215614b9157600080fd5b6000614b9f8482850161476b565b91505092915050565b600060208284031215614bba57600080fd5b6000614bc884828501614780565b91505092915050565b60008060408385031215614be457600080fd5b6000614bf28582860161476b565b9250506020614c038582860161476b565b9150509250929050565b6000614c198383614f36565b60808301905092915050565b6000614c318383614fef565b60208301905092915050565b614c46816154e7565b82525050565b614c55816154e7565b82525050565b6000614c6682615332565b614c708185615378565b9350614c7b83615312565b8060005b83811015614cac578151614c938882614c0d565b9750614c9e8361535e565b925050600181019050614c7f565b5085935050505092915050565b6000614cc48261533d565b614cce8185615389565b9350614cd983615322565b8060005b83811015614d0a578151614cf18882614c25565b9750614cfc8361536b565b925050600181019050614cdd565b5085935050505092915050565b614d20816154f9565b82525050565b614d2f816154f9565b82525050565b6000614d4082615348565b614d4a818561539a565b9350614d5a8185602086016155a5565b614d6381615740565b840191505092915050565b6000614d7982615353565b614d8381856153b6565b9350614d938185602086016155a5565b614d9c81615740565b840191505092915050565b6000614db282615353565b614dbc81856153c7565b9350614dcc8185602086016155a5565b80840191505092915050565b6000614de56026836153b6565b9150614df082615751565b604082019050919050565b6000614e086020836153b6565b9150614e13826157a0565b602082019050919050565b6000614e2b600e836153b6565b9150614e36826157c9565b602082019050919050565b6000614e4e6012836153b6565b9150614e59826157f2565b602082019050919050565b6000614e716000836153ab565b9150614e7c8261581b565b600082019050919050565b6000614e946010836153b6565b9150614e9f8261581e565b602082019050919050565b6000614eb7602a836153b6565b9150614ec282615847565b604082019050919050565b6000614eda601f836153b6565b9150614ee582615896565b602082019050919050565b6000614efd6009836153b6565b9150614f08826158bf565b602082019050919050565b6000614f206019836153b6565b9150614f2b826158e8565b602082019050919050565b608082016000820151614f4c6000850182614c3d565b506020820151614f5f602085018261500d565b506040820151614f726040850182614d17565b506060820151614f856060850182614fe0565b50505050565b608082016000820151614fa16000850182614c3d565b506020820151614fb4602085018261500d565b506040820151614fc76040850182614d17565b506060820151614fda6060850182614fe0565b50505050565b614fe981615551565b82525050565b614ff881615560565b82525050565b61500781615560565b82525050565b6150168161556a565b82525050565b60006150288285614da7565b91506150348284614da7565b91508190509392505050565b600061504b82614e64565b9150819050919050565b600060208201905061506a6000830184614c4c565b92915050565b60006080820190506150856000830187614c4c565b6150926020830186614c4c565b61509f6040830185614ffe565b81810360608301526150b18184614d35565b905095945050505050565b60006040820190506150d16000830185614c4c565b6150de6020830184614ffe565b9392505050565b600060208201905081810360008301526150ff8184614c5b565b905092915050565b600060208201905081810360008301526151218184614cb9565b905092915050565b600060208201905061513e6000830184614d26565b92915050565b6000602082019050818103600083015261515e8184614d6e565b905092915050565b6000602082019050818103600083015261517f81614dd8565b9050919050565b6000602082019050818103600083015261519f81614dfb565b9050919050565b600060208201905081810360008301526151bf81614e1e565b9050919050565b600060208201905081810360008301526151df81614e41565b9050919050565b600060208201905081810360008301526151ff81614e87565b9050919050565b6000602082019050818103600083015261521f81614eaa565b9050919050565b6000602082019050818103600083015261523f81614ecd565b9050919050565b6000602082019050818103600083015261525f81614ef0565b9050919050565b6000602082019050818103600083015261527f81614f13565b9050919050565b600060808201905061529b6000830184614f8b565b92915050565b60006020820190506152b66000830184614ffe565b92915050565b60006152c66152d7565b90506152d2828261560a565b919050565b6000604051905090565b600067ffffffffffffffff8211156152fc576152fb615711565b5b61530582615740565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153dd82615560565b91506153e883615560565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561541d5761541c615684565b5b828201905092915050565b600061543382615560565b915061543e83615560565b92508261544e5761544d6156b3565b5b828204905092915050565b600061546482615560565b915061546f83615560565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154a8576154a7615684565b5b828202905092915050565b60006154be82615560565b91506154c983615560565b9250828210156154dc576154db615684565b5b828203905092915050565b60006154f282615531565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156155c35780820151818401526020810190506155a8565b838111156155d2576000848401525b50505050565b600060028204905060018216806155f057607f821691505b60208210811415615604576156036156e2565b5b50919050565b61561382615740565b810181811067ffffffffffffffff8211171561563257615631615711565b5b80604052505050565b600061564682615560565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561567957615678615684565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f636c61696d6564206265666f7265000000000000000000000000000000000000600082015250565b7f6e6f74206f776e6572206f722061646d696e0000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61591a816154e7565b811461592557600080fd5b50565b615931816154f9565b811461593c57600080fd5b50565b61594881615505565b811461595357600080fd5b50565b61595f81615560565b811461596a57600080fd5b50565b6159768161557e565b811461598157600080fd5b5056fea2646970667358221220b22911caf1fc780d43b58b094eab6eecdaf2c52d4f5b4ac4c9a1402d634f62d564736f6c63430008040033
Deployed Bytecode
0x60806040526004361061036b5760003560e01c8063692e46ea116101c6578063c23dc68f116100f7578063dadbde9811610095578063eb8d24441161006f578063eb8d244414610cb1578063f013e0e114610cdc578063f2fde38b14610d05578063fb796e6c14610d2e5761036b565b8063dadbde9814610c22578063e0df5b6f14610c4b578063e985e9c514610c745761036b565b8063ca800144116100d1578063ca80014414610b66578063d603ef6f14610b8f578063d8ed82bd14610bba578063da1119e814610bf75761036b565b8063c23dc68f14610aaf578063c87b56dd14610aec578063ca44486a14610b295761036b565b80638462151c1161016457806399a2557a1161013e57806399a2557a14610a04578063a22cb46514610a41578063b7c0b8e814610a6a578063b88d4fde14610a935761036b565b80638462151c146109715780638da5cb5b146109ae57806395d89b41146109d95761036b565b806370a08231116101a057806370a08231146108a3578063715018a6146108e057806375200ac6146108f7578063769b5ef2146109345761036b565b8063692e46ea146108455780636ba90c6e146108615780636d60e6c11461088c5761036b565b80633ccdbedc116102a05780634b0bddd21161023e5780635313142611610218578063531314261461077757806358e4294b146107a25780635bbb2177146107cb5780636352211e146108085761036b565b80634b0bddd2146106f85780634bd3ead8146107215780635303f68c1461074c5761036b565b806342966c681161027a57806342966c6814610639578063429b62e514610662578063440ec94c1461069f5780634453d0e5146106bb5761036b565b80633ccdbedc146105dd5780633ccfd60b1461060657806342842e0e1461061d5761036b565b806318160ddd1161030d57806323b872dd116102e757806323b872dd146105415780632a55205a1461055d57806334918dfd1461059b5780633647e62a146105b25761036b565b806318160ddd146104ae57806318ef3dee146104d95780631a57812e146105045761036b565b806307b6fb4f1161034957806307b6fb4f14610401578063081812fc1461042a578063095ea7b314610467578063138589c5146104835761036b565b806301ffc9a71461037057806304634d8d146103ad57806306fdde03146103d6575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190614ae8565b610d59565b6040516103a49190615129565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906149c9565b610d7b565b005b3480156103e257600080fd5b506103eb610d91565b6040516103f89190615144565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190614b7f565b610e23565b005b34801561043657600080fd5b50610451600480360381019061044c9190614b7f565b610ef6565b60405161045e9190615055565b60405180910390f35b610481600480360381019061047c919061493e565b610f75565b005b34801561048f57600080fd5b50610498610faa565b6040516104a59190615055565b60405180910390f35b3480156104ba57600080fd5b506104c3610fc2565b6040516104d091906152a1565b60405180910390f35b3480156104e557600080fd5b506104ee610fd9565b6040516104fb9190615144565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190614b7f565b610fec565b6040516105389190615129565b60405180910390f35b61055b60048036038101906105569190614838565b611009565b005b34801561056957600080fd5b50610584600480360381019061057f9190614bd1565b611074565b6040516105929291906150bc565b60405180910390f35b3480156105a757600080fd5b506105b061125f565b005b3480156105be57600080fd5b506105c7611354565b6040516105d491906152a1565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190614a7a565b61135a565b005b34801561061257600080fd5b5061061b6115ca565b005b61063760048036038101906106329190614838565b611742565b005b34801561064557600080fd5b50610660600480360381019061065b9190614b7f565b6117ad565b005b34801561066e57600080fd5b50610689600480360381019061068491906147aa565b6117bb565b6040516106969190615129565b60405180910390f35b6106b960048036038101906106b49190614b7f565b6117db565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190614b7f565b61184c565b6040516106ef9190615129565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190614902565b611869565b005b34801561072d57600080fd5b506107366118cc565b6040516107439190615055565b60405180910390f35b34801561075857600080fd5b506107616118e4565b60405161076e9190615129565b60405180910390f35b34801561078357600080fd5b5061078c6118f7565b60405161079991906152a1565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190614b7f565b6118fd565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190614a7a565b6119d0565b6040516107ff91906150e5565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190614b7f565b611b05565b60405161083c9190615055565b60405180910390f35b61085f600480360381019061085a9190614b7f565b611b17565b005b34801561086d57600080fd5b50610876611c62565b60405161088391906152a1565b60405180910390f35b34801561089857600080fd5b506108a1611c68565b005b3480156108af57600080fd5b506108ca60048036038101906108c591906147aa565b611d5d565b6040516108d791906152a1565b60405180910390f35b3480156108ec57600080fd5b506108f5611e16565b005b34801561090357600080fd5b5061091e600480360381019061091991906147aa565b611e2a565b60405161092b91906152a1565b60405180910390f35b34801561094057600080fd5b5061095b600480360381019061095691906147aa565b611ed0565b60405161096891906152a1565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906147aa565b611ee8565b6040516109a59190615107565b60405180910390f35b3480156109ba57600080fd5b506109c361207e565b6040516109d09190615055565b60405180910390f35b3480156109e557600080fd5b506109ee6120a8565b6040516109fb9190615144565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a26919061497a565b61213a565b604051610a389190615107565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190614902565b61239a565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190614abf565b6123cf565b005b610aad6004803603810190610aa89190614887565b6123f4565b005b348015610abb57600080fd5b50610ad66004803603810190610ad19190614b7f565b612461565b604051610ae39190615286565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e9190614b7f565b6124cb565b604051610b209190615144565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b91906147aa565b61256a565b604051610b5d91906152a1565b60405180910390f35b348015610b7257600080fd5b50610b8d6004803603810190610b88919061493e565b61261c565b005b348015610b9b57600080fd5b50610ba4612747565b604051610bb191906152a1565b60405180910390f35b348015610bc657600080fd5b50610be16004803603810190610bdc91906147aa565b61274d565b604051610bee9190615129565b60405180910390f35b348015610c0357600080fd5b50610c0c61289c565b604051610c1991906152a1565b60405180910390f35b348015610c2e57600080fd5b50610c496004803603810190610c449190614a7a565b6128a2565b005b348015610c5757600080fd5b50610c726004803603810190610c6d9190614b3a565b612b1e565b005b348015610c8057600080fd5b50610c9b6004803603810190610c9691906147fc565b612bfd565b604051610ca89190615129565b60405180910390f35b348015610cbd57600080fd5b50610cc6612c91565b604051610cd39190615129565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe9190614a05565b612ca4565b005b348015610d1157600080fd5b50610d2c6004803603810190610d2791906147aa565b612e63565b005b348015610d3a57600080fd5b50610d43612ee7565b604051610d509190615129565b60405180910390f35b6000610d6482612efa565b80610d745750610d7382612f8c565b5b9050919050565b610d83613006565b610d8d8282613084565b5050565b606060028054610da0906155d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcc906155d8565b8015610e195780601f10610dee57610100808354040283529160200191610e19565b820191906000526020600020905b815481529060010190602001808311610dfc57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16610e4261207e565b73ffffffffffffffffffffffffffffffffffffffff161480610ead5750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906151c6565b60405180910390fd5b80600d8190555050565b6000610f018261321a565b610f37576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610f7f81613279565b610f9b57610f8b6132c5565b15610f9a57610f99816132ce565b5b5b610fa58383613312565b505050565b739030807ba4c71831808408cbf892bfa1261a6e7d81565b6000610fcc613456565b6001546000540303905090565b6040518060200160405280600081525081565b600061100282601361345b90919063ffffffff16565b9050919050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110635761104633613279565b611062576110526132c5565b1561106157611060336132ce565b5b5b5b61106e848484613497565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561120a57600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006112146137bc565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112409190615459565b61124a9190615428565b90508160000151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff1661127e61207e565b73ffffffffffffffffffffffffffffffffffffffff1614806112e95750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906151c6565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600c5481565b6113626137c6565b600f60019054906101000a900460ff1661137b57600080fd5b60005b828290508110156115545760008383838181106113c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16732bd60f290060451e3644a7559d520c2e9b32c7e973ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161143191906152a1565b60206040518083038186803b15801561144957600080fd5b505afa15801561145d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148191906147d3565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90615246565b60405180910390fd5b6114eb81601361345b90919063ffffffff16565b1561152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906151a6565b60405180910390fd5b61154281600160136138169092919063ffffffff16565b508061154d9061563b565b905061137e565b5060008282905090506122b88161156961383b565b61157391906153d2565b111561157e57600080fd5b6115d181600e5461158f91906153d2565b111561159a57600080fd5b80600e60008282546115ac91906153d2565b925050819055506115bd338261384e565b506115c6613a0b565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166115e961207e565b73ffffffffffffffffffffffffffffffffffffffff1614806116545750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906151c6565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516116b990615040565b60006040518083038185875af1925050503d80600081146116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b505090508061173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906151e6565b60405180910390fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179c5761177f33613279565b61179b5761178b6132c5565b1561179a57611799336132ce565b5b5b5b6117a7848484613a15565b50505050565b6117b8816001613a35565b50565b60116020528060005260406000206000915054906101000a900460ff1681565b6117e36137c6565b600f60009054906101000a900460ff166117fc57600080fd5b6122b88161180861383b565b61181291906153d2565b111561181d57600080fd5b3481600c5461182c9190615459565b111561183757600080fd5b611841338261384e565b611849613a0b565b50565b600061186282601261345b90919063ffffffff16565b9050919050565b611871613006565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b732bd60f290060451e3644a7559d520c2e9b32c7e981565b600f60019054906101000a900460ff1681565b6122b881565b3373ffffffffffffffffffffffffffffffffffffffff1661191c61207e565b73ffffffffffffffffffffffffffffffffffffffff1614806119875750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd906151c6565b60405180910390fd5b80600c8190555050565b6060600083839050905060008167ffffffffffffffff811115611a1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a5557816020015b611a426144ca565b815260200190600190039081611a3a5790505b50905060005b828114611af957611aaa868683818110611a9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612461565b828281518110611ae3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250806001019050611a5b565b50809250505092915050565b6000611b1082613c89565b9050919050565b611b1f6137c6565b600f60019054906101000a900460ff16611b3857600080fd5b6122b881611b4461383b565b611b4e91906153d2565b1115611b5957600080fd5b3481600c54611b689190615459565b1115611b7357600080fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611bbf57600080fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0a91906154b3565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c57338261384e565b611c5f613a0b565b50565b6115d181565b3373ffffffffffffffffffffffffffffffffffffffff16611c8761207e565b73ffffffffffffffffffffffffffffffffffffffff161480611cf25750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906151c6565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611e1e613006565b611e286000613d57565b565b6000732bd60f290060451e3644a7559d520c2e9b32c7e973ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611e799190615055565b60206040518083038186803b158015611e9157600080fd5b505afa158015611ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec99190614ba8565b9050919050565b60106020528060005260406000206000915090505481565b60606000806000611ef885611d5d565b905060008167ffffffffffffffff811115611f3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611f6a5781602001602082028036833780820191505090505b509050611f756144ca565b6000611f7f613456565b90505b83861461207057611f9281613e1d565b9150816040015115611fa357612065565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fe357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156120645780838780600101985081518110612057577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050611f82565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546120b7906155d8565b80601f01602080910402602001604051908101604052809291908181526020018280546120e3906155d8565b80156121305780601f1061210557610100808354040283529160200191612130565b820191906000526020600020905b81548152906001019060200180831161211357829003601f168201915b5050505050905090565b6060818310612175576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612180613e48565b905061218a613456565b85101561219c57612199613456565b94505b808411156121a8578093505b60006121b387611d5d565b9050848610156121d65760008686039050818110156121d0578091505b506121db565b600090505b60008167ffffffffffffffff81111561221d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561224b5781602001602082028036833780820191505090505b50905060008214156122635780945050505050612393565b600061226e88612461565b90506000816040015161228357816000015190505b60008990505b8881141580156122995750848714155b15612385576122a781613e1d565b92508260400151156122b85761237a565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146122f857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612379578084888060010199508151811061236c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050612289565b508583528296505050505050505b9392505050565b816123a481613279565b6123c0576123b06132c5565b156123bf576123be816132ce565b5b5b6123ca8383613e51565b505050565b6123d7613006565b80601460006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461244e5761243133613279565b61244d5761243d6132c5565b1561244c5761244b336132ce565b5b5b5b61245a85858585613f5c565b5050505050565b6124696144ca565b6124716144ca565b612479613456565b83108061248d5750612489613e48565b8310155b1561249b57809150506124c6565b6124a483613e1d565b90508060400151156124b957809150506124c6565b6124c283613fcf565b9150505b919050565b60606124d68261321a565b61250c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612516613fef565b90506000815114156125375760405180602001604052806000815250612562565b8061254184614081565b60405160200161255292919061501c565b6040516020818303038152906040525b915050919050565b60006005739030807ba4c71831808408cbf892bfa1261a6e7d73ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016125bb9190615055565b60206040518083038186803b1580156125d357600080fd5b505afa1580156125e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260b9190614ba8565b6126159190615459565b9050919050565b6126246137c6565b3373ffffffffffffffffffffffffffffffffffffffff1661264361207e565b73ffffffffffffffffffffffffffffffffffffffff1614806126ae5750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e4906151c6565b60405180910390fd5b6122b8816126f961383b565b61270391906153d2565b111561270e57600080fd5b600d5481111561271d57600080fd5b612727828261384e565b80600d5461273591906154b3565b600d81905550612743613a0b565b5050565b600d5481565b600080739030807ba4c71831808408cbf892bfa1261a6e7d73ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161279d9190615055565b60206040518083038186803b1580156127b557600080fd5b505afa1580156127c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ed9190614ba8565b118061289557506000732bd60f290060451e3644a7559d520c2e9b32c7e973ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016128439190615055565b60206040518083038186803b15801561285b57600080fd5b505afa15801561286f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128939190614ba8565b115b9050919050565b600e5481565b6128aa6137c6565b600f60019054906101000a900460ff166128c357600080fd5b60005b82829050811015612a9c57600083838381811061290c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16739030807ba4c71831808408cbf892bfa1261a6e7d73ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161297991906152a1565b60206040518083038186803b15801561299157600080fd5b505afa1580156129a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129c991906147d3565b73ffffffffffffffffffffffffffffffffffffffff1614612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690615246565b60405180910390fd5b612a3381601261345b90919063ffffffff16565b15612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a906151a6565b60405180910390fd5b612a8a81600160126138169092919063ffffffff16565b5080612a959061563b565b90506128c6565b506000600583839050612aaf9190615459565b90506122b881612abd61383b565b612ac791906153d2565b1115612ad257600080fd5b6115d181600e54612ae391906153d2565b1115612aee57600080fd5b80600e6000828254612b0091906153d2565b92505081905550612b11338261384e565b50612b1a613a0b565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612b3d61207e565b73ffffffffffffffffffffffffffffffffffffffff161480612ba85750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde906151c6565b60405180910390fd5b818160159190612bf8929190614519565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16612cc361207e565b73ffffffffffffffffffffffffffffffffffffffff161480612d2e5750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d64906151c6565b60405180910390fd5b60005b84849050811015612e5c57828282818110612db4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560106000878785818110612df8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612e0d91906147aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080612e559061563b565b9050612d70565b5050505050565b612e6b613006565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed290615166565b60405180910390fd5b612ee481613d57565b50565b601460009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f5557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f855750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fff5750612ffe826140da565b5b9050919050565b61300e614144565b73ffffffffffffffffffffffffffffffffffffffff1661302c61207e565b73ffffffffffffffffffffffffffffffffffffffff1614613082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307990615186565b60405180910390fd5b565b61308c6137bc565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156130ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e190615206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561315a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315190615266565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081613225613456565b11158015613234575060005482105b8015613272575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b60006001905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61330a573d6000803e3d6000fd5b6000603a5250565b600061331d82611b05565b90508073ffffffffffffffffffffffffffffffffffffffff1661333e61414c565b73ffffffffffffffffffffffffffffffffffffffff16146133a15761336a8161336561414c565b612bfd565b6133a0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600080600883901c9050600060ff84166001901b9050600081866000016000858152602001908152602001600020541614159250505092915050565b60006134a282613c89565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614613509576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061351584614154565b9150915061352b818761352661414c565b61417b565b613577576135408661353b61414c565b612bfd565b613576576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135eb86868660016141bf565b80156135f657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506136c4856136a08888876141c5565b7c0200000000000000000000000000000000000000000000000000000000176141ed565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561374c57600060018501905060006004600083815260200190815260200160002054141561374a576000548114613749578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137b48686866001614218565b505050505050565b6000612710905090565b6002600954141561380c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380390615226565b60405180910390fd5b6002600981905550565b801561382b57613826838361421e565b613836565b613835838361425c565b5b505050565b6000613845613456565b60005403905090565b600080549050600082141561388f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61389c60008483856141bf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139138361390460008660006141c5565b61390d8561429b565b176141ed565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146139b457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613979565b5060008214156139f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a066000848385614218565b505050565b6001600981905550565b613a30838383604051806020016040528060008152506123f4565b505050565b6000613a4083613c89565b90506000819050600080613a5386614154565b915091508415613abc57613a6f8184613a6a61414c565b61417b565b613abb57613a8483613a7f61414c565b612bfd565b613aba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b613aca8360008860016141bf565b8015613ad557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613b7d83613b3a856000886141c5565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176141ed565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415613c05576000600187019050600060046000838152602001908152602001600020541415613c03576000548114613c02578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c6f836000886001614218565b600160008154809291906001019190505550505050505050565b60008082905080613c98613456565b11613d2057600054811015613d1f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613d1d575b6000811415613d13576004600083600190039350838152602001908152602001600020549050613ce8565b8092505050613d52565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613e256144ca565b613e4160046000848152602001908152602001600020546142ab565b9050919050565b60008054905090565b8060076000613e5e61414c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16613f0b61414c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613f509190615129565b60405180910390a35050565b613f67848484611009565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613fc957613f9284848484614361565b613fc8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b613fd76144ca565b613fe8613fe383613c89565b6142ab565b9050919050565b606060158054613ffe906155d8565b80601f016020809104026020016040519081016040528092919081815260200182805461402a906155d8565b80156140775780601f1061404c57610100808354040283529160200191614077565b820191906000526020600020905b81548152906001019060200180831161405a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156140c557600184039350600a81066030018453600a81049050806140c0576140c5565b61409a565b50828103602084039350808452505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86141dc8686846144c1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600882901c9050600060ff83166001901b9050808460000160008481526020019081526020016000206000828254179250508190555050505050565b6000600882901c9050600060ff83166001901b905080198460000160008481526020019081526020016000206000828254169250508190555050505050565b60006001821460e11b9050919050565b6142b36144ca565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261438761414c565b8786866040518563ffffffff1660e01b81526004016143a99493929190615070565b602060405180830381600087803b1580156143c357600080fd5b505af19250505080156143f457506040513d601f19601f820116820180604052508101906143f19190614b11565b60015b61446e573d8060008114614424576040519150601f19603f3d011682016040523d82523d6000602084013e614429565b606091505b50600081511415614466576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b828054614525906155d8565b90600052602060002090601f016020900481019282614547576000855561458e565b82601f1061456057803560ff191683800117855561458e565b8280016001018555821561458e579182015b8281111561458d578235825591602001919060010190614572565b5b50905061459b919061459f565b5090565b5b808211156145b85760008160009055506001016145a0565b5090565b60006145cf6145ca846152e1565b6152bc565b9050828152602081018484840111156145e757600080fd5b6145f2848285615596565b509392505050565b60008135905061460981615911565b92915050565b60008151905061461e81615911565b92915050565b60008083601f84011261463657600080fd5b8235905067ffffffffffffffff81111561464f57600080fd5b60208301915083602082028301111561466757600080fd5b9250929050565b60008083601f84011261468057600080fd5b8235905067ffffffffffffffff81111561469957600080fd5b6020830191508360208202830111156146b157600080fd5b9250929050565b6000813590506146c781615928565b92915050565b6000813590506146dc8161593f565b92915050565b6000815190506146f18161593f565b92915050565b600082601f83011261470857600080fd5b81356147188482602086016145bc565b91505092915050565b60008083601f84011261473357600080fd5b8235905067ffffffffffffffff81111561474c57600080fd5b60208301915083600182028301111561476457600080fd5b9250929050565b60008135905061477a81615956565b92915050565b60008151905061478f81615956565b92915050565b6000813590506147a48161596d565b92915050565b6000602082840312156147bc57600080fd5b60006147ca848285016145fa565b91505092915050565b6000602082840312156147e557600080fd5b60006147f38482850161460f565b91505092915050565b6000806040838503121561480f57600080fd5b600061481d858286016145fa565b925050602061482e858286016145fa565b9150509250929050565b60008060006060848603121561484d57600080fd5b600061485b868287016145fa565b935050602061486c868287016145fa565b925050604061487d8682870161476b565b9150509250925092565b6000806000806080858703121561489d57600080fd5b60006148ab878288016145fa565b94505060206148bc878288016145fa565b93505060406148cd8782880161476b565b925050606085013567ffffffffffffffff8111156148ea57600080fd5b6148f6878288016146f7565b91505092959194509250565b6000806040838503121561491557600080fd5b6000614923858286016145fa565b9250506020614934858286016146b8565b9150509250929050565b6000806040838503121561495157600080fd5b600061495f858286016145fa565b92505060206149708582860161476b565b9150509250929050565b60008060006060848603121561498f57600080fd5b600061499d868287016145fa565b93505060206149ae8682870161476b565b92505060406149bf8682870161476b565b9150509250925092565b600080604083850312156149dc57600080fd5b60006149ea858286016145fa565b92505060206149fb85828601614795565b9150509250929050565b60008060008060408587031215614a1b57600080fd5b600085013567ffffffffffffffff811115614a3557600080fd5b614a4187828801614624565b9450945050602085013567ffffffffffffffff811115614a6057600080fd5b614a6c8782880161466e565b925092505092959194509250565b60008060208385031215614a8d57600080fd5b600083013567ffffffffffffffff811115614aa757600080fd5b614ab38582860161466e565b92509250509250929050565b600060208284031215614ad157600080fd5b6000614adf848285016146b8565b91505092915050565b600060208284031215614afa57600080fd5b6000614b08848285016146cd565b91505092915050565b600060208284031215614b2357600080fd5b6000614b31848285016146e2565b91505092915050565b60008060208385031215614b4d57600080fd5b600083013567ffffffffffffffff811115614b6757600080fd5b614b7385828601614721565b92509250509250929050565b600060208284031215614b9157600080fd5b6000614b9f8482850161476b565b91505092915050565b600060208284031215614bba57600080fd5b6000614bc884828501614780565b91505092915050565b60008060408385031215614be457600080fd5b6000614bf28582860161476b565b9250506020614c038582860161476b565b9150509250929050565b6000614c198383614f36565b60808301905092915050565b6000614c318383614fef565b60208301905092915050565b614c46816154e7565b82525050565b614c55816154e7565b82525050565b6000614c6682615332565b614c708185615378565b9350614c7b83615312565b8060005b83811015614cac578151614c938882614c0d565b9750614c9e8361535e565b925050600181019050614c7f565b5085935050505092915050565b6000614cc48261533d565b614cce8185615389565b9350614cd983615322565b8060005b83811015614d0a578151614cf18882614c25565b9750614cfc8361536b565b925050600181019050614cdd565b5085935050505092915050565b614d20816154f9565b82525050565b614d2f816154f9565b82525050565b6000614d4082615348565b614d4a818561539a565b9350614d5a8185602086016155a5565b614d6381615740565b840191505092915050565b6000614d7982615353565b614d8381856153b6565b9350614d938185602086016155a5565b614d9c81615740565b840191505092915050565b6000614db282615353565b614dbc81856153c7565b9350614dcc8185602086016155a5565b80840191505092915050565b6000614de56026836153b6565b9150614df082615751565b604082019050919050565b6000614e086020836153b6565b9150614e13826157a0565b602082019050919050565b6000614e2b600e836153b6565b9150614e36826157c9565b602082019050919050565b6000614e4e6012836153b6565b9150614e59826157f2565b602082019050919050565b6000614e716000836153ab565b9150614e7c8261581b565b600082019050919050565b6000614e946010836153b6565b9150614e9f8261581e565b602082019050919050565b6000614eb7602a836153b6565b9150614ec282615847565b604082019050919050565b6000614eda601f836153b6565b9150614ee582615896565b602082019050919050565b6000614efd6009836153b6565b9150614f08826158bf565b602082019050919050565b6000614f206019836153b6565b9150614f2b826158e8565b602082019050919050565b608082016000820151614f4c6000850182614c3d565b506020820151614f5f602085018261500d565b506040820151614f726040850182614d17565b506060820151614f856060850182614fe0565b50505050565b608082016000820151614fa16000850182614c3d565b506020820151614fb4602085018261500d565b506040820151614fc76040850182614d17565b506060820151614fda6060850182614fe0565b50505050565b614fe981615551565b82525050565b614ff881615560565b82525050565b61500781615560565b82525050565b6150168161556a565b82525050565b60006150288285614da7565b91506150348284614da7565b91508190509392505050565b600061504b82614e64565b9150819050919050565b600060208201905061506a6000830184614c4c565b92915050565b60006080820190506150856000830187614c4c565b6150926020830186614c4c565b61509f6040830185614ffe565b81810360608301526150b18184614d35565b905095945050505050565b60006040820190506150d16000830185614c4c565b6150de6020830184614ffe565b9392505050565b600060208201905081810360008301526150ff8184614c5b565b905092915050565b600060208201905081810360008301526151218184614cb9565b905092915050565b600060208201905061513e6000830184614d26565b92915050565b6000602082019050818103600083015261515e8184614d6e565b905092915050565b6000602082019050818103600083015261517f81614dd8565b9050919050565b6000602082019050818103600083015261519f81614dfb565b9050919050565b600060208201905081810360008301526151bf81614e1e565b9050919050565b600060208201905081810360008301526151df81614e41565b9050919050565b600060208201905081810360008301526151ff81614e87565b9050919050565b6000602082019050818103600083015261521f81614eaa565b9050919050565b6000602082019050818103600083015261523f81614ecd565b9050919050565b6000602082019050818103600083015261525f81614ef0565b9050919050565b6000602082019050818103600083015261527f81614f13565b9050919050565b600060808201905061529b6000830184614f8b565b92915050565b60006020820190506152b66000830184614ffe565b92915050565b60006152c66152d7565b90506152d2828261560a565b919050565b6000604051905090565b600067ffffffffffffffff8211156152fc576152fb615711565b5b61530582615740565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153dd82615560565b91506153e883615560565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561541d5761541c615684565b5b828201905092915050565b600061543382615560565b915061543e83615560565b92508261544e5761544d6156b3565b5b828204905092915050565b600061546482615560565b915061546f83615560565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154a8576154a7615684565b5b828202905092915050565b60006154be82615560565b91506154c983615560565b9250828210156154dc576154db615684565b5b828203905092915050565b60006154f282615531565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156155c35780820151818401526020810190506155a8565b838111156155d2576000848401525b50505050565b600060028204905060018216806155f057607f821691505b60208210811415615604576156036156e2565b5b50919050565b61561382615740565b810181811067ffffffffffffffff8211171561563257615631615711565b5b80604052505050565b600061564682615560565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561567957615678615684565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f636c61696d6564206265666f7265000000000000000000000000000000000000600082015250565b7f6e6f74206f776e6572206f722061646d696e0000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61591a816154e7565b811461592557600080fd5b50565b615931816154f9565b811461593c57600080fd5b50565b61594881615505565b811461595357600080fd5b50565b61595f81615560565b811461596a57600080fd5b50565b6159768161557e565b811461598157600080fd5b5056fea2646970667358221220b22911caf1fc780d43b58b094eab6eecdaf2c52d4f5b4ac4c9a1402d634f62d564736f6c63430008040033
Deployed Bytecode Sourcemap
84727:10880:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94374:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94827:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21007:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92644:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27498:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93419:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16758:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85267:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87126:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93643:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80045:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;92197:98;;;;;;;;;;;;;:::i;:::-;;85315:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88471:1147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91573:180;;;;;;;;;;;;;:::i;:::-;;93873:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63104:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85781:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90395:367;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87003:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92488:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85025:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85609:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85132:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92335:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57340:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22400:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89703:637;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85199:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92054:101;;;;;;;;;;;;;:::i;:::-;;17942:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74702:103;;;;;;;;;;;;;:::i;:::-;;86850:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85702:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61216:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74054:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21183:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58256:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93193:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94979:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94111:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56753:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21393:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86689:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90867:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85367:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86488:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85436:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87312:1151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92815:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28447:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85532:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91307:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74960:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85992:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94374:445;94506:4;94731:38;94757:11;94731:25;:38::i;:::-;:80;;;;94773:38;94799:11;94773:25;:38::i;:::-;94731:80;94724:87;;94374:445;;;:::o;94827:144::-;73940:13;:11;:13::i;:::-;94921:42:::1;94940:8;94950:12;94921:18;:42::i;:::-;94827:144:::0;;:::o;21007:100::-;21061:13;21094:5;21087:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21007:100;:::o;92644:111::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;92740:7:::1;92723:14;:24;;;;92644:111:::0;:::o;27498:218::-;27574:7;27599:16;27607:7;27599;:16::i;:::-;27594:64;;27624:34;;;;;;;;;;;;;;27594:64;27678:15;:24;27694:7;27678:24;;;;;;;;;;;:30;;;;;;;;;;;;27671:37;;27498:218;;;:::o;93419:216::-;93569:8;66796:29;66816:8;66796:19;:29::i;:::-;66791:122;;66846:27;:25;:27::i;:::-;66842:59;;;66875:26;66892:8;66875:16;:26::i;:::-;66842:59;66791:122;93595:32:::1;93609:8;93619:7;93595:13;:32::i;:::-;93419:216:::0;;;:::o;84920:87::-;84965:42;84920:87;:::o;16758:323::-;16819:7;17047:15;:13;:15::i;:::-;17032:12;;17016:13;;:28;:46;17009:53;;16758:323;:::o;85267:41::-;;;;;;;;;;;;;;:::o;87126:111::-;87184:4;87208:21;87223:5;87208:10;:14;;:21;;;;:::i;:::-;87201:28;;87126:111;;;:::o;93643:222::-;93798:4;66439:10;66431:18;;:4;:18;;;66427:184;;66471:31;66491:10;66471:19;:31::i;:::-;66466:134;;66527:27;:25;:27::i;:::-;66523:61;;;66556:28;66573:10;66556:16;:28::i;:::-;66523:61;66466:134;66427:184;93820:37:::1;93839:4;93845:2;93849:7;93820:18;:37::i;:::-;93643:222:::0;;;;:::o;80045:442::-;80142:7;80151;80171:26;80200:17;:27;80218:8;80200:27;;;;;;;;;;;80171:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80272:1;80244:30;;:7;:16;;;:30;;;80240:92;;;80301:19;80291:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80240:92;80344:21;80409:17;:15;:17::i;:::-;80368:58;;80382:7;:23;;;80369:36;;:10;:36;;;;:::i;:::-;80368:58;;;;:::i;:::-;80344:82;;80447:7;:16;;;80465:13;80439:40;;;;;;80045:442;;;;;:::o;92197:98::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;92275:12:::1;;;;;;;;;;;92274:13;92259:12;;:28;;;;;;;;;;;;;;;;;;92197:98::o:0;85315:39::-;;;;:::o;88471:1147::-;71311:21;:19;:21::i;:::-;88566:13:::1;;;;;;;;;;;88558:22;;;::::0;::::1;;88794:6;88789:306;88810:8;;:15;;88806:1;:19;88789:306;;;88847:15;88865:8;;88874:1;88865:11;;;;;;;;;;;;;;;;;;;;;88847:29;;88947:10;88899:58;;85070:42;88899:35;;;88935:7;88899:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;;88891:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;88995:23;89010:7;88995:10;:14;;:23;;;;:::i;:::-;88994:24;88986:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;89052:31;89069:7;89078:4;89052:10;:16;;:31;;;;;:::i;:::-;88789:306;88827:3;;;;:::i;:::-;;;88789:306;;;;89198:19;89220:8;;:15;;89198:37;;85172:4;89305:14;89288;:12;:14::i;:::-;:31;;;;:::i;:::-;:48;;89280:57;;;::::0;::::1;;85238:4;89415:14;89394:18;;:35;;;;:::i;:::-;:51;;89386:60;;;::::0;::::1;;89550:14;89528:18;;:36;;;;;;;:::i;:::-;;;;;;;;89577:33;89583:10;89595:14;89577:5;:33::i;:::-;71343:1;71355:20:::0;:18;:20::i;:::-;88471:1147;;:::o;91573:180::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;91631:12:::1;91649:10;:15;;91672:21;91649:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91630:68;;;91717:7;91709:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;93116:1;91573:180::o:0;93873:230::-;94032:4;66439:10;66431:18;;:4;:18;;;66427:184;;66471:31;66491:10;66471:19;:31::i;:::-;66466:134;;66527:27;:25;:27::i;:::-;66523:61;;;66556:28;66573:10;66556:16;:28::i;:::-;66523:61;66466:134;66427:184;94054:41:::1;94077:4;94083:2;94087:7;94054:22;:41::i;:::-;93873:230:::0;;;;:::o;63104:94::-;63170:20;63176:7;63185:4;63170:5;:20::i;:::-;63104:94;:::o;85781:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;90395:367::-;71311:21;:19;:21::i;:::-;90488:12:::1;;;;;;;;;;;90480:21;;;::::0;::::1;;85172:4;90560:14;90543;:12;:14::i;:::-;:31;;;;:::i;:::-;:48;;90535:57;;;::::0;::::1;;90669:9;90651:14;90634;;:31;;;;:::i;:::-;:44;;90626:53;;;::::0;::::1;;90721:33;90727:10;90739:14;90721:5;:33::i;:::-;71355:20:::0;:18;:20::i;:::-;90395:367;:::o;87003:111::-;87061:4;87085:21;87100:5;87085:10;:14;;:21;;;;:::i;:::-;87078:28;;87003:111;;;:::o;92488:116::-;73940:13;:11;:13::i;:::-;92587:9:::1;92568:6;:16;92575:8;92568:16;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;92488:116:::0;;:::o;85025:87::-;85070:42;85025:87;:::o;85609:33::-;;;;;;;;;;;;;:::o;85132:44::-;85172:4;85132:44;:::o;92335:111::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;92432:6:::1;92415:14;:23;;;;92335:111:::0;:::o;57340:528::-;57484:23;57550:22;57575:8;;:15;;57550:40;;57605:34;57663:14;57642:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;57605:73;;57698:9;57693:125;57714:14;57709:1;:19;57693:125;;57770:32;57790:8;;57799:1;57790:11;;;;;;;;;;;;;;;;;;;;;57770:19;:32::i;:::-;57754:10;57765:1;57754:13;;;;;;;;;;;;;;;;;;;;;:48;;;;57730:3;;;;;57693:125;;;;57839:10;57832:17;;;;57340:528;;;;:::o;22400:152::-;22472:7;22515:27;22534:7;22515:18;:27::i;:::-;22492:52;;22400:152;;;:::o;89703:637::-;71311:21;:19;:21::i;:::-;89805:13:::1;;;;;;;;;;;89797:22;;;::::0;::::1;;85172:4;89914:14;89897;:12;:14::i;:::-;:31;;;;:::i;:::-;:48;;89889:57;;;::::0;::::1;;90023:9;90005:14;89988;;:31;;;;:::i;:::-;:44;;89980:53;;;::::0;::::1;;90099:14;:26;90114:10;90099:26;;;;;;;;;;;;;;;;90081:14;:44;;90073:53;;;::::0;::::1;;90241:14;90212;:26;90227:10;90212:26;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;90183:14;:26;90198:10;90183:26;;;;;;;;;;;;;;;:72;;;;90299:33;90305:10;90317:14;90299:5;:33::i;:::-;71355:20:::0;:18;:20::i;:::-;89703:637;:::o;85199:43::-;85238:4;85199:43;:::o;92054:101::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;92134:13:::1;;;;;;;;;;;92133:14;92117:13;;:30;;;;;;;;;;;;;;;;;;92054:101::o:0;17942:233::-;18014:7;18055:1;18038:19;;:5;:19;;;18034:60;;;18066:28;;;;;;;;;;;;;;18034:60;12101:13;18112:18;:25;18131:5;18112:25;;;;;;;;;;;;;;;;:55;18105:62;;17942:233;;;:::o;74702:103::-;73940:13;:11;:13::i;:::-;74767:30:::1;74794:1;74767:18;:30::i;:::-;74702:103::o:0;86850:145::-;86915:7;85070:42;86942:37;;;86980:6;86942:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86935:52;;86850:145;;;:::o;85702:46::-;;;;;;;;;;;;;;;;;:::o;61216:900::-;61294:16;61348:19;61382:25;61422:22;61447:16;61457:5;61447:9;:16::i;:::-;61422:41;;61478:25;61520:14;61506:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61478:57;;61550:31;;:::i;:::-;61601:9;61613:15;:13;:15::i;:::-;61601:27;;61596:472;61645:14;61630:11;:29;61596:472;;61697:15;61710:1;61697:12;:15::i;:::-;61685:27;;61735:9;:16;;;61731:73;;;61776:8;;61731:73;61852:1;61826:28;;:9;:14;;;:28;;;61822:111;;61899:9;:14;;;61879:34;;61822:111;61976:5;61955:26;;:17;:26;;;61951:102;;;62032:1;62006:8;62015:13;;;;;;62006:23;;;;;;;;;;;;;;;;;;;;;:27;;;;;61951:102;61596:472;61661:3;;;;;61596:472;;;;62089:8;62082:15;;;;;;;61216:900;;;:::o;74054:87::-;74100:7;74127:6;;;;;;;;;;;74120:13;;74054:87;:::o;21183:104::-;21239:13;21272:7;21265:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21183:104;:::o;58256:2513::-;58399:16;58466:4;58457:5;:13;58453:45;;58479:19;;;;;;;;;;;;;;58453:45;58513:19;58547:17;58567:14;:12;:14::i;:::-;58547:34;;58667:15;:13;:15::i;:::-;58659:5;:23;58655:87;;;58711:15;:13;:15::i;:::-;58703:23;;58655:87;58818:9;58811:4;:16;58807:73;;;58855:9;58848:16;;58807:73;58894:25;58922:16;58932:5;58922:9;:16::i;:::-;58894:44;;59116:4;59108:5;:12;59104:278;;;59141:19;59170:5;59163:4;:12;59141:34;;59212:17;59198:11;:31;59194:111;;;59274:11;59254:31;;59194:111;59104:278;;;;59365:1;59345:21;;59104:278;59396:25;59438:17;59424:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59396:60;;59496:1;59475:17;:22;59471:78;;;59525:8;59518:15;;;;;;;;59471:78;59693:31;59727:26;59747:5;59727:19;:26::i;:::-;59693:60;;59768:25;60013:9;:16;;;60008:92;;60070:9;:14;;;60050:34;;60008:92;60119:9;60131:5;60119:17;;60114:478;60143:4;60138:1;:9;;:45;;;;;60166:17;60151:11;:32;;60138:45;60114:478;;;60221:15;60234:1;60221:12;:15::i;:::-;60209:27;;60259:9;:16;;;60255:73;;;60300:8;;60255:73;60376:1;60350:28;;:9;:14;;;:28;;;60346:111;;60423:9;:14;;;60403:34;;60346:111;60500:5;60479:26;;:17;:26;;;60475:102;;;60556:1;60530:8;60539:13;;;;;;60530:23;;;;;;;;;;;;;;;;;;;;;:27;;;;;60475:102;60114:478;60185:3;;;;;60114:478;;;;60694:11;60684:8;60677:29;60742:8;60735:15;;;;;;;;58256:2513;;;;;;:::o;93193:218::-;93334:8;66796:29;66816:8;66796:19;:29::i;:::-;66791:122;;66846:27;:25;:27::i;:::-;66842:59;;;66875:26;66892:8;66875:16;:26::i;:::-;66842:59;66791:122;93360:43:::1;93384:8;93394;93360:23;:43::i;:::-;93193:218:::0;;;:::o;94979:117::-;73940:13;:11;:13::i;:::-;95083:5:::1;95056:24;;:32;;;;;;;;;;;;;;;;;;94979:117:::0;:::o;94111:255::-;94289:4;66439:10;66431:18;;:4;:18;;;66427:184;;66471:31;66491:10;66471:19;:31::i;:::-;66466:134;;66527:27;:25;:27::i;:::-;66523:61;;;66556:28;66573:10;66556:16;:28::i;:::-;66523:61;66466:134;66427:184;94311:47:::1;94334:4;94340:2;94344:7;94353:4;94311:22;:47::i;:::-;94111:255:::0;;;;;:::o;56753:428::-;56837:21;;:::i;:::-;56871:31;;:::i;:::-;56927:15;:13;:15::i;:::-;56917:7;:25;:54;;;;56957:14;:12;:14::i;:::-;56946:7;:25;;56917:54;56913:103;;;56995:9;56988:16;;;;;56913:103;57038:21;57051:7;57038:12;:21::i;:::-;57026:33;;57074:9;:16;;;57070:65;;;57114:9;57107:16;;;;;57070:65;57152:21;57165:7;57152:12;:21::i;:::-;57145:28;;;56753:428;;;;:::o;21393:318::-;21466:13;21497:16;21505:7;21497;:16::i;:::-;21492:59;;21522:29;;;;;;;;;;;;;;21492:59;21564:21;21588:10;:8;:10::i;:::-;21564:34;;21641:1;21622:7;21616:21;:26;;:87;;;;;;;;;;;;;;;;;21669:7;21678:18;21688:7;21678:9;:18::i;:::-;21652:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21616:87;21609:94;;;21393:318;;;:::o;86689:149::-;86754:7;86829:1;84965:42;86781:37;;;86819:6;86781:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;;:::i;:::-;86774:56;;86689:149;;;:::o;90867:340::-;71311:21;:19;:21::i;:::-;93050:10:::1;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;85172:4:::2;90993:14;90976;:12;:14::i;:::-;:31;;;;:::i;:::-;:48;;90968:57;;;::::0;::::2;;91062:14;;91044;:32;;91036:41;;;::::0;::::2;;91113:25;91119:2;91123:14;91113:5;:25::i;:::-;91185:14;91168;;:31;;;;:::i;:::-;91151:14;:48;;;;71355:20:::0;:18;:20::i;:::-;90867:340;;:::o;85367:31::-;;;;:::o;86488:193::-;86547:4;86619:1;84965:42;86571:37;;;86609:6;86571:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;:102;;;;86672:1;85070:42;86624:37;;;86662:6;86624:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;86571:102;86564:109;;86488:193;;;:::o;85436:34::-;;;;:::o;87312:1151::-;71311:21;:19;:21::i;:::-;87407:13:::1;;;;;;;;;;;87399:22;;;::::0;::::1;;87635:6;87630:306;87651:8;;:15;;87647:1;:19;87630:306;;;87688:15;87706:8;;87715:1;87706:11;;;;;;;;;;;;;;;;;;;;;87688:29;;87788:10;87740:58;;84965:42;87740:35;;;87776:7;87740:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;;87732:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;87836:23;87851:7;87836:10;:14;;:23;;;;:::i;:::-;87835:24;87827:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;87893:31;87910:7;87919:4;87893:10;:16;;:31;;;;;:::i;:::-;87630:306;87668:3;;;;:::i;:::-;;;87630:306;;;;88039:19;88079:1;88061:8;;:15;;:19;;;;:::i;:::-;88039:41;;85172:4;88150:14;88133;:12;:14::i;:::-;:31;;;;:::i;:::-;:48;;88125:57;;;::::0;::::1;;85238:4;88260:14;88239:18;;:35;;;;:::i;:::-;:51;;88231:60;;;::::0;::::1;;88395:14;88373:18;;:36;;;;;;;:::i;:::-;;;;;;;;88422:33;88428:10;88440:14;88422:5;:33::i;:::-;71343:1;71355:20:::0;:18;:20::i;:::-;87312:1151;;:::o;92815:120::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;92917:10:::1;;92901:13;:26;;;;;;;:::i;:::-;;92815:120:::0;;:::o;28447:164::-;28544:4;28568:18;:25;28587:5;28568:25;;;;;;;;;;;;;;;:35;28594:8;28568:35;;;;;;;;;;;;;;;;;;;;;;;;;28561:42;;28447:164;;;;:::o;85532:32::-;;;;;;;;;;;;;:::o;91307:235::-;93050:10;93039:21;;:7;:5;:7::i;:::-;:21;;;:43;;;;93064:6;:18;93071:10;93064:18;;;;;;;;;;;;;;;;;;;;;;;;;93039:43;93031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;91427:6:::1;91422:113;91443:9;;:16;;91439:1;:20;91422:113;;;91512:8;;91521:1;91512:11;;;;;;;;;;;;;;;;;;;;;91481:14;:28;91496:9;;91506:1;91496:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91481:28;;;;;;;;;;;;;;;:42;;;;91461:3;;;;:::i;:::-;;;91422:113;;;;91307:235:::0;;;;:::o;74960:201::-;73940:13;:11;:13::i;:::-;75069:1:::1;75049:22;;:8;:22;;;;75041:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;75125:28;75144:8;75125:18;:28::i;:::-;74960:201:::0;:::o;85992:36::-;;;;;;;;;;;;;:::o;20105:639::-;20190:4;20529:10;20514:25;;:11;:25;;;;:102;;;;20606:10;20591:25;;:11;:25;;;;20514:102;:179;;;;20683:10;20668:25;;:11;:25;;;;20514:179;20494:199;;20105:639;;;:::o;79775:215::-;79877:4;79916:26;79901:41;;;:11;:41;;;;:81;;;;79946:36;79970:11;79946:23;:36::i;:::-;79901:81;79894:88;;79775:215;;;:::o;74219:132::-;74294:12;:10;:12::i;:::-;74283:23;;:7;:5;:7::i;:::-;:23;;;74275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74219:132::o;81137:332::-;81256:17;:15;:17::i;:::-;81240:33;;:12;:33;;;;81232:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;81359:1;81339:22;;:8;:22;;;;81331:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;81426:35;;;;;;;;81438:8;81426:35;;;;;;81448:12;81426:35;;;;;81404:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81137:332;;:::o;28869:282::-;28934:4;28990:7;28971:15;:13;:15::i;:::-;:26;;:66;;;;;29024:13;;29014:7;:23;28971:66;:153;;;;;29123:1;12877:8;29075:17;:26;29093:7;29075:26;;;;;;;;;;;;:44;:49;28971:153;28951:173;;28869:282;;;:::o;95104:386::-;95183:4;95439:42;95419:63;;:8;:63;;;95412:70;;95104:386;;;:::o;68540:104::-;68608:4;68632;68625:11;;68540:104;:::o;67029:1359::-;67422:22;67416:4;67409:36;67515:9;67509:4;67502:23;67590:8;67584:4;67577:22;67767:4;67761;67755;67749;67722:25;67715:5;67704:68;67694:2;;67888:16;67882:4;67876;67861:44;67936:16;67930:4;67923:30;67694:2;68368:1;68362:4;68355:15;67150:1231;:::o;26931:408::-;27020:13;27036:16;27044:7;27036;:16::i;:::-;27020:32;;27092:5;27069:28;;:19;:17;:19::i;:::-;:28;;;27065:175;;27117:44;27134:5;27141:19;:17;:19::i;:::-;27117:16;:44::i;:::-;27112:128;;27189:35;;;;;;;;;;;;;;27112:128;27065:175;27285:2;27252:15;:24;27268:7;27252:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27323:7;27319:2;27303:28;;27312:5;27303:28;;;;;;;;;;;;26931:408;;;:::o;16274:92::-;16330:7;16274:92;:::o;83165:221::-;83239:4;83256:14;83282:1;83273:5;:10;;83256:27;;83294:12;83323:4;83315:5;:12;83309:1;:19;;83294:34;;83377:1;83369:4;83346:6;:12;;:20;83359:6;83346:20;;;;;;;;;;;;:27;:32;;83339:39;;;;83165:221;;;;:::o;31137:2825::-;31279:27;31309;31328:7;31309:18;:27::i;:::-;31279:57;;31394:4;31353:45;;31369:19;31353:45;;;31349:86;;31407:28;;;;;;;;;;;;;;31349:86;31449:27;31478:23;31505:35;31532:7;31505:26;:35::i;:::-;31448:92;;;;31640:68;31665:15;31682:4;31688:19;:17;:19::i;:::-;31640:24;:68::i;:::-;31635:180;;31728:43;31745:4;31751:19;:17;:19::i;:::-;31728:16;:43::i;:::-;31723:92;;31780:35;;;;;;;;;;;;;;31723:92;31635:180;31846:1;31832:16;;:2;:16;;;31828:52;;;31857:23;;;;;;;;;;;;;;31828:52;31893:43;31915:4;31921:2;31925:7;31934:1;31893:21;:43::i;:::-;32029:15;32026:2;;;32169:1;32148:19;32141:30;32026:2;32566:18;:24;32585:4;32566:24;;;;;;;;;;;;;;;;32564:26;;;;;;;;;;;;32635:18;:22;32654:2;32635:22;;;;;;;;;;;;;;;;32633:24;;;;;;;;;;;32957:146;32994:2;33043:45;33058:4;33064:2;33068:19;33043:14;:45::i;:::-;13157:8;33015:73;32957:18;:146::i;:::-;32928:17;:26;32946:7;32928:26;;;;;;;;;;;:175;;;;33274:1;13157:8;33223:19;:47;:52;33219:627;;;33296:19;33328:1;33318:7;:11;33296:33;;33485:1;33451:17;:30;33469:11;33451:30;;;;;;;;;;;;:35;33447:384;;;33589:13;;33574:11;:28;33570:242;;33769:19;33736:17;:30;33754:11;33736:30;;;;;;;;;;;:52;;;;33570:242;33447:384;33219:627;;33893:7;33889:2;33874:27;;33883:4;33874:27;;;;;;;;;;;;33912:42;33933:4;33939:2;33943:7;33952:1;33912:20;:42::i;:::-;31137:2825;;;;;;:::o;80769:97::-;80827:6;80853:5;80846:12;;80769:97;:::o;71391:293::-;70793:1;71525:7;;:19;;71517:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70793:1;71658:7;:18;;;;71391:293::o;83473:235::-;83596:5;83592:109;;;83618:18;83622:6;83630:5;83618:3;:18::i;:::-;83592:109;;;83669:20;83675:6;83683:5;83669;:20::i;:::-;83592:109;83473:235;;;:::o;17179:296::-;17234:7;17441:15;:13;:15::i;:::-;17425:13;;:31;17418:38;;17179:296;:::o;38518:2966::-;38591:20;38614:13;;38591:36;;38654:1;38642:8;:13;38638:44;;;38664:18;;;;;;;;;;;;;;38638:44;38695:61;38725:1;38729:2;38733:12;38747:8;38695:21;:61::i;:::-;39239:1;12239:2;39209:1;:26;;39208:32;39196:8;:45;39170:18;:22;39189:2;39170:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39518:139;39555:2;39609:33;39632:1;39636:2;39640:1;39609:14;:33::i;:::-;39576:30;39597:8;39576:20;:30::i;:::-;:66;39518:18;:139::i;:::-;39484:17;:31;39502:12;39484:31;;;;;;;;;;;:173;;;;39674:16;39705:11;39734:8;39719:12;:23;39705:37;;40255:16;40251:2;40247:25;40235:37;;40627:12;40587:8;40546:1;40484:25;40425:1;40364;40337:335;40998:1;40984:12;40980:20;40938:346;41039:3;41030:7;41027:16;40938:346;;41257:7;41247:8;41244:1;41217:25;41214:1;41211;41206:59;41092:1;41083:7;41079:15;41068:26;;40938:346;;;40942:77;41329:1;41317:8;:13;41313:45;;;41339:19;;;;;;;;;;;;;;41313:45;41391:3;41375:13;:19;;;;38518:2966;;41416:60;41445:1;41449:2;41453:12;41467:8;41416:20;:60::i;:::-;38518:2966;;;:::o;71692:213::-;70749:1;71875:7;:22;;;;71692:213::o;34058:193::-;34204:39;34221:4;34227:2;34231:7;34204:39;;;;;;;;;;;;:16;:39::i;:::-;34058:193;;;:::o;45706:3081::-;45786:27;45816;45835:7;45816:18;:27::i;:::-;45786:57;;45856:12;45887:19;45856:52;;45922:27;45951:23;45978:35;46005:7;45978:26;:35::i;:::-;45921:92;;;;46030:13;46026:316;;;46151:68;46176:15;46193:4;46199:19;:17;:19::i;:::-;46151:24;:68::i;:::-;46146:184;;46243:43;46260:4;46266:19;:17;:19::i;:::-;46243:16;:43::i;:::-;46238:92;;46295:35;;;;;;;;;;;;;;46238:92;46146:184;46026:316;46354:51;46376:4;46390:1;46394:7;46403:1;46354:21;:51::i;:::-;46498:15;46495:2;;;46638:1;46617:19;46610:30;46495:2;47316:1;12366:3;47286:1;:26;;47285:32;47257:18;:24;47276:4;47257:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;47584:176;47621:4;47692:53;47707:4;47721:1;47725:19;47692:14;:53::i;:::-;13157:8;12877;47645:43;47644:101;47584:18;:176::i;:::-;47555:17;:26;47573:7;47555:26;;;;;;;;;;;:205;;;;47931:1;13157:8;47880:19;:47;:52;47876:627;;;47953:19;47985:1;47975:7;:11;47953:33;;48142:1;48108:17;:30;48126:11;48108:30;;;;;;;;;;;;:35;48104:384;;;48246:13;;48231:11;:28;48227:242;;48426:19;48393:17;:30;48411:11;48393:30;;;;;;;;;;;:52;;;;48227:242;48104:384;47876:627;;48558:7;48554:1;48531:35;;48540:4;48531:35;;;;;;;;;;;;48577:50;48598:4;48612:1;48616:7;48625:1;48577:20;:50::i;:::-;48754:12;;:14;;;;;;;;;;;;;45706:3081;;;;;;:::o;23555:1275::-;23622:7;23642:12;23657:7;23642:22;;23725:4;23706:15;:13;:15::i;:::-;:23;23702:1061;;23759:13;;23752:4;:20;23748:1015;;;23797:14;23814:17;:23;23832:4;23814:23;;;;;;;;;;;;23797:40;;23931:1;12877:8;23903:6;:24;:29;23899:845;;;24568:113;24585:1;24575:6;:11;24568:113;;;24628:17;:25;24646:6;;;;;;;24628:25;;;;;;;;;;;;24619:34;;24568:113;;;24714:6;24707:13;;;;;;23899:845;23748:1015;;23702:1061;24791:31;;;;;;;;;;;;;;23555:1275;;;;:::o;75321:191::-;75395:16;75414:6;;;;;;;;;;;75395:25;;75440:8;75431:6;;:17;;;;;;;;;;;;;;;;;;75495:8;75464:40;;75485:8;75464:40;;;;;;;;;;;;75321:191;;:::o;23003:161::-;23071:21;;:::i;:::-;23112:44;23131:17;:24;23149:5;23131:24;;;;;;;;;;;;23112:18;:44::i;:::-;23105:51;;23003:161;;;:::o;16445:103::-;16500:7;16527:13;;16520:20;;16445:103;:::o;28056:234::-;28203:8;28151:18;:39;28170:19;:17;:19::i;:::-;28151:39;;;;;;;;;;;;;;;:49;28191:8;28151:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28263:8;28227:55;;28242:19;:17;:19::i;:::-;28227:55;;;28273:8;28227:55;;;;;;:::i;:::-;;;;;;;;28056:234;;:::o;34849:407::-;35024:31;35037:4;35043:2;35047:7;35024:12;:31::i;:::-;35088:1;35070:2;:14;;;:19;35066:183;;35109:56;35140:4;35146:2;35150:7;35159:5;35109:30;:56::i;:::-;35104:145;;35193:40;;;;;;;;;;;;;;35104:145;35066:183;34849:407;;;;:::o;22741:166::-;22811:21;;:::i;:::-;22852:47;22871:27;22890:7;22871:18;:27::i;:::-;22852:18;:47::i;:::-;22845:54;;22741:166;;;:::o;95498:106::-;95550:13;95583;95576:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95498:106;:::o;51384:1745::-;51449:17;51883:4;51876;51870:11;51866:22;51975:1;51969:4;51962:15;52050:4;52047:1;52043:12;52036:19;;52132:1;52127:3;52120:14;52236:3;52475:5;52457:428;52483:1;52457:428;;;52523:1;52518:3;52514:11;52507:18;;52694:2;52688:4;52684:13;52680:2;52676:22;52671:3;52663:36;52788:2;52782:4;52778:13;52770:21;;52855:4;52845:2;;52863:5;;52845:2;52457:428;;;52461:21;52924:3;52919;52915:13;53039:4;53034:3;53030:14;53023:21;;53104:6;53099:3;53092:19;51488:1634;;;;;;:::o;78219:157::-;78304:4;78343:25;78328:40;;;:11;:40;;;;78321:47;;78219:157;;;:::o;72599:98::-;72652:7;72679:10;72672:17;;72599:98;:::o;51177:105::-;51237:7;51264:10;51257:17;;51177:105;:::o;30032:485::-;30134:27;30163:23;30204:38;30245:15;:24;30261:7;30245:24;;;;;;;;;;;30204:65;;30422:18;30399:41;;30479:19;30473:26;30454:45;;30384:126;;;;:::o;29260:659::-;29409:11;29574:16;29567:5;29563:28;29554:37;;29734:16;29723:9;29719:32;29706:45;;29884:15;29873:9;29870:30;29862:5;29851:9;29848:20;29845:56;29835:66;;29442:470;;;;;:::o;35918:159::-;;;;;:::o;50486:311::-;50621:7;50641:16;13281:3;50667:19;:41;;50641:68;;13281:3;50735:31;50746:4;50752:2;50756:9;50735:10;:31::i;:::-;50727:40;;:62;;50720:69;;;50486:311;;;;;:::o;25378:450::-;25458:14;25626:16;25619:5;25615:28;25606:37;;25803:5;25789:11;25764:23;25760:41;25757:52;25750:5;25747:63;25737:73;;25494:327;;;;:::o;36742:158::-;;;;;:::o;83772:190::-;83843:14;83869:1;83860:5;:10;;83843:27;;83881:12;83910:4;83902:5;:12;83896:1;:19;;83881:34;;83950:4;83926:6;:12;;:20;83939:6;83926:20;;;;;;;;;;;;:28;;;;;;;;;;;83772:190;;;;:::o;84028:193::-;84101:14;84127:1;84118:5;:10;;84101:27;;84139:12;84168:4;84160:5;:12;84154:1;:19;;84139:34;;84209:4;84208:5;84184:6;:12;;:20;84197:6;84184:20;;;;;;;;;;;;:29;;;;;;;;;;;84028:193;;;;:::o;25930:324::-;26000:14;26233:1;26223:8;26220:15;26194:24;26190:46;26180:56;;26102:145;;;:::o;24929:366::-;24995:31;;:::i;:::-;25072:6;25039:9;:14;;:41;;;;;;;;;;;12760:3;25125:6;:33;;25091:9;:24;;:68;;;;;;;;;;;25217:1;12877:8;25189:6;:24;:29;;25170:9;:16;;:48;;;;;;;;;;;13281:3;25258:6;:28;;25229:9;:19;;:58;;;;;;;;;;;24929:366;;;:::o;37340:716::-;37503:4;37549:2;37524:45;;;37570:19;:17;:19::i;:::-;37591:4;37597:7;37606:5;37524:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37520:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37824:1;37807:6;:13;:18;37803:235;;;37853:40;;;;;;;;;;;;;;37803:235;37996:6;37990:13;37981:6;37977:2;37973:15;37966:38;37520:529;37693:54;;;37683:64;;;:6;:64;;;;37676:71;;;37340:716;;;;;;:::o;50187:147::-;50324:6;50187:147;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:143::-;558:5;589:6;583:13;574:22;;605:33;632:5;605:33;:::i;:::-;564:80;;;;:::o;667:367::-;740:8;750:6;800:3;793:4;785:6;781:17;777:27;767:2;;818:1;815;808:12;767:2;854:6;841:20;831:30;;884:18;876:6;873:30;870:2;;;916:1;913;906:12;870:2;953:4;945:6;941:17;929:29;;1007:3;999:4;991:6;987:17;977:8;973:32;970:41;967:2;;;1024:1;1021;1014:12;967:2;757:277;;;;;:::o;1057:367::-;1130:8;1140:6;1190:3;1183:4;1175:6;1171:17;1167:27;1157:2;;1208:1;1205;1198:12;1157:2;1244:6;1231:20;1221:30;;1274:18;1266:6;1263:30;1260:2;;;1306:1;1303;1296:12;1260:2;1343:4;1335:6;1331:17;1319:29;;1397:3;1389:4;1381:6;1377:17;1367:8;1363:32;1360:41;1357:2;;;1414:1;1411;1404:12;1357:2;1147:277;;;;;:::o;1430:133::-;1473:5;1511:6;1498:20;1489:29;;1527:30;1551:5;1527:30;:::i;:::-;1479:84;;;;:::o;1569:137::-;1614:5;1652:6;1639:20;1630:29;;1668:32;1694:5;1668:32;:::i;:::-;1620:86;;;;:::o;1712:141::-;1768:5;1799:6;1793:13;1784:22;;1815:32;1841:5;1815:32;:::i;:::-;1774:79;;;;:::o;1872:271::-;1927:5;1976:3;1969:4;1961:6;1957:17;1953:27;1943:2;;1994:1;1991;1984:12;1943:2;2034:6;2021:20;2059:78;2133:3;2125:6;2118:4;2110:6;2106:17;2059:78;:::i;:::-;2050:87;;1933:210;;;;;:::o;2163:352::-;2221:8;2231:6;2281:3;2274:4;2266:6;2262:17;2258:27;2248:2;;2299:1;2296;2289:12;2248:2;2335:6;2322:20;2312:30;;2365:18;2357:6;2354:30;2351:2;;;2397:1;2394;2387:12;2351:2;2434:4;2426:6;2422:17;2410:29;;2488:3;2480:4;2472:6;2468:17;2458:8;2454:32;2451:41;2448:2;;;2505:1;2502;2495:12;2448:2;2238:277;;;;;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2573:87;;;;:::o;2666:143::-;2723:5;2754:6;2748:13;2739:22;;2770:33;2797:5;2770:33;:::i;:::-;2729:80;;;;:::o;2815:137::-;2860:5;2898:6;2885:20;2876:29;;2914:32;2940:5;2914:32;:::i;:::-;2866:86;;;;:::o;2958:262::-;3017:6;3066:2;3054:9;3045:7;3041:23;3037:32;3034:2;;;3082:1;3079;3072:12;3034:2;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3024:196;;;;:::o;3226:284::-;3296:6;3345:2;3333:9;3324:7;3320:23;3316:32;3313:2;;;3361:1;3358;3351:12;3313:2;3404:1;3429:64;3485:7;3476:6;3465:9;3461:22;3429:64;:::i;:::-;3419:74;;3375:128;3303:207;;;;:::o;3516:407::-;3584:6;3592;3641:2;3629:9;3620:7;3616:23;3612:32;3609:2;;;3657:1;3654;3647:12;3609:2;3700:1;3725:53;3770:7;3761:6;3750:9;3746:22;3725:53;:::i;:::-;3715:63;;3671:117;3827:2;3853:53;3898:7;3889:6;3878:9;3874:22;3853:53;:::i;:::-;3843:63;;3798:118;3599:324;;;;;:::o;3929:552::-;4006:6;4014;4022;4071:2;4059:9;4050:7;4046:23;4042:32;4039:2;;;4087:1;4084;4077:12;4039:2;4130:1;4155:53;4200:7;4191:6;4180:9;4176:22;4155:53;:::i;:::-;4145:63;;4101:117;4257:2;4283:53;4328:7;4319:6;4308:9;4304:22;4283:53;:::i;:::-;4273:63;;4228:118;4385:2;4411:53;4456:7;4447:6;4436:9;4432:22;4411:53;:::i;:::-;4401:63;;4356:118;4029:452;;;;;:::o;4487:809::-;4582:6;4590;4598;4606;4655:3;4643:9;4634:7;4630:23;4626:33;4623:2;;;4672:1;4669;4662:12;4623:2;4715:1;4740:53;4785:7;4776:6;4765:9;4761:22;4740:53;:::i;:::-;4730:63;;4686:117;4842:2;4868:53;4913:7;4904:6;4893:9;4889:22;4868:53;:::i;:::-;4858:63;;4813:118;4970:2;4996:53;5041:7;5032:6;5021:9;5017:22;4996:53;:::i;:::-;4986:63;;4941:118;5126:2;5115:9;5111:18;5098:32;5157:18;5149:6;5146:30;5143:2;;;5189:1;5186;5179:12;5143:2;5217:62;5271:7;5262:6;5251:9;5247:22;5217:62;:::i;:::-;5207:72;;5069:220;4613:683;;;;;;;:::o;5302:401::-;5367:6;5375;5424:2;5412:9;5403:7;5399:23;5395:32;5392:2;;;5440:1;5437;5430:12;5392:2;5483:1;5508:53;5553:7;5544:6;5533:9;5529:22;5508:53;:::i;:::-;5498:63;;5454:117;5610:2;5636:50;5678:7;5669:6;5658:9;5654:22;5636:50;:::i;:::-;5626:60;;5581:115;5382:321;;;;;:::o;5709:407::-;5777:6;5785;5834:2;5822:9;5813:7;5809:23;5805:32;5802:2;;;5850:1;5847;5840:12;5802:2;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;5792:324;;;;;:::o;6122:552::-;6199:6;6207;6215;6264:2;6252:9;6243:7;6239:23;6235:32;6232:2;;;6280:1;6277;6270:12;6232:2;6323:1;6348:53;6393:7;6384:6;6373:9;6369:22;6348:53;:::i;:::-;6338:63;;6294:117;6450:2;6476:53;6521:7;6512:6;6501:9;6497:22;6476:53;:::i;:::-;6466:63;;6421:118;6578:2;6604:53;6649:7;6640:6;6629:9;6625:22;6604:53;:::i;:::-;6594:63;;6549:118;6222:452;;;;;:::o;6680:405::-;6747:6;6755;6804:2;6792:9;6783:7;6779:23;6775:32;6772:2;;;6820:1;6817;6810:12;6772:2;6863:1;6888:53;6933:7;6924:6;6913:9;6909:22;6888:53;:::i;:::-;6878:63;;6834:117;6990:2;7016:52;7060:7;7051:6;7040:9;7036:22;7016:52;:::i;:::-;7006:62;;6961:117;6762:323;;;;;:::o;7091:733::-;7213:6;7221;7229;7237;7286:2;7274:9;7265:7;7261:23;7257:32;7254:2;;;7302:1;7299;7292:12;7254:2;7373:1;7362:9;7358:17;7345:31;7403:18;7395:6;7392:30;7389:2;;;7435:1;7432;7425:12;7389:2;7471:80;7543:7;7534:6;7523:9;7519:22;7471:80;:::i;:::-;7453:98;;;;7316:245;7628:2;7617:9;7613:18;7600:32;7659:18;7651:6;7648:30;7645:2;;;7691:1;7688;7681:12;7645:2;7727:80;7799:7;7790:6;7779:9;7775:22;7727:80;:::i;:::-;7709:98;;;;7571:246;7244:580;;;;;;;:::o;7830:425::-;7916:6;7924;7973:2;7961:9;7952:7;7948:23;7944:32;7941:2;;;7989:1;7986;7979:12;7941:2;8060:1;8049:9;8045:17;8032:31;8090:18;8082:6;8079:30;8076:2;;;8122:1;8119;8112:12;8076:2;8158:80;8230:7;8221:6;8210:9;8206:22;8158:80;:::i;:::-;8140:98;;;;8003:245;7931:324;;;;;:::o;8261:256::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:2;;;8382:1;8379;8372:12;8334:2;8425:1;8450:50;8492:7;8483:6;8472:9;8468:22;8450:50;:::i;:::-;8440:60;;8396:114;8324:193;;;;:::o;8523:260::-;8581:6;8630:2;8618:9;8609:7;8605:23;8601:32;8598:2;;;8646:1;8643;8636:12;8598:2;8689:1;8714:52;8758:7;8749:6;8738:9;8734:22;8714:52;:::i;:::-;8704:62;;8660:116;8588:195;;;;:::o;8789:282::-;8858:6;8907:2;8895:9;8886:7;8882:23;8878:32;8875:2;;;8923:1;8920;8913:12;8875:2;8966:1;8991:63;9046:7;9037:6;9026:9;9022:22;8991:63;:::i;:::-;8981:73;;8937:127;8865:206;;;;:::o;9077:395::-;9148:6;9156;9205:2;9193:9;9184:7;9180:23;9176:32;9173:2;;;9221:1;9218;9211:12;9173:2;9292:1;9281:9;9277:17;9264:31;9322:18;9314:6;9311:30;9308:2;;;9354:1;9351;9344:12;9308:2;9390:65;9447:7;9438:6;9427:9;9423:22;9390:65;:::i;:::-;9372:83;;;;9235:230;9163:309;;;;;:::o;9478:262::-;9537:6;9586:2;9574:9;9565:7;9561:23;9557:32;9554:2;;;9602:1;9599;9592:12;9554:2;9645:1;9670:53;9715:7;9706:6;9695:9;9691:22;9670:53;:::i;:::-;9660:63;;9616:117;9544:196;;;;:::o;9746:284::-;9816:6;9865:2;9853:9;9844:7;9840:23;9836:32;9833:2;;;9881:1;9878;9871:12;9833:2;9924:1;9949:64;10005:7;9996:6;9985:9;9981:22;9949:64;:::i;:::-;9939:74;;9895:128;9823:207;;;;:::o;10036:407::-;10104:6;10112;10161:2;10149:9;10140:7;10136:23;10132:32;10129:2;;;10177:1;10174;10167:12;10129:2;10220:1;10245:53;10290:7;10281:6;10270:9;10266:22;10245:53;:::i;:::-;10235:63;;10191:117;10347:2;10373:53;10418:7;10409:6;10398:9;10394:22;10373:53;:::i;:::-;10363:63;;10318:118;10119:324;;;;;:::o;10449:299::-;10578:10;10599:106;10701:3;10693:6;10599:106;:::i;:::-;10737:4;10732:3;10728:14;10714:28;;10589:159;;;;:::o;10754:179::-;10823:10;10844:46;10886:3;10878:6;10844:46;:::i;:::-;10922:4;10917:3;10913:14;10899:28;;10834:99;;;;:::o;10939:108::-;11016:24;11034:5;11016:24;:::i;:::-;11011:3;11004:37;10994:53;;:::o;11053:118::-;11140:24;11158:5;11140:24;:::i;:::-;11135:3;11128:37;11118:53;;:::o;11253:972::-;11432:3;11461:84;11539:5;11461:84;:::i;:::-;11561:116;11670:6;11665:3;11561:116;:::i;:::-;11554:123;;11701:86;11781:5;11701:86;:::i;:::-;11810:7;11841:1;11826:374;11851:6;11848:1;11845:13;11826:374;;;11927:6;11921:13;11954:123;12073:3;12058:13;11954:123;:::i;:::-;11947:130;;12100:90;12183:6;12100:90;:::i;:::-;12090:100;;11886:314;11873:1;11870;11866:9;11861:14;;11826:374;;;11830:14;12216:3;12209:10;;11437:788;;;;;;;:::o;12261:732::-;12380:3;12409:54;12457:5;12409:54;:::i;:::-;12479:86;12558:6;12553:3;12479:86;:::i;:::-;12472:93;;12589:56;12639:5;12589:56;:::i;:::-;12668:7;12699:1;12684:284;12709:6;12706:1;12703:13;12684:284;;;12785:6;12779:13;12812:63;12871:3;12856:13;12812:63;:::i;:::-;12805:70;;12898:60;12951:6;12898:60;:::i;:::-;12888:70;;12744:224;12731:1;12728;12724:9;12719:14;;12684:284;;;12688:14;12984:3;12977:10;;12385:608;;;;;;;:::o;12999:99::-;13070:21;13085:5;13070:21;:::i;:::-;13065:3;13058:34;13048:50;;:::o;13104:109::-;13185:21;13200:5;13185:21;:::i;:::-;13180:3;13173:34;13163:50;;:::o;13219:360::-;13305:3;13333:38;13365:5;13333:38;:::i;:::-;13387:70;13450:6;13445:3;13387:70;:::i;:::-;13380:77;;13466:52;13511:6;13506:3;13499:4;13492:5;13488:16;13466:52;:::i;:::-;13543:29;13565:6;13543:29;:::i;:::-;13538:3;13534:39;13527:46;;13309:270;;;;;:::o;13585:364::-;13673:3;13701:39;13734:5;13701:39;:::i;:::-;13756:71;13820:6;13815:3;13756:71;:::i;:::-;13749:78;;13836:52;13881:6;13876:3;13869:4;13862:5;13858:16;13836:52;:::i;:::-;13913:29;13935:6;13913:29;:::i;:::-;13908:3;13904:39;13897:46;;13677:272;;;;;:::o;13955:377::-;14061:3;14089:39;14122:5;14089:39;:::i;:::-;14144:89;14226:6;14221:3;14144:89;:::i;:::-;14137:96;;14242:52;14287:6;14282:3;14275:4;14268:5;14264:16;14242:52;:::i;:::-;14319:6;14314:3;14310:16;14303:23;;14065:267;;;;;:::o;14338:366::-;14480:3;14501:67;14565:2;14560:3;14501:67;:::i;:::-;14494:74;;14577:93;14666:3;14577:93;:::i;:::-;14695:2;14690:3;14686:12;14679:19;;14484:220;;;:::o;14710:366::-;14852:3;14873:67;14937:2;14932:3;14873:67;:::i;:::-;14866:74;;14949:93;15038:3;14949:93;:::i;:::-;15067:2;15062:3;15058:12;15051:19;;14856:220;;;:::o;15082:366::-;15224:3;15245:67;15309:2;15304:3;15245:67;:::i;:::-;15238:74;;15321:93;15410:3;15321:93;:::i;:::-;15439:2;15434:3;15430:12;15423:19;;15228:220;;;:::o;15454:366::-;15596:3;15617:67;15681:2;15676:3;15617:67;:::i;:::-;15610:74;;15693:93;15782:3;15693:93;:::i;:::-;15811:2;15806:3;15802:12;15795:19;;15600:220;;;:::o;15826:398::-;15985:3;16006:83;16087:1;16082:3;16006:83;:::i;:::-;15999:90;;16098:93;16187:3;16098:93;:::i;:::-;16216:1;16211:3;16207:11;16200:18;;15989:235;;;:::o;16230:366::-;16372:3;16393:67;16457:2;16452:3;16393:67;:::i;:::-;16386:74;;16469:93;16558:3;16469:93;:::i;:::-;16587:2;16582:3;16578:12;16571:19;;16376:220;;;:::o;16602:366::-;16744:3;16765:67;16829:2;16824:3;16765:67;:::i;:::-;16758:74;;16841:93;16930:3;16841:93;:::i;:::-;16959:2;16954:3;16950:12;16943:19;;16748:220;;;:::o;16974:366::-;17116:3;17137:67;17201:2;17196:3;17137:67;:::i;:::-;17130:74;;17213:93;17302:3;17213:93;:::i;:::-;17331:2;17326:3;17322:12;17315:19;;17120:220;;;:::o;17346:365::-;17488:3;17509:66;17573:1;17568:3;17509:66;:::i;:::-;17502:73;;17584:93;17673:3;17584:93;:::i;:::-;17702:2;17697:3;17693:12;17686:19;;17492:219;;;:::o;17717:366::-;17859:3;17880:67;17944:2;17939:3;17880:67;:::i;:::-;17873:74;;17956:93;18045:3;17956:93;:::i;:::-;18074:2;18069:3;18065:12;18058:19;;17863:220;;;:::o;18161:862::-;18308:4;18303:3;18299:14;18395:4;18388:5;18384:16;18378:23;18414:63;18471:4;18466:3;18462:14;18448:12;18414:63;:::i;:::-;18323:164;18579:4;18572:5;18568:16;18562:23;18598:61;18653:4;18648:3;18644:14;18630:12;18598:61;:::i;:::-;18497:172;18753:4;18746:5;18742:16;18736:23;18772:57;18823:4;18818:3;18814:14;18800:12;18772:57;:::i;:::-;18679:160;18926:4;18919:5;18915:16;18909:23;18945:61;19000:4;18995:3;18991:14;18977:12;18945:61;:::i;:::-;18849:167;18277:746;;;:::o;19101:872::-;19258:4;19253:3;19249:14;19345:4;19338:5;19334:16;19328:23;19364:63;19421:4;19416:3;19412:14;19398:12;19364:63;:::i;:::-;19273:164;19529:4;19522:5;19518:16;19512:23;19548:61;19603:4;19598:3;19594:14;19580:12;19548:61;:::i;:::-;19447:172;19703:4;19696:5;19692:16;19686:23;19722:57;19773:4;19768:3;19764:14;19750:12;19722:57;:::i;:::-;19629:160;19876:4;19869:5;19865:16;19859:23;19895:61;19950:4;19945:3;19941:14;19927:12;19895:61;:::i;:::-;19799:167;19227:746;;;:::o;19979:105::-;20054:23;20071:5;20054:23;:::i;:::-;20049:3;20042:36;20032:52;;:::o;20090:108::-;20167:24;20185:5;20167:24;:::i;:::-;20162:3;20155:37;20145:53;;:::o;20204:118::-;20291:24;20309:5;20291:24;:::i;:::-;20286:3;20279:37;20269:53;;:::o;20328:105::-;20403:23;20420:5;20403:23;:::i;:::-;20398:3;20391:36;20381:52;;:::o;20439:435::-;20619:3;20641:95;20732:3;20723:6;20641:95;:::i;:::-;20634:102;;20753:95;20844:3;20835:6;20753:95;:::i;:::-;20746:102;;20865:3;20858:10;;20623:251;;;;;:::o;20880:379::-;21064:3;21086:147;21229:3;21086:147;:::i;:::-;21079:154;;21250:3;21243:10;;21068:191;;;:::o;21265:222::-;21358:4;21396:2;21385:9;21381:18;21373:26;;21409:71;21477:1;21466:9;21462:17;21453:6;21409:71;:::i;:::-;21363:124;;;;:::o;21493:640::-;21688:4;21726:3;21715:9;21711:19;21703:27;;21740:71;21808:1;21797:9;21793:17;21784:6;21740:71;:::i;:::-;21821:72;21889:2;21878:9;21874:18;21865:6;21821:72;:::i;:::-;21903;21971:2;21960:9;21956:18;21947:6;21903:72;:::i;:::-;22022:9;22016:4;22012:20;22007:2;21996:9;21992:18;21985:48;22050:76;22121:4;22112:6;22050:76;:::i;:::-;22042:84;;21693:440;;;;;;;:::o;22139:332::-;22260:4;22298:2;22287:9;22283:18;22275:26;;22311:71;22379:1;22368:9;22364:17;22355:6;22311:71;:::i;:::-;22392:72;22460:2;22449:9;22445:18;22436:6;22392:72;:::i;:::-;22265:206;;;;;:::o;22477:493::-;22680:4;22718:2;22707:9;22703:18;22695:26;;22767:9;22761:4;22757:20;22753:1;22742:9;22738:17;22731:47;22795:168;22958:4;22949:6;22795:168;:::i;:::-;22787:176;;22685:285;;;;:::o;22976:373::-;23119:4;23157:2;23146:9;23142:18;23134:26;;23206:9;23200:4;23196:20;23192:1;23181:9;23177:17;23170:47;23234:108;23337:4;23328:6;23234:108;:::i;:::-;23226:116;;23124:225;;;;:::o;23355:210::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23493:65;23555:1;23544:9;23540:17;23531:6;23493:65;:::i;:::-;23447:118;;;;:::o;23571:313::-;23684:4;23722:2;23711:9;23707:18;23699:26;;23771:9;23765:4;23761:20;23757:1;23746:9;23742:17;23735:47;23799:78;23872:4;23863:6;23799:78;:::i;:::-;23791:86;;23689:195;;;;:::o;23890:419::-;24056:4;24094:2;24083:9;24079:18;24071:26;;24143:9;24137:4;24133:20;24129:1;24118:9;24114:17;24107:47;24171:131;24297:4;24171:131;:::i;:::-;24163:139;;24061:248;;;:::o;24315:419::-;24481:4;24519:2;24508:9;24504:18;24496:26;;24568:9;24562:4;24558:20;24554:1;24543:9;24539:17;24532:47;24596:131;24722:4;24596:131;:::i;:::-;24588:139;;24486:248;;;:::o;24740:419::-;24906:4;24944:2;24933:9;24929:18;24921:26;;24993:9;24987:4;24983:20;24979:1;24968:9;24964:17;24957:47;25021:131;25147:4;25021:131;:::i;:::-;25013:139;;24911:248;;;:::o;25165:419::-;25331:4;25369:2;25358:9;25354:18;25346:26;;25418:9;25412:4;25408:20;25404:1;25393:9;25389:17;25382:47;25446:131;25572:4;25446:131;:::i;:::-;25438:139;;25336:248;;;:::o;25590:419::-;25756:4;25794:2;25783:9;25779:18;25771:26;;25843:9;25837:4;25833:20;25829:1;25818:9;25814:17;25807:47;25871:131;25997:4;25871:131;:::i;:::-;25863:139;;25761:248;;;:::o;26015:419::-;26181:4;26219:2;26208:9;26204:18;26196:26;;26268:9;26262:4;26258:20;26254:1;26243:9;26239:17;26232:47;26296:131;26422:4;26296:131;:::i;:::-;26288:139;;26186:248;;;:::o;26440:419::-;26606:4;26644:2;26633:9;26629:18;26621:26;;26693:9;26687:4;26683:20;26679:1;26668:9;26664:17;26657:47;26721:131;26847:4;26721:131;:::i;:::-;26713:139;;26611:248;;;:::o;26865:419::-;27031:4;27069:2;27058:9;27054:18;27046:26;;27118:9;27112:4;27108:20;27104:1;27093:9;27089:17;27082:47;27146:131;27272:4;27146:131;:::i;:::-;27138:139;;27036:248;;;:::o;27290:419::-;27456:4;27494:2;27483:9;27479:18;27471:26;;27543:9;27537:4;27533:20;27529:1;27518:9;27514:17;27507:47;27571:131;27697:4;27571:131;:::i;:::-;27563:139;;27461:248;;;:::o;27715:343::-;27868:4;27906:3;27895:9;27891:19;27883:27;;27920:131;28048:1;28037:9;28033:17;28024:6;27920:131;:::i;:::-;27873:185;;;;:::o;28064:222::-;28157:4;28195:2;28184:9;28180:18;28172:26;;28208:71;28276:1;28265:9;28261:17;28252:6;28208:71;:::i;:::-;28162:124;;;;:::o;28292:129::-;28326:6;28353:20;;:::i;:::-;28343:30;;28382:33;28410:4;28402:6;28382:33;:::i;:::-;28333:88;;;:::o;28427:75::-;28460:6;28493:2;28487:9;28477:19;;28467:35;:::o;28508:307::-;28569:4;28659:18;28651:6;28648:30;28645:2;;;28681:18;;:::i;:::-;28645:2;28719:29;28741:6;28719:29;:::i;:::-;28711:37;;28803:4;28797;28793:15;28785:23;;28574:241;;;:::o;28821:162::-;28918:4;28941:3;28933:11;;28971:4;28966:3;28962:14;28954:22;;28923:60;;;:::o;28989:132::-;29056:4;29079:3;29071:11;;29109:4;29104:3;29100:14;29092:22;;29061:60;;;:::o;29127:144::-;29224:6;29258:5;29252:12;29242:22;;29231:40;;;:::o;29277:114::-;29344:6;29378:5;29372:12;29362:22;;29351:40;;;:::o;29397:98::-;29448:6;29482:5;29476:12;29466:22;;29455:40;;;:::o;29501:99::-;29553:6;29587:5;29581:12;29571:22;;29560:40;;;:::o;29606:143::-;29706:4;29738;29733:3;29729:14;29721:22;;29711:38;;;:::o;29755:113::-;29825:4;29857;29852:3;29848:14;29840:22;;29830:38;;;:::o;29874:214::-;30003:11;30037:6;30032:3;30025:19;30077:4;30072:3;30068:14;30053:29;;30015:73;;;;:::o;30094:184::-;30193:11;30227:6;30222:3;30215:19;30267:4;30262:3;30258:14;30243:29;;30205:73;;;;:::o;30284:168::-;30367:11;30401:6;30396:3;30389:19;30441:4;30436:3;30432:14;30417:29;;30379:73;;;;:::o;30458:147::-;30559:11;30596:3;30581:18;;30571:34;;;;:::o;30611:169::-;30695:11;30729:6;30724:3;30717:19;30769:4;30764:3;30760:14;30745:29;;30707:73;;;;:::o;30786:148::-;30888:11;30925:3;30910:18;;30900:34;;;;:::o;30940:305::-;30980:3;30999:20;31017:1;30999:20;:::i;:::-;30994:25;;31033:20;31051:1;31033:20;:::i;:::-;31028:25;;31187:1;31119:66;31115:74;31112:1;31109:81;31106:2;;;31193:18;;:::i;:::-;31106:2;31237:1;31234;31230:9;31223:16;;30984:261;;;;:::o;31251:185::-;31291:1;31308:20;31326:1;31308:20;:::i;:::-;31303:25;;31342:20;31360:1;31342:20;:::i;:::-;31337:25;;31381:1;31371:2;;31386:18;;:::i;:::-;31371:2;31428:1;31425;31421:9;31416:14;;31293:143;;;;:::o;31442:348::-;31482:7;31505:20;31523:1;31505:20;:::i;:::-;31500:25;;31539:20;31557:1;31539:20;:::i;:::-;31534:25;;31727:1;31659:66;31655:74;31652:1;31649:81;31644:1;31637:9;31630:17;31626:105;31623:2;;;31734:18;;:::i;:::-;31623:2;31782:1;31779;31775:9;31764:20;;31490:300;;;;:::o;31796:191::-;31836:4;31856:20;31874:1;31856:20;:::i;:::-;31851:25;;31890:20;31908:1;31890:20;:::i;:::-;31885:25;;31929:1;31926;31923:8;31920:2;;;31934:18;;:::i;:::-;31920:2;31979:1;31976;31972:9;31964:17;;31841:146;;;;:::o;31993:96::-;32030:7;32059:24;32077:5;32059:24;:::i;:::-;32048:35;;32038:51;;;:::o;32095:90::-;32129:7;32172:5;32165:13;32158:21;32147:32;;32137:48;;;:::o;32191:149::-;32227:7;32267:66;32260:5;32256:78;32245:89;;32235:105;;;:::o;32346:126::-;32383:7;32423:42;32416:5;32412:54;32401:65;;32391:81;;;:::o;32478:91::-;32514:7;32554:8;32547:5;32543:20;32532:31;;32522:47;;;:::o;32575:77::-;32612:7;32641:5;32630:16;;32620:32;;;:::o;32658:101::-;32694:7;32734:18;32727:5;32723:30;32712:41;;32702:57;;;:::o;32765:109::-;32801:7;32841:26;32834:5;32830:38;32819:49;;32809:65;;;:::o;32880:154::-;32964:6;32959:3;32954;32941:30;33026:1;33017:6;33012:3;33008:16;33001:27;32931:103;;;:::o;33040:307::-;33108:1;33118:113;33132:6;33129:1;33126:13;33118:113;;;33217:1;33212:3;33208:11;33202:18;33198:1;33193:3;33189:11;33182:39;33154:2;33151:1;33147:10;33142:15;;33118:113;;;33249:6;33246:1;33243:13;33240:2;;;33329:1;33320:6;33315:3;33311:16;33304:27;33240:2;33089:258;;;;:::o;33353:320::-;33397:6;33434:1;33428:4;33424:12;33414:22;;33481:1;33475:4;33471:12;33502:18;33492:2;;33558:4;33550:6;33546:17;33536:27;;33492:2;33620;33612:6;33609:14;33589:18;33586:38;33583:2;;;33639:18;;:::i;:::-;33583:2;33404:269;;;;:::o;33679:281::-;33762:27;33784:4;33762:27;:::i;:::-;33754:6;33750:40;33892:6;33880:10;33877:22;33856:18;33844:10;33841:34;33838:62;33835:2;;;33903:18;;:::i;:::-;33835:2;33943:10;33939:2;33932:22;33722:238;;;:::o;33966:233::-;34005:3;34028:24;34046:5;34028:24;:::i;:::-;34019:33;;34074:66;34067:5;34064:77;34061:2;;;34144:18;;:::i;:::-;34061:2;34191:1;34184:5;34180:13;34173:20;;34009:190;;;:::o;34205:180::-;34253:77;34250:1;34243:88;34350:4;34347:1;34340:15;34374:4;34371:1;34364:15;34391:180;34439:77;34436:1;34429:88;34536:4;34533:1;34526:15;34560:4;34557:1;34550:15;34577:180;34625:77;34622:1;34615:88;34722:4;34719:1;34712:15;34746:4;34743:1;34736:15;34763:180;34811:77;34808:1;34801:88;34908:4;34905:1;34898:15;34932:4;34929:1;34922:15;34949:102;34990:6;35041:2;35037:7;35032:2;35025:5;35021:14;35017:28;35007:38;;34997:54;;;:::o;35057:225::-;35197:34;35193:1;35185:6;35181:14;35174:58;35266:8;35261:2;35253:6;35249:15;35242:33;35163:119;:::o;35288:182::-;35428:34;35424:1;35416:6;35412:14;35405:58;35394:76;:::o;35476:164::-;35616:16;35612:1;35604:6;35600:14;35593:40;35582:58;:::o;35646:168::-;35786:20;35782:1;35774:6;35770:14;35763:44;35752:62;:::o;35820:114::-;35926:8;:::o;35940:166::-;36080:18;36076:1;36068:6;36064:14;36057:42;36046:60;:::o;36112:229::-;36252:34;36248:1;36240:6;36236:14;36229:58;36321:12;36316:2;36308:6;36304:15;36297:37;36218:123;:::o;36347:181::-;36487:33;36483:1;36475:6;36471:14;36464:57;36453:75;:::o;36534:159::-;36674:11;36670:1;36662:6;36658:14;36651:35;36640:53;:::o;36699:175::-;36839:27;36835:1;36827:6;36823:14;36816:51;36805:69;:::o;36880:122::-;36953:24;36971:5;36953:24;:::i;:::-;36946:5;36943:35;36933:2;;36992:1;36989;36982:12;36933:2;36923:79;:::o;37008:116::-;37078:21;37093:5;37078:21;:::i;:::-;37071:5;37068:32;37058:2;;37114:1;37111;37104:12;37058:2;37048:76;:::o;37130:120::-;37202:23;37219:5;37202:23;:::i;:::-;37195:5;37192:34;37182:2;;37240:1;37237;37230:12;37182:2;37172:78;:::o;37256:122::-;37329:24;37347:5;37329:24;:::i;:::-;37322:5;37319:35;37309:2;;37368:1;37365;37358:12;37309:2;37299:79;:::o;37384:120::-;37456:23;37473:5;37456:23;:::i;:::-;37449:5;37446:34;37436:2;;37494:1;37491;37484:12;37436:2;37426:78;:::o
Swarm Source
ipfs://b22911caf1fc780d43b58b094eab6eecdaf2c52d4f5b4ac4c9a1402d634f62d5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.