ERC-721
Overview
Max Total Supply
1,216 FanClub
Holders
240
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FanClubLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheFanClub
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-03 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } // File: erc721a/contracts/IERC721A.sol // 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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) } } } // File: contracts/FanClub.sol pragma solidity ^0.8.13; contract TheFanClub is ERC721A, Ownable { using Strings for uint256; /* ERRORS */ error ExceedsMaxSupply(); error ExceedsFreeSupply(); error InvalidQuantity(); error ExceedsFreeWalletLimit(); error ExceedsWalletLimit(); error InvalidValue(); error TokenNotFound(); error ContractMint(); error SaleInactive(); uint256 public basePrice = 0.005 ether; uint256 public maxSupply = 2500; uint256 public maxMintPerTx = 10; uint256 public maxFreeMintPerWallet = 3; uint256 public freeMintSupply = 1800; bool public isSaleActive = false; string internal baseURI_; mapping(address => uint256) public freeWalletBalance; constructor() ERC721A("The FanClub", "FanClub") payable { _mint(msg.sender, 1); } modifier mintCompliance(uint256 quantity_) { if (!isSaleActive) revert SaleInactive(); if (msg.sender != tx.origin) revert ContractMint(); unchecked { if (totalSupply() + quantity_ > maxSupply) revert ExceedsMaxSupply(); if (quantity_ > maxMintPerTx) revert InvalidQuantity(); } _; } function mint(uint256 quantity_) external payable mintCompliance(quantity_) { unchecked { uint256 price = basePrice * quantity_; if (totalSupply() < freeMintSupply) { if (freeWalletBalance[msg.sender] + quantity_ <= 3) { price = 0; freeWalletBalance[msg.sender] += quantity_; } else if (freeWalletBalance[msg.sender] + quantity_ > 3 && freeWalletBalance[msg.sender] < 3) { uint256 freeBalance = 3 - freeWalletBalance[msg.sender]; uint256 toSub = basePrice * freeBalance; price -= toSub; freeWalletBalance[msg.sender] += freeBalance; } } if (msg.value != price) revert InvalidValue(); } _mint(msg.sender, quantity_); } function _startTokenId() internal pure override returns (uint256) { return 1; } function setPrice(uint256 price_) external onlyOwner { basePrice = price_; } function toggleSales() external onlyOwner { isSaleActive = !isSaleActive; } function tokenURI(uint256 tokenId_) public view override returns (string memory) { return string(abi.encodePacked(baseURI_, tokenId_.toString(), ".json")); } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI_ = _baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsFreeSupply","type":"error"},{"inputs":[],"name":"ExceedsFreeWalletLimit","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","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":[{"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":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWalletBalance","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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526611c37937e080006009556109c4600a55600a600b556003600c55610708600d556000600e60006101000a81548160ff0219169083151502179055506040518060400160405280600b81526020017f5468652046616e436c75620000000000000000000000000000000000000000008152506040518060400160405280600781526020017f46616e436c7562000000000000000000000000000000000000000000000000008152508160029080519060200190620000c49291906200041b565b508060039080519060200190620000dd9291906200041b565b50620000ee6200012f60201b60201c565b6000819055505050620001166200010a6200013860201b60201c565b6200014060201b60201c565b620001293360016200020660201b60201c565b6200052f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000273576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203620002ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002c36000848385620003fb60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000330600184146200040160201b60201c565b901b60a042901b62000348856200040b60201b60201c565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200036e57816000819055505050620003f660008483856200041560201b60201c565b505050565b50505050565b6000819050919050565b6000819050919050565b50505050565b8280546200042990620004fa565b90600052602060002090601f0160209004810192826200044d576000855562000499565b82601f106200046857805160ff191683800117855562000499565b8280016001018555821562000499579182015b82811115620004985782518255916020019190600101906200047b565b5b509050620004a89190620004ac565b5090565b5b80821115620004c7576000816000905550600101620004ad565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051357607f821691505b602082108103620005295762000528620004cb565b5b50919050565b612d76806200053f6000396000f3fe6080604052600436106101c25760003560e01c8063845bb3bb116100f7578063c7876ea411610095578063de7fcb1d11610064578063de7fcb1d1461060d578063e150007e14610638578063e985e9c514610663578063f2fde38b146106a0576101c2565b8063c7876ea414610563578063c87b56dd1461058e578063d5abeb01146105cb578063dbd30ae0146105f6576101c2565b806395d89b41116100d157806395d89b41146104ca578063a0712d68146104f5578063a22cb46514610511578063b88d4fde1461053a576101c2565b8063845bb3bb1461044b5780638da5cb5b1461047657806391b7f5ed146104a1576101c2565b80633ccfd60b11610164578063564566a81161013e578063564566a81461038f5780636352211e146103ba57806370a08231146103f7578063715018a614610434576101c2565b80633ccfd60b1461032657806342842e0e1461033d57806355f804b314610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c578063098987d81461029557806318160ddd146102d257806323b872dd146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906121b2565b6106c9565b6040516101fb91906121fa565b60405180910390f35b34801561021057600080fd5b5061021961075b565b60405161022691906122ae565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612306565b6107ed565b6040516102639190612374565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906123bb565b610869565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906123fb565b610a0f565b6040516102c99190612437565b60405180910390f35b3480156102de57600080fd5b506102e7610a27565b6040516102f49190612437565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190612452565b610a3e565b005b34801561033257600080fd5b5061033b610a4e565b005b34801561034957600080fd5b50610364600480360381019061035f9190612452565b610b1a565b005b34801561037257600080fd5b5061038d600480360381019061038891906125da565b610b3a565b005b34801561039b57600080fd5b506103a4610bd0565b6040516103b191906121fa565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612306565b610be3565b6040516103ee9190612374565b60405180910390f35b34801561040357600080fd5b5061041e600480360381019061041991906123fb565b610bf5565b60405161042b9190612437565b60405180910390f35b34801561044057600080fd5b50610449610cad565b005b34801561045757600080fd5b50610460610d35565b60405161046d9190612437565b60405180910390f35b34801561048257600080fd5b5061048b610d3b565b6040516104989190612374565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190612306565b610d65565b005b3480156104d657600080fd5b506104df610deb565b6040516104ec91906122ae565b60405180910390f35b61050f600480360381019061050a9190612306565b610e7d565b005b34801561051d57600080fd5b506105386004803603810190610533919061264f565b6111e7565b005b34801561054657600080fd5b50610561600480360381019061055c9190612730565b61135e565b005b34801561056f57600080fd5b506105786113d1565b6040516105859190612437565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612306565b6113d7565b6040516105c291906122ae565b60405180910390f35b3480156105d757600080fd5b506105e061140b565b6040516105ed9190612437565b60405180910390f35b34801561060257600080fd5b5061060b611411565b005b34801561061957600080fd5b506106226114b9565b60405161062f9190612437565b60405180910390f35b34801561064457600080fd5b5061064d6114bf565b60405161065a9190612437565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906127b3565b6114c5565b60405161069791906121fa565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c291906123fb565b611559565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107545750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076a90612822565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612822565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f882611650565b61082e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610874826116af565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108db576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fa61177b565b73ffffffffffffffffffffffffffffffffffffffff161461095d576109268161092161177b565b6114c5565b61095c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60106020528060005260406000206000915090505481565b6000610a31611783565b6001546000540303905090565b610a4983838361178c565b505050565b610a56611b33565b73ffffffffffffffffffffffffffffffffffffffff16610a74610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061289f565b60405180910390fd5b610ad2610d3b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b17573d6000803e3d6000fd5b50565b610b358383836040518060200160405280600081525061135e565b505050565b610b42611b33565b73ffffffffffffffffffffffffffffffffffffffff16610b60610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad9061289f565b60405180910390fd5b80600f9080519060200190610bcc9291906120a3565b5050565b600e60009054906101000a900460ff1681565b6000610bee826116af565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cb5611b33565b73ffffffffffffffffffffffffffffffffffffffff16610cd3610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061289f565b60405180910390fd5b610d336000611b3b565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d6d611b33565b73ffffffffffffffffffffffffffffffffffffffff16610d8b610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061289f565b60405180910390fd5b8060098190555050565b606060038054610dfa90612822565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2690612822565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b80600e60009054906101000a900460ff16610ec4576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f35610a27565b011115610f6e576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610faa576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082600954029050600d54610fbe610a27565b101561119f57600383601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111611063576000905082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061119e565b600383601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054011180156110f357506003601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b1561119d576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546003039050600081600954029050808303925081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555050505b5b5b8034146111d8576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506111e33383611c01565b5050565b6111ef61177b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611253576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061126061177b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130d61177b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135291906121fa565b60405180910390a35050565b61136984848461178c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113cb5761139484848484611dd3565b6113ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b6060600f6113e483611f23565b6040516020016113f59291906129db565b6040516020818303038152906040529050919050565b600a5481565b611419611b33565b73ffffffffffffffffffffffffffffffffffffffff16611437610d3b565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114849061289f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600b5481565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611561611b33565b73ffffffffffffffffffffffffffffffffffffffff1661157f610d3b565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc9061289f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90612a7c565b60405180910390fd5b61164d81611b3b565b50565b60008161165b611783565b1115801561166a575060005482105b80156116a8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806116be611783565b11611744576000548110156117435760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611741575b6000810361173757600460008360019003935083815260200190815260200160002054905061170d565b8092505050611776565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611797826116af565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117fe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661181f61177b565b73ffffffffffffffffffffffffffffffffffffffff16148061184e575061184d8561184861177b565b6114c5565b5b80611893575061185c61177b565b73ffffffffffffffffffffffffffffffffffffffff1661187b846107ed565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118cc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611932576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61193f8585856001612083565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a3c86612089565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611ac45760006001840190506000600460008381526020019081526020016000205403611ac2576000548114611ac1578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b2c8585856001612093565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611ca7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb46000848385612083565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611d1960018414612099565b901b60a042901b611d2985612089565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d4f57816000819055505050611dce6000848385612093565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611df961177b565b8786866040518563ffffffff1660e01b8152600401611e1b9493929190612af1565b6020604051808303816000875af1925050508015611e5757506040513d601f19601f82011682018060405250810190611e549190612b52565b60015b611ed0573d8060008114611e87576040519150601f19603f3d011682016040523d82523d6000602084013e611e8c565b606091505b506000815103611ec8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611f6a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061207e565b600082905060005b60008214611f9c578080611f8590612bae565b915050600a82611f959190612c25565b9150611f72565b60008167ffffffffffffffff811115611fb857611fb76124af565b5b6040519080825280601f01601f191660200182016040528015611fea5781602001600182028036833780820191505090505b5090505b60008514612077576001826120039190612c56565b9150600a856120129190612c8a565b603061201e9190612cbb565b60f81b81838151811061203457612033612d11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120709190612c25565b9450611fee565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b8280546120af90612822565b90600052602060002090601f0160209004810192826120d15760008555612118565b82601f106120ea57805160ff1916838001178555612118565b82800160010185558215612118579182015b828111156121175782518255916020019190600101906120fc565b5b5090506121259190612129565b5090565b5b8082111561214257600081600090555060010161212a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61218f8161215a565b811461219a57600080fd5b50565b6000813590506121ac81612186565b92915050565b6000602082840312156121c8576121c7612150565b5b60006121d68482850161219d565b91505092915050565b60008115159050919050565b6121f4816121df565b82525050565b600060208201905061220f60008301846121eb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224f578082015181840152602081019050612234565b8381111561225e576000848401525b50505050565b6000601f19601f8301169050919050565b600061228082612215565b61228a8185612220565b935061229a818560208601612231565b6122a381612264565b840191505092915050565b600060208201905081810360008301526122c88184612275565b905092915050565b6000819050919050565b6122e3816122d0565b81146122ee57600080fd5b50565b600081359050612300816122da565b92915050565b60006020828403121561231c5761231b612150565b5b600061232a848285016122f1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235e82612333565b9050919050565b61236e81612353565b82525050565b60006020820190506123896000830184612365565b92915050565b61239881612353565b81146123a357600080fd5b50565b6000813590506123b58161238f565b92915050565b600080604083850312156123d2576123d1612150565b5b60006123e0858286016123a6565b92505060206123f1858286016122f1565b9150509250929050565b60006020828403121561241157612410612150565b5b600061241f848285016123a6565b91505092915050565b612431816122d0565b82525050565b600060208201905061244c6000830184612428565b92915050565b60008060006060848603121561246b5761246a612150565b5b6000612479868287016123a6565b935050602061248a868287016123a6565b925050604061249b868287016122f1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124e782612264565b810181811067ffffffffffffffff82111715612506576125056124af565b5b80604052505050565b6000612519612146565b905061252582826124de565b919050565b600067ffffffffffffffff821115612545576125446124af565b5b61254e82612264565b9050602081019050919050565b82818337600083830152505050565b600061257d6125788461252a565b61250f565b905082815260208101848484011115612599576125986124aa565b5b6125a484828561255b565b509392505050565b600082601f8301126125c1576125c06124a5565b5b81356125d184826020860161256a565b91505092915050565b6000602082840312156125f0576125ef612150565b5b600082013567ffffffffffffffff81111561260e5761260d612155565b5b61261a848285016125ac565b91505092915050565b61262c816121df565b811461263757600080fd5b50565b60008135905061264981612623565b92915050565b6000806040838503121561266657612665612150565b5b6000612674858286016123a6565b92505060206126858582860161263a565b9150509250929050565b600067ffffffffffffffff8211156126aa576126a96124af565b5b6126b382612264565b9050602081019050919050565b60006126d36126ce8461268f565b61250f565b9050828152602081018484840111156126ef576126ee6124aa565b5b6126fa84828561255b565b509392505050565b600082601f830112612717576127166124a5565b5b81356127278482602086016126c0565b91505092915050565b6000806000806080858703121561274a57612749612150565b5b6000612758878288016123a6565b9450506020612769878288016123a6565b935050604061277a878288016122f1565b925050606085013567ffffffffffffffff81111561279b5761279a612155565b5b6127a787828801612702565b91505092959194509250565b600080604083850312156127ca576127c9612150565b5b60006127d8858286016123a6565b92505060206127e9858286016123a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061283a57607f821691505b60208210810361284d5761284c6127f3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612889602083612220565b915061289482612853565b602082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546128ec81612822565b6128f681866128bf565b94506001821660008114612911576001811461292257612955565b60ff19831686528186019350612955565b61292b856128ca565b60005b8381101561294d5781548189015260018201915060208101905061292e565b838801955050505b50505092915050565b600061296982612215565b61297381856128bf565b9350612983818560208601612231565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006129c56005836128bf565b91506129d08261298f565b600582019050919050565b60006129e782856128df565b91506129f3828461295e565b91506129fe826129b8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a66602683612220565b9150612a7182612a0a565b604082019050919050565b60006020820190508181036000830152612a9581612a59565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ac382612a9c565b612acd8185612aa7565b9350612add818560208601612231565b612ae681612264565b840191505092915050565b6000608082019050612b066000830187612365565b612b136020830186612365565b612b206040830185612428565b8181036060830152612b328184612ab8565b905095945050505050565b600081519050612b4c81612186565b92915050565b600060208284031215612b6857612b67612150565b5b6000612b7684828501612b3d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb9826122d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612beb57612bea612b7f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c30826122d0565b9150612c3b836122d0565b925082612c4b57612c4a612bf6565b5b828204905092915050565b6000612c61826122d0565b9150612c6c836122d0565b925082821015612c7f57612c7e612b7f565b5b828203905092915050565b6000612c95826122d0565b9150612ca0836122d0565b925082612cb057612caf612bf6565b5b828206905092915050565b6000612cc6826122d0565b9150612cd1836122d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0657612d05612b7f565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220b307acfec353449ef61f186d463e469daac0bcf1cd483976078ced9b5ea718ca64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063845bb3bb116100f7578063c7876ea411610095578063de7fcb1d11610064578063de7fcb1d1461060d578063e150007e14610638578063e985e9c514610663578063f2fde38b146106a0576101c2565b8063c7876ea414610563578063c87b56dd1461058e578063d5abeb01146105cb578063dbd30ae0146105f6576101c2565b806395d89b41116100d157806395d89b41146104ca578063a0712d68146104f5578063a22cb46514610511578063b88d4fde1461053a576101c2565b8063845bb3bb1461044b5780638da5cb5b1461047657806391b7f5ed146104a1576101c2565b80633ccfd60b11610164578063564566a81161013e578063564566a81461038f5780636352211e146103ba57806370a08231146103f7578063715018a614610434576101c2565b80633ccfd60b1461032657806342842e0e1461033d57806355f804b314610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c578063098987d81461029557806318160ddd146102d257806323b872dd146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906121b2565b6106c9565b6040516101fb91906121fa565b60405180910390f35b34801561021057600080fd5b5061021961075b565b60405161022691906122ae565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612306565b6107ed565b6040516102639190612374565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906123bb565b610869565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906123fb565b610a0f565b6040516102c99190612437565b60405180910390f35b3480156102de57600080fd5b506102e7610a27565b6040516102f49190612437565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190612452565b610a3e565b005b34801561033257600080fd5b5061033b610a4e565b005b34801561034957600080fd5b50610364600480360381019061035f9190612452565b610b1a565b005b34801561037257600080fd5b5061038d600480360381019061038891906125da565b610b3a565b005b34801561039b57600080fd5b506103a4610bd0565b6040516103b191906121fa565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612306565b610be3565b6040516103ee9190612374565b60405180910390f35b34801561040357600080fd5b5061041e600480360381019061041991906123fb565b610bf5565b60405161042b9190612437565b60405180910390f35b34801561044057600080fd5b50610449610cad565b005b34801561045757600080fd5b50610460610d35565b60405161046d9190612437565b60405180910390f35b34801561048257600080fd5b5061048b610d3b565b6040516104989190612374565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190612306565b610d65565b005b3480156104d657600080fd5b506104df610deb565b6040516104ec91906122ae565b60405180910390f35b61050f600480360381019061050a9190612306565b610e7d565b005b34801561051d57600080fd5b506105386004803603810190610533919061264f565b6111e7565b005b34801561054657600080fd5b50610561600480360381019061055c9190612730565b61135e565b005b34801561056f57600080fd5b506105786113d1565b6040516105859190612437565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612306565b6113d7565b6040516105c291906122ae565b60405180910390f35b3480156105d757600080fd5b506105e061140b565b6040516105ed9190612437565b60405180910390f35b34801561060257600080fd5b5061060b611411565b005b34801561061957600080fd5b506106226114b9565b60405161062f9190612437565b60405180910390f35b34801561064457600080fd5b5061064d6114bf565b60405161065a9190612437565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906127b3565b6114c5565b60405161069791906121fa565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c291906123fb565b611559565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107545750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076a90612822565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612822565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f882611650565b61082e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610874826116af565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108db576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fa61177b565b73ffffffffffffffffffffffffffffffffffffffff161461095d576109268161092161177b565b6114c5565b61095c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60106020528060005260406000206000915090505481565b6000610a31611783565b6001546000540303905090565b610a4983838361178c565b505050565b610a56611b33565b73ffffffffffffffffffffffffffffffffffffffff16610a74610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061289f565b60405180910390fd5b610ad2610d3b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b17573d6000803e3d6000fd5b50565b610b358383836040518060200160405280600081525061135e565b505050565b610b42611b33565b73ffffffffffffffffffffffffffffffffffffffff16610b60610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad9061289f565b60405180910390fd5b80600f9080519060200190610bcc9291906120a3565b5050565b600e60009054906101000a900460ff1681565b6000610bee826116af565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cb5611b33565b73ffffffffffffffffffffffffffffffffffffffff16610cd3610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061289f565b60405180910390fd5b610d336000611b3b565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d6d611b33565b73ffffffffffffffffffffffffffffffffffffffff16610d8b610d3b565b73ffffffffffffffffffffffffffffffffffffffff1614610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061289f565b60405180910390fd5b8060098190555050565b606060038054610dfa90612822565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2690612822565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b80600e60009054906101000a900460ff16610ec4576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481610f35610a27565b011115610f6e576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610faa576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082600954029050600d54610fbe610a27565b101561119f57600383601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111611063576000905082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061119e565b600383601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054011180156110f357506003601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b1561119d576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546003039050600081600954029050808303925081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555050505b5b5b8034146111d8576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506111e33383611c01565b5050565b6111ef61177b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611253576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061126061177b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130d61177b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135291906121fa565b60405180910390a35050565b61136984848461178c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113cb5761139484848484611dd3565b6113ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b6060600f6113e483611f23565b6040516020016113f59291906129db565b6040516020818303038152906040529050919050565b600a5481565b611419611b33565b73ffffffffffffffffffffffffffffffffffffffff16611437610d3b565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114849061289f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600b5481565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611561611b33565b73ffffffffffffffffffffffffffffffffffffffff1661157f610d3b565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc9061289f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90612a7c565b60405180910390fd5b61164d81611b3b565b50565b60008161165b611783565b1115801561166a575060005482105b80156116a8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806116be611783565b11611744576000548110156117435760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611741575b6000810361173757600460008360019003935083815260200190815260200160002054905061170d565b8092505050611776565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611797826116af565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117fe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661181f61177b565b73ffffffffffffffffffffffffffffffffffffffff16148061184e575061184d8561184861177b565b6114c5565b5b80611893575061185c61177b565b73ffffffffffffffffffffffffffffffffffffffff1661187b846107ed565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118cc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611932576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61193f8585856001612083565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a3c86612089565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611ac45760006001840190506000600460008381526020019081526020016000205403611ac2576000548114611ac1578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b2c8585856001612093565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611ca7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb46000848385612083565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611d1960018414612099565b901b60a042901b611d2985612089565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d4f57816000819055505050611dce6000848385612093565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611df961177b565b8786866040518563ffffffff1660e01b8152600401611e1b9493929190612af1565b6020604051808303816000875af1925050508015611e5757506040513d601f19601f82011682018060405250810190611e549190612b52565b60015b611ed0573d8060008114611e87576040519150601f19603f3d011682016040523d82523d6000602084013e611e8c565b606091505b506000815103611ec8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611f6a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061207e565b600082905060005b60008214611f9c578080611f8590612bae565b915050600a82611f959190612c25565b9150611f72565b60008167ffffffffffffffff811115611fb857611fb76124af565b5b6040519080825280601f01601f191660200182016040528015611fea5781602001600182028036833780820191505090505b5090505b60008514612077576001826120039190612c56565b9150600a856120129190612c8a565b603061201e9190612cbb565b60f81b81838151811061203457612033612d11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120709190612c25565b9450611fee565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b8280546120af90612822565b90600052602060002090601f0160209004810192826120d15760008555612118565b82601f106120ea57805160ff1916838001178555612118565b82800160010185558215612118579182015b828111156121175782518255916020019190600101906120fc565b5b5090506121259190612129565b5090565b5b8082111561214257600081600090555060010161212a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61218f8161215a565b811461219a57600080fd5b50565b6000813590506121ac81612186565b92915050565b6000602082840312156121c8576121c7612150565b5b60006121d68482850161219d565b91505092915050565b60008115159050919050565b6121f4816121df565b82525050565b600060208201905061220f60008301846121eb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224f578082015181840152602081019050612234565b8381111561225e576000848401525b50505050565b6000601f19601f8301169050919050565b600061228082612215565b61228a8185612220565b935061229a818560208601612231565b6122a381612264565b840191505092915050565b600060208201905081810360008301526122c88184612275565b905092915050565b6000819050919050565b6122e3816122d0565b81146122ee57600080fd5b50565b600081359050612300816122da565b92915050565b60006020828403121561231c5761231b612150565b5b600061232a848285016122f1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235e82612333565b9050919050565b61236e81612353565b82525050565b60006020820190506123896000830184612365565b92915050565b61239881612353565b81146123a357600080fd5b50565b6000813590506123b58161238f565b92915050565b600080604083850312156123d2576123d1612150565b5b60006123e0858286016123a6565b92505060206123f1858286016122f1565b9150509250929050565b60006020828403121561241157612410612150565b5b600061241f848285016123a6565b91505092915050565b612431816122d0565b82525050565b600060208201905061244c6000830184612428565b92915050565b60008060006060848603121561246b5761246a612150565b5b6000612479868287016123a6565b935050602061248a868287016123a6565b925050604061249b868287016122f1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124e782612264565b810181811067ffffffffffffffff82111715612506576125056124af565b5b80604052505050565b6000612519612146565b905061252582826124de565b919050565b600067ffffffffffffffff821115612545576125446124af565b5b61254e82612264565b9050602081019050919050565b82818337600083830152505050565b600061257d6125788461252a565b61250f565b905082815260208101848484011115612599576125986124aa565b5b6125a484828561255b565b509392505050565b600082601f8301126125c1576125c06124a5565b5b81356125d184826020860161256a565b91505092915050565b6000602082840312156125f0576125ef612150565b5b600082013567ffffffffffffffff81111561260e5761260d612155565b5b61261a848285016125ac565b91505092915050565b61262c816121df565b811461263757600080fd5b50565b60008135905061264981612623565b92915050565b6000806040838503121561266657612665612150565b5b6000612674858286016123a6565b92505060206126858582860161263a565b9150509250929050565b600067ffffffffffffffff8211156126aa576126a96124af565b5b6126b382612264565b9050602081019050919050565b60006126d36126ce8461268f565b61250f565b9050828152602081018484840111156126ef576126ee6124aa565b5b6126fa84828561255b565b509392505050565b600082601f830112612717576127166124a5565b5b81356127278482602086016126c0565b91505092915050565b6000806000806080858703121561274a57612749612150565b5b6000612758878288016123a6565b9450506020612769878288016123a6565b935050604061277a878288016122f1565b925050606085013567ffffffffffffffff81111561279b5761279a612155565b5b6127a787828801612702565b91505092959194509250565b600080604083850312156127ca576127c9612150565b5b60006127d8858286016123a6565b92505060206127e9858286016123a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061283a57607f821691505b60208210810361284d5761284c6127f3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612889602083612220565b915061289482612853565b602082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546128ec81612822565b6128f681866128bf565b94506001821660008114612911576001811461292257612955565b60ff19831686528186019350612955565b61292b856128ca565b60005b8381101561294d5781548189015260018201915060208101905061292e565b838801955050505b50505092915050565b600061296982612215565b61297381856128bf565b9350612983818560208601612231565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006129c56005836128bf565b91506129d08261298f565b600582019050919050565b60006129e782856128df565b91506129f3828461295e565b91506129fe826129b8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a66602683612220565b9150612a7182612a0a565b604082019050919050565b60006020820190508181036000830152612a9581612a59565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ac382612a9c565b612acd8185612aa7565b9350612add818560208601612231565b612ae681612264565b840191505092915050565b6000608082019050612b066000830187612365565b612b136020830186612365565b612b206040830185612428565b8181036060830152612b328184612ab8565b905095945050505050565b600081519050612b4c81612186565b92915050565b600060208284031215612b6857612b67612150565b5b6000612b7684828501612b3d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb9826122d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612beb57612bea612b7f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c30826122d0565b9150612c3b836122d0565b925082612c4b57612c4a612bf6565b5b828204905092915050565b6000612c61826122d0565b9150612c6c836122d0565b925082821015612c7f57612c7e612b7f565b5b828203905092915050565b6000612c95826122d0565b9150612ca0836122d0565b925082612cb057612caf612bf6565b5b828206905092915050565b6000612cc6826122d0565b9150612cd1836122d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0657612d05612b7f565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220b307acfec353449ef61f186d463e469daac0bcf1cd483976078ced9b5ea718ca64736f6c634300080d0033
Deployed Bytecode Sourcemap
43999:2640:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18653:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23666:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25734:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25194:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44625:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17707:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26620:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46431:102;;;;;;;;;;;;;:::i;:::-;;26861:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46539:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44555:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23455:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19332:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;44468:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46069:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23835:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45134:832;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26010:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27117:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44352:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46256:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44395:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46163:87;;;;;;;;;;;;;:::i;:::-;;44431:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44512:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26389:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18653:615;18738:4;19053:10;19038:25;;:11;:25;;;;:102;;;;19130:10;19115:25;;:11;:25;;;;19038:102;:179;;;;19207:10;19192:25;;:11;:25;;;;19038:179;19018:199;;18653:615;;;:::o;23666:100::-;23720:13;23753:5;23746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23666:100;:::o;25734:204::-;25802:7;25827:16;25835:7;25827;:16::i;:::-;25822:64;;25852:34;;;;;;;;;;;;;;25822:64;25906:15;:24;25922:7;25906:24;;;;;;;;;;;;;;;;;;;;;25899:31;;25734:204;;;:::o;25194:474::-;25267:13;25299:27;25318:7;25299:18;:27::i;:::-;25267:61;;25349:5;25343:11;;:2;:11;;;25339:48;;25363:24;;;;;;;;;;;;;;25339:48;25427:5;25404:28;;:19;:17;:19::i;:::-;:28;;;25400:175;;25452:44;25469:5;25476:19;:17;:19::i;:::-;25452:16;:44::i;:::-;25447:128;;25524:35;;;;;;;;;;;;;;25447:128;25400:175;25614:2;25587:15;:24;25603:7;25587:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25652:7;25648:2;25632:28;;25641:5;25632:28;;;;;;;;;;;;25256:412;25194:474;;:::o;44625:52::-;;;;;;;;;;;;;;;;;:::o;17707:315::-;17760:7;17988:15;:13;:15::i;:::-;17973:12;;17957:13;;:28;:46;17950:53;;17707:315;:::o;26620:170::-;26754:28;26764:4;26770:2;26774:7;26754:9;:28::i;:::-;26620:170;;;:::o;46431:102::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46487:7:::1;:5;:7::i;:::-;46479:25;;:48;46505:21;46479:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46431:102::o:0;26861:185::-;26999:39;27016:4;27022:2;27026:7;26999:39;;;;;;;;;;;;:16;:39::i;:::-;26861:185;;;:::o;46539:97::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46622:8:::1;46611;:19;;;;;;;;;;;;:::i;:::-;;46539:97:::0;:::o;44555:32::-;;;;;;;;;;;;;:::o;23455:144::-;23519:7;23562:27;23581:7;23562:18;:27::i;:::-;23539:52;;23455:144;;;:::o;19332:224::-;19396:7;19437:1;19420:19;;:5;:19;;;19416:60;;19448:28;;;;;;;;;;;;;;19416:60;14671:13;19494:18;:25;19513:5;19494:25;;;;;;;;;;;;;;;;:54;19487:61;;19332:224;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;44468:39::-;;;;:::o;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;46069:88::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46143:6:::1;46131:9;:18;;;;46069:88:::0;:::o;23835:104::-;23891:13;23924:7;23917:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23835:104;:::o;45134:832::-;45199:9;44838:12;;;;;;;;;;;44833:40;;44859:14;;;;;;;;;;;;;;44833:40;44900:9;44886:23;;:10;:23;;;44882:50;;44918:14;;;;;;;;;;;;;;44882:50;44996:9;;44984;44968:13;:11;:13::i;:::-;:25;:37;44964:68;;;45014:18;;;;;;;;;;;;;;44964:68;45061:12;;45049:9;:24;45045:54;;;45082:17;;;;;;;;;;;;;;45045:54;45242:13:::1;45270:9;45258;;:21;45242:37;;45312:14;;45296:13;:11;:13::i;:::-;:30;45292:559;;;45392:1;45379:9;45347:17;:29;45365:10;45347:29;;;;;;;;;;;;;;;;:41;:46;45343:495;;45422:1;45414:9;;45475;45442:17;:29;45460:10;45442:29;;;;;;;;;;;;;;;;:42;;;;;;;;;;;45343:495;;;45554:1;45542:9;45510:17;:29;45528:10;45510:29;;;;;;;;;;;;;;;;:41;:45;:82;;;;;45591:1;45559:17;:29;45577:10;45559:29;;;;;;;;;;;;;;;;:33;45510:82;45506:332;;;45613:19;45639:17;:29;45657:10;45639:29;;;;;;;;;;;;;;;;45635:1;:33;45613:55;;45687:13;45715:11;45703:9;;:23;45687:39;;45754:5;45745:14;;;;45811:11;45778:17;:29;45796:10;45778:29;;;;;;;;;;;;;;;;:44;;;;;;;;;;;45594:244;;45506:332;45343:495;45292:559;45880:5;45867:9;:18;45863:45;;45894:14;;;;;;;;;;;;;;45863:45;45219:701;45930:28;45936:10;45948:9;45930:5;:28::i;:::-;45134:832:::0;;:::o;26010:308::-;26121:19;:17;:19::i;:::-;26109:31;;:8;:31;;;26105:61;;26149:17;;;;;;;;;;;;;;26105:61;26231:8;26179:18;:39;26198:19;:17;:19::i;:::-;26179:39;;;;;;;;;;;;;;;:49;26219:8;26179:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26291:8;26255:55;;26270:19;:17;:19::i;:::-;26255:55;;;26301:8;26255:55;;;;;;:::i;:::-;;;;;;;;26010:308;;:::o;27117:396::-;27284:28;27294:4;27300:2;27304:7;27284:9;:28::i;:::-;27345:1;27327:2;:14;;;:19;27323:183;;27366:56;27397:4;27403:2;27407:7;27416:5;27366:30;:56::i;:::-;27361:145;;27450:40;;;;;;;;;;;;;;27361:145;27323:183;27117:396;;;;:::o;44352:38::-;;;;:::o;46256:169::-;46322:13;46377:8;46387:19;:8;:17;:19::i;:::-;46360:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46346:71;;46256:169;;;:::o;44395:31::-;;;;:::o;46163:87::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46230:12:::1;;;;;;;;;;;46229:13;46214:12;;:28;;;;;;;;;;;;;;;;;;46163:87::o:0;44431:32::-;;;;:::o;44512:36::-;;;;:::o;26389:164::-;26486:4;26510:18;:25;26529:5;26510:25;;;;;;;;;;;;;;;:35;26536:8;26510:35;;;;;;;;;;;;;;;;;;;;;;;;;26503:42;;26389:164;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;::::0;5102:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;27768:273::-;27825:4;27881:7;27862:15;:13;:15::i;:::-;:26;;:66;;;;;27915:13;;27905:7;:23;27862:66;:152;;;;;28013:1;15441:8;27966:17;:26;27984:7;27966:26;;;;;;;;;;;;:43;:48;27862:152;27842:172;;27768:273;;;:::o;20970:1129::-;21037:7;21057:12;21072:7;21057:22;;21140:4;21121:15;:13;:15::i;:::-;:23;21117:915;;21174:13;;21167:4;:20;21163:869;;;21212:14;21229:17;:23;21247:4;21229:23;;;;;;;;;;;;21212:40;;21345:1;15441:8;21318:6;:23;:28;21314:699;;21837:113;21854:1;21844:6;:11;21837:113;;21897:17;:25;21915:6;;;;;;;21897:25;;;;;;;;;;;;21888:34;;21837:113;;;21983:6;21976:13;;;;;;21314:699;21189:843;21163:869;21117:915;22060:31;;;;;;;;;;;;;;20970:1129;;;;:::o;41750:105::-;41810:7;41837:10;41830:17;;41750:105;:::o;45972:91::-;46029:7;46054:1;46047:8;;45972:91;:::o;33007:2515::-;33122:27;33152;33171:7;33152:18;:27::i;:::-;33122:57;;33237:4;33196:45;;33212:19;33196:45;;;33192:86;;33250:28;;;;;;;;;;;;;;33192:86;33291:22;33340:4;33317:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33361:43;33378:4;33384:19;:17;:19::i;:::-;33361:16;:43::i;:::-;33317:87;:147;;;;33445:19;:17;:19::i;:::-;33421:43;;:20;33433:7;33421:11;:20::i;:::-;:43;;;33317:147;33291:174;;33483:17;33478:66;;33509:35;;;;;;;;;;;;;;33478:66;33573:1;33559:16;;:2;:16;;;33555:52;;33584:23;;;;;;;;;;;;;;33555:52;33620:43;33642:4;33648:2;33652:7;33661:1;33620:21;:43::i;:::-;33736:15;:24;33752:7;33736:24;;;;;;;;;;;;33729:31;;;;;;;;;;;34128:18;:24;34147:4;34128:24;;;;;;;;;;;;;;;;34126:26;;;;;;;;;;;;34197:18;:22;34216:2;34197:22;;;;;;;;;;;;;;;;34195:24;;;;;;;;;;;15723:8;15325:3;34578:15;:41;;34536:21;34554:2;34536:17;:21::i;:::-;:84;:128;34490:17;:26;34508:7;34490:26;;;;;;;;;;;:174;;;;34834:1;15723:8;34784:19;:46;:51;34780:626;;34856:19;34888:1;34878:7;:11;34856:33;;35045:1;35011:17;:30;35029:11;35011:30;;;;;;;;;;;;:35;35007:384;;35149:13;;35134:11;:28;35130:242;;35329:19;35296:17;:30;35314:11;35296:30;;;;;;;;;;;:52;;;;35130:242;35007:384;34837:569;34780:626;35453:7;35449:2;35434:27;;35443:4;35434:27;;;;;;;;;;;;35472:42;35493:4;35499:2;35503:7;35512:1;35472:20;:42::i;:::-;33111:2411;;33007:2515;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;31097:1656::-;31162:20;31185:13;;31162:36;;31227:1;31213:16;;:2;:16;;;31209:48;;31238:19;;;;;;;;;;;;;;31209:48;31284:1;31272:8;:13;31268:44;;31294:18;;;;;;;;;;;;;;31268:44;31325:61;31355:1;31359:2;31363:12;31377:8;31325:21;:61::i;:::-;31929:1;14808:2;31900:1;:25;;31899:31;31887:8;:44;31861:18;:22;31880:2;31861:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15588:3;32330:29;32357:1;32345:8;:13;32330:14;:29::i;:::-;:56;;15325:3;32267:15;:41;;32225:21;32243:2;32225:17;:21::i;:::-;:84;:162;32174:17;:31;32192:12;32174:31;;;;;;;;;;;:213;;;;32404:20;32427:12;32404:35;;32454:11;32483:8;32468:12;:23;32454:37;;32508:111;32560:14;;;;;;32556:2;32535:40;;32552:1;32535:40;;;;;;;;;;;;32614:3;32599:12;:18;32508:111;;32651:12;32635:13;:28;;;;31638:1037;;32685:60;32714:1;32718:2;32722:12;32736:8;32685:20;:60::i;:::-;31151:1602;31097:1656;;:::o;39219:716::-;39382:4;39428:2;39403:45;;;39449:19;:17;:19::i;:::-;39470:4;39476:7;39485:5;39403:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39399:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39703:1;39686:6;:13;:18;39682:235;;39732:40;;;;;;;;;;;;;;39682:235;39875:6;39869:13;39860:6;39856:2;39852:15;39845:38;39399:529;39572:54;;;39562:64;;;:6;:64;;;;39555:71;;;39219:716;;;;;;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;40583:159::-;;;;;:::o;24755:148::-;24819:14;24880:5;24870:15;;24755:148;;;:::o;41401:158::-;;;;;:::o;24990:142::-;25048:14;25109:5;25099:15;;24990:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:148::-;13720:11;13757:3;13742:18;;13618:148;;;;:::o;13772:141::-;13821:4;13844:3;13836:11;;13867:3;13864:1;13857:14;13901:4;13898:1;13888:18;13880:26;;13772:141;;;:::o;13943:845::-;14046:3;14083:5;14077:12;14112:36;14138:9;14112:36;:::i;:::-;14164:89;14246:6;14241:3;14164:89;:::i;:::-;14157:96;;14284:1;14273:9;14269:17;14300:1;14295:137;;;;14446:1;14441:341;;;;14262:520;;14295:137;14379:4;14375:9;14364;14360:25;14355:3;14348:38;14415:6;14410:3;14406:16;14399:23;;14295:137;;14441:341;14508:38;14540:5;14508:38;:::i;:::-;14568:1;14582:154;14596:6;14593:1;14590:13;14582:154;;;14670:7;14664:14;14660:1;14655:3;14651:11;14644:35;14720:1;14711:7;14707:15;14696:26;;14618:4;14615:1;14611:12;14606:17;;14582:154;;;14765:6;14760:3;14756:16;14749:23;;14448:334;;14262:520;;14050:738;;13943:845;;;;:::o;14794:377::-;14900:3;14928:39;14961:5;14928:39;:::i;:::-;14983:89;15065:6;15060:3;14983:89;:::i;:::-;14976:96;;15081:52;15126:6;15121:3;15114:4;15107:5;15103:16;15081:52;:::i;:::-;15158:6;15153:3;15149:16;15142:23;;14904:267;14794:377;;;;:::o;15177:155::-;15317:7;15313:1;15305:6;15301:14;15294:31;15177:155;:::o;15338:400::-;15498:3;15519:84;15601:1;15596:3;15519:84;:::i;:::-;15512:91;;15612:93;15701:3;15612:93;:::i;:::-;15730:1;15725:3;15721:11;15714:18;;15338:400;;;:::o;15744:695::-;16022:3;16044:92;16132:3;16123:6;16044:92;:::i;:::-;16037:99;;16153:95;16244:3;16235:6;16153:95;:::i;:::-;16146:102;;16265:148;16409:3;16265:148;:::i;:::-;16258:155;;16430:3;16423:10;;15744:695;;;;;:::o;16445:225::-;16585:34;16581:1;16573:6;16569:14;16562:58;16654:8;16649:2;16641:6;16637:15;16630:33;16445:225;:::o;16676:366::-;16818:3;16839:67;16903:2;16898:3;16839:67;:::i;:::-;16832:74;;16915:93;17004:3;16915:93;:::i;:::-;17033:2;17028:3;17024:12;17017:19;;16676:366;;;:::o;17048:419::-;17214:4;17252:2;17241:9;17237:18;17229:26;;17301:9;17295:4;17291:20;17287:1;17276:9;17272:17;17265:47;17329:131;17455:4;17329:131;:::i;:::-;17321:139;;17048:419;;;:::o;17473:98::-;17524:6;17558:5;17552:12;17542:22;;17473:98;;;:::o;17577:168::-;17660:11;17694:6;17689:3;17682:19;17734:4;17729:3;17725:14;17710:29;;17577:168;;;;:::o;17751:360::-;17837:3;17865:38;17897:5;17865:38;:::i;:::-;17919:70;17982:6;17977:3;17919:70;:::i;:::-;17912:77;;17998:52;18043:6;18038:3;18031:4;18024:5;18020:16;17998:52;:::i;:::-;18075:29;18097:6;18075:29;:::i;:::-;18070:3;18066:39;18059:46;;17841:270;17751:360;;;;:::o;18117:640::-;18312:4;18350:3;18339:9;18335:19;18327:27;;18364:71;18432:1;18421:9;18417:17;18408:6;18364:71;:::i;:::-;18445:72;18513:2;18502:9;18498:18;18489:6;18445:72;:::i;:::-;18527;18595:2;18584:9;18580:18;18571:6;18527:72;:::i;:::-;18646:9;18640:4;18636:20;18631:2;18620:9;18616:18;18609:48;18674:76;18745:4;18736:6;18674:76;:::i;:::-;18666:84;;18117:640;;;;;;;:::o;18763:141::-;18819:5;18850:6;18844:13;18835:22;;18866:32;18892:5;18866:32;:::i;:::-;18763:141;;;;:::o;18910:349::-;18979:6;19028:2;19016:9;19007:7;19003:23;18999:32;18996:119;;;19034:79;;:::i;:::-;18996:119;19154:1;19179:63;19234:7;19225:6;19214:9;19210:22;19179:63;:::i;:::-;19169:73;;19125:127;18910:349;;;;:::o;19265:180::-;19313:77;19310:1;19303:88;19410:4;19407:1;19400:15;19434:4;19431:1;19424:15;19451:233;19490:3;19513:24;19531:5;19513:24;:::i;:::-;19504:33;;19559:66;19552:5;19549:77;19546:103;;19629:18;;:::i;:::-;19546:103;19676:1;19669:5;19665:13;19658:20;;19451:233;;;:::o;19690:180::-;19738:77;19735:1;19728:88;19835:4;19832:1;19825:15;19859:4;19856:1;19849:15;19876:185;19916:1;19933:20;19951:1;19933:20;:::i;:::-;19928:25;;19967:20;19985:1;19967:20;:::i;:::-;19962:25;;20006:1;19996:35;;20011:18;;:::i;:::-;19996:35;20053:1;20050;20046:9;20041:14;;19876:185;;;;:::o;20067:191::-;20107:4;20127:20;20145:1;20127:20;:::i;:::-;20122:25;;20161:20;20179:1;20161:20;:::i;:::-;20156:25;;20200:1;20197;20194:8;20191:34;;;20205:18;;:::i;:::-;20191:34;20250:1;20247;20243:9;20235:17;;20067:191;;;;:::o;20264:176::-;20296:1;20313:20;20331:1;20313:20;:::i;:::-;20308:25;;20347:20;20365:1;20347:20;:::i;:::-;20342:25;;20386:1;20376:35;;20391:18;;:::i;:::-;20376:35;20432:1;20429;20425:9;20420:14;;20264:176;;;;:::o;20446:305::-;20486:3;20505:20;20523:1;20505:20;:::i;:::-;20500:25;;20539:20;20557:1;20539:20;:::i;:::-;20534:25;;20693:1;20625:66;20621:74;20618:1;20615:81;20612:107;;;20699:18;;:::i;:::-;20612:107;20743:1;20740;20736:9;20729:16;;20446:305;;;;:::o;20757:180::-;20805:77;20802:1;20795:88;20902:4;20899:1;20892:15;20926:4;20923:1;20916:15
Swarm Source
ipfs://b307acfec353449ef61f186d463e469daac0bcf1cd483976078ced9b5ea718ca
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.