Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Mutanty00tsApeClub
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import { IERC721A } from "erc721a/contracts/IERC721A.sol"; import { ERC721A } from "erc721a/contracts/ERC721A.sol"; import { ERC721AQueryable } from "erc721a/contracts/extensions/ERC721AQueryable.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { OperatorFilterer } from "./OperatorFilterer.sol"; contract Mutanty00tsApeClub is ERC721A, ERC721AQueryable, OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true), Ownable { using ECDSA for bytes32; using Strings for uint256; bool public MintingPublic = false; bool public MintingHolder = false; string public baseURI; address public signer; uint256 public maxPerTransaction = 20; uint256 public pricePublic = 6900000000000000; uint256 public priceHolder = 4200000000000000; mapping (address => uint256) public walletPublic; mapping (address => uint256) public walletHolder ; mapping (address => bool) public holderClaim; uint256 public maxSupply = 10000; uint256 public maxHolder = 3484; uint256 public maxPublic = 6416; bool public operatorFilteringEnabled = true; constructor() ERC721A("Mutant y00ts Ape Club", "MYAC"){} function publicMint(uint256 qty) external payable { require(MintingPublic , "MYAC isMintingStart Not Open Yet !"); require(qty <= maxPerTransaction, "MYAC Max Per Max Per Transaction !"); require(totalSupply() + qty <= maxPublic,"MYAC Soldout !"); require(msg.value >= qty * pricePublic,"MYAC Insufficient Funds !"); walletPublic[msg.sender] += qty; _safeMint(msg.sender, qty); } function y00tapeHolderMint(uint256 qty, bytes memory signature) external payable { require(MintingHolder, "MYAC isMintingStart Not Open Yet !"); require(qty <= maxPerTransaction, "MYAC Max Per Max Per Transaction !"); require(totalSupply() + qty <= maxHolder,"MYAC Soldout !"); require(msg.value >= qty * priceHolder,"MYAC Insufficient Eth"); require(isMessageValid(signature,qty),"MYAC Not Holder !"); walletHolder[msg.sender] += qty; _safeMint(msg.sender, qty); } function y00tapeHolderClaim(uint256 qty, bytes memory signature) external payable { require(MintingHolder, "MYAC isMintingStart Not Open Yet !"); require(holderClaim[msg.sender] == false,"MYAC Claimed"); require(totalSupply() + qty <= maxHolder,"MYAC Soldout !"); require(isMessageValid(signature,qty),"MYAC Not Holder !"); holderClaim[msg.sender] = true; walletHolder[msg.sender] += qty; _safeMint(msg.sender, qty); } function airdrop(address[] memory listedAirdrop ,uint256[] memory qty) external onlyOwner { for (uint256 i = 0; i < listedAirdrop.length; i++) { _safeMint(listedAirdrop[i], qty[i]); } } function setSigner(address _signer) external onlyOwner { signer = _signer; } function teamMint(uint256 qty) external onlyOwner { _safeMint(msg.sender, qty); } function setPublicisMintingStart() external onlyOwner { MintingPublic = !MintingPublic ; } function setHolderisMintingStart() external onlyOwner { MintingHolder = !MintingHolder ; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setPricePublic(uint256 price_) external onlyOwner { pricePublic = price_; } function setPriceHolder(uint256 priceHolder_) external onlyOwner { priceHolder = priceHolder_; } function setmaxPerTransaction(uint256 maxPerTransaction_) external onlyOwner { maxPerTransaction = maxPerTransaction_; } function setPublicSupply(uint256 maxPublic_) external onlyOwner { maxPublic = maxPublic_; } function setHolderSupply(uint256 maxHolder_) external onlyOwner { maxHolder = maxHolder_; } function setWalletMint(address addr_) external onlyOwner { walletPublic[addr_] = 0; walletHolder[addr_] = 0; holderClaim[addr_] = false; } function setOperatorFilteringEnabled(bool _value) external onlyOwner { operatorFilteringEnabled = _value; } function isMessageValid(bytes memory _signature, uint256 amount) public view returns (bool) { bytes32 messagehash = keccak256(abi.encodePacked(address(this), msg.sender,amount)); address _signer = messagehash.toEthSignedMessageHash().recover(_signature); if (signer == _signer) { return true; } else { return false; } } function EmergencyWithdraw() external onlyOwner { (bool success, ) = owner().call{ value: address(this).balance }(""); require(success, "Transfer failed"); } function withdraw() public onlyOwner { payable(msg.sender).transfer(payable(address(this)).balance); } function approve(address to, uint256 tokenId) public payable virtual override(ERC721A, IERC721A) onlyAllowedOperatorApproval(to, operatorFilteringEnabled) { super.approve(to, tokenId); } function setApprovalForAll(address operator, bool approved) public virtual override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator, operatorFilteringEnabled) { super.setApprovalForAll(operator, approved); } function transferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from, operatorFilteringEnabled) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from, operatorFilteringEnabled) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from, operatorFilteringEnabled) { super.safeTransferFrom(from, to, tokenId, _data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from, bool enabled) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (enabled && address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (enabled && address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import '../ERC721A.sol'; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EmergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MintingHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintingPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"isMessageValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHolder_","type":"uint256"}],"name":"setHolderSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setHolderisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceHolder_","type":"uint256"}],"name":"setPriceHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPublic_","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"setWalletMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTransaction_","type":"uint256"}],"name":"setmaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"teamMint","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"y00tapeHolderClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"y00tapeHolderMint","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506014600b556618838370f34000600c55660eebe0b40e8000600d55612710601155610d9c6012556119106013556001601460006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601581526020017f4d7574616e742079303074732041706520436c756200000000000000000000008152506040518060400160405280600481526020017f4d594143000000000000000000000000000000000000000000000000000000008152508160029081620001249190620006b9565b508060039081620001369190620006b9565b50620001476200036c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003445780156200020a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d0929190620007e5565b600060405180830381600087803b158015620001eb57600080fd5b505af115801562000200573d6000803e3d6000fd5b5050505062000343565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028a929190620007e5565b600060405180830381600087803b158015620002a557600080fd5b505af1158015620002ba573d6000803e3d6000fd5b5050505062000342565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200030d919062000812565b600060405180830381600087803b1580156200032857600080fd5b505af11580156200033d573d6000803e3d6000fd5b505050505b5b5b5050620003666200035a6200037160201b60201c565b6200037960201b60201c565b6200082f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004c157607f821691505b602082108103620004d757620004d662000479565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000502565b6200054d868362000502565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200059a620005946200058e8462000565565b6200056f565b62000565565b9050919050565b6000819050919050565b620005b68362000579565b620005ce620005c582620005a1565b8484546200050f565b825550505050565b600090565b620005e5620005d6565b620005f2818484620005ab565b505050565b5b818110156200061a576200060e600082620005db565b600181019050620005f8565b5050565b601f82111562000669576200063381620004dd565b6200063e84620004f2565b810160208510156200064e578190505b620006666200065d85620004f2565b830182620005f7565b50505b505050565b600082821c905092915050565b60006200068e600019846008026200066e565b1980831691505092915050565b6000620006a983836200067b565b9150826002028217905092915050565b620006c4826200043f565b67ffffffffffffffff811115620006e057620006df6200044a565b5b620006ec8254620004a8565b620006f98282856200061e565b600060209050601f8311600181146200073157600084156200071c578287015190505b6200072885826200069b565b86555062000798565b601f1984166200074186620004dd565b60005b828110156200076b5784890151825560018201915060208501945060208101905062000744565b868310156200078b578489015162000787601f8916826200067b565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007cd82620007a0565b9050919050565b620007df81620007c0565b82525050565b6000604082019050620007fc6000830185620007d4565b6200080b6020830184620007d4565b9392505050565b6000602082019050620008296000830184620007d4565b92915050565b615771806200083f6000396000f3fe6080604052600436106103505760003560e01c80636c0360eb116101c6578063b7c0b8e8116100f7578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610beb578063f2fde38b14610c28578063f3297dff14610c51578063fb796e6c14610c7c57610350565b8063d5abeb0114610b5a578063d6e30cef14610b85578063dfc603cb14610bae57610350565b8063c23dc68f116100d1578063c23dc68f14610a9e578063c87b56dd14610adb578063cc6a1a0614610b18578063cd81dbde14610b2f57610350565b8063b7c0b8e814610a1c578063b88d4fde14610a45578063bd756c0d14610a6157610350565b80637b82148e116101645780638da5cb5b1161013e5780638da5cb5b1461096057806395d89b411461098b57806399a2557a146109b6578063a22cb465146109f357610350565b80637b82148e146108cd5780637dc42975146108f85780638462151c1461092357610350565b8063715018a6116101a0578063715018a61461086c57806376cc322d1461088357806379a72d1b1461089a57806379b0e2a4146108b657610350565b80636c0360eb146107db5780636c19e7831461080657806370a082311461082f57610350565b80632db11544116102a05780634530a8321161023e57806355f804b31161021857806355f804b31461070f5780635bbb2177146107385780636352211e1461077557806367243482146107b257610350565b80634530a832146106905780634b980d67146106b95780634bd1df90146106e457610350565b80633ccfd60b1161027a5780633ccfd60b146106095780633ff4f3ff1461062057806341f434341461064957806342842e0e1461067457610350565b80632db11544146105a85780632fbba115146105c4578063345908d3146105ed57610350565b8063108bfbfa1161030d578063238ac933116102e7578063238ac933146104fb57806323b872dd1461052657806326aa420a146105425780632be905ba1461056b57610350565b8063108bfbfa1461046a578063123eaa901461049357806318160ddd146104d057610350565b806301ffc9a71461035557806306f9ae431461039257806306fdde03146103bb578063081812fc146103e6578063095ea7b314610423578063102e766d1461043f575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190613b65565b610ca7565b6040516103899190613bad565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613c26565b610d39565b005b3480156103c757600080fd5b506103d0610e26565b6040516103dd9190613ce3565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613d3b565b610eb8565b60405161041a9190613d77565b60405180910390f35b61043d60048036038101906104389190613d92565b610f37565b005b34801561044b57600080fd5b5061045461105b565b6040516104619190613de1565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190613d3b565b611061565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613f31565b611073565b6040516104c79190613bad565b60405180910390f35b3480156104dc57600080fd5b506104e561112f565b6040516104f29190613de1565b60405180910390f35b34801561050757600080fd5b50610510611146565b60405161051d9190613d77565b60405180910390f35b610540600480360381019061053b9190613f8d565b61116c565b005b34801561054e57600080fd5b5061056960048036038101906105649190613d3b565b6112d6565b005b34801561057757600080fd5b50610592600480360381019061058d9190613c26565b6112e8565b60405161059f9190613de1565b60405180910390f35b6105c260048036038101906105bd9190613d3b565b611300565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190613d3b565b61149e565b005b61060760048036038101906106029190613fe0565b6114b3565b005b34801561061557600080fd5b5061061e61169b565b005b34801561062c57600080fd5b5061064760048036038101906106429190613d3b565b611703565b005b34801561065557600080fd5b5061065e611715565b60405161066b919061409b565b60405180910390f35b61068e60048036038101906106899190613f8d565b611727565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613d3b565b611891565b005b3480156106c557600080fd5b506106ce6118a3565b6040516106db9190613de1565b60405180910390f35b3480156106f057600080fd5b506106f96118a9565b6040516107069190613de1565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190614157565b6118af565b005b34801561074457600080fd5b5061075f600480360381019061075a9190614200565b6118ca565b60405161076c91906143b0565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613d3b565b61198d565b6040516107a99190613d77565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190614558565b61199f565b005b3480156107e757600080fd5b506107f0611a09565b6040516107fd9190613ce3565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613c26565b611a97565b005b34801561083b57600080fd5b5061085660048036038101906108519190613c26565b611ae3565b6040516108639190613de1565b60405180910390f35b34801561087857600080fd5b50610881611b9b565b005b34801561088f57600080fd5b50610898611baf565b005b6108b460048036038101906108af9190613fe0565b611be3565b005b3480156108c257600080fd5b506108cb611e21565b005b3480156108d957600080fd5b506108e2611e55565b6040516108ef9190613de1565b60405180910390f35b34801561090457600080fd5b5061090d611e5b565b60405161091a9190613de1565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190613c26565b611e61565b604051610957919061468e565b60405180910390f35b34801561096c57600080fd5b50610975611fa4565b6040516109829190613d77565b60405180910390f35b34801561099757600080fd5b506109a0611fce565b6040516109ad9190613ce3565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d891906146b0565b612060565b6040516109ea919061468e565b60405180910390f35b3480156109ff57600080fd5b50610a1a6004803603810190610a15919061472f565b61226c565b005b348015610a2857600080fd5b50610a436004803603810190610a3e919061476f565b612390565b005b610a5f6004803603810190610a5a919061479c565b6123b5565b005b348015610a6d57600080fd5b50610a886004803603810190610a839190613c26565b612522565b604051610a959190613bad565b60405180910390f35b348015610aaa57600080fd5b50610ac56004803603810190610ac09190613d3b565b612542565b604051610ad29190614874565b60405180910390f35b348015610ae757600080fd5b50610b026004803603810190610afd9190613d3b565b6125ac565b604051610b0f9190613ce3565b60405180910390f35b348015610b2457600080fd5b50610b2d61264a565b005b348015610b3b57600080fd5b50610b44612708565b604051610b519190613bad565b60405180910390f35b348015610b6657600080fd5b50610b6f61271b565b604051610b7c9190613de1565b60405180910390f35b348015610b9157600080fd5b50610bac6004803603810190610ba79190613d3b565b612721565b005b348015610bba57600080fd5b50610bd56004803603810190610bd09190613c26565b612733565b604051610be29190613de1565b60405180910390f35b348015610bf757600080fd5b50610c126004803603810190610c0d919061488f565b61274b565b604051610c1f9190613bad565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190613c26565b6127df565b005b348015610c5d57600080fd5b50610c66612862565b604051610c739190613bad565b60405180910390f35b348015610c8857600080fd5b50610c91612875565b604051610c9e9190613bad565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d0257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610d41612888565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060028054610e35906148fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e61906148fe565b8015610eae5780601f10610e8357610100808354040283529160200191610eae565b820191906000526020600020905b815481529060010190602001808311610e9157829003601f168201915b5050505050905090565b6000610ec382612906565b610ef9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601460009054906101000a900460ff16808015610f7a575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561104b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401610fc892919061492f565b602060405180830381865afa158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611009919061496d565b61104a57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110419190613d77565b60405180910390fd5b5b6110558484612965565b50505050565b600c5481565b611069612888565b80600b8190555050565b60008030338460405160200161108b93929190614a03565b60405160208183030381529060405280519060200120905060006110c0856110b284612aa9565b612ad990919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361112257600192505050611129565b6000925050505b92915050565b6000611139612b00565b6001546000540303905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b82601460009054906101000a900460ff168080156111af575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156112c3573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f7576111f2858585612b05565b6112cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161124092919061492f565b602060405180830381865afa15801561125d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611281919061496d565b6112c257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112b99190613d77565b60405180910390fd5b5b6112ce858585612b05565b5b5050505050565b6112de612888565b8060138190555050565b600e6020528060005260406000206000915090505481565b600860149054906101000a900460ff1661134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690614ab2565b60405180910390fd5b600b54811115611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90614b44565b60405180910390fd5b601354816113a061112f565b6113aa9190614b93565b11156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614c13565b60405180910390fd5b600c54816113f99190614c33565b34101561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614cc1565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148a9190614b93565b9250508190555061149b3382612e27565b50565b6114a6612888565b6114b03382612e27565b50565b600860159054906101000a900460ff16611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990614ab2565b60405180910390fd5b600b54821115611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90614b44565b60405180910390fd5b6012548261155361112f565b61155d9190614b93565b111561159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590614c13565b60405180910390fd5b600d54826115ac9190614c33565b3410156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614d2d565b60405180910390fd5b6115f88183611073565b611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90614d99565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116869190614b93565b925050819055506116973383612e27565b5050565b6116a3612888565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611700573d6000803e3d6000fd5b50565b61170b612888565b80600d8190555050565b6daaeb6d7670e522a718067333cd4e81565b82601460009054906101000a900460ff1680801561176a575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561187e573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117b2576117ad858585612e45565b61188a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016117fb92919061492f565b602060405180830381865afa158015611818573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183c919061496d565b61187d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118749190613d77565b60405180910390fd5b5b611889858585612e45565b5b5050505050565b611899612888565b80600c8190555050565b600b5481565b60125481565b6118b7612888565b80600990816118c69190614f5b565b5050565b6060600083839050905060008167ffffffffffffffff8111156118f0576118ef613e06565b5b60405190808252806020026020018201604052801561192957816020015b611916613aaa565b81526020019060019003908161190e5790505b50905060005b8281146119815761195886868381811061194c5761194b61502d565b5b90506020020135612542565b82828151811061196b5761196a61502d565b5b602002602001018190525080600101905061192f565b50809250505092915050565b600061199882612e65565b9050919050565b6119a7612888565b60005b8251811015611a04576119f18382815181106119c9576119c861502d565b5b60200260200101518383815181106119e4576119e361502d565b5b6020026020010151612e27565b80806119fc9061505c565b9150506119aa565b505050565b60098054611a16906148fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611a42906148fe565b8015611a8f5780601f10611a6457610100808354040283529160200191611a8f565b820191906000526020600020905b815481529060010190602001808311611a7257829003601f168201915b505050505081565b611a9f612888565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611ba3612888565b611bad6000612f31565b565b611bb7612888565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600860159054906101000a900460ff16611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990614ab2565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc906150f0565b60405180910390fd5b60125482611cd161112f565b611cdb9190614b93565b1115611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390614c13565b60405180910390fd5b611d268183611073565b611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c90614d99565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e0c9190614b93565b92505081905550611e1d3383612e27565b5050565b611e29612888565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b600d5481565b60135481565b60606000806000611e7185611ae3565b905060008167ffffffffffffffff811115611e8f57611e8e613e06565b5b604051908082528060200260200182016040528015611ebd5781602001602082028036833780820191505090505b509050611ec8613aaa565b6000611ed2612b00565b90505b838614611f9657611ee581612ff7565b91508160400151611f8b57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f3057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f8a5780838780600101985081518110611f7d57611f7c61502d565b5b6020026020010181815250505b5b806001019050611ed5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611fdd906148fe565b80601f0160208091040260200160405190810160405280929190818152602001828054612009906148fe565b80156120565780601f1061202b57610100808354040283529160200191612056565b820191906000526020600020905b81548152906001019060200180831161203957829003601f168201915b5050505050905090565b606081831061209b576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806120a6613022565b90506120b0612b00565b8510156120c2576120bf612b00565b94505b808411156120ce578093505b60006120d987611ae3565b9050848610156120fc5760008686039050818110156120f6578091505b50612101565b600090505b60008167ffffffffffffffff81111561211d5761211c613e06565b5b60405190808252806020026020018201604052801561214b5781602001602082028036833780820191505090505b509050600082036121625780945050505050612265565b600061216d88612542565b90506000816040015161218257816000015190505b60008990505b8881141580156121985750848714155b15612257576121a681612ff7565b9250826040015161224c57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146121f157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224b578084888060010199508151811061223e5761223d61502d565b5b6020026020010181815250505b5b806001019050612188565b508583528296505050505050505b9392505050565b81601460009054906101000a900460ff168080156122af575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15612380576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b81526004016122fd92919061492f565b602060405180830381865afa15801561231a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233e919061496d565b61237f57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123769190613d77565b60405180910390fd5b5b61238a848461302b565b50505050565b612398612888565b80601460006101000a81548160ff02191690831515021790555050565b83601460009054906101000a900460ff168080156123f8575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561250d573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124415761243c86868686613136565b61251a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161248a92919061492f565b602060405180830381865afa1580156124a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124cb919061496d565b61250c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016125039190613d77565b60405180910390fd5b5b61251986868686613136565b5b505050505050565b60106020528060005260406000206000915054906101000a900460ff1681565b61254a613aaa565b612552613aaa565b61255a612b00565b83108061256e575061256a613022565b8310155b1561257c57809150506125a7565b61258583612ff7565b905080604001511561259a57809150506125a7565b6125a3836131a9565b9150505b919050565b60606125b782612906565b6125ed576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125f76131c9565b905060008151036126175760405180602001604052806000815250612642565b80612621846131e0565b60405160200161263292919061514c565b6040516020818303038152906040525b915050919050565b612652612888565b600061265c611fa4565b73ffffffffffffffffffffffffffffffffffffffff164760405161267f906151a1565b60006040518083038185875af1925050503d80600081146126bc576040519150601f19603f3d011682016040523d82523d6000602084013e6126c1565b606091505b5050905080612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90615202565b60405180910390fd5b50565b600860149054906101000a900460ff1681565b60115481565b612729612888565b8060128190555050565b600f6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127e7612888565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90615294565b60405180910390fd5b61285f81612f31565b50565b600860159054906101000a900460ff1681565b601460009054906101000a900460ff1681565b612890613230565b73ffffffffffffffffffffffffffffffffffffffff166128ae611fa4565b73ffffffffffffffffffffffffffffffffffffffff1614612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90615300565b60405180910390fd5b565b600081612911612b00565b11158015612920575060005482105b801561295e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006129708261198d565b90508073ffffffffffffffffffffffffffffffffffffffff16612991613238565b73ffffffffffffffffffffffffffffffffffffffff16146129f4576129bd816129b8613238565b61274b565b6129f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600081604051602001612abc9190615397565b604051602081830303815290604052805190602001209050919050565b6000806000612ae88585613240565b91509150612af581613291565b819250505092915050565b600090565b6000612b1082612e65565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612b838461345d565b91509150612b998187612b94613238565b613484565b612be557612bae86612ba9613238565b61274b565b612be4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c4b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c5886868660016134c8565b8015612c6357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612d3185612d0d8888876134ce565b7c0200000000000000000000000000000000000000000000000000000000176134f6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612db75760006001850190506000600460008381526020019081526020016000205403612db5576000548114612db4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1f8686866001613521565b505050505050565b612e41828260405180602001604052806000815250613527565b5050565b612e60838383604051806020016040528060008152506123b5565b505050565b60008082905080612e74612b00565b11612efa57600054811015612ef95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612ef7575b60008103612eed576004600083600190039350838152602001908152602001600020549050612ec3565b8092505050612f2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fff613aaa565b61301b60046000848152602001908152602001600020546135c4565b9050919050565b60008054905090565b8060076000613038613238565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166130e5613238565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161312a9190613bad565b60405180910390a35050565b61314184848461116c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146131a35761316c8484848461367a565b6131a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6131b1613aaa565b6131c26131bd83612e65565b6135c4565b9050919050565b606060405180602001604052806000815250905090565b606060a060405101806040526020810391506000825281835b60011561321b57600184039350600a81066030018453600a81049050806131f9575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060418351036132815760008060006020860151925060408601519150606086015160001a9050613275878285856137ca565b9450945050505061328a565b60006002915091505b9250929050565b600060048111156132a5576132a46153bd565b5b8160048111156132b8576132b76153bd565b5b031561345a57600160048111156132d2576132d16153bd565b5b8160048111156132e5576132e46153bd565b5b03613325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331c90615438565b60405180910390fd5b60026004811115613339576133386153bd565b5b81600481111561334c5761334b6153bd565b5b0361338c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613383906154a4565b60405180910390fd5b600360048111156133a05761339f6153bd565b5b8160048111156133b3576133b26153bd565b5b036133f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ea90615536565b60405180910390fd5b600480811115613406576134056153bd565b5b816004811115613419576134186153bd565b5b03613459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613450906155c8565b60405180910390fd5b5b50565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86134e58686846138d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61353183836138df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146135bf57600080549050600083820390505b613571600086838060010194508661367a565b6135a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061355e5781600054146135bc57600080fd5b50505b505050565b6135cc613aaa565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136a0613238565b8786866040518563ffffffff1660e01b81526004016136c2949392919061563d565b6020604051808303816000875af19250505080156136fe57506040513d601f19601f820116820180604052508101906136fb919061569e565b60015b613777573d806000811461372e576040519150601f19603f3d011682016040523d82523d6000602084013e613733565b606091505b50600081510361376f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138055760006003915091506138cd565b601b8560ff161415801561381d5750601c8560ff1614155b1561382f5760006004915091506138cd565b60006001878787876040516000815260200160405260405161385494939291906156f6565b6020604051602081039080840390855afa158015613876573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036138c4576000600192509250506138cd565b80600092509250505b94509492505050565b60009392505050565b6000805490506000820361391f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61392c60008483856134c8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139a38361399460008660006134ce565b61399d85613a9a565b176134f6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a4457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a09565b5060008203613a7f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a956000848385613521565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b4281613b0d565b8114613b4d57600080fd5b50565b600081359050613b5f81613b39565b92915050565b600060208284031215613b7b57613b7a613b03565b5b6000613b8984828501613b50565b91505092915050565b60008115159050919050565b613ba781613b92565b82525050565b6000602082019050613bc26000830184613b9e565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bf382613bc8565b9050919050565b613c0381613be8565b8114613c0e57600080fd5b50565b600081359050613c2081613bfa565b92915050565b600060208284031215613c3c57613c3b613b03565b5b6000613c4a84828501613c11565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c8d578082015181840152602081019050613c72565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cb582613c53565b613cbf8185613c5e565b9350613ccf818560208601613c6f565b613cd881613c99565b840191505092915050565b60006020820190508181036000830152613cfd8184613caa565b905092915050565b6000819050919050565b613d1881613d05565b8114613d2357600080fd5b50565b600081359050613d3581613d0f565b92915050565b600060208284031215613d5157613d50613b03565b5b6000613d5f84828501613d26565b91505092915050565b613d7181613be8565b82525050565b6000602082019050613d8c6000830184613d68565b92915050565b60008060408385031215613da957613da8613b03565b5b6000613db785828601613c11565b9250506020613dc885828601613d26565b9150509250929050565b613ddb81613d05565b82525050565b6000602082019050613df66000830184613dd2565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e3e82613c99565b810181811067ffffffffffffffff82111715613e5d57613e5c613e06565b5b80604052505050565b6000613e70613af9565b9050613e7c8282613e35565b919050565b600067ffffffffffffffff821115613e9c57613e9b613e06565b5b613ea582613c99565b9050602081019050919050565b82818337600083830152505050565b6000613ed4613ecf84613e81565b613e66565b905082815260208101848484011115613ef057613eef613e01565b5b613efb848285613eb2565b509392505050565b600082601f830112613f1857613f17613dfc565b5b8135613f28848260208601613ec1565b91505092915050565b60008060408385031215613f4857613f47613b03565b5b600083013567ffffffffffffffff811115613f6657613f65613b08565b5b613f7285828601613f03565b9250506020613f8385828601613d26565b9150509250929050565b600080600060608486031215613fa657613fa5613b03565b5b6000613fb486828701613c11565b9350506020613fc586828701613c11565b9250506040613fd686828701613d26565b9150509250925092565b60008060408385031215613ff757613ff6613b03565b5b600061400585828601613d26565b925050602083013567ffffffffffffffff81111561402657614025613b08565b5b61403285828601613f03565b9150509250929050565b6000819050919050565b600061406161405c61405784613bc8565b61403c565b613bc8565b9050919050565b600061407382614046565b9050919050565b600061408582614068565b9050919050565b6140958161407a565b82525050565b60006020820190506140b0600083018461408c565b92915050565b600067ffffffffffffffff8211156140d1576140d0613e06565b5b6140da82613c99565b9050602081019050919050565b60006140fa6140f5846140b6565b613e66565b90508281526020810184848401111561411657614115613e01565b5b614121848285613eb2565b509392505050565b600082601f83011261413e5761413d613dfc565b5b813561414e8482602086016140e7565b91505092915050565b60006020828403121561416d5761416c613b03565b5b600082013567ffffffffffffffff81111561418b5761418a613b08565b5b61419784828501614129565b91505092915050565b600080fd5b600080fd5b60008083601f8401126141c0576141bf613dfc565b5b8235905067ffffffffffffffff8111156141dd576141dc6141a0565b5b6020830191508360208202830111156141f9576141f86141a5565b5b9250929050565b6000806020838503121561421757614216613b03565b5b600083013567ffffffffffffffff81111561423557614234613b08565b5b614241858286016141aa565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61428281613be8565b82525050565b600067ffffffffffffffff82169050919050565b6142a581614288565b82525050565b6142b481613b92565b82525050565b600062ffffff82169050919050565b6142d2816142ba565b82525050565b6080820160008201516142ee6000850182614279565b506020820151614301602085018261429c565b50604082015161431460408501826142ab565b50606082015161432760608501826142c9565b50505050565b600061433983836142d8565b60808301905092915050565b6000602082019050919050565b600061435d8261424d565b6143678185614258565b935061437283614269565b8060005b838110156143a357815161438a888261432d565b975061439583614345565b925050600181019050614376565b5085935050505092915050565b600060208201905081810360008301526143ca8184614352565b905092915050565b600067ffffffffffffffff8211156143ed576143ec613e06565b5b602082029050602081019050919050565b600061441161440c846143d2565b613e66565b90508083825260208201905060208402830185811115614434576144336141a5565b5b835b8181101561445d57806144498882613c11565b845260208401935050602081019050614436565b5050509392505050565b600082601f83011261447c5761447b613dfc565b5b813561448c8482602086016143fe565b91505092915050565b600067ffffffffffffffff8211156144b0576144af613e06565b5b602082029050602081019050919050565b60006144d46144cf84614495565b613e66565b905080838252602082019050602084028301858111156144f7576144f66141a5565b5b835b81811015614520578061450c8882613d26565b8452602084019350506020810190506144f9565b5050509392505050565b600082601f83011261453f5761453e613dfc565b5b813561454f8482602086016144c1565b91505092915050565b6000806040838503121561456f5761456e613b03565b5b600083013567ffffffffffffffff81111561458d5761458c613b08565b5b61459985828601614467565b925050602083013567ffffffffffffffff8111156145ba576145b9613b08565b5b6145c68582860161452a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61460581613d05565b82525050565b600061461783836145fc565b60208301905092915050565b6000602082019050919050565b600061463b826145d0565b61464581856145db565b9350614650836145ec565b8060005b83811015614681578151614668888261460b565b975061467383614623565b925050600181019050614654565b5085935050505092915050565b600060208201905081810360008301526146a88184614630565b905092915050565b6000806000606084860312156146c9576146c8613b03565b5b60006146d786828701613c11565b93505060206146e886828701613d26565b92505060406146f986828701613d26565b9150509250925092565b61470c81613b92565b811461471757600080fd5b50565b60008135905061472981614703565b92915050565b6000806040838503121561474657614745613b03565b5b600061475485828601613c11565b92505060206147658582860161471a565b9150509250929050565b60006020828403121561478557614784613b03565b5b60006147938482850161471a565b91505092915050565b600080600080608085870312156147b6576147b5613b03565b5b60006147c487828801613c11565b94505060206147d587828801613c11565b93505060406147e687828801613d26565b925050606085013567ffffffffffffffff81111561480757614806613b08565b5b61481387828801613f03565b91505092959194509250565b6080820160008201516148356000850182614279565b506020820151614848602085018261429c565b50604082015161485b60408501826142ab565b50606082015161486e60608501826142c9565b50505050565b6000608082019050614889600083018461481f565b92915050565b600080604083850312156148a6576148a5613b03565b5b60006148b485828601613c11565b92505060206148c585828601613c11565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061491657607f821691505b602082108103614929576149286148cf565b5b50919050565b60006040820190506149446000830185613d68565b6149516020830184613d68565b9392505050565b60008151905061496781614703565b92915050565b60006020828403121561498357614982613b03565b5b600061499184828501614958565b91505092915050565b60008160601b9050919050565b60006149b28261499a565b9050919050565b60006149c4826149a7565b9050919050565b6149dc6149d782613be8565b6149b9565b82525050565b6000819050919050565b6149fd6149f882613d05565b6149e2565b82525050565b6000614a0f82866149cb565b601482019150614a1f82856149cb565b601482019150614a2f82846149ec565b602082019150819050949350505050565b7f4d5941432069734d696e74696e675374617274204e6f74204f70656e2059657460008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a9c602283613c5e565b9150614aa782614a40565b604082019050919050565b60006020820190508181036000830152614acb81614a8f565b9050919050565b7f4d594143204d617820506572204d617820506572205472616e73616374696f6e60008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b2e602283613c5e565b9150614b3982614ad2565b604082019050919050565b60006020820190508181036000830152614b5d81614b21565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9e82613d05565b9150614ba983613d05565b9250828201905080821115614bc157614bc0614b64565b5b92915050565b7f4d59414320536f6c646f75742021000000000000000000000000000000000000600082015250565b6000614bfd600e83613c5e565b9150614c0882614bc7565b602082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b6000614c3e82613d05565b9150614c4983613d05565b9250828202614c5781613d05565b91508282048414831517614c6e57614c6d614b64565b5b5092915050565b7f4d59414320496e73756666696369656e742046756e6473202100000000000000600082015250565b6000614cab601983613c5e565b9150614cb682614c75565b602082019050919050565b60006020820190508181036000830152614cda81614c9e565b9050919050565b7f4d59414320496e73756666696369656e74204574680000000000000000000000600082015250565b6000614d17601583613c5e565b9150614d2282614ce1565b602082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b7f4d594143204e6f7420486f6c6465722021000000000000000000000000000000600082015250565b6000614d83601183613c5e565b9150614d8e82614d4d565b602082019050919050565b60006020820190508181036000830152614db281614d76565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e1b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614dde565b614e258683614dde565b95508019841693508086168417925050509392505050565b6000614e58614e53614e4e84613d05565b61403c565b613d05565b9050919050565b6000819050919050565b614e7283614e3d565b614e86614e7e82614e5f565b848454614deb565b825550505050565b600090565b614e9b614e8e565b614ea6818484614e69565b505050565b5b81811015614eca57614ebf600082614e93565b600181019050614eac565b5050565b601f821115614f0f57614ee081614db9565b614ee984614dce565b81016020851015614ef8578190505b614f0c614f0485614dce565b830182614eab565b50505b505050565b600082821c905092915050565b6000614f3260001984600802614f14565b1980831691505092915050565b6000614f4b8383614f21565b9150826002028217905092915050565b614f6482613c53565b67ffffffffffffffff811115614f7d57614f7c613e06565b5b614f8782546148fe565b614f92828285614ece565b600060209050601f831160018114614fc55760008415614fb3578287015190505b614fbd8582614f3f565b865550615025565b601f198416614fd386614db9565b60005b82811015614ffb57848901518255600182019150602085019450602081019050614fd6565b868310156150185784890151615014601f891682614f21565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061506782613d05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361509957615098614b64565b5b600182019050919050565b7f4d59414320436c61696d65640000000000000000000000000000000000000000600082015250565b60006150da600c83613c5e565b91506150e5826150a4565b602082019050919050565b60006020820190508181036000830152615109816150cd565b9050919050565b600081905092915050565b600061512682613c53565b6151308185615110565b9350615140818560208601613c6f565b80840191505092915050565b6000615158828561511b565b9150615164828461511b565b91508190509392505050565b600081905092915050565b50565b600061518b600083615170565b91506151968261517b565b600082019050919050565b60006151ac8261517e565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006151ec600f83613c5e565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061527e602683613c5e565b915061528982615222565b604082019050919050565b600060208201905081810360008301526152ad81615271565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006152ea602083613c5e565b91506152f5826152b4565b602082019050919050565b60006020820190508181036000830152615319816152dd565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615356601c83615110565b915061536182615320565b601c82019050919050565b6000819050919050565b6000819050919050565b61539161538c8261536c565b615376565b82525050565b60006153a282615349565b91506153ae8284615380565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615422601883613c5e565b915061542d826153ec565b602082019050919050565b6000602082019050818103600083015261545181615415565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061548e601f83613c5e565b915061549982615458565b602082019050919050565b600060208201905081810360008301526154bd81615481565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615520602283613c5e565b915061552b826154c4565b604082019050919050565b6000602082019050818103600083015261554f81615513565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155b2602283613c5e565b91506155bd82615556565b604082019050919050565b600060208201905081810360008301526155e1816155a5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061560f826155e8565b61561981856155f3565b9350615629818560208601613c6f565b61563281613c99565b840191505092915050565b60006080820190506156526000830187613d68565b61565f6020830186613d68565b61566c6040830185613dd2565b818103606083015261567e8184615604565b905095945050505050565b60008151905061569881613b39565b92915050565b6000602082840312156156b4576156b3613b03565b5b60006156c284828501615689565b91505092915050565b6156d48161536c565b82525050565b600060ff82169050919050565b6156f0816156da565b82525050565b600060808201905061570b60008301876156cb565b61571860208301866156e7565b61572560408301856156cb565b61573260608301846156cb565b9594505050505056fea26469706673582212206fc28f548dd9370761d2691a3557b6c09bd5cfd86ad5df57eb426f96411bd31b64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103505760003560e01c80636c0360eb116101c6578063b7c0b8e8116100f7578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610beb578063f2fde38b14610c28578063f3297dff14610c51578063fb796e6c14610c7c57610350565b8063d5abeb0114610b5a578063d6e30cef14610b85578063dfc603cb14610bae57610350565b8063c23dc68f116100d1578063c23dc68f14610a9e578063c87b56dd14610adb578063cc6a1a0614610b18578063cd81dbde14610b2f57610350565b8063b7c0b8e814610a1c578063b88d4fde14610a45578063bd756c0d14610a6157610350565b80637b82148e116101645780638da5cb5b1161013e5780638da5cb5b1461096057806395d89b411461098b57806399a2557a146109b6578063a22cb465146109f357610350565b80637b82148e146108cd5780637dc42975146108f85780638462151c1461092357610350565b8063715018a6116101a0578063715018a61461086c57806376cc322d1461088357806379a72d1b1461089a57806379b0e2a4146108b657610350565b80636c0360eb146107db5780636c19e7831461080657806370a082311461082f57610350565b80632db11544116102a05780634530a8321161023e57806355f804b31161021857806355f804b31461070f5780635bbb2177146107385780636352211e1461077557806367243482146107b257610350565b80634530a832146106905780634b980d67146106b95780634bd1df90146106e457610350565b80633ccfd60b1161027a5780633ccfd60b146106095780633ff4f3ff1461062057806341f434341461064957806342842e0e1461067457610350565b80632db11544146105a85780632fbba115146105c4578063345908d3146105ed57610350565b8063108bfbfa1161030d578063238ac933116102e7578063238ac933146104fb57806323b872dd1461052657806326aa420a146105425780632be905ba1461056b57610350565b8063108bfbfa1461046a578063123eaa901461049357806318160ddd146104d057610350565b806301ffc9a71461035557806306f9ae431461039257806306fdde03146103bb578063081812fc146103e6578063095ea7b314610423578063102e766d1461043f575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190613b65565b610ca7565b6040516103899190613bad565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613c26565b610d39565b005b3480156103c757600080fd5b506103d0610e26565b6040516103dd9190613ce3565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613d3b565b610eb8565b60405161041a9190613d77565b60405180910390f35b61043d60048036038101906104389190613d92565b610f37565b005b34801561044b57600080fd5b5061045461105b565b6040516104619190613de1565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190613d3b565b611061565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613f31565b611073565b6040516104c79190613bad565b60405180910390f35b3480156104dc57600080fd5b506104e561112f565b6040516104f29190613de1565b60405180910390f35b34801561050757600080fd5b50610510611146565b60405161051d9190613d77565b60405180910390f35b610540600480360381019061053b9190613f8d565b61116c565b005b34801561054e57600080fd5b5061056960048036038101906105649190613d3b565b6112d6565b005b34801561057757600080fd5b50610592600480360381019061058d9190613c26565b6112e8565b60405161059f9190613de1565b60405180910390f35b6105c260048036038101906105bd9190613d3b565b611300565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190613d3b565b61149e565b005b61060760048036038101906106029190613fe0565b6114b3565b005b34801561061557600080fd5b5061061e61169b565b005b34801561062c57600080fd5b5061064760048036038101906106429190613d3b565b611703565b005b34801561065557600080fd5b5061065e611715565b60405161066b919061409b565b60405180910390f35b61068e60048036038101906106899190613f8d565b611727565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613d3b565b611891565b005b3480156106c557600080fd5b506106ce6118a3565b6040516106db9190613de1565b60405180910390f35b3480156106f057600080fd5b506106f96118a9565b6040516107069190613de1565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190614157565b6118af565b005b34801561074457600080fd5b5061075f600480360381019061075a9190614200565b6118ca565b60405161076c91906143b0565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613d3b565b61198d565b6040516107a99190613d77565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190614558565b61199f565b005b3480156107e757600080fd5b506107f0611a09565b6040516107fd9190613ce3565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613c26565b611a97565b005b34801561083b57600080fd5b5061085660048036038101906108519190613c26565b611ae3565b6040516108639190613de1565b60405180910390f35b34801561087857600080fd5b50610881611b9b565b005b34801561088f57600080fd5b50610898611baf565b005b6108b460048036038101906108af9190613fe0565b611be3565b005b3480156108c257600080fd5b506108cb611e21565b005b3480156108d957600080fd5b506108e2611e55565b6040516108ef9190613de1565b60405180910390f35b34801561090457600080fd5b5061090d611e5b565b60405161091a9190613de1565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190613c26565b611e61565b604051610957919061468e565b60405180910390f35b34801561096c57600080fd5b50610975611fa4565b6040516109829190613d77565b60405180910390f35b34801561099757600080fd5b506109a0611fce565b6040516109ad9190613ce3565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d891906146b0565b612060565b6040516109ea919061468e565b60405180910390f35b3480156109ff57600080fd5b50610a1a6004803603810190610a15919061472f565b61226c565b005b348015610a2857600080fd5b50610a436004803603810190610a3e919061476f565b612390565b005b610a5f6004803603810190610a5a919061479c565b6123b5565b005b348015610a6d57600080fd5b50610a886004803603810190610a839190613c26565b612522565b604051610a959190613bad565b60405180910390f35b348015610aaa57600080fd5b50610ac56004803603810190610ac09190613d3b565b612542565b604051610ad29190614874565b60405180910390f35b348015610ae757600080fd5b50610b026004803603810190610afd9190613d3b565b6125ac565b604051610b0f9190613ce3565b60405180910390f35b348015610b2457600080fd5b50610b2d61264a565b005b348015610b3b57600080fd5b50610b44612708565b604051610b519190613bad565b60405180910390f35b348015610b6657600080fd5b50610b6f61271b565b604051610b7c9190613de1565b60405180910390f35b348015610b9157600080fd5b50610bac6004803603810190610ba79190613d3b565b612721565b005b348015610bba57600080fd5b50610bd56004803603810190610bd09190613c26565b612733565b604051610be29190613de1565b60405180910390f35b348015610bf757600080fd5b50610c126004803603810190610c0d919061488f565b61274b565b604051610c1f9190613bad565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190613c26565b6127df565b005b348015610c5d57600080fd5b50610c66612862565b604051610c739190613bad565b60405180910390f35b348015610c8857600080fd5b50610c91612875565b604051610c9e9190613bad565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d0257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610d41612888565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060028054610e35906148fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e61906148fe565b8015610eae5780601f10610e8357610100808354040283529160200191610eae565b820191906000526020600020905b815481529060010190602001808311610e9157829003601f168201915b5050505050905090565b6000610ec382612906565b610ef9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601460009054906101000a900460ff16808015610f7a575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561104b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401610fc892919061492f565b602060405180830381865afa158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611009919061496d565b61104a57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110419190613d77565b60405180910390fd5b5b6110558484612965565b50505050565b600c5481565b611069612888565b80600b8190555050565b60008030338460405160200161108b93929190614a03565b60405160208183030381529060405280519060200120905060006110c0856110b284612aa9565b612ad990919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361112257600192505050611129565b6000925050505b92915050565b6000611139612b00565b6001546000540303905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b82601460009054906101000a900460ff168080156111af575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156112c3573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f7576111f2858585612b05565b6112cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161124092919061492f565b602060405180830381865afa15801561125d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611281919061496d565b6112c257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112b99190613d77565b60405180910390fd5b5b6112ce858585612b05565b5b5050505050565b6112de612888565b8060138190555050565b600e6020528060005260406000206000915090505481565b600860149054906101000a900460ff1661134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690614ab2565b60405180910390fd5b600b54811115611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90614b44565b60405180910390fd5b601354816113a061112f565b6113aa9190614b93565b11156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614c13565b60405180910390fd5b600c54816113f99190614c33565b34101561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614cc1565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148a9190614b93565b9250508190555061149b3382612e27565b50565b6114a6612888565b6114b03382612e27565b50565b600860159054906101000a900460ff16611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990614ab2565b60405180910390fd5b600b54821115611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90614b44565b60405180910390fd5b6012548261155361112f565b61155d9190614b93565b111561159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590614c13565b60405180910390fd5b600d54826115ac9190614c33565b3410156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614d2d565b60405180910390fd5b6115f88183611073565b611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90614d99565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116869190614b93565b925050819055506116973383612e27565b5050565b6116a3612888565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611700573d6000803e3d6000fd5b50565b61170b612888565b80600d8190555050565b6daaeb6d7670e522a718067333cd4e81565b82601460009054906101000a900460ff1680801561176a575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561187e573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117b2576117ad858585612e45565b61188a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016117fb92919061492f565b602060405180830381865afa158015611818573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183c919061496d565b61187d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118749190613d77565b60405180910390fd5b5b611889858585612e45565b5b5050505050565b611899612888565b80600c8190555050565b600b5481565b60125481565b6118b7612888565b80600990816118c69190614f5b565b5050565b6060600083839050905060008167ffffffffffffffff8111156118f0576118ef613e06565b5b60405190808252806020026020018201604052801561192957816020015b611916613aaa565b81526020019060019003908161190e5790505b50905060005b8281146119815761195886868381811061194c5761194b61502d565b5b90506020020135612542565b82828151811061196b5761196a61502d565b5b602002602001018190525080600101905061192f565b50809250505092915050565b600061199882612e65565b9050919050565b6119a7612888565b60005b8251811015611a04576119f18382815181106119c9576119c861502d565b5b60200260200101518383815181106119e4576119e361502d565b5b6020026020010151612e27565b80806119fc9061505c565b9150506119aa565b505050565b60098054611a16906148fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611a42906148fe565b8015611a8f5780601f10611a6457610100808354040283529160200191611a8f565b820191906000526020600020905b815481529060010190602001808311611a7257829003601f168201915b505050505081565b611a9f612888565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611ba3612888565b611bad6000612f31565b565b611bb7612888565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600860159054906101000a900460ff16611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990614ab2565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc906150f0565b60405180910390fd5b60125482611cd161112f565b611cdb9190614b93565b1115611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390614c13565b60405180910390fd5b611d268183611073565b611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c90614d99565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e0c9190614b93565b92505081905550611e1d3383612e27565b5050565b611e29612888565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b600d5481565b60135481565b60606000806000611e7185611ae3565b905060008167ffffffffffffffff811115611e8f57611e8e613e06565b5b604051908082528060200260200182016040528015611ebd5781602001602082028036833780820191505090505b509050611ec8613aaa565b6000611ed2612b00565b90505b838614611f9657611ee581612ff7565b91508160400151611f8b57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f3057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f8a5780838780600101985081518110611f7d57611f7c61502d565b5b6020026020010181815250505b5b806001019050611ed5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611fdd906148fe565b80601f0160208091040260200160405190810160405280929190818152602001828054612009906148fe565b80156120565780601f1061202b57610100808354040283529160200191612056565b820191906000526020600020905b81548152906001019060200180831161203957829003601f168201915b5050505050905090565b606081831061209b576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806120a6613022565b90506120b0612b00565b8510156120c2576120bf612b00565b94505b808411156120ce578093505b60006120d987611ae3565b9050848610156120fc5760008686039050818110156120f6578091505b50612101565b600090505b60008167ffffffffffffffff81111561211d5761211c613e06565b5b60405190808252806020026020018201604052801561214b5781602001602082028036833780820191505090505b509050600082036121625780945050505050612265565b600061216d88612542565b90506000816040015161218257816000015190505b60008990505b8881141580156121985750848714155b15612257576121a681612ff7565b9250826040015161224c57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146121f157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224b578084888060010199508151811061223e5761223d61502d565b5b6020026020010181815250505b5b806001019050612188565b508583528296505050505050505b9392505050565b81601460009054906101000a900460ff168080156122af575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15612380576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b81526004016122fd92919061492f565b602060405180830381865afa15801561231a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233e919061496d565b61237f57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123769190613d77565b60405180910390fd5b5b61238a848461302b565b50505050565b612398612888565b80601460006101000a81548160ff02191690831515021790555050565b83601460009054906101000a900460ff168080156123f8575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561250d573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124415761243c86868686613136565b61251a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161248a92919061492f565b602060405180830381865afa1580156124a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124cb919061496d565b61250c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016125039190613d77565b60405180910390fd5b5b61251986868686613136565b5b505050505050565b60106020528060005260406000206000915054906101000a900460ff1681565b61254a613aaa565b612552613aaa565b61255a612b00565b83108061256e575061256a613022565b8310155b1561257c57809150506125a7565b61258583612ff7565b905080604001511561259a57809150506125a7565b6125a3836131a9565b9150505b919050565b60606125b782612906565b6125ed576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125f76131c9565b905060008151036126175760405180602001604052806000815250612642565b80612621846131e0565b60405160200161263292919061514c565b6040516020818303038152906040525b915050919050565b612652612888565b600061265c611fa4565b73ffffffffffffffffffffffffffffffffffffffff164760405161267f906151a1565b60006040518083038185875af1925050503d80600081146126bc576040519150601f19603f3d011682016040523d82523d6000602084013e6126c1565b606091505b5050905080612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90615202565b60405180910390fd5b50565b600860149054906101000a900460ff1681565b60115481565b612729612888565b8060128190555050565b600f6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127e7612888565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90615294565b60405180910390fd5b61285f81612f31565b50565b600860159054906101000a900460ff1681565b601460009054906101000a900460ff1681565b612890613230565b73ffffffffffffffffffffffffffffffffffffffff166128ae611fa4565b73ffffffffffffffffffffffffffffffffffffffff1614612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90615300565b60405180910390fd5b565b600081612911612b00565b11158015612920575060005482105b801561295e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006129708261198d565b90508073ffffffffffffffffffffffffffffffffffffffff16612991613238565b73ffffffffffffffffffffffffffffffffffffffff16146129f4576129bd816129b8613238565b61274b565b6129f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600081604051602001612abc9190615397565b604051602081830303815290604052805190602001209050919050565b6000806000612ae88585613240565b91509150612af581613291565b819250505092915050565b600090565b6000612b1082612e65565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612b838461345d565b91509150612b998187612b94613238565b613484565b612be557612bae86612ba9613238565b61274b565b612be4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c4b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c5886868660016134c8565b8015612c6357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612d3185612d0d8888876134ce565b7c0200000000000000000000000000000000000000000000000000000000176134f6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612db75760006001850190506000600460008381526020019081526020016000205403612db5576000548114612db4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1f8686866001613521565b505050505050565b612e41828260405180602001604052806000815250613527565b5050565b612e60838383604051806020016040528060008152506123b5565b505050565b60008082905080612e74612b00565b11612efa57600054811015612ef95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612ef7575b60008103612eed576004600083600190039350838152602001908152602001600020549050612ec3565b8092505050612f2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fff613aaa565b61301b60046000848152602001908152602001600020546135c4565b9050919050565b60008054905090565b8060076000613038613238565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166130e5613238565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161312a9190613bad565b60405180910390a35050565b61314184848461116c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146131a35761316c8484848461367a565b6131a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6131b1613aaa565b6131c26131bd83612e65565b6135c4565b9050919050565b606060405180602001604052806000815250905090565b606060a060405101806040526020810391506000825281835b60011561321b57600184039350600a81066030018453600a81049050806131f9575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060418351036132815760008060006020860151925060408601519150606086015160001a9050613275878285856137ca565b9450945050505061328a565b60006002915091505b9250929050565b600060048111156132a5576132a46153bd565b5b8160048111156132b8576132b76153bd565b5b031561345a57600160048111156132d2576132d16153bd565b5b8160048111156132e5576132e46153bd565b5b03613325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331c90615438565b60405180910390fd5b60026004811115613339576133386153bd565b5b81600481111561334c5761334b6153bd565b5b0361338c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613383906154a4565b60405180910390fd5b600360048111156133a05761339f6153bd565b5b8160048111156133b3576133b26153bd565b5b036133f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ea90615536565b60405180910390fd5b600480811115613406576134056153bd565b5b816004811115613419576134186153bd565b5b03613459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613450906155c8565b60405180910390fd5b5b50565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86134e58686846138d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61353183836138df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146135bf57600080549050600083820390505b613571600086838060010194508661367a565b6135a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061355e5781600054146135bc57600080fd5b50505b505050565b6135cc613aaa565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136a0613238565b8786866040518563ffffffff1660e01b81526004016136c2949392919061563d565b6020604051808303816000875af19250505080156136fe57506040513d601f19601f820116820180604052508101906136fb919061569e565b60015b613777573d806000811461372e576040519150601f19603f3d011682016040523d82523d6000602084013e613733565b606091505b50600081510361376f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138055760006003915091506138cd565b601b8560ff161415801561381d5750601c8560ff1614155b1561382f5760006004915091506138cd565b60006001878787876040516000815260200160405260405161385494939291906156f6565b6020604051602081039080840390855afa158015613876573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036138c4576000600192509250506138cd565b80600092509250505b94509492505050565b60009392505050565b6000805490506000820361391f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61392c60008483856134c8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139a38361399460008660006134ce565b61399d85613a9a565b176134f6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a4457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a09565b5060008203613a7f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a956000848385613521565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b4281613b0d565b8114613b4d57600080fd5b50565b600081359050613b5f81613b39565b92915050565b600060208284031215613b7b57613b7a613b03565b5b6000613b8984828501613b50565b91505092915050565b60008115159050919050565b613ba781613b92565b82525050565b6000602082019050613bc26000830184613b9e565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bf382613bc8565b9050919050565b613c0381613be8565b8114613c0e57600080fd5b50565b600081359050613c2081613bfa565b92915050565b600060208284031215613c3c57613c3b613b03565b5b6000613c4a84828501613c11565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c8d578082015181840152602081019050613c72565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cb582613c53565b613cbf8185613c5e565b9350613ccf818560208601613c6f565b613cd881613c99565b840191505092915050565b60006020820190508181036000830152613cfd8184613caa565b905092915050565b6000819050919050565b613d1881613d05565b8114613d2357600080fd5b50565b600081359050613d3581613d0f565b92915050565b600060208284031215613d5157613d50613b03565b5b6000613d5f84828501613d26565b91505092915050565b613d7181613be8565b82525050565b6000602082019050613d8c6000830184613d68565b92915050565b60008060408385031215613da957613da8613b03565b5b6000613db785828601613c11565b9250506020613dc885828601613d26565b9150509250929050565b613ddb81613d05565b82525050565b6000602082019050613df66000830184613dd2565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e3e82613c99565b810181811067ffffffffffffffff82111715613e5d57613e5c613e06565b5b80604052505050565b6000613e70613af9565b9050613e7c8282613e35565b919050565b600067ffffffffffffffff821115613e9c57613e9b613e06565b5b613ea582613c99565b9050602081019050919050565b82818337600083830152505050565b6000613ed4613ecf84613e81565b613e66565b905082815260208101848484011115613ef057613eef613e01565b5b613efb848285613eb2565b509392505050565b600082601f830112613f1857613f17613dfc565b5b8135613f28848260208601613ec1565b91505092915050565b60008060408385031215613f4857613f47613b03565b5b600083013567ffffffffffffffff811115613f6657613f65613b08565b5b613f7285828601613f03565b9250506020613f8385828601613d26565b9150509250929050565b600080600060608486031215613fa657613fa5613b03565b5b6000613fb486828701613c11565b9350506020613fc586828701613c11565b9250506040613fd686828701613d26565b9150509250925092565b60008060408385031215613ff757613ff6613b03565b5b600061400585828601613d26565b925050602083013567ffffffffffffffff81111561402657614025613b08565b5b61403285828601613f03565b9150509250929050565b6000819050919050565b600061406161405c61405784613bc8565b61403c565b613bc8565b9050919050565b600061407382614046565b9050919050565b600061408582614068565b9050919050565b6140958161407a565b82525050565b60006020820190506140b0600083018461408c565b92915050565b600067ffffffffffffffff8211156140d1576140d0613e06565b5b6140da82613c99565b9050602081019050919050565b60006140fa6140f5846140b6565b613e66565b90508281526020810184848401111561411657614115613e01565b5b614121848285613eb2565b509392505050565b600082601f83011261413e5761413d613dfc565b5b813561414e8482602086016140e7565b91505092915050565b60006020828403121561416d5761416c613b03565b5b600082013567ffffffffffffffff81111561418b5761418a613b08565b5b61419784828501614129565b91505092915050565b600080fd5b600080fd5b60008083601f8401126141c0576141bf613dfc565b5b8235905067ffffffffffffffff8111156141dd576141dc6141a0565b5b6020830191508360208202830111156141f9576141f86141a5565b5b9250929050565b6000806020838503121561421757614216613b03565b5b600083013567ffffffffffffffff81111561423557614234613b08565b5b614241858286016141aa565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61428281613be8565b82525050565b600067ffffffffffffffff82169050919050565b6142a581614288565b82525050565b6142b481613b92565b82525050565b600062ffffff82169050919050565b6142d2816142ba565b82525050565b6080820160008201516142ee6000850182614279565b506020820151614301602085018261429c565b50604082015161431460408501826142ab565b50606082015161432760608501826142c9565b50505050565b600061433983836142d8565b60808301905092915050565b6000602082019050919050565b600061435d8261424d565b6143678185614258565b935061437283614269565b8060005b838110156143a357815161438a888261432d565b975061439583614345565b925050600181019050614376565b5085935050505092915050565b600060208201905081810360008301526143ca8184614352565b905092915050565b600067ffffffffffffffff8211156143ed576143ec613e06565b5b602082029050602081019050919050565b600061441161440c846143d2565b613e66565b90508083825260208201905060208402830185811115614434576144336141a5565b5b835b8181101561445d57806144498882613c11565b845260208401935050602081019050614436565b5050509392505050565b600082601f83011261447c5761447b613dfc565b5b813561448c8482602086016143fe565b91505092915050565b600067ffffffffffffffff8211156144b0576144af613e06565b5b602082029050602081019050919050565b60006144d46144cf84614495565b613e66565b905080838252602082019050602084028301858111156144f7576144f66141a5565b5b835b81811015614520578061450c8882613d26565b8452602084019350506020810190506144f9565b5050509392505050565b600082601f83011261453f5761453e613dfc565b5b813561454f8482602086016144c1565b91505092915050565b6000806040838503121561456f5761456e613b03565b5b600083013567ffffffffffffffff81111561458d5761458c613b08565b5b61459985828601614467565b925050602083013567ffffffffffffffff8111156145ba576145b9613b08565b5b6145c68582860161452a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61460581613d05565b82525050565b600061461783836145fc565b60208301905092915050565b6000602082019050919050565b600061463b826145d0565b61464581856145db565b9350614650836145ec565b8060005b83811015614681578151614668888261460b565b975061467383614623565b925050600181019050614654565b5085935050505092915050565b600060208201905081810360008301526146a88184614630565b905092915050565b6000806000606084860312156146c9576146c8613b03565b5b60006146d786828701613c11565b93505060206146e886828701613d26565b92505060406146f986828701613d26565b9150509250925092565b61470c81613b92565b811461471757600080fd5b50565b60008135905061472981614703565b92915050565b6000806040838503121561474657614745613b03565b5b600061475485828601613c11565b92505060206147658582860161471a565b9150509250929050565b60006020828403121561478557614784613b03565b5b60006147938482850161471a565b91505092915050565b600080600080608085870312156147b6576147b5613b03565b5b60006147c487828801613c11565b94505060206147d587828801613c11565b93505060406147e687828801613d26565b925050606085013567ffffffffffffffff81111561480757614806613b08565b5b61481387828801613f03565b91505092959194509250565b6080820160008201516148356000850182614279565b506020820151614848602085018261429c565b50604082015161485b60408501826142ab565b50606082015161486e60608501826142c9565b50505050565b6000608082019050614889600083018461481f565b92915050565b600080604083850312156148a6576148a5613b03565b5b60006148b485828601613c11565b92505060206148c585828601613c11565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061491657607f821691505b602082108103614929576149286148cf565b5b50919050565b60006040820190506149446000830185613d68565b6149516020830184613d68565b9392505050565b60008151905061496781614703565b92915050565b60006020828403121561498357614982613b03565b5b600061499184828501614958565b91505092915050565b60008160601b9050919050565b60006149b28261499a565b9050919050565b60006149c4826149a7565b9050919050565b6149dc6149d782613be8565b6149b9565b82525050565b6000819050919050565b6149fd6149f882613d05565b6149e2565b82525050565b6000614a0f82866149cb565b601482019150614a1f82856149cb565b601482019150614a2f82846149ec565b602082019150819050949350505050565b7f4d5941432069734d696e74696e675374617274204e6f74204f70656e2059657460008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a9c602283613c5e565b9150614aa782614a40565b604082019050919050565b60006020820190508181036000830152614acb81614a8f565b9050919050565b7f4d594143204d617820506572204d617820506572205472616e73616374696f6e60008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b2e602283613c5e565b9150614b3982614ad2565b604082019050919050565b60006020820190508181036000830152614b5d81614b21565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9e82613d05565b9150614ba983613d05565b9250828201905080821115614bc157614bc0614b64565b5b92915050565b7f4d59414320536f6c646f75742021000000000000000000000000000000000000600082015250565b6000614bfd600e83613c5e565b9150614c0882614bc7565b602082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b6000614c3e82613d05565b9150614c4983613d05565b9250828202614c5781613d05565b91508282048414831517614c6e57614c6d614b64565b5b5092915050565b7f4d59414320496e73756666696369656e742046756e6473202100000000000000600082015250565b6000614cab601983613c5e565b9150614cb682614c75565b602082019050919050565b60006020820190508181036000830152614cda81614c9e565b9050919050565b7f4d59414320496e73756666696369656e74204574680000000000000000000000600082015250565b6000614d17601583613c5e565b9150614d2282614ce1565b602082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b7f4d594143204e6f7420486f6c6465722021000000000000000000000000000000600082015250565b6000614d83601183613c5e565b9150614d8e82614d4d565b602082019050919050565b60006020820190508181036000830152614db281614d76565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e1b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614dde565b614e258683614dde565b95508019841693508086168417925050509392505050565b6000614e58614e53614e4e84613d05565b61403c565b613d05565b9050919050565b6000819050919050565b614e7283614e3d565b614e86614e7e82614e5f565b848454614deb565b825550505050565b600090565b614e9b614e8e565b614ea6818484614e69565b505050565b5b81811015614eca57614ebf600082614e93565b600181019050614eac565b5050565b601f821115614f0f57614ee081614db9565b614ee984614dce565b81016020851015614ef8578190505b614f0c614f0485614dce565b830182614eab565b50505b505050565b600082821c905092915050565b6000614f3260001984600802614f14565b1980831691505092915050565b6000614f4b8383614f21565b9150826002028217905092915050565b614f6482613c53565b67ffffffffffffffff811115614f7d57614f7c613e06565b5b614f8782546148fe565b614f92828285614ece565b600060209050601f831160018114614fc55760008415614fb3578287015190505b614fbd8582614f3f565b865550615025565b601f198416614fd386614db9565b60005b82811015614ffb57848901518255600182019150602085019450602081019050614fd6565b868310156150185784890151615014601f891682614f21565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061506782613d05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361509957615098614b64565b5b600182019050919050565b7f4d59414320436c61696d65640000000000000000000000000000000000000000600082015250565b60006150da600c83613c5e565b91506150e5826150a4565b602082019050919050565b60006020820190508181036000830152615109816150cd565b9050919050565b600081905092915050565b600061512682613c53565b6151308185615110565b9350615140818560208601613c6f565b80840191505092915050565b6000615158828561511b565b9150615164828461511b565b91508190509392505050565b600081905092915050565b50565b600061518b600083615170565b91506151968261517b565b600082019050919050565b60006151ac8261517e565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006151ec600f83613c5e565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061527e602683613c5e565b915061528982615222565b604082019050919050565b600060208201905081810360008301526152ad81615271565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006152ea602083613c5e565b91506152f5826152b4565b602082019050919050565b60006020820190508181036000830152615319816152dd565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615356601c83615110565b915061536182615320565b601c82019050919050565b6000819050919050565b6000819050919050565b61539161538c8261536c565b615376565b82525050565b60006153a282615349565b91506153ae8284615380565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615422601883613c5e565b915061542d826153ec565b602082019050919050565b6000602082019050818103600083015261545181615415565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061548e601f83613c5e565b915061549982615458565b602082019050919050565b600060208201905081810360008301526154bd81615481565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615520602283613c5e565b915061552b826154c4565b604082019050919050565b6000602082019050818103600083015261554f81615513565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155b2602283613c5e565b91506155bd82615556565b604082019050919050565b600060208201905081810360008301526155e1816155a5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061560f826155e8565b61561981856155f3565b9350615629818560208601613c6f565b61563281613c99565b840191505092915050565b60006080820190506156526000830187613d68565b61565f6020830186613d68565b61566c6040830185613dd2565b818103606083015261567e8184615604565b905095945050505050565b60008151905061569881613b39565b92915050565b6000602082840312156156b4576156b3613b03565b5b60006156c284828501615689565b91505092915050565b6156d48161536c565b82525050565b600060ff82169050919050565b6156f0816156da565b82525050565b600060808201905061570b60008301876156cb565b61571860208301866156e7565b61572560408301856156cb565b61573260608301846156cb565b9594505050505056fea26469706673582212206fc28f548dd9370761d2691a3557b6c09bd5cfd86ad5df57eb426f96411bd31b64736f6c63430008110033
Deployed Bytecode Sourcemap
548:5943:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4305:170:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:98:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5336:200:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;943:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3937:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;869:21:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5781:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1047:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1440:444;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3267:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1892:540;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5212:116;;;;;;;;;;;;;:::i;:::-;;3819:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;753:143:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6005:224:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3713:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;897:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1248:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3605:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1641:513:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2941:220:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;839:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3169:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;3375:105:5;;;;;;;;;;;;;:::i;:::-;;2440:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3488:105;;;;;;;;;;;;;:::i;:::-;;995:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1286:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5417:879:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:2454:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5544:229:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4483:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6237:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1158:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1070:418:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10411:313:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5020:180:5;;;;;;;;;;;;;:::i;:::-;;757:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1209:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4192:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1102:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;798:34:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1324:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:7;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;4305:170:5:-;1094:13:0;:11;:13::i;:::-;4395:1:5::1;4373:12;:19;4386:5;4373:19;;;;;;;;;;;;;;;:23;;;;4429:1;4407:12;:19;4420:5;4407:19;;;;;;;;;;;;;;;:23;;;;4462:5;4441:11;:18;4453:5;4441:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;4305:170:::0;:::o;10039:98:7:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;5336:200:5:-;5461:2;5465:24;;;;;;;;;;;2786:7:6;:60;;;;;2845:1;853:42;2797:45;;;:49;2786:60;2782:236;;;853:42;2868;;;2919:4;2926:8;2868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2863:144;;2982:8;2963:28;;;;;;;;;;;:::i;:::-;;;;;;;;2863:144;2782:236;5502:26:5::1;5516:2;5520:7;5502:13;:26::i;:::-;5336:200:::0;;;;:::o;943:45::-;;;;:::o;3937:134::-;1094:13:0;:11;:13::i;:::-;4045:18:5::1;4025:17;:38;;;;3937:134:::0;:::o;4612:400::-;4698:4;4720:19;4777:4;4784:10;4795:6;4752:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4742:61;;;;;;4720:83;;4814:15;4832:56;4877:10;4832:36;:11;:34;:36::i;:::-;:44;;:56;;;;:::i;:::-;4814:74;;4913:7;4903:17;;:6;;;;;;;;;;;:17;;;4899:106;;4944:4;4937:11;;;;;;4899:106;4988:5;4981:12;;;;4612:400;;;;;:::o;5894:317:7:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;869:21:5:-;;;;;;;;;;;;;:::o;5781:216::-;5909:4;5915:24;;;;;;;;;;;2015:7:6;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;5952:37:5::1;5971:4;5977:2;5981:7;5952:18;:37::i;:::-;2366:7:6::0;;2303:85;853:42;2407;;;2458:4;2465:10;2407:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2402:148;;2523:10;2504:30;;;;;;;;;;;:::i;:::-;;;;;;;;2402:148;2011:550;5952:37:5::1;5971:4;5977:2;5981:7;5952:18;:37::i;:::-;5781:216:::0;;;;;;:::o;4079:105::-;1094:13:0;:11;:13::i;:::-;4166:10:5::1;4154:9;:22;;;;4079:105:::0;:::o;1047:48::-;;;;;;;;;;;;;;;;;:::o;1440:444::-;1515:13;;;;;;;;;;;1507:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1594:17;;1587:3;:24;;1579:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1692:9;;1685:3;1669:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;1661:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1757:11;;1751:3;:17;;;;:::i;:::-;1738:9;:30;;1730:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1836:3;1808:12;:24;1821:10;1808:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;1850:26;1860:10;1872:3;1850:9;:26::i;:::-;1440:444;:::o;3267:100::-;1094:13:0;:11;:13::i;:::-;3333:26:5::1;3343:10;3355:3;3333:9;:26::i;:::-;3267:100:::0;:::o;1892:540::-;1999:13;;;;;;;;;;;1991:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2077:17;;2070:3;:24;;2062:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2175:9;;2168:3;2152:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2144:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2240:11;;2234:3;:17;;;;:::i;:::-;2221:9;:30;;2213:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2295:29;2310:9;2320:3;2295:14;:29::i;:::-;2287:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2384:3;2356:12;:24;2369:10;2356:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;2398:26;2408:10;2420:3;2398:9;:26::i;:::-;1892:540;;:::o;5212:116::-;1094:13:0;:11;:13::i;:::-;5268:10:5::1;5260:28;;:60;5305:4;5289:30;;;5260:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5212:116::o:0;3819:110::-;1094:13:0;:11;:13::i;:::-;3909:12:5::1;3895:11;:26;;;;3819:110:::0;:::o;753:143:6:-;853:42;753:143;:::o;6005:224:5:-;6137:4;6143:24;;;;;;;;;;;2015:7:6;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;6180:41:5::1;6203:4;6209:2;6213:7;6180:22;:41::i;:::-;2366:7:6::0;;2303:85;853:42;2407;;;2458:4;2465:10;2407:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2402:148;;2523:10;2504:30;;;;;;;;;;;:::i;:::-;;;;;;;;2402:148;2011:550;6180:41:5::1;6203:4;6209:2;6213:7;6180:22;:41::i;:::-;6005:224:::0;;;;;;:::o;3713:98::-;1094:13:0;:11;:13::i;:::-;3797:6:5::1;3783:11;:20;;;;3713:98:::0;:::o;897:37::-;;;;:::o;1248:31::-;;;;:::o;3605:100::-;1094:13:0;:11;:13::i;:::-;3689:8:5::1;3679:7;:18;;;;;;:::i;:::-;;3605:100:::0;:::o;1641:513:9:-;1780:23;1843:22;1868:8;;:15;;1843:40;;1897:34;1955:14;1934:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1897:73;;1989:9;1984:123;2005:14;2000:1;:19;1984:123;;2060:32;2080:8;;2089:1;2080:11;;;;;;;:::i;:::-;;;;;;;;2060:19;:32::i;:::-;2044:10;2055:1;2044:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;2021:3;;;;;1984:123;;;;2127:10;2120:17;;;;1641:513;;;;:::o;11391:150:7:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;2941:220:5:-;1094:13:0;:11;:13::i;:::-;3047:9:5::1;3042:112;3066:13;:20;3062:1;:24;3042:112;;;3107:35;3117:13;3131:1;3117:16;;;;;;;;:::i;:::-;;;;;;;;3135:3;3139:1;3135:6;;;;;;;;:::i;:::-;;;;;;;;3107:9;:35::i;:::-;3088:3;;;;;:::i;:::-;;;;3042:112;;;;2941:220:::0;;:::o;839:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3169:90::-;1094:13:0;:11;:13::i;:::-;3244:7:5::1;3235:6;;:16;;;;;;;;;;;;;;;;;;3169:90:::0;:::o;7045:230:7:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3375:105:5:-;1094:13:0;:11;:13::i;:::-;3458::5::1;;;;;;;;;;;3457:14;3440:13;;:31;;;;;;;;;;;;;;;;;;3375:105::o:0;2440:493::-;2548:13;;;;;;;;;;;2540:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2646:5;2619:32;;:11;:23;2631:10;2619:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;2611:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2709:9;;2702:3;2686:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2678:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2755:29;2770:9;2780:3;2755:14;:29::i;:::-;2747:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2842:4;2816:11;:23;2828:10;2816:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;2885:3;2857:12;:24;2870:10;2857:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;2899:26;2909:10;2921:3;2899:9;:26::i;:::-;2440:493;;:::o;3488:105::-;1094:13:0;:11;:13::i;:::-;3571::5::1;;;;;;;;;;;3570:14;3553:13;;:31;;;;;;;;;;;;;;;;;;3488:105::o:0;995:45::-;;;;:::o;1286:31::-;;;;:::o;5417:879:9:-;5495:16;5547:19;5580:25;5619:22;5644:16;5654:5;5644:9;:16::i;:::-;5619:41;;5674:25;5716:14;5702:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674:57;;5745:31;;:::i;:::-;5795:9;5807:15;:13;:15::i;:::-;5795:27;;5790:461;5839:14;5824:11;:29;5790:461;;5890:15;5903:1;5890:12;:15::i;:::-;5878:27;;5927:9;:16;;;5967:8;5923:71;6041:1;6015:28;;:9;:14;;;:28;;;6011:109;;6087:9;:14;;;6067:34;;6011:109;6162:5;6141:26;;:17;:26;;;6137:100;;6217:1;6191:8;6200:13;;;;;;6191:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;6137:100;5790:461;5855:3;;;;;5790:461;;;;6271:8;6264:15;;;;;;;5417:879;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:7:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;2528:2454:9:-;2667:16;2732:4;2723:5;:13;2719:45;;2745:19;;;;;;;;;;;;;;2719:45;2778:19;2811:17;2831:14;:12;:14::i;:::-;2811:34;;2929:15;:13;:15::i;:::-;2921:5;:23;2917:85;;;2972:15;:13;:15::i;:::-;2964:23;;2917:85;3076:9;3069:4;:16;3065:71;;;3112:9;3105:16;;3065:71;3149:25;3177:16;3187:5;3177:9;:16::i;:::-;3149:44;;3368:4;3360:5;:12;3356:271;;;3392:19;3421:5;3414:4;:12;3392:34;;3462:17;3448:11;:31;3444:109;;;3523:11;3503:31;;3444:109;3374:193;3356:271;;;3611:1;3591:21;;3356:271;3640:25;3682:17;3668:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3640:60;;3739:1;3718:17;:22;3714:76;;3767:8;3760:15;;;;;;;;3714:76;3931:31;3965:26;3985:5;3965:19;:26::i;:::-;3931:60;;4005:25;4247:9;:16;;;4242:90;;4303:9;:14;;;4283:34;;4242:90;4350:9;4362:5;4350:17;;4345:467;4374:4;4369:1;:9;;:45;;;;;4397:17;4382:11;:32;;4369:45;4345:467;;;4451:15;4464:1;4451:12;:15::i;:::-;4439:27;;4488:9;:16;;;4528:8;4484:71;4602:1;4576:28;;:9;:14;;;:28;;;4572:109;;4648:9;:14;;;4628:34;;4572:109;4723:5;4702:26;;:17;:26;;;4698:100;;4778:1;4752:8;4761:13;;;;;;4752:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;4698:100;4345:467;4416:3;;;;;4345:467;;;;4911:11;4901:8;4894:29;4957:8;4950:15;;;;;;;;2528:2454;;;;;;:::o;5544:229:5:-;5675:8;5685:24;;;;;;;;;;;2786:7:6;:60;;;;;2845:1;853:42;2797:45;;;:49;2786:60;2782:236;;;853:42;2868;;;2919:4;2926:8;2868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2863:144;;2982:8;2963:28;;;;;;;;;;;:::i;:::-;;;;;;;;2863:144;2782:236;5722:43:5::1;5746:8;5756;5722:23;:43::i;:::-;5544:229:::0;;;;:::o;4483:121::-;1094:13:0;:11;:13::i;:::-;4590:6:5::1;4563:24;;:33;;;;;;;;;;;;;;;;;;4483:121:::0;:::o;6237:251::-;6389:4;6395:24;;;;;;;;;;;2015:7:6;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;6432:48:5::1;6455:4;6461:2;6465:7;6474:5;6432:22;:48::i;:::-;2366:7:6::0;;2303:85;853:42;2407;;;2458:4;2465:10;2407:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2402:148;;2523:10;2504:30;;;;;;;;;;;:::i;:::-;;;;;;;;2402:148;2011:550;6432:48:5::1;6455:4;6461:2;6465:7;6474:5;6432:22;:48::i;:::-;6237:251:::0;;;;;;;:::o;1158:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;1070:418:9:-;1154:21;;:::i;:::-;1187:31;;:::i;:::-;1242:15;:13;:15::i;:::-;1232:7;:25;:54;;;;1272:14;:12;:14::i;:::-;1261:7;:25;;1232:54;1228:101;;;1309:9;1302:16;;;;;1228:101;1350:21;1363:7;1350:12;:21::i;:::-;1338:33;;1385:9;:16;;;1381:63;;;1424:9;1417:16;;;;;1381:63;1460:21;1473:7;1460:12;:21::i;:::-;1453:28;;;1070:418;;;;:::o;10411:313:7:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;5020:180:5:-;1094:13:0;:11;:13::i;:::-;5080:12:5::1;5098:7;:5;:7::i;:::-;:12;;5119:21;5098:48;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5079:67;;;5165:7;5157:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;5068:132;5020:180::o:0;757:34::-;;;;;;;;;;;;;:::o;1209:32::-;;;;:::o;4192:105::-;1094:13:0;:11;:13::i;:::-;4279:10:5::1;4267:9;:22;;;;4192:105:::0;:::o;1102:48::-;;;;;;;;;;;;;;;;;:::o;17282:162:7:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;798:34:5:-;;;;;;;;;;;;;:::o;1324:43::-;;;;;;;;;;;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;17693:277:7:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;7463:265:3:-;7532:7;7715:4;7662:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7652:69;;;;;;7645:76;;7463:265;;;:::o;3759:227::-;3837:7;3857:17;3876:18;3898:27;3909:4;3915:9;3898:10;:27::i;:::-;3856:69;;;;3935:18;3947:5;3935:11;:18::i;:::-;3970:9;3963:16;;;;3759:227;;;;:::o;5426:90:7:-;5482:7;5426:90;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11979:159:7:-;12047:21;;:::i;:::-;12087:44;12106:17;:24;12124:5;12106:24;;;;;;;;;;;;12087:18;:44::i;:::-;12080:51;;11979:159;;;:::o;5590:101::-;5645:7;5671:13;;5664:20;;5590:101;:::o;16901:231::-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;11724:164::-;11794:21;;:::i;:::-;11834:47;11853:27;11872:7;11853:18;:27::i;:::-;11834:18;:47::i;:::-;11827:54;;11724:164;;;:::o;10969:92::-;11020:13;11045:9;;;;;;;;;;;;;;10969:92;:::o;39637:1708::-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;39437:103:7:-;39497:7;39523:10;39516:17;;39437:103;:::o;2243:730:3:-;2324:7;2333:12;2381:2;2361:9;:16;:22;2357:610;;2399:9;2422;2445:7;2697:4;2686:9;2682:20;2676:27;2671:32;;2746:4;2735:9;2731:20;2725:27;2720:32;;2803:4;2792:9;2788:20;2782:27;2779:1;2774:36;2769:41;;2844:25;2855:4;2861:1;2864;2867;2844:10;:25::i;:::-;2837:32;;;;;;;;;2357:610;2916:1;2920:35;2900:56;;;;2243:730;;;;;;:::o;548:631::-;625:20;616:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;612:561;661:7;612:561;721:29;712:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;708:465;;766:34;;;;;;;;;;:::i;:::-;;;;;;;;708:465;830:35;821:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;817:356;;881:41;;;;;;;;;;:::i;:::-;;;;;;;;817:356;952:30;943:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;939:234;;998:44;;;;;;;;;;:::i;:::-;;;;;;;;939:234;1072:30;1063:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;1059:114;;1118:44;;;;;;;;;;:::i;:::-;;;;;;;;1059:114;548:631;;:::o;18828:474:7:-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;13858:361::-;13924:31;;:::i;:::-;14000:6;13967:9;:14;;:41;;;;;;;;;;;2004:3;14052:6;:33;;14018:9;:24;;:68;;;;;;;;;;;14143:1;2118:8;14115:6;:24;:29;;14096:9;:16;;:48;;;;;;;;;;;2513:3;14183:6;:28;;14154:9;:19;;:58;;;;;;;;;;;13858:361;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;5167:1603:3:-;5293:7;5302:12;6217:66;6212:1;6204:10;;:79;6200:161;;;6315:1;6319:30;6299:51;;;;;;6200:161;6379:2;6374:1;:7;;;;:18;;;;;6390:2;6385:1;:7;;;;6374:18;6370:100;;;6424:1;6428:30;6408:51;;;;;;6370:100;6564:14;6581:24;6591:4;6597:1;6600;6603;6581:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:41;;6637:1;6619:20;;:6;:20;;;6615:101;;6671:1;6675:29;6655:50;;;;;;;6615:101;6734:6;6742:20;6726:37;;;;;5167:1603;;;;;;;;:::o;38475:143:7:-;38608:6;38475:143;;;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:11:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:246::-;2721:1;2731:113;2745:6;2742:1;2739:13;2731:113;;;2830:1;2825:3;2821:11;2815:18;2811:1;2806:3;2802:11;2795:39;2767:2;2764:1;2760:10;2755:15;;2731:113;;;2878:1;2869:6;2864:3;2860:16;2853:27;2702:184;2640:246;;;:::o;2892:102::-;2933:6;2984:2;2980:7;2975:2;2968:5;2964:14;2960:28;2950:38;;2892:102;;;:::o;3000:377::-;3088:3;3116:39;3149:5;3116:39;:::i;:::-;3171:71;3235:6;3230:3;3171:71;:::i;:::-;3164:78;;3251:65;3309:6;3304:3;3297:4;3290:5;3286:16;3251:65;:::i;:::-;3341:29;3363:6;3341:29;:::i;:::-;3336:3;3332:39;3325:46;;3092:285;3000:377;;;;:::o;3383:313::-;3496:4;3534:2;3523:9;3519:18;3511:26;;3583:9;3577:4;3573:20;3569:1;3558:9;3554:17;3547:47;3611:78;3684:4;3675:6;3611:78;:::i;:::-;3603:86;;3383:313;;;;:::o;3702:77::-;3739:7;3768:5;3757:16;;3702:77;;;:::o;3785:122::-;3858:24;3876:5;3858:24;:::i;:::-;3851:5;3848:35;3838:63;;3897:1;3894;3887:12;3838:63;3785:122;:::o;3913:139::-;3959:5;3997:6;3984:20;3975:29;;4013:33;4040:5;4013:33;:::i;:::-;3913:139;;;;:::o;4058:329::-;4117:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:119;;;4172:79;;:::i;:::-;4134:119;4292:1;4317:53;4362:7;4353:6;4342:9;4338:22;4317:53;:::i;:::-;4307:63;;4263:117;4058:329;;;;:::o;4393:118::-;4480:24;4498:5;4480:24;:::i;:::-;4475:3;4468:37;4393:118;;:::o;4517:222::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:71;4729:1;4718:9;4714:17;4705:6;4661:71;:::i;:::-;4517:222;;;;:::o;4745:474::-;4813:6;4821;4870:2;4858:9;4849:7;4845:23;4841:32;4838:119;;;4876:79;;:::i;:::-;4838:119;4996:1;5021:53;5066:7;5057:6;5046:9;5042:22;5021:53;:::i;:::-;5011:63;;4967:117;5123:2;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5094:118;4745:474;;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:117::-;5686:1;5683;5676:12;5700:117;5809:1;5806;5799:12;5823:180;5871:77;5868:1;5861:88;5968:4;5965:1;5958:15;5992:4;5989:1;5982:15;6009:281;6092:27;6114:4;6092:27;:::i;:::-;6084:6;6080:40;6222:6;6210:10;6207:22;6186:18;6174:10;6171:34;6168:62;6165:88;;;6233:18;;:::i;:::-;6165:88;6273:10;6269:2;6262:22;6052:238;6009:281;;:::o;6296:129::-;6330:6;6357:20;;:::i;:::-;6347:30;;6386:33;6414:4;6406:6;6386:33;:::i;:::-;6296:129;;;:::o;6431:307::-;6492:4;6582:18;6574:6;6571:30;6568:56;;;6604:18;;:::i;:::-;6568:56;6642:29;6664:6;6642:29;:::i;:::-;6634:37;;6726:4;6720;6716:15;6708:23;;6431:307;;;:::o;6744:146::-;6841:6;6836:3;6831;6818:30;6882:1;6873:6;6868:3;6864:16;6857:27;6744:146;;;:::o;6896:423::-;6973:5;6998:65;7014:48;7055:6;7014:48;:::i;:::-;6998:65;:::i;:::-;6989:74;;7086:6;7079:5;7072:21;7124:4;7117:5;7113:16;7162:3;7153:6;7148:3;7144:16;7141:25;7138:112;;;7169:79;;:::i;:::-;7138:112;7259:54;7306:6;7301:3;7296;7259:54;:::i;:::-;6979:340;6896:423;;;;;:::o;7338:338::-;7393:5;7442:3;7435:4;7427:6;7423:17;7419:27;7409:122;;7450:79;;:::i;:::-;7409:122;7567:6;7554:20;7592:78;7666:3;7658:6;7651:4;7643:6;7639:17;7592:78;:::i;:::-;7583:87;;7399:277;7338:338;;;;:::o;7682:652::-;7759:6;7767;7816:2;7804:9;7795:7;7791:23;7787:32;7784:119;;;7822:79;;:::i;:::-;7784:119;7970:1;7959:9;7955:17;7942:31;8000:18;7992:6;7989:30;7986:117;;;8022:79;;:::i;:::-;7986:117;8127:62;8181:7;8172:6;8161:9;8157:22;8127:62;:::i;:::-;8117:72;;7913:286;8238:2;8264:53;8309:7;8300:6;8289:9;8285:22;8264:53;:::i;:::-;8254:63;;8209:118;7682:652;;;;;:::o;8340:619::-;8417:6;8425;8433;8482:2;8470:9;8461:7;8457:23;8453:32;8450:119;;;8488:79;;:::i;:::-;8450:119;8608:1;8633:53;8678:7;8669:6;8658:9;8654:22;8633:53;:::i;:::-;8623:63;;8579:117;8735:2;8761:53;8806:7;8797:6;8786:9;8782:22;8761:53;:::i;:::-;8751:63;;8706:118;8863:2;8889:53;8934:7;8925:6;8914:9;8910:22;8889:53;:::i;:::-;8879:63;;8834:118;8340:619;;;;;:::o;8965:652::-;9042:6;9050;9099:2;9087:9;9078:7;9074:23;9070:32;9067:119;;;9105:79;;:::i;:::-;9067:119;9225:1;9250:53;9295:7;9286:6;9275:9;9271:22;9250:53;:::i;:::-;9240:63;;9196:117;9380:2;9369:9;9365:18;9352:32;9411:18;9403:6;9400:30;9397:117;;;9433:79;;:::i;:::-;9397:117;9538:62;9592:7;9583:6;9572:9;9568:22;9538:62;:::i;:::-;9528:72;;9323:287;8965:652;;;;;:::o;9623:60::-;9651:3;9672:5;9665:12;;9623:60;;;:::o;9689:142::-;9739:9;9772:53;9790:34;9799:24;9817:5;9799:24;:::i;:::-;9790:34;:::i;:::-;9772:53;:::i;:::-;9759:66;;9689:142;;;:::o;9837:126::-;9887:9;9920:37;9951:5;9920:37;:::i;:::-;9907:50;;9837:126;;;:::o;9969:157::-;10050:9;10083:37;10114:5;10083:37;:::i;:::-;10070:50;;9969:157;;;:::o;10132:193::-;10250:68;10312:5;10250:68;:::i;:::-;10245:3;10238:81;10132:193;;:::o;10331:284::-;10455:4;10493:2;10482:9;10478:18;10470:26;;10506:102;10605:1;10594:9;10590:17;10581:6;10506:102;:::i;:::-;10331:284;;;;:::o;10621:308::-;10683:4;10773:18;10765:6;10762:30;10759:56;;;10795:18;;:::i;:::-;10759:56;10833:29;10855:6;10833:29;:::i;:::-;10825:37;;10917:4;10911;10907:15;10899:23;;10621:308;;;:::o;10935:425::-;11013:5;11038:66;11054:49;11096:6;11054:49;:::i;:::-;11038:66;:::i;:::-;11029:75;;11127:6;11120:5;11113:21;11165:4;11158:5;11154:16;11203:3;11194:6;11189:3;11185:16;11182:25;11179:112;;;11210:79;;:::i;:::-;11179:112;11300:54;11347:6;11342:3;11337;11300:54;:::i;:::-;11019:341;10935:425;;;;;:::o;11380:340::-;11436:5;11485:3;11478:4;11470:6;11466:17;11462:27;11452:122;;11493:79;;:::i;:::-;11452:122;11610:6;11597:20;11635:79;11710:3;11702:6;11695:4;11687:6;11683:17;11635:79;:::i;:::-;11626:88;;11442:278;11380:340;;;;:::o;11726:509::-;11795:6;11844:2;11832:9;11823:7;11819:23;11815:32;11812:119;;;11850:79;;:::i;:::-;11812:119;11998:1;11987:9;11983:17;11970:31;12028:18;12020:6;12017:30;12014:117;;;12050:79;;:::i;:::-;12014:117;12155:63;12210:7;12201:6;12190:9;12186:22;12155:63;:::i;:::-;12145:73;;11941:287;11726:509;;;;:::o;12241:117::-;12350:1;12347;12340:12;12364:117;12473:1;12470;12463:12;12504:568;12577:8;12587:6;12637:3;12630:4;12622:6;12618:17;12614:27;12604:122;;12645:79;;:::i;:::-;12604:122;12758:6;12745:20;12735:30;;12788:18;12780:6;12777:30;12774:117;;;12810:79;;:::i;:::-;12774:117;12924:4;12916:6;12912:17;12900:29;;12978:3;12970:4;12962:6;12958:17;12948:8;12944:32;12941:41;12938:128;;;12985:79;;:::i;:::-;12938:128;12504:568;;;;;:::o;13078:559::-;13164:6;13172;13221:2;13209:9;13200:7;13196:23;13192:32;13189:119;;;13227:79;;:::i;:::-;13189:119;13375:1;13364:9;13360:17;13347:31;13405:18;13397:6;13394:30;13391:117;;;13427:79;;:::i;:::-;13391:117;13540:80;13612:7;13603:6;13592:9;13588:22;13540:80;:::i;:::-;13522:98;;;;13318:312;13078:559;;;;;:::o;13643:146::-;13742:6;13776:5;13770:12;13760:22;;13643:146;;;:::o;13795:216::-;13926:11;13960:6;13955:3;13948:19;14000:4;13995:3;13991:14;13976:29;;13795:216;;;;:::o;14017:164::-;14116:4;14139:3;14131:11;;14169:4;14164:3;14160:14;14152:22;;14017:164;;;:::o;14187:108::-;14264:24;14282:5;14264:24;:::i;:::-;14259:3;14252:37;14187:108;;:::o;14301:101::-;14337:7;14377:18;14370:5;14366:30;14355:41;;14301:101;;;:::o;14408:105::-;14483:23;14500:5;14483:23;:::i;:::-;14478:3;14471:36;14408:105;;:::o;14519:99::-;14590:21;14605:5;14590:21;:::i;:::-;14585:3;14578:34;14519:99;;:::o;14624:91::-;14660:7;14700:8;14693:5;14689:20;14678:31;;14624:91;;;:::o;14721:105::-;14796:23;14813:5;14796:23;:::i;:::-;14791:3;14784:36;14721:105;;:::o;14904:866::-;15055:4;15050:3;15046:14;15142:4;15135:5;15131:16;15125:23;15161:63;15218:4;15213:3;15209:14;15195:12;15161:63;:::i;:::-;15070:164;15326:4;15319:5;15315:16;15309:23;15345:61;15400:4;15395:3;15391:14;15377:12;15345:61;:::i;:::-;15244:172;15500:4;15493:5;15489:16;15483:23;15519:57;15570:4;15565:3;15561:14;15547:12;15519:57;:::i;:::-;15426:160;15673:4;15666:5;15662:16;15656:23;15692:61;15747:4;15742:3;15738:14;15724:12;15692:61;:::i;:::-;15596:167;15024:746;14904:866;;:::o;15776:307::-;15909:10;15930:110;16036:3;16028:6;15930:110;:::i;:::-;16072:4;16067:3;16063:14;16049:28;;15776:307;;;;:::o;16089:145::-;16191:4;16223;16218:3;16214:14;16206:22;;16089:145;;;:::o;16316:988::-;16499:3;16528:86;16608:5;16528:86;:::i;:::-;16630:118;16741:6;16736:3;16630:118;:::i;:::-;16623:125;;16772:88;16854:5;16772:88;:::i;:::-;16883:7;16914:1;16899:380;16924:6;16921:1;16918:13;16899:380;;;17000:6;16994:13;17027:127;17150:3;17135:13;17027:127;:::i;:::-;17020:134;;17177:92;17262:6;17177:92;:::i;:::-;17167:102;;16959:320;16946:1;16943;16939:9;16934:14;;16899:380;;;16903:14;17295:3;17288:10;;16504:800;;;16316:988;;;;:::o;17310:501::-;17517:4;17555:2;17544:9;17540:18;17532:26;;17604:9;17598:4;17594:20;17590:1;17579:9;17575:17;17568:47;17632:172;17799:4;17790:6;17632:172;:::i;:::-;17624:180;;17310:501;;;;:::o;17817:311::-;17894:4;17984:18;17976:6;17973:30;17970:56;;;18006:18;;:::i;:::-;17970:56;18056:4;18048:6;18044:17;18036:25;;18116:4;18110;18106:15;18098:23;;17817:311;;;:::o;18151:710::-;18247:5;18272:81;18288:64;18345:6;18288:64;:::i;:::-;18272:81;:::i;:::-;18263:90;;18373:5;18402:6;18395:5;18388:21;18436:4;18429:5;18425:16;18418:23;;18489:4;18481:6;18477:17;18469:6;18465:30;18518:3;18510:6;18507:15;18504:122;;;18537:79;;:::i;:::-;18504:122;18652:6;18635:220;18669:6;18664:3;18661:15;18635:220;;;18744:3;18773:37;18806:3;18794:10;18773:37;:::i;:::-;18768:3;18761:50;18840:4;18835:3;18831:14;18824:21;;18711:144;18695:4;18690:3;18686:14;18679:21;;18635:220;;;18639:21;18253:608;;18151:710;;;;;:::o;18884:370::-;18955:5;19004:3;18997:4;18989:6;18985:17;18981:27;18971:122;;19012:79;;:::i;:::-;18971:122;19129:6;19116:20;19154:94;19244:3;19236:6;19229:4;19221:6;19217:17;19154:94;:::i;:::-;19145:103;;18961:293;18884:370;;;;:::o;19260:311::-;19337:4;19427:18;19419:6;19416:30;19413:56;;;19449:18;;:::i;:::-;19413:56;19499:4;19491:6;19487:17;19479:25;;19559:4;19553;19549:15;19541:23;;19260:311;;;:::o;19594:710::-;19690:5;19715:81;19731:64;19788:6;19731:64;:::i;:::-;19715:81;:::i;:::-;19706:90;;19816:5;19845:6;19838:5;19831:21;19879:4;19872:5;19868:16;19861:23;;19932:4;19924:6;19920:17;19912:6;19908:30;19961:3;19953:6;19950:15;19947:122;;;19980:79;;:::i;:::-;19947:122;20095:6;20078:220;20112:6;20107:3;20104:15;20078:220;;;20187:3;20216:37;20249:3;20237:10;20216:37;:::i;:::-;20211:3;20204:50;20283:4;20278:3;20274:14;20267:21;;20154:144;20138:4;20133:3;20129:14;20122:21;;20078:220;;;20082:21;19696:608;;19594:710;;;;;:::o;20327:370::-;20398:5;20447:3;20440:4;20432:6;20428:17;20424:27;20414:122;;20455:79;;:::i;:::-;20414:122;20572:6;20559:20;20597:94;20687:3;20679:6;20672:4;20664:6;20660:17;20597:94;:::i;:::-;20588:103;;20404:293;20327:370;;;;:::o;20703:894::-;20821:6;20829;20878:2;20866:9;20857:7;20853:23;20849:32;20846:119;;;20884:79;;:::i;:::-;20846:119;21032:1;21021:9;21017:17;21004:31;21062:18;21054:6;21051:30;21048:117;;;21084:79;;:::i;:::-;21048:117;21189:78;21259:7;21250:6;21239:9;21235:22;21189:78;:::i;:::-;21179:88;;20975:302;21344:2;21333:9;21329:18;21316:32;21375:18;21367:6;21364:30;21361:117;;;21397:79;;:::i;:::-;21361:117;21502:78;21572:7;21563:6;21552:9;21548:22;21502:78;:::i;:::-;21492:88;;21287:303;20703:894;;;;;:::o;21603:114::-;21670:6;21704:5;21698:12;21688:22;;21603:114;;;:::o;21723:184::-;21822:11;21856:6;21851:3;21844:19;21896:4;21891:3;21887:14;21872:29;;21723:184;;;;:::o;21913:132::-;21980:4;22003:3;21995:11;;22033:4;22028:3;22024:14;22016:22;;21913:132;;;:::o;22051:108::-;22128:24;22146:5;22128:24;:::i;:::-;22123:3;22116:37;22051:108;;:::o;22165:179::-;22234:10;22255:46;22297:3;22289:6;22255:46;:::i;:::-;22333:4;22328:3;22324:14;22310:28;;22165:179;;;;:::o;22350:113::-;22420:4;22452;22447:3;22443:14;22435:22;;22350:113;;;:::o;22499:732::-;22618:3;22647:54;22695:5;22647:54;:::i;:::-;22717:86;22796:6;22791:3;22717:86;:::i;:::-;22710:93;;22827:56;22877:5;22827:56;:::i;:::-;22906:7;22937:1;22922:284;22947:6;22944:1;22941:13;22922:284;;;23023:6;23017:13;23050:63;23109:3;23094:13;23050:63;:::i;:::-;23043:70;;23136:60;23189:6;23136:60;:::i;:::-;23126:70;;22982:224;22969:1;22966;22962:9;22957:14;;22922:284;;;22926:14;23222:3;23215:10;;22623:608;;;22499:732;;;;:::o;23237:373::-;23380:4;23418:2;23407:9;23403:18;23395:26;;23467:9;23461:4;23457:20;23453:1;23442:9;23438:17;23431:47;23495:108;23598:4;23589:6;23495:108;:::i;:::-;23487:116;;23237:373;;;;:::o;23616:619::-;23693:6;23701;23709;23758:2;23746:9;23737:7;23733:23;23729:32;23726:119;;;23764:79;;:::i;:::-;23726:119;23884:1;23909:53;23954:7;23945:6;23934:9;23930:22;23909:53;:::i;:::-;23899:63;;23855:117;24011:2;24037:53;24082:7;24073:6;24062:9;24058:22;24037:53;:::i;:::-;24027:63;;23982:118;24139:2;24165:53;24210:7;24201:6;24190:9;24186:22;24165:53;:::i;:::-;24155:63;;24110:118;23616:619;;;;;:::o;24241:116::-;24311:21;24326:5;24311:21;:::i;:::-;24304:5;24301:32;24291:60;;24347:1;24344;24337:12;24291:60;24241:116;:::o;24363:133::-;24406:5;24444:6;24431:20;24422:29;;24460:30;24484:5;24460:30;:::i;:::-;24363:133;;;;:::o;24502:468::-;24567:6;24575;24624:2;24612:9;24603:7;24599:23;24595:32;24592:119;;;24630:79;;:::i;:::-;24592:119;24750:1;24775:53;24820:7;24811:6;24800:9;24796:22;24775:53;:::i;:::-;24765:63;;24721:117;24877:2;24903:50;24945:7;24936:6;24925:9;24921:22;24903:50;:::i;:::-;24893:60;;24848:115;24502:468;;;;;:::o;24976:323::-;25032:6;25081:2;25069:9;25060:7;25056:23;25052:32;25049:119;;;25087:79;;:::i;:::-;25049:119;25207:1;25232:50;25274:7;25265:6;25254:9;25250:22;25232:50;:::i;:::-;25222:60;;25178:114;24976:323;;;;:::o;25305:943::-;25400:6;25408;25416;25424;25473:3;25461:9;25452:7;25448:23;25444:33;25441:120;;;25480:79;;:::i;:::-;25441:120;25600:1;25625:53;25670:7;25661:6;25650:9;25646:22;25625:53;:::i;:::-;25615:63;;25571:117;25727:2;25753:53;25798:7;25789:6;25778:9;25774:22;25753:53;:::i;:::-;25743:63;;25698:118;25855:2;25881:53;25926:7;25917:6;25906:9;25902:22;25881:53;:::i;:::-;25871:63;;25826:118;26011:2;26000:9;25996:18;25983:32;26042:18;26034:6;26031:30;26028:117;;;26064:79;;:::i;:::-;26028:117;26169:62;26223:7;26214:6;26203:9;26199:22;26169:62;:::i;:::-;26159:72;;25954:287;25305:943;;;;;;;:::o;26326:876::-;26487:4;26482:3;26478:14;26574:4;26567:5;26563:16;26557:23;26593:63;26650:4;26645:3;26641:14;26627:12;26593:63;:::i;:::-;26502:164;26758:4;26751:5;26747:16;26741:23;26777:61;26832:4;26827:3;26823:14;26809:12;26777:61;:::i;:::-;26676:172;26932:4;26925:5;26921:16;26915:23;26951:57;27002:4;26997:3;26993:14;26979:12;26951:57;:::i;:::-;26858:160;27105:4;27098:5;27094:16;27088:23;27124:61;27179:4;27174:3;27170:14;27156:12;27124:61;:::i;:::-;27028:167;26456:746;26326:876;;:::o;27208:351::-;27365:4;27403:3;27392:9;27388:19;27380:27;;27417:135;27549:1;27538:9;27534:17;27525:6;27417:135;:::i;:::-;27208:351;;;;:::o;27565:474::-;27633:6;27641;27690:2;27678:9;27669:7;27665:23;27661:32;27658:119;;;27696:79;;:::i;:::-;27658:119;27816:1;27841:53;27886:7;27877:6;27866:9;27862:22;27841:53;:::i;:::-;27831:63;;27787:117;27943:2;27969:53;28014:7;28005:6;27994:9;27990:22;27969:53;:::i;:::-;27959:63;;27914:118;27565:474;;;;;:::o;28045:180::-;28093:77;28090:1;28083:88;28190:4;28187:1;28180:15;28214:4;28211:1;28204:15;28231:320;28275:6;28312:1;28306:4;28302:12;28292:22;;28359:1;28353:4;28349:12;28380:18;28370:81;;28436:4;28428:6;28424:17;28414:27;;28370:81;28498:2;28490:6;28487:14;28467:18;28464:38;28461:84;;28517:18;;:::i;:::-;28461:84;28282:269;28231:320;;;:::o;28557:332::-;28678:4;28716:2;28705:9;28701:18;28693:26;;28729:71;28797:1;28786:9;28782:17;28773:6;28729:71;:::i;:::-;28810:72;28878:2;28867:9;28863:18;28854:6;28810:72;:::i;:::-;28557:332;;;;;:::o;28895:137::-;28949:5;28980:6;28974:13;28965:22;;28996:30;29020:5;28996:30;:::i;:::-;28895:137;;;;:::o;29038:345::-;29105:6;29154:2;29142:9;29133:7;29129:23;29125:32;29122:119;;;29160:79;;:::i;:::-;29122:119;29280:1;29305:61;29358:7;29349:6;29338:9;29334:22;29305:61;:::i;:::-;29295:71;;29251:125;29038:345;;;;:::o;29389:94::-;29422:8;29470:5;29466:2;29462:14;29441:35;;29389:94;;;:::o;29489:::-;29528:7;29557:20;29571:5;29557:20;:::i;:::-;29546:31;;29489:94;;;:::o;29589:100::-;29628:7;29657:26;29677:5;29657:26;:::i;:::-;29646:37;;29589:100;;;:::o;29695:157::-;29800:45;29820:24;29838:5;29820:24;:::i;:::-;29800:45;:::i;:::-;29795:3;29788:58;29695:157;;:::o;29858:79::-;29897:7;29926:5;29915:16;;29858:79;;;:::o;29943:157::-;30048:45;30068:24;30086:5;30068:24;:::i;:::-;30048:45;:::i;:::-;30043:3;30036:58;29943:157;;:::o;30106:538::-;30274:3;30289:75;30360:3;30351:6;30289:75;:::i;:::-;30389:2;30384:3;30380:12;30373:19;;30402:75;30473:3;30464:6;30402:75;:::i;:::-;30502:2;30497:3;30493:12;30486:19;;30515:75;30586:3;30577:6;30515:75;:::i;:::-;30615:2;30610:3;30606:12;30599:19;;30635:3;30628:10;;30106:538;;;;;;:::o;30650:221::-;30790:34;30786:1;30778:6;30774:14;30767:58;30859:4;30854:2;30846:6;30842:15;30835:29;30650:221;:::o;30877:366::-;31019:3;31040:67;31104:2;31099:3;31040:67;:::i;:::-;31033:74;;31116:93;31205:3;31116:93;:::i;:::-;31234:2;31229:3;31225:12;31218:19;;30877:366;;;:::o;31249:419::-;31415:4;31453:2;31442:9;31438:18;31430:26;;31502:9;31496:4;31492:20;31488:1;31477:9;31473:17;31466:47;31530:131;31656:4;31530:131;:::i;:::-;31522:139;;31249:419;;;:::o;31674:221::-;31814:34;31810:1;31802:6;31798:14;31791:58;31883:4;31878:2;31870:6;31866:15;31859:29;31674:221;:::o;31901:366::-;32043:3;32064:67;32128:2;32123:3;32064:67;:::i;:::-;32057:74;;32140:93;32229:3;32140:93;:::i;:::-;32258:2;32253:3;32249:12;32242:19;;31901:366;;;:::o;32273:419::-;32439:4;32477:2;32466:9;32462:18;32454:26;;32526:9;32520:4;32516:20;32512:1;32501:9;32497:17;32490:47;32554:131;32680:4;32554:131;:::i;:::-;32546:139;;32273:419;;;:::o;32698:180::-;32746:77;32743:1;32736:88;32843:4;32840:1;32833:15;32867:4;32864:1;32857:15;32884:191;32924:3;32943:20;32961:1;32943:20;:::i;:::-;32938:25;;32977:20;32995:1;32977:20;:::i;:::-;32972:25;;33020:1;33017;33013:9;33006:16;;33041:3;33038:1;33035:10;33032:36;;;33048:18;;:::i;:::-;33032:36;32884:191;;;;:::o;33081:164::-;33221:16;33217:1;33209:6;33205:14;33198:40;33081:164;:::o;33251:366::-;33393:3;33414:67;33478:2;33473:3;33414:67;:::i;:::-;33407:74;;33490:93;33579:3;33490:93;:::i;:::-;33608:2;33603:3;33599:12;33592:19;;33251:366;;;:::o;33623:419::-;33789:4;33827:2;33816:9;33812:18;33804:26;;33876:9;33870:4;33866:20;33862:1;33851:9;33847:17;33840:47;33904:131;34030:4;33904:131;:::i;:::-;33896:139;;33623:419;;;:::o;34048:410::-;34088:7;34111:20;34129:1;34111:20;:::i;:::-;34106:25;;34145:20;34163:1;34145:20;:::i;:::-;34140:25;;34200:1;34197;34193:9;34222:30;34240:11;34222:30;:::i;:::-;34211:41;;34401:1;34392:7;34388:15;34385:1;34382:22;34362:1;34355:9;34335:83;34312:139;;34431:18;;:::i;:::-;34312:139;34096:362;34048:410;;;;:::o;34464:175::-;34604:27;34600:1;34592:6;34588:14;34581:51;34464:175;:::o;34645:366::-;34787:3;34808:67;34872:2;34867:3;34808:67;:::i;:::-;34801:74;;34884:93;34973:3;34884:93;:::i;:::-;35002:2;34997:3;34993:12;34986:19;;34645:366;;;:::o;35017:419::-;35183:4;35221:2;35210:9;35206:18;35198:26;;35270:9;35264:4;35260:20;35256:1;35245:9;35241:17;35234:47;35298:131;35424:4;35298:131;:::i;:::-;35290:139;;35017:419;;;:::o;35442:171::-;35582:23;35578:1;35570:6;35566:14;35559:47;35442:171;:::o;35619:366::-;35761:3;35782:67;35846:2;35841:3;35782:67;:::i;:::-;35775:74;;35858:93;35947:3;35858:93;:::i;:::-;35976:2;35971:3;35967:12;35960:19;;35619:366;;;:::o;35991:419::-;36157:4;36195:2;36184:9;36180:18;36172:26;;36244:9;36238:4;36234:20;36230:1;36219:9;36215:17;36208:47;36272:131;36398:4;36272:131;:::i;:::-;36264:139;;35991:419;;;:::o;36416:167::-;36556:19;36552:1;36544:6;36540:14;36533:43;36416:167;:::o;36589:366::-;36731:3;36752:67;36816:2;36811:3;36752:67;:::i;:::-;36745:74;;36828:93;36917:3;36828:93;:::i;:::-;36946:2;36941:3;36937:12;36930:19;;36589:366;;;:::o;36961:419::-;37127:4;37165:2;37154:9;37150:18;37142:26;;37214:9;37208:4;37204:20;37200:1;37189:9;37185:17;37178:47;37242:131;37368:4;37242:131;:::i;:::-;37234:139;;36961:419;;;:::o;37386:141::-;37435:4;37458:3;37450:11;;37481:3;37478:1;37471:14;37515:4;37512:1;37502:18;37494:26;;37386:141;;;:::o;37533:93::-;37570:6;37617:2;37612;37605:5;37601:14;37597:23;37587:33;;37533:93;;;:::o;37632:107::-;37676:8;37726:5;37720:4;37716:16;37695:37;;37632:107;;;;:::o;37745:393::-;37814:6;37864:1;37852:10;37848:18;37887:97;37917:66;37906:9;37887:97;:::i;:::-;38005:39;38035:8;38024:9;38005:39;:::i;:::-;37993:51;;38077:4;38073:9;38066:5;38062:21;38053:30;;38126:4;38116:8;38112:19;38105:5;38102:30;38092:40;;37821:317;;37745:393;;;;;:::o;38144:142::-;38194:9;38227:53;38245:34;38254:24;38272:5;38254:24;:::i;:::-;38245:34;:::i;:::-;38227:53;:::i;:::-;38214:66;;38144:142;;;:::o;38292:75::-;38335:3;38356:5;38349:12;;38292:75;;;:::o;38373:269::-;38483:39;38514:7;38483:39;:::i;:::-;38544:91;38593:41;38617:16;38593:41;:::i;:::-;38585:6;38578:4;38572:11;38544:91;:::i;:::-;38538:4;38531:105;38449:193;38373:269;;;:::o;38648:73::-;38693:3;38648:73;:::o;38727:189::-;38804:32;;:::i;:::-;38845:65;38903:6;38895;38889:4;38845:65;:::i;:::-;38780:136;38727:189;;:::o;38922:186::-;38982:120;38999:3;38992:5;38989:14;38982:120;;;39053:39;39090:1;39083:5;39053:39;:::i;:::-;39026:1;39019:5;39015:13;39006:22;;38982:120;;;38922:186;;:::o;39114:543::-;39215:2;39210:3;39207:11;39204:446;;;39249:38;39281:5;39249:38;:::i;:::-;39333:29;39351:10;39333:29;:::i;:::-;39323:8;39319:44;39516:2;39504:10;39501:18;39498:49;;;39537:8;39522:23;;39498:49;39560:80;39616:22;39634:3;39616:22;:::i;:::-;39606:8;39602:37;39589:11;39560:80;:::i;:::-;39219:431;;39204:446;39114:543;;;:::o;39663:117::-;39717:8;39767:5;39761:4;39757:16;39736:37;;39663:117;;;;:::o;39786:169::-;39830:6;39863:51;39911:1;39907:6;39899:5;39896:1;39892:13;39863:51;:::i;:::-;39859:56;39944:4;39938;39934:15;39924:25;;39837:118;39786:169;;;;:::o;39960:295::-;40036:4;40182:29;40207:3;40201:4;40182:29;:::i;:::-;40174:37;;40244:3;40241:1;40237:11;40231:4;40228:21;40220:29;;39960:295;;;;:::o;40260:1395::-;40377:37;40410:3;40377:37;:::i;:::-;40479:18;40471:6;40468:30;40465:56;;;40501:18;;:::i;:::-;40465:56;40545:38;40577:4;40571:11;40545:38;:::i;:::-;40630:67;40690:6;40682;40676:4;40630:67;:::i;:::-;40724:1;40748:4;40735:17;;40780:2;40772:6;40769:14;40797:1;40792:618;;;;41454:1;41471:6;41468:77;;;41520:9;41515:3;41511:19;41505:26;41496:35;;41468:77;41571:67;41631:6;41624:5;41571:67;:::i;:::-;41565:4;41558:81;41427:222;40762:887;;40792:618;40844:4;40840:9;40832:6;40828:22;40878:37;40910:4;40878:37;:::i;:::-;40937:1;40951:208;40965:7;40962:1;40959:14;40951:208;;;41044:9;41039:3;41035:19;41029:26;41021:6;41014:42;41095:1;41087:6;41083:14;41073:24;;41142:2;41131:9;41127:18;41114:31;;40988:4;40985:1;40981:12;40976:17;;40951:208;;;41187:6;41178:7;41175:19;41172:179;;;41245:9;41240:3;41236:19;41230:26;41288:48;41330:4;41322:6;41318:17;41307:9;41288:48;:::i;:::-;41280:6;41273:64;41195:156;41172:179;41397:1;41393;41385:6;41381:14;41377:22;41371:4;41364:36;40799:611;;;40762:887;;40352:1303;;;40260:1395;;:::o;41661:180::-;41709:77;41706:1;41699:88;41806:4;41803:1;41796:15;41830:4;41827:1;41820:15;41847:233;41886:3;41909:24;41927:5;41909:24;:::i;:::-;41900:33;;41955:66;41948:5;41945:77;41942:103;;42025:18;;:::i;:::-;41942:103;42072:1;42065:5;42061:13;42054:20;;41847:233;;;:::o;42086:162::-;42226:14;42222:1;42214:6;42210:14;42203:38;42086:162;:::o;42254:366::-;42396:3;42417:67;42481:2;42476:3;42417:67;:::i;:::-;42410:74;;42493:93;42582:3;42493:93;:::i;:::-;42611:2;42606:3;42602:12;42595:19;;42254:366;;;:::o;42626:419::-;42792:4;42830:2;42819:9;42815:18;42807:26;;42879:9;42873:4;42869:20;42865:1;42854:9;42850:17;42843:47;42907:131;43033:4;42907:131;:::i;:::-;42899:139;;42626:419;;;:::o;43051:148::-;43153:11;43190:3;43175:18;;43051:148;;;;:::o;43205:390::-;43311:3;43339:39;43372:5;43339:39;:::i;:::-;43394:89;43476:6;43471:3;43394:89;:::i;:::-;43387:96;;43492:65;43550:6;43545:3;43538:4;43531:5;43527:16;43492:65;:::i;:::-;43582:6;43577:3;43573:16;43566:23;;43315:280;43205:390;;;;:::o;43601:435::-;43781:3;43803:95;43894:3;43885:6;43803:95;:::i;:::-;43796:102;;43915:95;44006:3;43997:6;43915:95;:::i;:::-;43908:102;;44027:3;44020:10;;43601:435;;;;;:::o;44042:147::-;44143:11;44180:3;44165:18;;44042:147;;;;:::o;44195:114::-;;:::o;44315:398::-;44474:3;44495:83;44576:1;44571:3;44495:83;:::i;:::-;44488:90;;44587:93;44676:3;44587:93;:::i;:::-;44705:1;44700:3;44696:11;44689:18;;44315:398;;;:::o;44719:379::-;44903:3;44925:147;45068:3;44925:147;:::i;:::-;44918:154;;45089:3;45082:10;;44719:379;;;:::o;45104:165::-;45244:17;45240:1;45232:6;45228:14;45221:41;45104:165;:::o;45275:366::-;45417:3;45438:67;45502:2;45497:3;45438:67;:::i;:::-;45431:74;;45514:93;45603:3;45514:93;:::i;:::-;45632:2;45627:3;45623:12;45616:19;;45275:366;;;:::o;45647:419::-;45813:4;45851:2;45840:9;45836:18;45828:26;;45900:9;45894:4;45890:20;45886:1;45875:9;45871:17;45864:47;45928:131;46054:4;45928:131;:::i;:::-;45920:139;;45647:419;;;:::o;46072:225::-;46212:34;46208:1;46200:6;46196:14;46189:58;46281:8;46276:2;46268:6;46264:15;46257:33;46072:225;:::o;46303:366::-;46445:3;46466:67;46530:2;46525:3;46466:67;:::i;:::-;46459:74;;46542:93;46631:3;46542:93;:::i;:::-;46660:2;46655:3;46651:12;46644:19;;46303:366;;;:::o;46675:419::-;46841:4;46879:2;46868:9;46864:18;46856:26;;46928:9;46922:4;46918:20;46914:1;46903:9;46899:17;46892:47;46956:131;47082:4;46956:131;:::i;:::-;46948:139;;46675:419;;;:::o;47100:182::-;47240:34;47236:1;47228:6;47224:14;47217:58;47100:182;:::o;47288:366::-;47430:3;47451:67;47515:2;47510:3;47451:67;:::i;:::-;47444:74;;47527:93;47616:3;47527:93;:::i;:::-;47645:2;47640:3;47636:12;47629:19;;47288:366;;;:::o;47660:419::-;47826:4;47864:2;47853:9;47849:18;47841:26;;47913:9;47907:4;47903:20;47899:1;47888:9;47884:17;47877:47;47941:131;48067:4;47941:131;:::i;:::-;47933:139;;47660:419;;;:::o;48085:214::-;48225:66;48221:1;48213:6;48209:14;48202:90;48085:214;:::o;48305:402::-;48465:3;48486:85;48568:2;48563:3;48486:85;:::i;:::-;48479:92;;48580:93;48669:3;48580:93;:::i;:::-;48698:2;48693:3;48689:12;48682:19;;48305:402;;;:::o;48713:77::-;48750:7;48779:5;48768:16;;48713:77;;;:::o;48796:79::-;48835:7;48864:5;48853:16;;48796:79;;;:::o;48881:157::-;48986:45;49006:24;49024:5;49006:24;:::i;:::-;48986:45;:::i;:::-;48981:3;48974:58;48881:157;;:::o;49044:522::-;49257:3;49279:148;49423:3;49279:148;:::i;:::-;49272:155;;49437:75;49508:3;49499:6;49437:75;:::i;:::-;49537:2;49532:3;49528:12;49521:19;;49557:3;49550:10;;49044:522;;;;:::o;49572:180::-;49620:77;49617:1;49610:88;49717:4;49714:1;49707:15;49741:4;49738:1;49731:15;49758:174;49898:26;49894:1;49886:6;49882:14;49875:50;49758:174;:::o;49938:366::-;50080:3;50101:67;50165:2;50160:3;50101:67;:::i;:::-;50094:74;;50177:93;50266:3;50177:93;:::i;:::-;50295:2;50290:3;50286:12;50279:19;;49938:366;;;:::o;50310:419::-;50476:4;50514:2;50503:9;50499:18;50491:26;;50563:9;50557:4;50553:20;50549:1;50538:9;50534:17;50527:47;50591:131;50717:4;50591:131;:::i;:::-;50583:139;;50310:419;;;:::o;50735:181::-;50875:33;50871:1;50863:6;50859:14;50852:57;50735:181;:::o;50922:366::-;51064:3;51085:67;51149:2;51144:3;51085:67;:::i;:::-;51078:74;;51161:93;51250:3;51161:93;:::i;:::-;51279:2;51274:3;51270:12;51263:19;;50922:366;;;:::o;51294:419::-;51460:4;51498:2;51487:9;51483:18;51475:26;;51547:9;51541:4;51537:20;51533:1;51522:9;51518:17;51511:47;51575:131;51701:4;51575:131;:::i;:::-;51567:139;;51294:419;;;:::o;51719:221::-;51859:34;51855:1;51847:6;51843:14;51836:58;51928:4;51923:2;51915:6;51911:15;51904:29;51719:221;:::o;51946:366::-;52088:3;52109:67;52173:2;52168:3;52109:67;:::i;:::-;52102:74;;52185:93;52274:3;52185:93;:::i;:::-;52303:2;52298:3;52294:12;52287:19;;51946:366;;;:::o;52318:419::-;52484:4;52522:2;52511:9;52507:18;52499:26;;52571:9;52565:4;52561:20;52557:1;52546:9;52542:17;52535:47;52599:131;52725:4;52599:131;:::i;:::-;52591:139;;52318:419;;;:::o;52743:221::-;52883:34;52879:1;52871:6;52867:14;52860:58;52952:4;52947:2;52939:6;52935:15;52928:29;52743:221;:::o;52970:366::-;53112:3;53133:67;53197:2;53192:3;53133:67;:::i;:::-;53126:74;;53209:93;53298:3;53209:93;:::i;:::-;53327:2;53322:3;53318:12;53311:19;;52970:366;;;:::o;53342:419::-;53508:4;53546:2;53535:9;53531:18;53523:26;;53595:9;53589:4;53585:20;53581:1;53570:9;53566:17;53559:47;53623:131;53749:4;53623:131;:::i;:::-;53615:139;;53342:419;;;:::o;53767:98::-;53818:6;53852:5;53846:12;53836:22;;53767:98;;;:::o;53871:168::-;53954:11;53988:6;53983:3;53976:19;54028:4;54023:3;54019:14;54004:29;;53871:168;;;;:::o;54045:373::-;54131:3;54159:38;54191:5;54159:38;:::i;:::-;54213:70;54276:6;54271:3;54213:70;:::i;:::-;54206:77;;54292:65;54350:6;54345:3;54338:4;54331:5;54327:16;54292:65;:::i;:::-;54382:29;54404:6;54382:29;:::i;:::-;54377:3;54373:39;54366:46;;54135:283;54045:373;;;;:::o;54424:640::-;54619:4;54657:3;54646:9;54642:19;54634:27;;54671:71;54739:1;54728:9;54724:17;54715:6;54671:71;:::i;:::-;54752:72;54820:2;54809:9;54805:18;54796:6;54752:72;:::i;:::-;54834;54902:2;54891:9;54887:18;54878:6;54834:72;:::i;:::-;54953:9;54947:4;54943:20;54938:2;54927:9;54923:18;54916:48;54981:76;55052:4;55043:6;54981:76;:::i;:::-;54973:84;;54424:640;;;;;;;:::o;55070:141::-;55126:5;55157:6;55151:13;55142:22;;55173:32;55199:5;55173:32;:::i;:::-;55070:141;;;;:::o;55217:349::-;55286:6;55335:2;55323:9;55314:7;55310:23;55306:32;55303:119;;;55341:79;;:::i;:::-;55303:119;55461:1;55486:63;55541:7;55532:6;55521:9;55517:22;55486:63;:::i;:::-;55476:73;;55432:127;55217:349;;;;:::o;55572:118::-;55659:24;55677:5;55659:24;:::i;:::-;55654:3;55647:37;55572:118;;:::o;55696:86::-;55731:7;55771:4;55764:5;55760:16;55749:27;;55696:86;;;:::o;55788:112::-;55871:22;55887:5;55871:22;:::i;:::-;55866:3;55859:35;55788:112;;:::o;55906:545::-;56079:4;56117:3;56106:9;56102:19;56094:27;;56131:71;56199:1;56188:9;56184:17;56175:6;56131:71;:::i;:::-;56212:68;56276:2;56265:9;56261:18;56252:6;56212:68;:::i;:::-;56290:72;56358:2;56347:9;56343:18;56334:6;56290:72;:::i;:::-;56372;56440:2;56429:9;56425:18;56416:6;56372:72;:::i;:::-;55906:545;;;;;;;:::o
Swarm Source
ipfs://6fc28f548dd9370761d2691a3557b6c09bd5cfd86ad5df57eb426f96411bd31b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.