Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
4,273 WELLY
Holders
1,039
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
14 WELLYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Welly
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "ERC721A.sol"; import "Ownable.sol"; import "Strings.sol"; struct WLMinter { uint _obtained; bool _check; } enum SaleStatus { stopped, started, killed } interface Holder { function balanceOf(address owner) external view returns (uint256); } interface ShiboshiStakingHolder { function lockInfoOf(address user) external view returns( uint256[] memory ids, uint256 startTime, uint256 numDays, address ogUser ); } contract Welly is ERC721A, Ownable { using Strings for uint256; string private baseURI; uint public max_tokens_per_mint = 10; uint256 public cost = 0.12 ether; string private uriPrefix = ".json"; bool private is_revealed = false; string private not_revealed_uri; uint total_tokens = 10000; uint wl_remaining_tokens = 1856; uint max_wl_balance = 4; SaleStatus public _actual_sale_status; mapping(address => WLMinter) private _sale_wl; uint public sale_start_date; address private _shiboshi_contract = 0x11450058d796B02EB53e65374be59cFf65d3FE7f; address private _leash_contract = 0x27C70Cd1946795B66be9d954418546998b546634; address private _shiboshi_staking_contract = 0xBe4E191B22368bfF26aA60Be498575C477AF5Cc3; address private _xleash_contract = 0xa57D319B3Cf3aD0E4d19770f71E63CF847263A0b; address private _bone_token_contract = 0x9813037ee2218799597d83D4a5B6F3b6778218d9; address private _tbone_staking_contract = 0xf7A0383750feF5AbaCe57cc4C9ff98e3790202b3; address private _shiba_token_contract = 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE; address private _xshib_staking_contract = 0xB4a81261b16b92af0B9F7C4a83f1E885132D81e4; constructor(string memory _initBaseURI, string memory _not_revealed_uri) ERC721A("Welly Friends", "WELLY") { setNotRevealedURI(_not_revealed_uri); setBaseURI(_initBaseURI); } function contractURI() public pure returns (string memory) { return "https://gateway.pinata.cloud/ipfs/QmfJawxyaqhCx4XBQTsJiy62h7Pq3dJAAXcZH91EHy3o2e"; } function setIsRevealed(bool _flag) public onlyOwner { is_revealed = _flag; } function setNotRevealedURI(string memory _newRevealedURI) public onlyOwner { not_revealed_uri = _newRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setSaleStatus(SaleStatus _newStatus) public onlyOwner { _actual_sale_status = _newStatus; if (_newStatus == SaleStatus.started) { sale_start_date = block.timestamp; } } function isSaleWL(address _addr) private view returns(bool) { return _sale_wl[_addr]._check; } function setWhiteLists(address[] memory _addrs) public onlyOwner{ for (uint i=0; i<_addrs.length; i++) { _sale_wl[_addrs[i]] = WLMinter(0, true); } } function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { require(_exists(tokenId), "Nonexistent token"); if (!is_revealed) { return bytes(not_revealed_uri).length > 0 ? string(abi.encodePacked(not_revealed_uri, tokenId.toString(), uriPrefix)) : ""; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), uriPrefix)) : ""; } function isHolderOf(address _contract) private view returns(bool){ return Holder(_contract).balanceOf(msg.sender) > 0 ? true : false; } function isShiboshiStaking() private view returns(bool) { (uint256[] memory ids, uint256 b, uint256 c, address d) = ShiboshiStakingHolder(_shiboshi_staking_contract).lockInfoOf(msg.sender); return ids.length > 0; } function isFirstPhaseHolder() private view returns(bool) { return isHolderOf(_shiboshi_contract) || isHolderOf(_leash_contract) || isShiboshiStaking() || isHolderOf(_xleash_contract); } function isTokensHolder() private view returns(bool) { return isHolderOf(_bone_token_contract) || isHolderOf(_shiba_token_contract) || isHolderOf(_tbone_staking_contract) || isHolderOf(_xshib_staking_contract); } function mint(uint256 _mintAmount) public payable { require(_actual_sale_status == SaleStatus.started, "The sale is not started"); require(_mintAmount > 0, "Really?"); require(_mintAmount <= max_tokens_per_mint, "Too many mints!"); require(totalSupply() < total_tokens, "Sold Out"); uint _now = block.timestamp; if(_now > sale_start_date + 2 days) cost = 0.15 ether; require(msg.value >= cost * _mintAmount, "Insufficient funds"); // Phase 1 (Holders) if (_now >= sale_start_date && _now <= sale_start_date + 1 days) firstPhaseMint(_mintAmount, _now); // Phase 2 (WL) if (_now > sale_start_date + 1 days && _now <= sale_start_date + 2 days) secondPhaseMint(_mintAmount); // Phase 3 (Public) if (_now > sale_start_date + 2 days) _safeMint(msg.sender, _mintAmount); } function firstPhaseMint(uint _mintAmount, uint _now) private { require(totalSupply() < 8144, "Phase 1 Sold Out"); // Shiba - Bone token and stakers if(_now >= sale_start_date + 12 hours) require(isFirstPhaseHolder() || isTokensHolder(), "You are not whitelisted for this sale"); else require(isFirstPhaseHolder(), "You are not whitelisted for this sale"); _safeMint(msg.sender, _mintAmount); } function secondPhaseMint(uint _mintAmount) private { require(_mintAmount <= 4, "Too many mints!"); require(wl_remaining_tokens >= _mintAmount, "Too many mints for the remaining NFTs"); require(isSaleWL(msg.sender), "You are not whitelisted for this sale"); require(_sale_wl[msg.sender]._obtained < max_wl_balance, "You have reached the maximum number of mints"); require(_sale_wl[msg.sender]._obtained + _mintAmount <= max_wl_balance, "Too many mints for the remaining balance"); _safeMint(msg.sender, _mintAmount); _sale_wl[msg.sender]._obtained += _mintAmount; wl_remaining_tokens -= _mintAmount; } function withdraw(address payable recipient) public onlyOwner { uint256 balance = address(this).balance; recipient.transfer(balance); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import 'IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool 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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // 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`. * * 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 calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "Context.sol"; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_not_revealed_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"_actual_sale_status","outputs":[{"internalType":"enum SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_tokens_per_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_start_date","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SaleStatus","name":"_newStatus","type":"uint8"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"setWhiteLists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a80556701aa535d3d0c0000600b556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000061929190620006bc565b506000600d60006101000a81548160ff021916908315150217905550612710600f5561074060105560046011557311450058d796b02eb53e65374be59cff65d3fe7f601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507327c70cd1946795b66be9d954418546998b546634601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073be4e191b22368bff26aa60be498575c477af5cc3601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a57d319b3cf3ad0e4d19770f71e63cf847263a0b601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739813037ee2218799597d83d4a5b6f3b6778218d9601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f7a0383750fef5abace57cc4c9ff98e3790202b3601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507395ad61b0a150d79219dcf64e1e6cc01f0b64c4ce601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b4a81261b16b92af0b9f7c4a83f1e885132d81e4601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200034357600080fd5b5060405162004ba038038062004ba08339818101604052810190620003699190620007ea565b6040518060400160405280600d81526020017f57656c6c7920467269656e6473000000000000000000000000000000000000008152506040518060400160405280600581526020017f57454c4c590000000000000000000000000000000000000000000000000000008152508160029080519060200190620003ed929190620006bc565b50806003908051906020019062000406929190620006bc565b50620004176200046960201b60201c565b60008190555050506200043f620004336200046e60201b60201c565b6200047660201b60201c565b62000450816200053c60201b60201c565b6200046182620005e760201b60201c565b505062000a76565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200054c6200046e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005726200069260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c29062000896565b60405180910390fd5b80600e9080519060200190620005e3929190620006bc565b5050565b620005f76200046e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200061d6200069260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066d9062000896565b60405180910390fd5b80600990805190602001906200068e929190620006bc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006ca906200095e565b90600052602060002090601f016020900481019282620006ee57600085556200073a565b82601f106200070957805160ff19168380011785556200073a565b828001600101855582156200073a579182015b82811115620007395782518255916020019190600101906200071c565b5b5090506200074991906200074d565b5090565b5b80821115620007685760008160009055506001016200074e565b5090565b6000620007836200077d84620008e1565b620008b8565b905082815260208101848484011115620007a257620007a162000a2d565b5b620007af84828562000928565b509392505050565b600082601f830112620007cf57620007ce62000a28565b5b8151620007e18482602086016200076c565b91505092915050565b6000806040838503121562000804576200080362000a37565b5b600083015167ffffffffffffffff81111562000825576200082462000a32565b5b6200083385828601620007b7565b925050602083015167ffffffffffffffff81111562000857576200085662000a32565b5b6200086585828601620007b7565b9150509250929050565b60006200087e60208362000917565b91506200088b8262000a4d565b602082019050919050565b60006020820190508181036000830152620008b1816200086f565b9050919050565b6000620008c4620008d7565b9050620008d2828262000994565b919050565b6000604051905090565b600067ffffffffffffffff821115620008ff57620008fe620009f9565b5b6200090a8262000a3c565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620009485780820151818401526020810190506200092b565b8381111562000958576000848401525b50505050565b600060028204905060018216806200097757607f821691505b602082108114156200098e576200098d620009ca565b5b50919050565b6200099f8262000a3c565b810181811067ffffffffffffffff82111715620009c157620009c0620009f9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61411a8062000a866000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063ba26d98711610095578063e985e9c511610064578063e985e9c51461061f578063f2c4ce1e1461065c578063f2fde38b14610685578063fc31f0bf146106ae576101c2565b8063ba26d98714610561578063c16ccf3b1461058c578063c87b56dd146105b7578063e8a3d485146105f4576101c2565b806395d89b41116100d157806395d89b41146104c8578063a0712d68146104f3578063a22cb4651461050f578063b88d4fde14610538576101c2565b806370a0823114610449578063715018a6146104865780638da5cb5b1461049d576101c2565b806342842e0e116101645780634bdbb80d1161013e5780634bdbb80d1461038f57806351cff8d9146103ba57806355f804b3146103e35780636352211e1461040c576101c2565b806342842e0e146103145780634891ad881461033d57806349a5980a14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806313faede61461029557806318160ddd146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906130d6565b6106d7565b6040516101fb91906135bd565b60405180910390f35b34801561021057600080fd5b50610219610769565b60405161022691906135f3565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906131a6565b6107fb565b6040516102639190613556565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612f9d565b610877565b005b3480156102a157600080fd5b506102aa610a1e565b6040516102b791906137b5565b60405180910390f35b3480156102cc57600080fd5b506102d5610a24565b6040516102e291906137b5565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612e87565b610a3b565b005b34801561032057600080fd5b5061033b60048036038101906103369190612e87565b610a4b565b005b34801561034957600080fd5b50610364600480360381019061035f9190613130565b610a6b565b005b34801561037257600080fd5b5061038d600480360381019061038891906130a9565b610b49565b005b34801561039b57600080fd5b506103a4610be2565b6040516103b191906137b5565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612e1a565b610be8565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061315d565b610cb4565b005b34801561041857600080fd5b50610433600480360381019061042e91906131a6565b610d4a565b6040516104409190613556565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612ded565b610d5c565b60405161047d91906137b5565b60405180910390f35b34801561049257600080fd5b5061049b610e15565b005b3480156104a957600080fd5b506104b2610e9d565b6040516104bf9190613556565b60405180910390f35b3480156104d457600080fd5b506104dd610ec7565b6040516104ea91906135f3565b60405180910390f35b61050d600480360381019061050891906131a6565b610f59565b005b34801561051b57600080fd5b5061053660048036038101906105319190612f5d565b6111b6565b005b34801561054457600080fd5b5061055f600480360381019061055a9190612eda565b61132e565b005b34801561056d57600080fd5b506105766113a1565b60405161058391906137b5565b60405180910390f35b34801561059857600080fd5b506105a16113a7565b6040516105ae91906135d8565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906131a6565b6113ba565b6040516105eb91906135f3565b60405180910390f35b34801561060057600080fd5b506106096114db565b60405161061691906135f3565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612e47565b6114fb565b60405161065391906135bd565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061315d565b61158f565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612ded565b611625565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612fdd565b61171d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107625750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077890613b09565b80601f01602080910402602001604051908101604052809291908181526020018280546107a490613b09565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b60006108068261185b565b61083c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610882826118ba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ea576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610909611988565b73ffffffffffffffffffffffffffffffffffffffff161461096c5761093581610930611988565b6114fb565b61096b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610a2e611990565b6001546000540303905090565b610a46838383611995565b505050565b610a668383836040518060200160405280600081525061132e565b505050565b610a73611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610a91610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90613715565b60405180910390fd5b80601260006101000a81548160ff02191690836002811115610b0c57610b0b613c44565b5b021790555060016002811115610b2557610b24613c44565b5b816002811115610b3857610b37613c44565b5b1415610b4657426014819055505b50565b610b51611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610b6f610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90613715565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600a5481565b610bf0611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610c0e610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613715565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610caf573d6000803e3d6000fd5b505050565b610cbc611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610cda610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613715565b60405180910390fd5b8060099080519060200190610d46929190612a71565b5050565b6000610d55826118ba565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e1d611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610e3b610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613715565b60405180910390fd5b610e9b6000611d47565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ed690613b09565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0290613b09565b8015610f4f5780601f10610f2457610100808354040283529160200191610f4f565b820191906000526020600020905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b60016002811115610f6d57610f6c613c44565b5b601260009054906101000a900460ff166002811115610f8f57610f8e613c44565b5b14610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906136f5565b60405180910390fd5b60008111611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613775565b60405180910390fd5b600a54811115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613675565b60405180910390fd5b600f54611062610a24565b106110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613615565b60405180910390fd5b60004290506202a3006014546110b89190613907565b8111156110cf57670214e8348c4f0000600b819055505b81600b546110dd919061398e565b34101561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690613695565b60405180910390fd5b601454811015801561114157506201518060145461113d9190613907565b8111155b15611151576111508282611e0d565b5b620151806014546111629190613907565b8111801561118057506202a30060145461117c9190613907565b8111155b1561118f5761118e82611f1f565b5b6202a3006014546111a09190613907565b8111156111b2576111b13383612187565b5b5050565b6111be611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611223576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611230611988565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112dd611988565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132291906135bd565b60405180910390a35050565b611339848484611995565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461139b57611364848484846121a5565b61139a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60145481565b601260009054906101000a900460ff1681565b60606113c58261185b565b611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb906136b5565b60405180910390fd5b600d60009054906101000a900460ff16611479576000600e805461142790613b09565b9050116114435760405180602001604052806000815250611472565b600e61144e83612305565b600c60405160200161146293929190613525565b6040516020818303038152906040525b90506114d6565b60006009805461148890613b09565b9050116114a457604051806020016040528060008152506114d3565b60096114af83612305565b600c6040516020016114c393929190613525565b6040516020818303038152906040525b90505b919050565b606060405180608001604052806050815260200161409560509139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611597611d3f565b73ffffffffffffffffffffffffffffffffffffffff166115b5610e9d565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613715565b60405180910390fd5b80600e9080519060200190611621929190612a71565b5050565b61162d611d3f565b73ffffffffffffffffffffffffffffffffffffffff1661164b610e9d565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890613635565b60405180910390fd5b61171a81611d47565b50565b611725611d3f565b73ffffffffffffffffffffffffffffffffffffffff16611743610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613715565b60405180910390fd5b60005b81518110156118575760405180604001604052806000815260200160011515815250601360008484815181106117d5576117d4613ca2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff021916908315150217905550905050808061184f90613b6c565b91505061179c565b5050565b600081611866611990565b11158015611875575060005482105b80156118b3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118c9611990565b11611951576000548110156119505760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561194e575b6000811415611944576004600083600190039350838152602001908152602001600020549050611919565b8092505050611983565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006119a0826118ba565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a07576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a28611988565b73ffffffffffffffffffffffffffffffffffffffff161480611a575750611a5685611a51611988565b6114fb565b5b80611a9c5750611a65611988565b73ffffffffffffffffffffffffffffffffffffffff16611a84846107fb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ad5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b498585856001612466565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c468661246c565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611cd0576000600184019050600060046000838152602001908152602001600020541415611cce576000548114611ccd578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d388585856001612476565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fd0611e18610a24565b10611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613795565b60405180910390fd5b61a8c0601454611e689190613907565b8110611ec957611e7661247c565b80611e855750611e84612521565b5b611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613755565b60405180910390fd5b611f11565b611ed161247c565b611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613755565b60405180910390fd5b5b611f1b3383612187565b5050565b6004811115611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90613675565b60405180910390fd5b806010541015611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f906136d5565b60405180910390fd5b611fb1336125e9565b611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613755565b60405180910390fd5b601154601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613655565b60405180910390fd5b60115481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546120c79190613907565b1115612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90613735565b60405180910390fd5b6121123382612187565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546121649190613907565b92505081905550806010600082825461217d91906139e8565b9250508190555050565b6121a1828260405180602001604052806000815250612642565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121cb611988565b8786866040518563ffffffff1660e01b81526004016121ed9493929190613571565b602060405180830381600087803b15801561220757600080fd5b505af192505050801561223857506040513d601f19601f820116820180604052508101906122359190613103565b60015b6122b2573d8060008114612268576040519150601f19603f3d011682016040523d82523d6000602084013e61226d565b606091505b506000815114156122aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561234d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612461565b600082905060005b6000821461237f57808061236890613b6c565b915050600a82612378919061395d565b9150612355565b60008167ffffffffffffffff81111561239b5761239a613cd1565b5b6040519080825280601f01601f1916602001820160405280156123cd5781602001600182028036833780820191505090505b5090505b6000851461245a576001826123e691906139e8565b9150600a856123f59190613bb5565b60306124019190613907565b60f81b81838151811061241757612416613ca2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612453919061395d565b94506123d1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006124a9601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b806124db57506124da601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b806124ea57506124e9612999565b5b8061251c575061251b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b905090565b600061254e601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b80612580575061257f601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b806125b257506125b1601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b806125e457506125e3601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b905090565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126af576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156126ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f76000858386612466565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161275c60018514612a67565b901b60a042901b61276c8661246c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612870575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282060008784806001019550876121a5565b612856576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106127b157826000541461286b57600080fd5b6128db565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612871575b8160008190555050506128f16000858386612476565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016129339190613556565b60206040518083038186803b15801561294b57600080fd5b505afa15801561295f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298391906131d3565b1161298f576000612992565b60015b9050919050565b6000806000806000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a006dfe1336040518263ffffffff1660e01b81526004016129fc9190613556565b60006040518083038186803b158015612a1457600080fd5b505afa158015612a28573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612a519190613026565b9350935093509350600084511194505050505090565b6000819050919050565b828054612a7d90613b09565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612af7565b5090565b5b80821115612b10576000816000905550600101612af8565b5090565b6000612b27612b22846137f5565b6137d0565b90508083825260208201905082856020860282011115612b4a57612b49613d05565b5b60005b85811015612b7a5781612b608882612c78565b845260208401935060208301925050600181019050612b4d565b5050509392505050565b6000612b97612b9284613821565b6137d0565b90508083825260208201905082856020860282011115612bba57612bb9613d05565b5b60005b85811015612bea5781612bd08882612dd8565b845260208401935060208301925050600181019050612bbd565b5050509392505050565b6000612c07612c028461384d565b6137d0565b905082815260208101848484011115612c2357612c22613d0a565b5b612c2e848285613ac7565b509392505050565b6000612c49612c448461387e565b6137d0565b905082815260208101848484011115612c6557612c64613d0a565b5b612c70848285613ac7565b509392505050565b600081359050612c8781614011565b92915050565b600081519050612c9c81614011565b92915050565b600081359050612cb181614028565b92915050565b600082601f830112612ccc57612ccb613d00565b5b8135612cdc848260208601612b14565b91505092915050565b600082601f830112612cfa57612cf9613d00565b5b8151612d0a848260208601612b84565b91505092915050565b600081359050612d228161403f565b92915050565b600081359050612d3781614056565b92915050565b600081519050612d4c81614056565b92915050565b600082601f830112612d6757612d66613d00565b5b8135612d77848260208601612bf4565b91505092915050565b600081359050612d8f8161406d565b92915050565b600082601f830112612daa57612da9613d00565b5b8135612dba848260208601612c36565b91505092915050565b600081359050612dd28161407d565b92915050565b600081519050612de78161407d565b92915050565b600060208284031215612e0357612e02613d14565b5b6000612e1184828501612c78565b91505092915050565b600060208284031215612e3057612e2f613d14565b5b6000612e3e84828501612ca2565b91505092915050565b60008060408385031215612e5e57612e5d613d14565b5b6000612e6c85828601612c78565b9250506020612e7d85828601612c78565b9150509250929050565b600080600060608486031215612ea057612e9f613d14565b5b6000612eae86828701612c78565b9350506020612ebf86828701612c78565b9250506040612ed086828701612dc3565b9150509250925092565b60008060008060808587031215612ef457612ef3613d14565b5b6000612f0287828801612c78565b9450506020612f1387828801612c78565b9350506040612f2487828801612dc3565b925050606085013567ffffffffffffffff811115612f4557612f44613d0f565b5b612f5187828801612d52565b91505092959194509250565b60008060408385031215612f7457612f73613d14565b5b6000612f8285828601612c78565b9250506020612f9385828601612d13565b9150509250929050565b60008060408385031215612fb457612fb3613d14565b5b6000612fc285828601612c78565b9250506020612fd385828601612dc3565b9150509250929050565b600060208284031215612ff357612ff2613d14565b5b600082013567ffffffffffffffff81111561301157613010613d0f565b5b61301d84828501612cb7565b91505092915050565b600080600080608085870312156130405761303f613d14565b5b600085015167ffffffffffffffff81111561305e5761305d613d0f565b5b61306a87828801612ce5565b945050602061307b87828801612dd8565b935050604061308c87828801612dd8565b925050606061309d87828801612c8d565b91505092959194509250565b6000602082840312156130bf576130be613d14565b5b60006130cd84828501612d13565b91505092915050565b6000602082840312156130ec576130eb613d14565b5b60006130fa84828501612d28565b91505092915050565b60006020828403121561311957613118613d14565b5b600061312784828501612d3d565b91505092915050565b60006020828403121561314657613145613d14565b5b600061315484828501612d80565b91505092915050565b60006020828403121561317357613172613d14565b5b600082013567ffffffffffffffff81111561319157613190613d0f565b5b61319d84828501612d95565b91505092915050565b6000602082840312156131bc576131bb613d14565b5b60006131ca84828501612dc3565b91505092915050565b6000602082840312156131e9576131e8613d14565b5b60006131f784828501612dd8565b91505092915050565b61320981613a1c565b82525050565b61321881613a40565b82525050565b6000613229826138c4565b61323381856138da565b9350613243818560208601613ad6565b61324c81613d19565b840191505092915050565b61326081613ab5565b82525050565b6000613271826138cf565b61327b81856138eb565b935061328b818560208601613ad6565b61329481613d19565b840191505092915050565b60006132aa826138cf565b6132b481856138fc565b93506132c4818560208601613ad6565b80840191505092915050565b600081546132dd81613b09565b6132e781866138fc565b94506001821660008114613302576001811461331357613346565b60ff19831686528186019350613346565b61331c856138af565b60005b8381101561333e5781548189015260018201915060208101905061331f565b838801955050505b50505092915050565b600061335c6008836138eb565b915061336782613d2a565b602082019050919050565b600061337f6026836138eb565b915061338a82613d53565b604082019050919050565b60006133a2602c836138eb565b91506133ad82613da2565b604082019050919050565b60006133c5600f836138eb565b91506133d082613df1565b602082019050919050565b60006133e86012836138eb565b91506133f382613e1a565b602082019050919050565b600061340b6011836138eb565b915061341682613e43565b602082019050919050565b600061342e6025836138eb565b915061343982613e6c565b604082019050919050565b60006134516017836138eb565b915061345c82613ebb565b602082019050919050565b60006134746020836138eb565b915061347f82613ee4565b602082019050919050565b60006134976028836138eb565b91506134a282613f0d565b604082019050919050565b60006134ba6025836138eb565b91506134c582613f5c565b604082019050919050565b60006134dd6007836138eb565b91506134e882613fab565b602082019050919050565b60006135006010836138eb565b915061350b82613fd4565b602082019050919050565b61351f81613aab565b82525050565b600061353182866132d0565b915061353d828561329f565b915061354982846132d0565b9150819050949350505050565b600060208201905061356b6000830184613200565b92915050565b60006080820190506135866000830187613200565b6135936020830186613200565b6135a06040830185613516565b81810360608301526135b2818461321e565b905095945050505050565b60006020820190506135d2600083018461320f565b92915050565b60006020820190506135ed6000830184613257565b92915050565b6000602082019050818103600083015261360d8184613266565b905092915050565b6000602082019050818103600083015261362e8161334f565b9050919050565b6000602082019050818103600083015261364e81613372565b9050919050565b6000602082019050818103600083015261366e81613395565b9050919050565b6000602082019050818103600083015261368e816133b8565b9050919050565b600060208201905081810360008301526136ae816133db565b9050919050565b600060208201905081810360008301526136ce816133fe565b9050919050565b600060208201905081810360008301526136ee81613421565b9050919050565b6000602082019050818103600083015261370e81613444565b9050919050565b6000602082019050818103600083015261372e81613467565b9050919050565b6000602082019050818103600083015261374e8161348a565b9050919050565b6000602082019050818103600083015261376e816134ad565b9050919050565b6000602082019050818103600083015261378e816134d0565b9050919050565b600060208201905081810360008301526137ae816134f3565b9050919050565b60006020820190506137ca6000830184613516565b92915050565b60006137da6137eb565b90506137e68282613b3b565b919050565b6000604051905090565b600067ffffffffffffffff8211156138105761380f613cd1565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561383c5761383b613cd1565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561386857613867613cd1565b5b61387182613d19565b9050602081019050919050565b600067ffffffffffffffff82111561389957613898613cd1565b5b6138a282613d19565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391282613aab565b915061391d83613aab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395257613951613be6565b5b828201905092915050565b600061396882613aab565b915061397383613aab565b92508261398357613982613c15565b5b828204905092915050565b600061399982613aab565b91506139a483613aab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139dd576139dc613be6565b5b828202905092915050565b60006139f382613aab565b91506139fe83613aab565b925082821015613a1157613a10613be6565b5b828203905092915050565b6000613a2782613a8b565b9050919050565b6000613a3982613a8b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613a8682613ffd565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613ac082613a78565b9050919050565b82818337600083830152505050565b60005b83811015613af4578082015181840152602081019050613ad9565b83811115613b03576000848401525b50505050565b60006002820490506001821680613b2157607f821691505b60208210811415613b3557613b34613c73565b5b50919050565b613b4482613d19565b810181811067ffffffffffffffff82111715613b6357613b62613cd1565b5b80604052505050565b6000613b7782613aab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613baa57613ba9613be6565b5b600182019050919050565b6000613bc082613aab565b9150613bcb83613aab565b925082613bdb57613bda613c15565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752068617665207265616368656420746865206d6178696d756d206e756d60008201527f626572206f66206d696e74730000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79206d696e7473210000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f546f6f206d616e79206d696e747320666f72207468652072656d61696e696e6760008201527f204e465473000000000000000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973206e6f742073746172746564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6f206d616e79206d696e747320666f72207468652072656d61696e696e6760008201527f2062616c616e6365000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c697374656420666f72207468697360008201527f2073616c65000000000000000000000000000000000000000000000000000000602082015250565b7f5265616c6c793f00000000000000000000000000000000000000000000000000600082015250565b7f5068617365203120536f6c64204f757400000000000000000000000000000000600082015250565b6003811061400e5761400d613c44565b5b50565b61401a81613a1c565b811461402557600080fd5b50565b61403181613a2e565b811461403c57600080fd5b50565b61404881613a40565b811461405357600080fd5b50565b61405f81613a4c565b811461406a57600080fd5b50565b6003811061407a57600080fd5b50565b61408681613aab565b811461409157600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d664a6177787961716843783458425154734a697936326837507133644a414158635a483931454879336f3265a264697066735822122055052eab54da472f447c61b12c936b8a716ed5b986b7b8bc7cce438ca103bb7d64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000016100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657934705866485138446d516a77554b4b64657366465a784a57335a64715565644d545973437047336943582f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063ba26d98711610095578063e985e9c511610064578063e985e9c51461061f578063f2c4ce1e1461065c578063f2fde38b14610685578063fc31f0bf146106ae576101c2565b8063ba26d98714610561578063c16ccf3b1461058c578063c87b56dd146105b7578063e8a3d485146105f4576101c2565b806395d89b41116100d157806395d89b41146104c8578063a0712d68146104f3578063a22cb4651461050f578063b88d4fde14610538576101c2565b806370a0823114610449578063715018a6146104865780638da5cb5b1461049d576101c2565b806342842e0e116101645780634bdbb80d1161013e5780634bdbb80d1461038f57806351cff8d9146103ba57806355f804b3146103e35780636352211e1461040c576101c2565b806342842e0e146103145780634891ad881461033d57806349a5980a14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806313faede61461029557806318160ddd146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906130d6565b6106d7565b6040516101fb91906135bd565b60405180910390f35b34801561021057600080fd5b50610219610769565b60405161022691906135f3565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906131a6565b6107fb565b6040516102639190613556565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612f9d565b610877565b005b3480156102a157600080fd5b506102aa610a1e565b6040516102b791906137b5565b60405180910390f35b3480156102cc57600080fd5b506102d5610a24565b6040516102e291906137b5565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612e87565b610a3b565b005b34801561032057600080fd5b5061033b60048036038101906103369190612e87565b610a4b565b005b34801561034957600080fd5b50610364600480360381019061035f9190613130565b610a6b565b005b34801561037257600080fd5b5061038d600480360381019061038891906130a9565b610b49565b005b34801561039b57600080fd5b506103a4610be2565b6040516103b191906137b5565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612e1a565b610be8565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061315d565b610cb4565b005b34801561041857600080fd5b50610433600480360381019061042e91906131a6565b610d4a565b6040516104409190613556565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612ded565b610d5c565b60405161047d91906137b5565b60405180910390f35b34801561049257600080fd5b5061049b610e15565b005b3480156104a957600080fd5b506104b2610e9d565b6040516104bf9190613556565b60405180910390f35b3480156104d457600080fd5b506104dd610ec7565b6040516104ea91906135f3565b60405180910390f35b61050d600480360381019061050891906131a6565b610f59565b005b34801561051b57600080fd5b5061053660048036038101906105319190612f5d565b6111b6565b005b34801561054457600080fd5b5061055f600480360381019061055a9190612eda565b61132e565b005b34801561056d57600080fd5b506105766113a1565b60405161058391906137b5565b60405180910390f35b34801561059857600080fd5b506105a16113a7565b6040516105ae91906135d8565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906131a6565b6113ba565b6040516105eb91906135f3565b60405180910390f35b34801561060057600080fd5b506106096114db565b60405161061691906135f3565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612e47565b6114fb565b60405161065391906135bd565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061315d565b61158f565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612ded565b611625565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612fdd565b61171d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107625750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077890613b09565b80601f01602080910402602001604051908101604052809291908181526020018280546107a490613b09565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b60006108068261185b565b61083c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610882826118ba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ea576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610909611988565b73ffffffffffffffffffffffffffffffffffffffff161461096c5761093581610930611988565b6114fb565b61096b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610a2e611990565b6001546000540303905090565b610a46838383611995565b505050565b610a668383836040518060200160405280600081525061132e565b505050565b610a73611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610a91610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90613715565b60405180910390fd5b80601260006101000a81548160ff02191690836002811115610b0c57610b0b613c44565b5b021790555060016002811115610b2557610b24613c44565b5b816002811115610b3857610b37613c44565b5b1415610b4657426014819055505b50565b610b51611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610b6f610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90613715565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600a5481565b610bf0611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610c0e610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613715565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610caf573d6000803e3d6000fd5b505050565b610cbc611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610cda610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613715565b60405180910390fd5b8060099080519060200190610d46929190612a71565b5050565b6000610d55826118ba565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e1d611d3f565b73ffffffffffffffffffffffffffffffffffffffff16610e3b610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613715565b60405180910390fd5b610e9b6000611d47565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ed690613b09565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0290613b09565b8015610f4f5780601f10610f2457610100808354040283529160200191610f4f565b820191906000526020600020905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b60016002811115610f6d57610f6c613c44565b5b601260009054906101000a900460ff166002811115610f8f57610f8e613c44565b5b14610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906136f5565b60405180910390fd5b60008111611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613775565b60405180910390fd5b600a54811115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613675565b60405180910390fd5b600f54611062610a24565b106110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990613615565b60405180910390fd5b60004290506202a3006014546110b89190613907565b8111156110cf57670214e8348c4f0000600b819055505b81600b546110dd919061398e565b34101561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690613695565b60405180910390fd5b601454811015801561114157506201518060145461113d9190613907565b8111155b15611151576111508282611e0d565b5b620151806014546111629190613907565b8111801561118057506202a30060145461117c9190613907565b8111155b1561118f5761118e82611f1f565b5b6202a3006014546111a09190613907565b8111156111b2576111b13383612187565b5b5050565b6111be611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611223576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611230611988565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112dd611988565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132291906135bd565b60405180910390a35050565b611339848484611995565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461139b57611364848484846121a5565b61139a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60145481565b601260009054906101000a900460ff1681565b60606113c58261185b565b611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb906136b5565b60405180910390fd5b600d60009054906101000a900460ff16611479576000600e805461142790613b09565b9050116114435760405180602001604052806000815250611472565b600e61144e83612305565b600c60405160200161146293929190613525565b6040516020818303038152906040525b90506114d6565b60006009805461148890613b09565b9050116114a457604051806020016040528060008152506114d3565b60096114af83612305565b600c6040516020016114c393929190613525565b6040516020818303038152906040525b90505b919050565b606060405180608001604052806050815260200161409560509139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611597611d3f565b73ffffffffffffffffffffffffffffffffffffffff166115b5610e9d565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613715565b60405180910390fd5b80600e9080519060200190611621929190612a71565b5050565b61162d611d3f565b73ffffffffffffffffffffffffffffffffffffffff1661164b610e9d565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890613635565b60405180910390fd5b61171a81611d47565b50565b611725611d3f565b73ffffffffffffffffffffffffffffffffffffffff16611743610e9d565b73ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613715565b60405180910390fd5b60005b81518110156118575760405180604001604052806000815260200160011515815250601360008484815181106117d5576117d4613ca2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff021916908315150217905550905050808061184f90613b6c565b91505061179c565b5050565b600081611866611990565b11158015611875575060005482105b80156118b3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118c9611990565b11611951576000548110156119505760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561194e575b6000811415611944576004600083600190039350838152602001908152602001600020549050611919565b8092505050611983565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006119a0826118ba565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a07576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a28611988565b73ffffffffffffffffffffffffffffffffffffffff161480611a575750611a5685611a51611988565b6114fb565b5b80611a9c5750611a65611988565b73ffffffffffffffffffffffffffffffffffffffff16611a84846107fb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ad5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b498585856001612466565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c468661246c565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611cd0576000600184019050600060046000838152602001908152602001600020541415611cce576000548114611ccd578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d388585856001612476565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fd0611e18610a24565b10611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613795565b60405180910390fd5b61a8c0601454611e689190613907565b8110611ec957611e7661247c565b80611e855750611e84612521565b5b611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613755565b60405180910390fd5b611f11565b611ed161247c565b611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613755565b60405180910390fd5b5b611f1b3383612187565b5050565b6004811115611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90613675565b60405180910390fd5b806010541015611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f906136d5565b60405180910390fd5b611fb1336125e9565b611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790613755565b60405180910390fd5b601154601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613655565b60405180910390fd5b60115481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546120c79190613907565b1115612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90613735565b60405180910390fd5b6121123382612187565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546121649190613907565b92505081905550806010600082825461217d91906139e8565b9250508190555050565b6121a1828260405180602001604052806000815250612642565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121cb611988565b8786866040518563ffffffff1660e01b81526004016121ed9493929190613571565b602060405180830381600087803b15801561220757600080fd5b505af192505050801561223857506040513d601f19601f820116820180604052508101906122359190613103565b60015b6122b2573d8060008114612268576040519150601f19603f3d011682016040523d82523d6000602084013e61226d565b606091505b506000815114156122aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561234d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612461565b600082905060005b6000821461237f57808061236890613b6c565b915050600a82612378919061395d565b9150612355565b60008167ffffffffffffffff81111561239b5761239a613cd1565b5b6040519080825280601f01601f1916602001820160405280156123cd5781602001600182028036833780820191505090505b5090505b6000851461245a576001826123e691906139e8565b9150600a856123f59190613bb5565b60306124019190613907565b60f81b81838151811061241757612416613ca2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612453919061395d565b94506123d1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006124a9601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b806124db57506124da601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b806124ea57506124e9612999565b5b8061251c575061251b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b905090565b600061254e601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b80612580575061257f601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b806125b257506125b1601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b806125e457506125e3601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128f7565b5b905090565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126af576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156126ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f76000858386612466565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161275c60018514612a67565b901b60a042901b61276c8661246c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612870575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282060008784806001019550876121a5565b612856576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106127b157826000541461286b57600080fd5b6128db565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612871575b8160008190555050506128f16000858386612476565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016129339190613556565b60206040518083038186803b15801561294b57600080fd5b505afa15801561295f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298391906131d3565b1161298f576000612992565b60015b9050919050565b6000806000806000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a006dfe1336040518263ffffffff1660e01b81526004016129fc9190613556565b60006040518083038186803b158015612a1457600080fd5b505afa158015612a28573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612a519190613026565b9350935093509350600084511194505050505090565b6000819050919050565b828054612a7d90613b09565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612af7565b5090565b5b80821115612b10576000816000905550600101612af8565b5090565b6000612b27612b22846137f5565b6137d0565b90508083825260208201905082856020860282011115612b4a57612b49613d05565b5b60005b85811015612b7a5781612b608882612c78565b845260208401935060208301925050600181019050612b4d565b5050509392505050565b6000612b97612b9284613821565b6137d0565b90508083825260208201905082856020860282011115612bba57612bb9613d05565b5b60005b85811015612bea5781612bd08882612dd8565b845260208401935060208301925050600181019050612bbd565b5050509392505050565b6000612c07612c028461384d565b6137d0565b905082815260208101848484011115612c2357612c22613d0a565b5b612c2e848285613ac7565b509392505050565b6000612c49612c448461387e565b6137d0565b905082815260208101848484011115612c6557612c64613d0a565b5b612c70848285613ac7565b509392505050565b600081359050612c8781614011565b92915050565b600081519050612c9c81614011565b92915050565b600081359050612cb181614028565b92915050565b600082601f830112612ccc57612ccb613d00565b5b8135612cdc848260208601612b14565b91505092915050565b600082601f830112612cfa57612cf9613d00565b5b8151612d0a848260208601612b84565b91505092915050565b600081359050612d228161403f565b92915050565b600081359050612d3781614056565b92915050565b600081519050612d4c81614056565b92915050565b600082601f830112612d6757612d66613d00565b5b8135612d77848260208601612bf4565b91505092915050565b600081359050612d8f8161406d565b92915050565b600082601f830112612daa57612da9613d00565b5b8135612dba848260208601612c36565b91505092915050565b600081359050612dd28161407d565b92915050565b600081519050612de78161407d565b92915050565b600060208284031215612e0357612e02613d14565b5b6000612e1184828501612c78565b91505092915050565b600060208284031215612e3057612e2f613d14565b5b6000612e3e84828501612ca2565b91505092915050565b60008060408385031215612e5e57612e5d613d14565b5b6000612e6c85828601612c78565b9250506020612e7d85828601612c78565b9150509250929050565b600080600060608486031215612ea057612e9f613d14565b5b6000612eae86828701612c78565b9350506020612ebf86828701612c78565b9250506040612ed086828701612dc3565b9150509250925092565b60008060008060808587031215612ef457612ef3613d14565b5b6000612f0287828801612c78565b9450506020612f1387828801612c78565b9350506040612f2487828801612dc3565b925050606085013567ffffffffffffffff811115612f4557612f44613d0f565b5b612f5187828801612d52565b91505092959194509250565b60008060408385031215612f7457612f73613d14565b5b6000612f8285828601612c78565b9250506020612f9385828601612d13565b9150509250929050565b60008060408385031215612fb457612fb3613d14565b5b6000612fc285828601612c78565b9250506020612fd385828601612dc3565b9150509250929050565b600060208284031215612ff357612ff2613d14565b5b600082013567ffffffffffffffff81111561301157613010613d0f565b5b61301d84828501612cb7565b91505092915050565b600080600080608085870312156130405761303f613d14565b5b600085015167ffffffffffffffff81111561305e5761305d613d0f565b5b61306a87828801612ce5565b945050602061307b87828801612dd8565b935050604061308c87828801612dd8565b925050606061309d87828801612c8d565b91505092959194509250565b6000602082840312156130bf576130be613d14565b5b60006130cd84828501612d13565b91505092915050565b6000602082840312156130ec576130eb613d14565b5b60006130fa84828501612d28565b91505092915050565b60006020828403121561311957613118613d14565b5b600061312784828501612d3d565b91505092915050565b60006020828403121561314657613145613d14565b5b600061315484828501612d80565b91505092915050565b60006020828403121561317357613172613d14565b5b600082013567ffffffffffffffff81111561319157613190613d0f565b5b61319d84828501612d95565b91505092915050565b6000602082840312156131bc576131bb613d14565b5b60006131ca84828501612dc3565b91505092915050565b6000602082840312156131e9576131e8613d14565b5b60006131f784828501612dd8565b91505092915050565b61320981613a1c565b82525050565b61321881613a40565b82525050565b6000613229826138c4565b61323381856138da565b9350613243818560208601613ad6565b61324c81613d19565b840191505092915050565b61326081613ab5565b82525050565b6000613271826138cf565b61327b81856138eb565b935061328b818560208601613ad6565b61329481613d19565b840191505092915050565b60006132aa826138cf565b6132b481856138fc565b93506132c4818560208601613ad6565b80840191505092915050565b600081546132dd81613b09565b6132e781866138fc565b94506001821660008114613302576001811461331357613346565b60ff19831686528186019350613346565b61331c856138af565b60005b8381101561333e5781548189015260018201915060208101905061331f565b838801955050505b50505092915050565b600061335c6008836138eb565b915061336782613d2a565b602082019050919050565b600061337f6026836138eb565b915061338a82613d53565b604082019050919050565b60006133a2602c836138eb565b91506133ad82613da2565b604082019050919050565b60006133c5600f836138eb565b91506133d082613df1565b602082019050919050565b60006133e86012836138eb565b91506133f382613e1a565b602082019050919050565b600061340b6011836138eb565b915061341682613e43565b602082019050919050565b600061342e6025836138eb565b915061343982613e6c565b604082019050919050565b60006134516017836138eb565b915061345c82613ebb565b602082019050919050565b60006134746020836138eb565b915061347f82613ee4565b602082019050919050565b60006134976028836138eb565b91506134a282613f0d565b604082019050919050565b60006134ba6025836138eb565b91506134c582613f5c565b604082019050919050565b60006134dd6007836138eb565b91506134e882613fab565b602082019050919050565b60006135006010836138eb565b915061350b82613fd4565b602082019050919050565b61351f81613aab565b82525050565b600061353182866132d0565b915061353d828561329f565b915061354982846132d0565b9150819050949350505050565b600060208201905061356b6000830184613200565b92915050565b60006080820190506135866000830187613200565b6135936020830186613200565b6135a06040830185613516565b81810360608301526135b2818461321e565b905095945050505050565b60006020820190506135d2600083018461320f565b92915050565b60006020820190506135ed6000830184613257565b92915050565b6000602082019050818103600083015261360d8184613266565b905092915050565b6000602082019050818103600083015261362e8161334f565b9050919050565b6000602082019050818103600083015261364e81613372565b9050919050565b6000602082019050818103600083015261366e81613395565b9050919050565b6000602082019050818103600083015261368e816133b8565b9050919050565b600060208201905081810360008301526136ae816133db565b9050919050565b600060208201905081810360008301526136ce816133fe565b9050919050565b600060208201905081810360008301526136ee81613421565b9050919050565b6000602082019050818103600083015261370e81613444565b9050919050565b6000602082019050818103600083015261372e81613467565b9050919050565b6000602082019050818103600083015261374e8161348a565b9050919050565b6000602082019050818103600083015261376e816134ad565b9050919050565b6000602082019050818103600083015261378e816134d0565b9050919050565b600060208201905081810360008301526137ae816134f3565b9050919050565b60006020820190506137ca6000830184613516565b92915050565b60006137da6137eb565b90506137e68282613b3b565b919050565b6000604051905090565b600067ffffffffffffffff8211156138105761380f613cd1565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561383c5761383b613cd1565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561386857613867613cd1565b5b61387182613d19565b9050602081019050919050565b600067ffffffffffffffff82111561389957613898613cd1565b5b6138a282613d19565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391282613aab565b915061391d83613aab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395257613951613be6565b5b828201905092915050565b600061396882613aab565b915061397383613aab565b92508261398357613982613c15565b5b828204905092915050565b600061399982613aab565b91506139a483613aab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139dd576139dc613be6565b5b828202905092915050565b60006139f382613aab565b91506139fe83613aab565b925082821015613a1157613a10613be6565b5b828203905092915050565b6000613a2782613a8b565b9050919050565b6000613a3982613a8b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613a8682613ffd565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613ac082613a78565b9050919050565b82818337600083830152505050565b60005b83811015613af4578082015181840152602081019050613ad9565b83811115613b03576000848401525b50505050565b60006002820490506001821680613b2157607f821691505b60208210811415613b3557613b34613c73565b5b50919050565b613b4482613d19565b810181811067ffffffffffffffff82111715613b6357613b62613cd1565b5b80604052505050565b6000613b7782613aab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613baa57613ba9613be6565b5b600182019050919050565b6000613bc082613aab565b9150613bcb83613aab565b925082613bdb57613bda613c15565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752068617665207265616368656420746865206d6178696d756d206e756d60008201527f626572206f66206d696e74730000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79206d696e7473210000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f546f6f206d616e79206d696e747320666f72207468652072656d61696e696e6760008201527f204e465473000000000000000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973206e6f742073746172746564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6f206d616e79206d696e747320666f72207468652072656d61696e696e6760008201527f2062616c616e6365000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c697374656420666f72207468697360008201527f2073616c65000000000000000000000000000000000000000000000000000000602082015250565b7f5265616c6c793f00000000000000000000000000000000000000000000000000600082015250565b7f5068617365203120536f6c64204f757400000000000000000000000000000000600082015250565b6003811061400e5761400d613c44565b5b50565b61401a81613a1c565b811461402557600080fd5b50565b61403181613a2e565b811461403c57600080fd5b50565b61404881613a40565b811461405357600080fd5b50565b61405f81613a4c565b811461406a57600080fd5b50565b6003811061407a57600080fd5b50565b61408681613aab565b811461409157600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d664a6177787961716843783458425154734a697936326837507133644a414158635a483931454879336f3265a264697066735822122055052eab54da472f447c61b12c936b8a716ed5b986b7b8bc7cce438ca103bb7d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000016100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657934705866485138446d516a77554b4b64657366465a784a57335a64715565644d545973437047336943582f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): a
Arg [1] : _not_revealed_uri (string): https://gateway.pinata.cloud/ipfs/Qmey4pXfHQ8DmQjwUKKdesfFZxJW3ZdqUedMTYsCpG3iCX/
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 6100000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [5] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [6] : 732f516d657934705866485138446d516a77554b4b64657366465a784a57335a
Arg [7] : 64715565644d545973437047336943582f000000000000000000000000000000
Deployed Bytecode Sourcemap
805:6039:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4878:607:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9766:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11767:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11243:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;958:32:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3961:309:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12627:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12857:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2762:218:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2428:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;911:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6686:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2654:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9562:142:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5544:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1659:101:3;;;;;;;;;;;;;:::i;:::-;;1027:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9928:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4557:978:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12034:303:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13102:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1323:27:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1227:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3285:440;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2257:165;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12403:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2522:126:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1909:198:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3098:181:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4878:607:1;4963:4;5273:10;5258:25;;:11;:25;;;;:101;;;;5349:10;5334:25;;:11;:25;;;;5258:101;:177;;;;5425:10;5410:25;;:11;:25;;;;5258:177;5239:196;;4878:607;;;:::o;9766:98::-;9820:13;9852:5;9845:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9766:98;:::o;11767:200::-;11835:7;11859:16;11867:7;11859;:16::i;:::-;11854:64;;11884:34;;;;;;;;;;;;;;11854:64;11936:15;:24;11952:7;11936:24;;;;;;;;;;;;;;;;;;;;;11929:31;;11767:200;;;:::o;11243:463::-;11315:13;11347:27;11366:7;11347:18;:27::i;:::-;11315:61;;11396:5;11390:11;;:2;:11;;;11386:48;;;11410:24;;;;;;;;;;;;;;11386:48;11472:5;11449:28;;:19;:17;:19::i;:::-;:28;;;11445:172;;11496:44;11513:5;11520:19;:17;:19::i;:::-;11496:16;:44::i;:::-;11491:126;;11567:35;;;;;;;;;;;;;;11491:126;11445:172;11654:2;11627:15;:24;11643:7;11627:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11691:7;11687:2;11671:28;;11680:5;11671:28;;;;;;;;;;;;11305:401;11243:463;;:::o;958:32:5:-;;;;:::o;3961:309:1:-;4014:7;4238:15;:13;:15::i;:::-;4223:12;;4207:13;;:28;:46;4200:53;;3961:309;:::o;12627:164::-;12756:28;12766:4;12772:2;12776:7;12756:9;:28::i;:::-;12627:164;;;:::o;12857:179::-;12990:39;13007:4;13013:2;13017:7;12990:39;;;;;;;;;;;;:16;:39::i;:::-;12857:179;;;:::o;2762:218:5:-;1250:12:3;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2857:10:5::1;2835:19;;:32;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;2896:18;2882:32;;;;;;;;:::i;:::-;;:10;:32;;;;;;;;:::i;:::-;;;2878:96;;;2948:15;2930;:33;;;;2878:96;2762:218:::0;:::o;2428:88::-;1250:12:3;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2504:5:5::1;2490:11;;:19;;;;;;;;;;;;;;;;;;2428:88:::0;:::o;911:36::-;;;;:::o;6686:155::-;1250:12:3;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6758:15:5::1;6776:21;6758:39;;6807:9;:18;;:27;6826:7;6807:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6748:93;6686:155:::0;:::o;2654:102::-;1250:12:3;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2738:11:5::1;2728:7;:21;;;;;;;;;;;;:::i;:::-;;2654:102:::0;:::o;9562:142:1:-;9626:7;9668:27;9687:7;9668:18;:27::i;:::-;9645:52;;9562:142;;;:::o;5544:221::-;5608:7;5648:1;5631:19;;:5;:19;;;5627:60;;;5659:28;;;;;;;;;;;;;;5627:60;1015:13;5704:18;:25;5723:5;5704:25;;;;;;;;;;;;;;;;:54;5697:61;;5544:221;;;:::o;1659:101:3:-;1250:12;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;1027:85::-;1073:7;1099:6;;;;;;;;;;;1092:13;;1027:85;:::o;9928:102:1:-;9984:13;10016:7;10009:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9928:102;:::o;4557:978:5:-;4649:18;4626:41;;;;;;;;:::i;:::-;;:19;;;;;;;;;;;:41;;;;;;;;:::i;:::-;;;4618:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;4727:1;4713:11;:15;4705:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;4773:19;;4758:11;:34;;4750:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4846:12;;4830:13;:11;:13::i;:::-;:28;4822:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4882:9;4894:15;4882:27;;4956:6;4938:15;;:24;;;;:::i;:::-;4931:4;:31;4928:66;;;4984:10;4977:4;:17;;;;4928:66;5042:11;5035:4;;:18;;;;:::i;:::-;5022:9;:31;;5014:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5137:15;;5129:4;:23;;:59;;;;;5182:6;5164:15;;:24;;;;:::i;:::-;5156:4;:32;;5129:59;5125:111;;;5203:33;5218:11;5231:4;5203:14;:33::i;:::-;5125:111;5312:6;5294:15;;:24;;;;:::i;:::-;5287:4;:31;:67;;;;;5348:6;5330:15;;:24;;;;:::i;:::-;5322:4;:32;;5287:67;5283:114;;;5369:28;5385:11;5369:15;:28::i;:::-;5283:114;5465:6;5447:15;;:24;;;;:::i;:::-;5440:4;:31;5436:83;;;5485:34;5495:10;5507:11;5485:9;:34::i;:::-;5436:83;4607:928;4557:978;:::o;12034:303:1:-;12144:19;:17;:19::i;:::-;12132:31;;:8;:31;;;12128:61;;;12172:17;;;;;;;;;;;;;;12128:61;12252:8;12200:18;:39;12219:19;:17;:19::i;:::-;12200:39;;;;;;;;;;;;;;;:49;12240:8;12200:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12311:8;12275:55;;12290:19;:17;:19::i;:::-;12275:55;;;12321:8;12275:55;;;;;;:::i;:::-;;;;;;;;12034:303;;:::o;13102:385::-;13263:28;13273:4;13279:2;13283:7;13263:9;:28::i;:::-;13323:1;13305:2;:14;;;:19;13301:180;;13343:56;13374:4;13380:2;13384:7;13393:5;13343:30;:56::i;:::-;13338:143;;13426:40;;;;;;;;;;;;;;13338:143;13301:180;13102:385;;;;:::o;1323:27:5:-;;;;:::o;1227:37::-;;;;;;;;;;;;;:::o;3285:440::-;3359:13;3392:16;3400:7;3392;:16::i;:::-;3384:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3445:11;;;;;;;;;;;3440:165;;3512:1;3485:16;3479:30;;;;;:::i;:::-;;;:34;:115;;;;;;;;;;;;;;;;;3540:16;3558:18;:7;:16;:18::i;:::-;3578:9;3523:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3479:115;3472:122;;;;3440:165;3645:1;3627:7;3621:21;;;;;:::i;:::-;;;:25;:97;;;;;;;;;;;;;;;;;3673:7;3682:18;:7;:16;:18::i;:::-;3702:9;3656:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3621:97;3614:104;;3285:440;;;;:::o;2257:165::-;2301:13;2326:89;;;;;;;;;;;;;;;;;;;2257:165;:::o;12403:162:1:-;12500:4;12523:18;:25;12542:5;12523:25;;;;;;;;;;;;;;;:35;12549:8;12523:35;;;;;;;;;;;;;;;;;;;;;;;;;12516:42;;12403:162;;;;:::o;2522:126:5:-;1250:12:3;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2626:15:5::1;2607:16;:34;;;;;;;;;;;;:::i;:::-;;2522:126:::0;:::o;1909:198:3:-;1250:12;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2017:1:::1;1997:22;;:8;:22;;;;1989:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2072:28;2091:8;2072:18;:28::i;:::-;1909:198:::0;:::o;3098:181:5:-;1250:12:3;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3177:6:5::1;3172:101;3189:6;:13;3187:1;:15;3172:101;;;3245:17;;;;;;;;3254:1;3245:17;;;;3257:4;3245:17;;;;::::0;3223:8:::1;:19;3232:6;3239:1;3232:9;;;;;;;;:::i;:::-;;;;;;;;3223:19;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3204:3;;;;;:::i;:::-;;;;3172:101;;;;3098:181:::0;:::o;13733:268:1:-;13790:4;13844:7;13825:15;:13;:15::i;:::-;:26;;:65;;;;;13877:13;;13867:7;:23;13825:65;:150;;;;;13974:1;1767:8;13927:17;:26;13945:7;13927:26;;;;;;;;;;;;:43;:48;13825:150;13806:169;;13733:268;;;:::o;7139:1105::-;7206:7;7225:12;7240:7;7225:22;;7305:4;7286:15;:13;:15::i;:::-;:23;7282:898;;7338:13;;7331:4;:20;7327:853;;;7375:14;7392:17;:23;7410:4;7392:23;;;;;;;;;;;;7375:40;;7506:1;1767:8;7479:6;:23;:28;7475:687;;;7990:111;8007:1;7997:6;:11;7990:111;;;8049:17;:25;8067:6;;;;;;;8049:25;;;;;;;;;;;;8040:34;;7990:111;;;8133:6;8126:13;;;;;;7475:687;7353:827;7327:853;7282:898;8206:31;;;;;;;;;;;;;;7139:1105;;;;:::o;27358:103::-;27418:7;27444:10;27437:17;;27358:103;:::o;3500:90::-;3556:7;3500:90;:::o;18833:2460::-;18943:27;18973;18992:7;18973:18;:27::i;:::-;18943:57;;19056:4;19015:45;;19031:19;19015:45;;;19011:86;;19069:28;;;;;;;;;;;;;;19011:86;19108:22;19157:4;19134:27;;:19;:17;:19::i;:::-;:27;;;:86;;;;19177:43;19194:4;19200:19;:17;:19::i;:::-;19177:16;:43::i;:::-;19134:86;:145;;;;19260:19;:17;:19::i;:::-;19236:43;;:20;19248:7;19236:11;:20::i;:::-;:43;;;19134:145;19108:172;;19296:17;19291:66;;19322:35;;;;;;;;;;;;;;19291:66;19385:1;19371:16;;:2;:16;;;19367:52;;;19396:23;;;;;;;;;;;;;;19367:52;19430:43;19452:4;19458:2;19462:7;19471:1;19430:21;:43::i;:::-;19543:15;:24;19559:7;19543:24;;;;;;;;;;;;19536:31;;;;;;;;;;;19928:18;:24;19947:4;19928:24;;;;;;;;;;;;;;;;19926:26;;;;;;;;;;;;19996:18;:22;20015:2;19996:22;;;;;;;;;;;;;;;;19994:24;;;;;;;;;;;2043:8;1654:3;20368:15;:41;;20327:21;20345:2;20327:17;:21::i;:::-;:83;:126;20282:17;:26;20300:7;20282:26;;;;;;;;;;;:171;;;;20620:1;2043:8;20570:19;:46;:51;20566:616;;;20641:19;20673:1;20663:7;:11;20641:33;;20828:1;20794:17;:30;20812:11;20794:30;;;;;;;;;;;;:35;20790:378;;;20930:13;;20915:11;:28;20911:239;;21108:19;21075:17;:30;21093:11;21075:30;;;;;;;;;;;:52;;;;20911:239;20790:378;20623:559;20566:616;21226:7;21222:2;21207:27;;21216:4;21207:27;;;;;;;;;;;;21244:42;21265:4;21271:2;21275:7;21284:1;21244:20;:42::i;:::-;18933:2360;;18833:2460;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;2261:187:3:-;2334:16;2353:6;;;;;;;;;;;2334:25;;2378:8;2369:6;;:17;;;;;;;;;;;;;;;;;;2432:8;2401:40;;2422:8;2401:40;;;;;;;;;;;;2324:124;2261:187;:::o;5541:463:5:-;5636:4;5620:13;:11;:13::i;:::-;:20;5612:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;5742:8;5724:15;;:26;;;;:::i;:::-;5716:4;:34;5713:239;;5773:20;:18;:20::i;:::-;:40;;;;5797:16;:14;:16::i;:::-;5773:40;5765:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;5713:239;;;5890:20;:18;:20::i;:::-;5882:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5713:239;5963:34;5973:10;5985:11;5963:9;:34::i;:::-;5541:463;;:::o;6010:670::-;6094:1;6079:11;:16;;6071:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;6156:11;6133:19;;:34;;6125:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;6227:20;6236:10;6227:8;:20::i;:::-;6219:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6340:14;;6307:8;:20;6316:10;6307:20;;;;;;;;;;;;;;;:30;;;:47;6299:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;6469:14;;6454:11;6421:8;:20;6430:10;6421:20;;;;;;;;;;;;;;;:30;;;:44;;;;:::i;:::-;:62;;6413:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;6539:34;6549:10;6561:11;6539:9;:34::i;:::-;6618:11;6584:8;:20;6593:10;6584:20;;;;;;;;;;;;;;;:30;;;:45;;;;;;;:::i;:::-;;;;;;;;6662:11;6639:19;;:34;;;;;;;:::i;:::-;;;;;;;;6010:670;:::o;14080:102:1:-;14148:27;14158:2;14162:8;14148:27;;;;;;;;;;;;:9;:27::i;:::-;14080:102;;:::o;24898:697::-;25056:4;25101:2;25076:45;;;25122:19;:17;:19::i;:::-;25143:4;25149:7;25158:5;25076:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25072:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25371:1;25354:6;:13;:18;25350:229;;;25399:40;;;;;;;;;;;;;;25350:229;25539:6;25533:13;25524:6;25520:2;25516:15;25509:38;25072:517;25242:54;;;25232:64;;;:6;:64;;;;25225:71;;;24898:697;;;;;;:::o;328:703:4:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;26226:154:1:-;;;;;:::o;10822:144::-;10886:14;10945:5;10935:15;;10822:144;;;:::o;27021:153::-;;;;;:::o;4124:197:5:-;4175:4;4198:30;4209:18;;;;;;;;;;;4198:10;:30::i;:::-;:61;;;;4232:27;4243:15;;;;;;;;;;;4232:10;:27::i;:::-;4198:61;:84;;;;4263:19;:17;:19::i;:::-;4198:84;:116;;;;4286:28;4297:16;;;;;;;;;;;4286:10;:28::i;:::-;4198:116;4191:123;;4124:197;:::o;4327:224::-;4374:4;4397:32;4408:20;;;;;;;;;;;4397:10;:32::i;:::-;:69;;;;4433:33;4444:21;;;;;;;;;;;4433:10;:33::i;:::-;4397:69;:108;;;;4470:35;4481:23;;;;;;;;;;;4470:10;:35::i;:::-;4397:108;:147;;;;4509:35;4520:23;;;;;;;;;;;4509:10;:35::i;:::-;4397:147;4390:154;;4327:224;:::o;2986:106::-;3040:4;3063:8;:15;3072:5;3063:15;;;;;;;;;;;;;;;:22;;;;;;;;;;;;3056:29;;2986:106;;;:::o;14542:2184:1:-;14660:20;14683:13;;14660:36;;14724:1;14710:16;;:2;:16;;;14706:48;;;14735:19;;;;;;;;;;;;;;14706:48;14780:1;14768:8;:13;14764:44;;;14790:18;;;;;;;;;;;;;;14764:44;14819:61;14849:1;14853:2;14857:12;14871:8;14819:21;:61::i;:::-;15412:1;1149:2;15383:1;:25;;15382:31;15370:8;:44;15344:18;:22;15363:2;15344:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1911:3;15803:29;15830:1;15818:8;:13;15803:14;:29::i;:::-;:56;;1654:3;15741:15;:41;;15700:21;15718:2;15700:17;:21::i;:::-;:83;:160;15650:17;:31;15668:12;15650:31;;;;;;;;;;;:210;;;;15875:20;15898:12;15875:35;;15924:11;15953:8;15938:12;:23;15924:37;;15998:1;15980:2;:14;;;:19;15976:622;;16019:308;16074:12;16070:2;16049:38;;16066:1;16049:38;;;;;;;;;;;;16114:69;16153:1;16157:2;16161:14;;;;;;16177:5;16114:30;:69::i;:::-;16109:172;;16218:40;;;;;;;;;;;;;;16109:172;16322:3;16307:12;:18;16019:308;;16406:12;16389:13;;:29;16385:43;;16420:8;;;16385:43;15976:622;;;16467:117;16522:14;;;;;;16518:2;16497:40;;16514:1;16497:40;;;;;;;;;;;;16579:3;16564:12;:18;16467:117;;15976:622;16627:12;16611:13;:28;;;;15127:1523;;16659:60;16688:1;16692:2;16696:12;16710:8;16659:20;:60::i;:::-;14650:2076;14542:2184;;;:::o;3731:147:5:-;3791:4;3855:1;3820:9;3813:27;;;3841:10;3813:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;:58;;3866:5;3813:58;;;3859:4;3813:58;3806:65;;3731:147;;;:::o;3884:234::-;3934:4;3951:20;3973:9;3984;3995;4030:26;;;;;;;;;;;4008:60;;;4069:10;4008:72;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3950:130;;;;;;;;4110:1;4097:3;:10;:14;4090:21;;;;;;3884:234;:::o;11048:138:1:-;11106:14;11165:5;11155:15;;11048:138;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:6:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:744::-;876:5;901:81;917:64;974:6;917:64;:::i;:::-;901:81;:::i;:::-;892:90;;1002:5;1031:6;1024:5;1017:21;1065:4;1058:5;1054:16;1047:23;;1091:6;1141:3;1133:4;1125:6;1121:17;1116:3;1112:27;1109:36;1106:143;;;1160:79;;:::i;:::-;1106:143;1273:1;1258:249;1283:6;1280:1;1277:13;1258:249;;;1351:3;1380:48;1424:3;1412:10;1380:48;:::i;:::-;1375:3;1368:61;1458:4;1453:3;1449:14;1442:21;;1492:4;1487:3;1483:14;1476:21;;1318:189;1305:1;1302;1298:9;1293:14;;1258:249;;;1262:14;882:631;;769:744;;;;;:::o;1519:410::-;1596:5;1621:65;1637:48;1678:6;1637:48;:::i;:::-;1621:65;:::i;:::-;1612:74;;1709:6;1702:5;1695:21;1747:4;1740:5;1736:16;1785:3;1776:6;1771:3;1767:16;1764:25;1761:112;;;1792:79;;:::i;:::-;1761:112;1882:41;1916:6;1911:3;1906;1882:41;:::i;:::-;1602:327;1519:410;;;;;:::o;1935:412::-;2013:5;2038:66;2054:49;2096:6;2054:49;:::i;:::-;2038:66;:::i;:::-;2029:75;;2127:6;2120:5;2113:21;2165:4;2158:5;2154:16;2203:3;2194:6;2189:3;2185:16;2182:25;2179:112;;;2210:79;;:::i;:::-;2179:112;2300:41;2334:6;2329:3;2324;2300:41;:::i;:::-;2019:328;1935:412;;;;;:::o;2353:139::-;2399:5;2437:6;2424:20;2415:29;;2453:33;2480:5;2453:33;:::i;:::-;2353:139;;;;:::o;2498:143::-;2555:5;2586:6;2580:13;2571:22;;2602:33;2629:5;2602:33;:::i;:::-;2498:143;;;;:::o;2647:155::-;2701:5;2739:6;2726:20;2717:29;;2755:41;2790:5;2755:41;:::i;:::-;2647:155;;;;:::o;2825:370::-;2896:5;2945:3;2938:4;2930:6;2926:17;2922:27;2912:122;;2953:79;;:::i;:::-;2912:122;3070:6;3057:20;3095:94;3185:3;3177:6;3170:4;3162:6;3158:17;3095:94;:::i;:::-;3086:103;;2902:293;2825:370;;;;:::o;3218:385::-;3300:5;3349:3;3342:4;3334:6;3330:17;3326:27;3316:122;;3357:79;;:::i;:::-;3316:122;3467:6;3461:13;3492:105;3593:3;3585:6;3578:4;3570:6;3566:17;3492:105;:::i;:::-;3483:114;;3306:297;3218:385;;;;:::o;3609:133::-;3652:5;3690:6;3677:20;3668:29;;3706:30;3730:5;3706:30;:::i;:::-;3609:133;;;;:::o;3748:137::-;3793:5;3831:6;3818:20;3809:29;;3847:32;3873:5;3847:32;:::i;:::-;3748:137;;;;:::o;3891:141::-;3947:5;3978:6;3972:13;3963:22;;3994:32;4020:5;3994:32;:::i;:::-;3891:141;;;;:::o;4051:338::-;4106:5;4155:3;4148:4;4140:6;4136:17;4132:27;4122:122;;4163:79;;:::i;:::-;4122:122;4280:6;4267:20;4305:78;4379:3;4371:6;4364:4;4356:6;4352:17;4305:78;:::i;:::-;4296:87;;4112:277;4051:338;;;;:::o;4395:169::-;4456:5;4494:6;4481:20;4472:29;;4510:48;4552:5;4510:48;:::i;:::-;4395:169;;;;:::o;4584:340::-;4640:5;4689:3;4682:4;4674:6;4670:17;4666:27;4656:122;;4697:79;;:::i;:::-;4656:122;4814:6;4801:20;4839:79;4914:3;4906:6;4899:4;4891:6;4887:17;4839:79;:::i;:::-;4830:88;;4646:278;4584:340;;;;:::o;4930:139::-;4976:5;5014:6;5001:20;4992:29;;5030:33;5057:5;5030:33;:::i;:::-;4930:139;;;;:::o;5075:143::-;5132:5;5163:6;5157:13;5148:22;;5179:33;5206:5;5179:33;:::i;:::-;5075:143;;;;:::o;5224:329::-;5283:6;5332:2;5320:9;5311:7;5307:23;5303:32;5300:119;;;5338:79;;:::i;:::-;5300:119;5458:1;5483:53;5528:7;5519:6;5508:9;5504:22;5483:53;:::i;:::-;5473:63;;5429:117;5224:329;;;;:::o;5559:345::-;5626:6;5675:2;5663:9;5654:7;5650:23;5646:32;5643:119;;;5681:79;;:::i;:::-;5643:119;5801:1;5826:61;5879:7;5870:6;5859:9;5855:22;5826:61;:::i;:::-;5816:71;;5772:125;5559:345;;;;:::o;5910:474::-;5978:6;5986;6035:2;6023:9;6014:7;6010:23;6006:32;6003:119;;;6041:79;;:::i;:::-;6003:119;6161:1;6186:53;6231:7;6222:6;6211:9;6207:22;6186:53;:::i;:::-;6176:63;;6132:117;6288:2;6314:53;6359:7;6350:6;6339:9;6335:22;6314:53;:::i;:::-;6304:63;;6259:118;5910:474;;;;;:::o;6390:619::-;6467:6;6475;6483;6532:2;6520:9;6511:7;6507:23;6503:32;6500:119;;;6538:79;;:::i;:::-;6500:119;6658:1;6683:53;6728:7;6719:6;6708:9;6704:22;6683:53;:::i;:::-;6673:63;;6629:117;6785:2;6811:53;6856:7;6847:6;6836:9;6832:22;6811:53;:::i;:::-;6801:63;;6756:118;6913:2;6939:53;6984:7;6975:6;6964:9;6960:22;6939:53;:::i;:::-;6929:63;;6884:118;6390:619;;;;;:::o;7015:943::-;7110:6;7118;7126;7134;7183:3;7171:9;7162:7;7158:23;7154:33;7151:120;;;7190:79;;:::i;:::-;7151:120;7310:1;7335:53;7380:7;7371:6;7360:9;7356:22;7335:53;:::i;:::-;7325:63;;7281:117;7437:2;7463:53;7508:7;7499:6;7488:9;7484:22;7463:53;:::i;:::-;7453:63;;7408:118;7565:2;7591:53;7636:7;7627:6;7616:9;7612:22;7591:53;:::i;:::-;7581:63;;7536:118;7721:2;7710:9;7706:18;7693:32;7752:18;7744:6;7741:30;7738:117;;;7774:79;;:::i;:::-;7738:117;7879:62;7933:7;7924:6;7913:9;7909:22;7879:62;:::i;:::-;7869:72;;7664:287;7015:943;;;;;;;:::o;7964:468::-;8029:6;8037;8086:2;8074:9;8065:7;8061:23;8057:32;8054:119;;;8092:79;;:::i;:::-;8054:119;8212:1;8237:53;8282:7;8273:6;8262:9;8258:22;8237:53;:::i;:::-;8227:63;;8183:117;8339:2;8365:50;8407:7;8398:6;8387:9;8383:22;8365:50;:::i;:::-;8355:60;;8310:115;7964:468;;;;;:::o;8438:474::-;8506:6;8514;8563:2;8551:9;8542:7;8538:23;8534:32;8531:119;;;8569:79;;:::i;:::-;8531:119;8689:1;8714:53;8759:7;8750:6;8739:9;8735:22;8714:53;:::i;:::-;8704:63;;8660:117;8816:2;8842:53;8887:7;8878:6;8867:9;8863:22;8842:53;:::i;:::-;8832:63;;8787:118;8438:474;;;;;:::o;8918:539::-;9002:6;9051:2;9039:9;9030:7;9026:23;9022:32;9019:119;;;9057:79;;:::i;:::-;9019:119;9205:1;9194:9;9190:17;9177:31;9235:18;9227:6;9224:30;9221:117;;;9257:79;;:::i;:::-;9221:117;9362:78;9432:7;9423:6;9412:9;9408:22;9362:78;:::i;:::-;9352:88;;9148:302;8918:539;;;;:::o;9463:1023::-;9585:6;9593;9601;9609;9658:3;9646:9;9637:7;9633:23;9629:33;9626:120;;;9665:79;;:::i;:::-;9626:120;9806:1;9795:9;9791:17;9785:24;9836:18;9828:6;9825:30;9822:117;;;9858:79;;:::i;:::-;9822:117;9963:89;10044:7;10035:6;10024:9;10020:22;9963:89;:::i;:::-;9953:99;;9756:306;10101:2;10127:64;10183:7;10174:6;10163:9;10159:22;10127:64;:::i;:::-;10117:74;;10072:129;10240:2;10266:64;10322:7;10313:6;10302:9;10298:22;10266:64;:::i;:::-;10256:74;;10211:129;10379:2;10405:64;10461:7;10452:6;10441:9;10437:22;10405:64;:::i;:::-;10395:74;;10350:129;9463:1023;;;;;;;:::o;10492:323::-;10548:6;10597:2;10585:9;10576:7;10572:23;10568:32;10565:119;;;10603:79;;:::i;:::-;10565:119;10723:1;10748:50;10790:7;10781:6;10770:9;10766:22;10748:50;:::i;:::-;10738:60;;10694:114;10492:323;;;;:::o;10821:327::-;10879:6;10928:2;10916:9;10907:7;10903:23;10899:32;10896:119;;;10934:79;;:::i;:::-;10896:119;11054:1;11079:52;11123:7;11114:6;11103:9;11099:22;11079:52;:::i;:::-;11069:62;;11025:116;10821:327;;;;:::o;11154:349::-;11223:6;11272:2;11260:9;11251:7;11247:23;11243:32;11240:119;;;11278:79;;:::i;:::-;11240:119;11398:1;11423:63;11478:7;11469:6;11458:9;11454:22;11423:63;:::i;:::-;11413:73;;11369:127;11154:349;;;;:::o;11509:359::-;11583:6;11632:2;11620:9;11611:7;11607:23;11603:32;11600:119;;;11638:79;;:::i;:::-;11600:119;11758:1;11783:68;11843:7;11834:6;11823:9;11819:22;11783:68;:::i;:::-;11773:78;;11729:132;11509:359;;;;:::o;11874:509::-;11943:6;11992:2;11980:9;11971:7;11967:23;11963:32;11960:119;;;11998:79;;:::i;:::-;11960:119;12146:1;12135:9;12131:17;12118:31;12176:18;12168:6;12165:30;12162:117;;;12198:79;;:::i;:::-;12162:117;12303:63;12358:7;12349:6;12338:9;12334:22;12303:63;:::i;:::-;12293:73;;12089:287;11874:509;;;;:::o;12389:329::-;12448:6;12497:2;12485:9;12476:7;12472:23;12468:32;12465:119;;;12503:79;;:::i;:::-;12465:119;12623:1;12648:53;12693:7;12684:6;12673:9;12669:22;12648:53;:::i;:::-;12638:63;;12594:117;12389:329;;;;:::o;12724:351::-;12794:6;12843:2;12831:9;12822:7;12818:23;12814:32;12811:119;;;12849:79;;:::i;:::-;12811:119;12969:1;12994:64;13050:7;13041:6;13030:9;13026:22;12994:64;:::i;:::-;12984:74;;12940:128;12724:351;;;;:::o;13081:118::-;13168:24;13186:5;13168:24;:::i;:::-;13163:3;13156:37;13081:118;;:::o;13205:109::-;13286:21;13301:5;13286:21;:::i;:::-;13281:3;13274:34;13205:109;;:::o;13320:360::-;13406:3;13434:38;13466:5;13434:38;:::i;:::-;13488:70;13551:6;13546:3;13488:70;:::i;:::-;13481:77;;13567:52;13612:6;13607:3;13600:4;13593:5;13589:16;13567:52;:::i;:::-;13644:29;13666:6;13644:29;:::i;:::-;13639:3;13635:39;13628:46;;13410:270;13320:360;;;;:::o;13686:157::-;13786:50;13830:5;13786:50;:::i;:::-;13781:3;13774:63;13686:157;;:::o;13849:364::-;13937:3;13965:39;13998:5;13965:39;:::i;:::-;14020:71;14084:6;14079:3;14020:71;:::i;:::-;14013:78;;14100:52;14145:6;14140:3;14133:4;14126:5;14122:16;14100:52;:::i;:::-;14177:29;14199:6;14177:29;:::i;:::-;14172:3;14168:39;14161:46;;13941:272;13849:364;;;;:::o;14219:377::-;14325:3;14353:39;14386:5;14353:39;:::i;:::-;14408:89;14490:6;14485:3;14408:89;:::i;:::-;14401:96;;14506:52;14551:6;14546:3;14539:4;14532:5;14528:16;14506:52;:::i;:::-;14583:6;14578:3;14574:16;14567:23;;14329:267;14219:377;;;;:::o;14626:845::-;14729:3;14766:5;14760:12;14795:36;14821:9;14795:36;:::i;:::-;14847:89;14929:6;14924:3;14847:89;:::i;:::-;14840:96;;14967:1;14956:9;14952:17;14983:1;14978:137;;;;15129:1;15124:341;;;;14945:520;;14978:137;15062:4;15058:9;15047;15043:25;15038:3;15031:38;15098:6;15093:3;15089:16;15082:23;;14978:137;;15124:341;15191:38;15223:5;15191:38;:::i;:::-;15251:1;15265:154;15279:6;15276:1;15273:13;15265:154;;;15353:7;15347:14;15343:1;15338:3;15334:11;15327:35;15403:1;15394:7;15390:15;15379:26;;15301:4;15298:1;15294:12;15289:17;;15265:154;;;15448:6;15443:3;15439:16;15432:23;;15131:334;;14945:520;;14733:738;;14626:845;;;;:::o;15477:365::-;15619:3;15640:66;15704:1;15699:3;15640:66;:::i;:::-;15633:73;;15715:93;15804:3;15715:93;:::i;:::-;15833:2;15828:3;15824:12;15817:19;;15477:365;;;:::o;15848:366::-;15990:3;16011:67;16075:2;16070:3;16011:67;:::i;:::-;16004:74;;16087:93;16176:3;16087:93;:::i;:::-;16205:2;16200:3;16196:12;16189:19;;15848:366;;;:::o;16220:::-;16362:3;16383:67;16447:2;16442:3;16383:67;:::i;:::-;16376:74;;16459:93;16548:3;16459:93;:::i;:::-;16577:2;16572:3;16568:12;16561:19;;16220:366;;;:::o;16592:::-;16734:3;16755:67;16819:2;16814:3;16755:67;:::i;:::-;16748:74;;16831:93;16920:3;16831:93;:::i;:::-;16949:2;16944:3;16940:12;16933:19;;16592:366;;;:::o;16964:::-;17106:3;17127:67;17191:2;17186:3;17127:67;:::i;:::-;17120:74;;17203:93;17292:3;17203:93;:::i;:::-;17321:2;17316:3;17312:12;17305:19;;16964:366;;;:::o;17336:::-;17478:3;17499:67;17563:2;17558:3;17499:67;:::i;:::-;17492:74;;17575:93;17664:3;17575:93;:::i;:::-;17693:2;17688:3;17684:12;17677:19;;17336:366;;;:::o;17708:::-;17850:3;17871:67;17935:2;17930:3;17871:67;:::i;:::-;17864:74;;17947:93;18036:3;17947:93;:::i;:::-;18065:2;18060:3;18056:12;18049:19;;17708:366;;;:::o;18080:::-;18222:3;18243:67;18307:2;18302:3;18243:67;:::i;:::-;18236:74;;18319:93;18408:3;18319:93;:::i;:::-;18437:2;18432:3;18428:12;18421:19;;18080:366;;;:::o;18452:::-;18594:3;18615:67;18679:2;18674:3;18615:67;:::i;:::-;18608:74;;18691:93;18780:3;18691:93;:::i;:::-;18809:2;18804:3;18800:12;18793:19;;18452:366;;;:::o;18824:::-;18966:3;18987:67;19051:2;19046:3;18987:67;:::i;:::-;18980:74;;19063:93;19152:3;19063:93;:::i;:::-;19181:2;19176:3;19172:12;19165:19;;18824:366;;;:::o;19196:::-;19338:3;19359:67;19423:2;19418:3;19359:67;:::i;:::-;19352:74;;19435:93;19524:3;19435:93;:::i;:::-;19553:2;19548:3;19544:12;19537:19;;19196:366;;;:::o;19568:365::-;19710:3;19731:66;19795:1;19790:3;19731:66;:::i;:::-;19724:73;;19806:93;19895:3;19806:93;:::i;:::-;19924:2;19919:3;19915:12;19908:19;;19568:365;;;:::o;19939:366::-;20081:3;20102:67;20166:2;20161:3;20102:67;:::i;:::-;20095:74;;20178:93;20267:3;20178:93;:::i;:::-;20296:2;20291:3;20287:12;20280:19;;19939:366;;;:::o;20311:118::-;20398:24;20416:5;20398:24;:::i;:::-;20393:3;20386:37;20311:118;;:::o;20435:583::-;20657:3;20679:92;20767:3;20758:6;20679:92;:::i;:::-;20672:99;;20788:95;20879:3;20870:6;20788:95;:::i;:::-;20781:102;;20900:92;20988:3;20979:6;20900:92;:::i;:::-;20893:99;;21009:3;21002:10;;20435:583;;;;;;:::o;21024:222::-;21117:4;21155:2;21144:9;21140:18;21132:26;;21168:71;21236:1;21225:9;21221:17;21212:6;21168:71;:::i;:::-;21024:222;;;;:::o;21252:640::-;21447:4;21485:3;21474:9;21470:19;21462:27;;21499:71;21567:1;21556:9;21552:17;21543:6;21499:71;:::i;:::-;21580:72;21648:2;21637:9;21633:18;21624:6;21580:72;:::i;:::-;21662;21730:2;21719:9;21715:18;21706:6;21662:72;:::i;:::-;21781:9;21775:4;21771:20;21766:2;21755:9;21751:18;21744:48;21809:76;21880:4;21871:6;21809:76;:::i;:::-;21801:84;;21252:640;;;;;;;:::o;21898:210::-;21985:4;22023:2;22012:9;22008:18;22000:26;;22036:65;22098:1;22087:9;22083:17;22074:6;22036:65;:::i;:::-;21898:210;;;;:::o;22114:248::-;22220:4;22258:2;22247:9;22243:18;22235:26;;22271:84;22352:1;22341:9;22337:17;22328:6;22271:84;:::i;:::-;22114:248;;;;:::o;22368:313::-;22481:4;22519:2;22508:9;22504:18;22496:26;;22568:9;22562:4;22558:20;22554:1;22543:9;22539:17;22532:47;22596:78;22669:4;22660:6;22596:78;:::i;:::-;22588:86;;22368:313;;;;:::o;22687:419::-;22853:4;22891:2;22880:9;22876:18;22868:26;;22940:9;22934:4;22930:20;22926:1;22915:9;22911:17;22904:47;22968:131;23094:4;22968:131;:::i;:::-;22960:139;;22687:419;;;:::o;23112:::-;23278:4;23316:2;23305:9;23301:18;23293:26;;23365:9;23359:4;23355:20;23351:1;23340:9;23336:17;23329:47;23393:131;23519:4;23393:131;:::i;:::-;23385:139;;23112:419;;;:::o;23537:::-;23703:4;23741:2;23730:9;23726:18;23718:26;;23790:9;23784:4;23780:20;23776:1;23765:9;23761:17;23754:47;23818:131;23944:4;23818:131;:::i;:::-;23810:139;;23537:419;;;:::o;23962:::-;24128:4;24166:2;24155:9;24151:18;24143:26;;24215:9;24209:4;24205:20;24201:1;24190:9;24186:17;24179:47;24243:131;24369:4;24243:131;:::i;:::-;24235:139;;23962:419;;;:::o;24387:::-;24553:4;24591:2;24580:9;24576:18;24568:26;;24640:9;24634:4;24630:20;24626:1;24615:9;24611:17;24604:47;24668:131;24794:4;24668:131;:::i;:::-;24660:139;;24387:419;;;:::o;24812:::-;24978:4;25016:2;25005:9;25001:18;24993:26;;25065:9;25059:4;25055:20;25051:1;25040:9;25036:17;25029:47;25093:131;25219:4;25093:131;:::i;:::-;25085:139;;24812:419;;;:::o;25237:::-;25403:4;25441:2;25430:9;25426:18;25418:26;;25490:9;25484:4;25480:20;25476:1;25465:9;25461:17;25454:47;25518:131;25644:4;25518:131;:::i;:::-;25510:139;;25237:419;;;:::o;25662:::-;25828:4;25866:2;25855:9;25851:18;25843:26;;25915:9;25909:4;25905:20;25901:1;25890:9;25886:17;25879:47;25943:131;26069:4;25943:131;:::i;:::-;25935:139;;25662:419;;;:::o;26087:::-;26253:4;26291:2;26280:9;26276:18;26268:26;;26340:9;26334:4;26330:20;26326:1;26315:9;26311:17;26304:47;26368:131;26494:4;26368:131;:::i;:::-;26360:139;;26087:419;;;:::o;26512:::-;26678:4;26716:2;26705:9;26701:18;26693:26;;26765:9;26759:4;26755:20;26751:1;26740:9;26736:17;26729:47;26793:131;26919:4;26793:131;:::i;:::-;26785:139;;26512:419;;;:::o;26937:::-;27103:4;27141:2;27130:9;27126:18;27118:26;;27190:9;27184:4;27180:20;27176:1;27165:9;27161:17;27154:47;27218:131;27344:4;27218:131;:::i;:::-;27210:139;;26937:419;;;:::o;27362:::-;27528:4;27566:2;27555:9;27551:18;27543:26;;27615:9;27609:4;27605:20;27601:1;27590:9;27586:17;27579:47;27643:131;27769:4;27643:131;:::i;:::-;27635:139;;27362:419;;;:::o;27787:::-;27953:4;27991:2;27980:9;27976:18;27968:26;;28040:9;28034:4;28030:20;28026:1;28015:9;28011:17;28004:47;28068:131;28194:4;28068:131;:::i;:::-;28060:139;;27787:419;;;:::o;28212:222::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28356:71;28424:1;28413:9;28409:17;28400:6;28356:71;:::i;:::-;28212:222;;;;:::o;28440:129::-;28474:6;28501:20;;:::i;:::-;28491:30;;28530:33;28558:4;28550:6;28530:33;:::i;:::-;28440:129;;;:::o;28575:75::-;28608:6;28641:2;28635:9;28625:19;;28575:75;:::o;28656:311::-;28733:4;28823:18;28815:6;28812:30;28809:56;;;28845:18;;:::i;:::-;28809:56;28895:4;28887:6;28883:17;28875:25;;28955:4;28949;28945:15;28937:23;;28656:311;;;:::o;28973:::-;29050:4;29140:18;29132:6;29129:30;29126:56;;;29162:18;;:::i;:::-;29126:56;29212:4;29204:6;29200:17;29192:25;;29272:4;29266;29262:15;29254:23;;28973:311;;;:::o;29290:307::-;29351:4;29441:18;29433:6;29430:30;29427:56;;;29463:18;;:::i;:::-;29427:56;29501:29;29523:6;29501:29;:::i;:::-;29493:37;;29585:4;29579;29575:15;29567:23;;29290:307;;;:::o;29603:308::-;29665:4;29755:18;29747:6;29744:30;29741:56;;;29777:18;;:::i;:::-;29741:56;29815:29;29837:6;29815:29;:::i;:::-;29807:37;;29899:4;29893;29889:15;29881:23;;29603:308;;;:::o;29917:141::-;29966:4;29989:3;29981:11;;30012:3;30009:1;30002:14;30046:4;30043:1;30033:18;30025:26;;29917:141;;;:::o;30064:98::-;30115:6;30149:5;30143:12;30133:22;;30064:98;;;:::o;30168:99::-;30220:6;30254:5;30248:12;30238:22;;30168:99;;;:::o;30273:168::-;30356:11;30390:6;30385:3;30378:19;30430:4;30425:3;30421:14;30406:29;;30273:168;;;;:::o;30447:169::-;30531:11;30565:6;30560:3;30553:19;30605:4;30600:3;30596:14;30581:29;;30447:169;;;;:::o;30622:148::-;30724:11;30761:3;30746:18;;30622:148;;;;:::o;30776:305::-;30816:3;30835:20;30853:1;30835:20;:::i;:::-;30830:25;;30869:20;30887:1;30869:20;:::i;:::-;30864:25;;31023:1;30955:66;30951:74;30948:1;30945:81;30942:107;;;31029:18;;:::i;:::-;30942:107;31073:1;31070;31066:9;31059:16;;30776:305;;;;:::o;31087:185::-;31127:1;31144:20;31162:1;31144:20;:::i;:::-;31139:25;;31178:20;31196:1;31178:20;:::i;:::-;31173:25;;31217:1;31207:35;;31222:18;;:::i;:::-;31207:35;31264:1;31261;31257:9;31252:14;;31087:185;;;;:::o;31278:348::-;31318:7;31341:20;31359:1;31341:20;:::i;:::-;31336:25;;31375:20;31393:1;31375:20;:::i;:::-;31370:25;;31563:1;31495:66;31491:74;31488:1;31485:81;31480:1;31473:9;31466:17;31462:105;31459:131;;;31570:18;;:::i;:::-;31459:131;31618:1;31615;31611:9;31600:20;;31278:348;;;;:::o;31632:191::-;31672:4;31692:20;31710:1;31692:20;:::i;:::-;31687:25;;31726:20;31744:1;31726:20;:::i;:::-;31721:25;;31765:1;31762;31759:8;31756:34;;;31770:18;;:::i;:::-;31756:34;31815:1;31812;31808:9;31800:17;;31632:191;;;;:::o;31829:96::-;31866:7;31895:24;31913:5;31895:24;:::i;:::-;31884:35;;31829:96;;;:::o;31931:104::-;31976:7;32005:24;32023:5;32005:24;:::i;:::-;31994:35;;31931:104;;;:::o;32041:90::-;32075:7;32118:5;32111:13;32104:21;32093:32;;32041:90;;;:::o;32137:149::-;32173:7;32213:66;32206:5;32202:78;32191:89;;32137:149;;;:::o;32292:141::-;32344:7;32373:5;32362:16;;32379:48;32421:5;32379:48;:::i;:::-;32292:141;;;:::o;32439:126::-;32476:7;32516:42;32509:5;32505:54;32494:65;;32439:126;;;:::o;32571:77::-;32608:7;32637:5;32626:16;;32571:77;;;:::o;32654:141::-;32717:9;32750:39;32783:5;32750:39;:::i;:::-;32737:52;;32654:141;;;:::o;32801:154::-;32885:6;32880:3;32875;32862:30;32947:1;32938:6;32933:3;32929:16;32922:27;32801:154;;;:::o;32961:307::-;33029:1;33039:113;33053:6;33050:1;33047:13;33039:113;;;33138:1;33133:3;33129:11;33123:18;33119:1;33114:3;33110:11;33103:39;33075:2;33072:1;33068:10;33063:15;;33039:113;;;33170:6;33167:1;33164:13;33161:101;;;33250:1;33241:6;33236:3;33232:16;33225:27;33161:101;33010:258;32961:307;;;:::o;33274:320::-;33318:6;33355:1;33349:4;33345:12;33335:22;;33402:1;33396:4;33392:12;33423:18;33413:81;;33479:4;33471:6;33467:17;33457:27;;33413:81;33541:2;33533:6;33530:14;33510:18;33507:38;33504:84;;;33560:18;;:::i;:::-;33504:84;33325:269;33274:320;;;:::o;33600:281::-;33683:27;33705:4;33683:27;:::i;:::-;33675:6;33671:40;33813:6;33801:10;33798:22;33777:18;33765:10;33762:34;33759:62;33756:88;;;33824:18;;:::i;:::-;33756:88;33864:10;33860:2;33853:22;33643:238;33600:281;;:::o;33887:233::-;33926:3;33949:24;33967:5;33949:24;:::i;:::-;33940:33;;33995:66;33988:5;33985:77;33982:103;;;34065:18;;:::i;:::-;33982:103;34112:1;34105:5;34101:13;34094:20;;33887:233;;;:::o;34126:176::-;34158:1;34175:20;34193:1;34175:20;:::i;:::-;34170:25;;34209:20;34227:1;34209:20;:::i;:::-;34204:25;;34248:1;34238:35;;34253:18;;:::i;:::-;34238:35;34294:1;34291;34287:9;34282:14;;34126:176;;;;:::o;34308:180::-;34356:77;34353:1;34346:88;34453:4;34450:1;34443:15;34477:4;34474:1;34467:15;34494:180;34542:77;34539:1;34532:88;34639:4;34636:1;34629:15;34663:4;34660:1;34653:15;34680:180;34728:77;34725:1;34718:88;34825:4;34822:1;34815:15;34849:4;34846:1;34839:15;34866:180;34914:77;34911:1;34904:88;35011:4;35008:1;35001:15;35035:4;35032:1;35025:15;35052:180;35100:77;35097:1;35090:88;35197:4;35194:1;35187:15;35221:4;35218:1;35211:15;35238:180;35286:77;35283:1;35276:88;35383:4;35380:1;35373:15;35407:4;35404:1;35397:15;35424:117;35533:1;35530;35523:12;35547:117;35656:1;35653;35646:12;35670:117;35779:1;35776;35769:12;35793:117;35902:1;35899;35892:12;35916:117;36025:1;36022;36015:12;36039:102;36080:6;36131:2;36127:7;36122:2;36115:5;36111:14;36107:28;36097:38;;36039:102;;;:::o;36147:158::-;36287:10;36283:1;36275:6;36271:14;36264:34;36147:158;:::o;36311:225::-;36451:34;36447:1;36439:6;36435:14;36428:58;36520:8;36515:2;36507:6;36503:15;36496:33;36311:225;:::o;36542:231::-;36682:34;36678:1;36670:6;36666:14;36659:58;36751:14;36746:2;36738:6;36734:15;36727:39;36542:231;:::o;36779:165::-;36919:17;36915:1;36907:6;36903:14;36896:41;36779:165;:::o;36950:168::-;37090:20;37086:1;37078:6;37074:14;37067:44;36950:168;:::o;37124:167::-;37264:19;37260:1;37252:6;37248:14;37241:43;37124:167;:::o;37297:224::-;37437:34;37433:1;37425:6;37421:14;37414:58;37506:7;37501:2;37493:6;37489:15;37482:32;37297:224;:::o;37527:173::-;37667:25;37663:1;37655:6;37651:14;37644:49;37527:173;:::o;37706:182::-;37846:34;37842:1;37834:6;37830:14;37823:58;37706:182;:::o;37894:227::-;38034:34;38030:1;38022:6;38018:14;38011:58;38103:10;38098:2;38090:6;38086:15;38079:35;37894:227;:::o;38127:224::-;38267:34;38263:1;38255:6;38251:14;38244:58;38336:7;38331:2;38323:6;38319:15;38312:32;38127:224;:::o;38357:157::-;38497:9;38493:1;38485:6;38481:14;38474:33;38357:157;:::o;38520:166::-;38660:18;38656:1;38648:6;38644:14;38637:42;38520:166;:::o;38692:120::-;38780:1;38773:5;38770:12;38760:46;;38786:18;;:::i;:::-;38760:46;38692:120;:::o;38818:122::-;38891:24;38909:5;38891:24;:::i;:::-;38884:5;38881:35;38871:63;;38930:1;38927;38920:12;38871:63;38818:122;:::o;38946:138::-;39027:32;39053:5;39027:32;:::i;:::-;39020:5;39017:43;39007:71;;39074:1;39071;39064:12;39007:71;38946:138;:::o;39090:116::-;39160:21;39175:5;39160:21;:::i;:::-;39153:5;39150:32;39140:60;;39196:1;39193;39186:12;39140:60;39090:116;:::o;39212:120::-;39284:23;39301:5;39284:23;:::i;:::-;39277:5;39274:34;39264:62;;39322:1;39319;39312:12;39264:62;39212:120;:::o;39338:114::-;39426:1;39419:5;39416:12;39406:40;;39442:1;39439;39432:12;39406:40;39338:114;:::o;39458:122::-;39531:24;39549:5;39531:24;:::i;:::-;39524:5;39521:35;39511:63;;39570:1;39567;39560:12;39511:63;39458:122;:::o
Swarm Source
ipfs://55052eab54da472f447c61b12c936b8a716ed5b986b7b8bc7cce438ca103bb7d
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.