Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,456 WCD
Holders
1,795
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WCDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WorkingClassDegens
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-06 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { computedHash = _efficientHash(computedHash, proofElement); } else { computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } modifier nonReentrant() { require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); _status = _ENTERED; _; _status = _NOT_ENTERED; } } library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; function toString(uint256 value) internal pure returns (string memory) { 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); } 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); } 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); } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The 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 tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the 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 { 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; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev 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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } contract WorkingClassDegens is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; string public uri; uint public status = 0; uint MAX_PER_ADDRESS_PRESALE = 1; uint MAX_PER_ADDRESS_PUBLICSALE = 2; uint COLLECTION_SIZE = 3455; bytes32 public merkleRoot = 0xd24b002ba2f296a4f81b90f56aebf15e34add4ffd6357aee7e98bac1426c4b20; function setMerkleRoot(bytes32 m) public onlyOwner{ merkleRoot = m; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A("Working Class Degens", "WCD") { uri = "https://bafybeid7hrvd44m26xskregmvkfph24kai4sqioy2susre6nlvs2wrl5ga.ipfs.nftstorage.link/"; } function presaleMint(uint256 quantity, bytes32[] calldata merkleproof) public callerIsUser{ require(status == 1, "Whitelist not active!!"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify( merkleproof, merkleRoot, leaf),"Not whitelisted"); require(numberMinted(msg.sender) + quantity <= MAX_PER_ADDRESS_PRESALE, "Minted max on presale!!"); require(totalSupply() <= COLLECTION_SIZE, "SOLD OUT!!"); _safeMint(msg.sender, quantity); } function mint(uint256 quantity) public callerIsUser{ require(status == 2, "Public Sale not active!!"); require(numberMinted(msg.sender) + quantity <= MAX_PER_ADDRESS_PUBLICSALE, "Minted max on Public Sale!!"); require(totalSupply() <= COLLECTION_SIZE, "SOLD OUT!!"); _safeMint(msg.sender, quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function giveaway(address to, uint256 quantity) public onlyOwner callerIsUser{ require(totalSupply() <= COLLECTION_SIZE, "SOLD OUT!!"); _safeMint(to, quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token!"); return bytes(baseURI()).length > 0 ? string(abi.encodePacked(baseURI(), tokenId.toString(), ".json")) : ""; } function baseURI() public view returns (string memory) { return uri; } function setBaseURI(string memory u) public onlyOwner{ uri = u; } function setWalletLimits(uint presale, uint publicSale) public onlyOwner{ MAX_PER_ADDRESS_PRESALE = presale; MAX_PER_ADDRESS_PUBLICSALE = publicSale; } function setStatus(uint s) public onlyOwner{ status = s; } function _startTokenId() pure internal override returns (uint256) { return 1; } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleproof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"u","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"m","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"s","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presale","type":"uint256"},{"internalType":"uint256","name":"publicSale","type":"uint256"}],"name":"setWalletLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600b556001600c556002600d55610d7f600e557fd24b002ba2f296a4f81b90f56aebf15e34add4ffd6357aee7e98bac1426c4b2060001b600f553480156200004d57600080fd5b506040518060400160405280601481526020017f576f726b696e6720436c61737320446567656e730000000000000000000000008152506040518060400160405280600381526020017f5743440000000000000000000000000000000000000000000000000000000000815250620000da620000ce6200016460201b60201c565b6200016c60201b60201c565b8160039080519060200190620000f292919062000239565b5080600490805190602001906200010b92919062000239565b506200011c6200023060201b60201c565b600181905550505060016009819055506040518060800160405280605981526020016200387260599139600a90805190602001906200015d92919062000239565b506200034e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200024790620002e9565b90600052602060002090601f0160209004810192826200026b5760008555620002b7565b82601f106200028657805160ff1916838001178555620002b7565b82800160010185558215620002b7579182015b82811115620002b657825182559160200191906001019062000299565b5b509050620002c69190620002ca565b5090565b5b80821115620002e5576000816000905550600101620002cb565b5090565b600060028204905060018216806200030257607f821691505b602082108114156200031957620003186200031f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613514806200035e6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063e3e1e8ef11610071578063e3e1e8ef14610504578063e985e9c514610520578063eac989f814610550578063f2fde38b1461056e576101cf565b8063a22cb4651461046c578063b88d4fde14610488578063c87b56dd146104a4578063dc33e681146104d4576101cf565b80637cb64759116100de5780637cb64759146103f85780638da5cb5b1461041457806395d89b4114610432578063a0712d6814610450576101cf565b80636c0360eb146103a057806370a08231146103be578063715018a6146103ee576101cf565b806323b872dd1161017157806342842e0e1161014b57806342842e0e1461031c57806355f804b3146103385780636352211e1461035457806369ba1a7514610384576101cf565b806323b872dd146102c65780632eb4a7ab146102e257806338cc7c4c14610300576101cf565b8063081812fc116101ad578063081812fc1461023e578063095ea7b31461026e57806318160ddd1461028a578063200d2ed2146102a8576101cf565b806301ffc9a7146101d4578063050225ea1461020457806306fdde0314610220575b600080fd5b6101ee60048036038101906101e991906127a4565b61058a565b6040516101fb9190612c3c565b60405180910390f35b61021e60048036038101906102199190612737565b61061c565b005b610228610760565b6040516102359190612c72565b60405180910390f35b61025860048036038101906102539190612847565b6107f2565b6040516102659190612bd5565b60405180910390f35b61028860048036038101906102839190612737565b61086e565b005b6102926109af565b60405161029f9190612dd4565b60405180910390f35b6102b06109c6565b6040516102bd9190612dd4565b60405180910390f35b6102e060048036038101906102db9190612621565b6109cc565b005b6102ea610cf1565b6040516102f79190612c57565b60405180910390f35b61031a600480360381019061031591906128d4565b610cf7565b005b61033660048036038101906103319190612621565b610d85565b005b610352600480360381019061034d91906127fe565b610da5565b005b61036e60048036038101906103699190612847565b610e3b565b60405161037b9190612bd5565b60405180910390f35b61039e60048036038101906103999190612847565b610e4d565b005b6103a8610ed3565b6040516103b59190612c72565b60405180910390f35b6103d860048036038101906103d391906125b4565b610f65565b6040516103e59190612dd4565b60405180910390f35b6103f661101e565b005b610412600480360381019061040d9190612777565b6110a6565b005b61041c61112c565b6040516104299190612bd5565b60405180910390f35b61043a611155565b6040516104479190612c72565b60405180910390f35b61046a60048036038101906104659190612847565b6111e7565b005b610486600480360381019061048191906126f7565b61134b565b005b6104a2600480360381019061049d9190612674565b6114c3565b005b6104be60048036038101906104b99190612847565b611536565b6040516104cb9190612c72565b60405180910390f35b6104ee60048036038101906104e991906125b4565b6115de565b6040516104fb9190612dd4565b60405180910390f35b61051e60048036038101906105199190612874565b6115f0565b005b61053a600480360381019061053591906125e1565b61180f565b6040516105479190612c3c565b60405180910390f35b6105586118a3565b6040516105659190612c72565b60405180910390f35b610588600480360381019061058391906125b4565b611931565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106155750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610624611a29565b73ffffffffffffffffffffffffffffffffffffffff1661064261112c565b73ffffffffffffffffffffffffffffffffffffffff1614610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f90612d74565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd90612d14565b60405180910390fd5b600e546107116109af565b1115610752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074990612cf4565b60405180910390fd5b61075c8282611a31565b5050565b60606003805461076f90613034565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90613034565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107fd82611a4f565b610833576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610e3b565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a611aae565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c1611aae565b61180f565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109b9611ab6565b6002546001540303905090565b600b5481565b60006109d782611abf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a4a84611b8d565b91509150610a608187610a5b611aae565b611baf565b610aac57610a7586610a70611aae565b61180f565b610aab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b208686866001611bf3565b8015610b2b57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf985610bd5888887611bf9565b7c020000000000000000000000000000000000000000000000000000000017611c21565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c81576000600185019050600060056000838152602001908152602001600020541415610c7f576001548114610c7e578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce98686866001611c4c565b505050505050565b600f5481565b610cff611a29565b73ffffffffffffffffffffffffffffffffffffffff16610d1d61112c565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90612d74565b60405180910390fd5b81600c8190555080600d819055505050565b610da0838383604051806020016040528060008152506114c3565b505050565b610dad611a29565b73ffffffffffffffffffffffffffffffffffffffff16610dcb61112c565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890612d74565b60405180910390fd5b80600a9080519060200190610e3792919061235d565b5050565b6000610e4682611abf565b9050919050565b610e55611a29565b73ffffffffffffffffffffffffffffffffffffffff16610e7361112c565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090612d74565b60405180910390fd5b80600b8190555050565b6060600a8054610ee290613034565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90613034565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fcd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611026611a29565b73ffffffffffffffffffffffffffffffffffffffff1661104461112c565b73ffffffffffffffffffffffffffffffffffffffff161461109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190612d74565b60405180910390fd5b6110a46000611c52565b565b6110ae611a29565b73ffffffffffffffffffffffffffffffffffffffff166110cc61112c565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990612d74565b60405180910390fd5b80600f8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461116490613034565b80601f016020809104026020016040519081016040528092919081815260200182805461119090613034565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612d14565b60405180910390fd5b6002600b541461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190612d94565b60405180910390fd5b600d54816112a7336115de565b6112b19190612eb9565b11156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990612d54565b60405180910390fd5b600e546112fd6109af565b111561133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133590612cf4565b60405180910390fd5b6113483382611a31565b50565b611353611aae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006113c5611aae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611472611aae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b79190612c3c565b60405180910390a35050565b6114ce8484846109cc565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611530576114f984848484611d16565b61152f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061154182611a4f565b611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790612cd4565b60405180910390fd5b600061158a610ed3565b51116115a557604051806020016040528060008152506115d7565b6115ad610ed3565b6115b683611e76565b6040516020016115c7929190612ba6565b6040516020818303038152906040525b9050919050565b60006115e982611fd7565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590612d14565b60405180910390fd5b6001600b54146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612c94565b60405180910390fd5b6000336040516020016116b69190612b8b565b60405160208183030381529060405280519060200120905061171c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f548361202e565b61175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290612d34565b60405180910390fd5b600c5484611768336115de565b6117729190612eb9565b11156117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90612db4565b60405180910390fd5b600e546117be6109af565b11156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690612cf4565b60405180910390fd5b6118093385611a31565b50505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a80546118b090613034565b80601f01602080910402602001604051908101604052809291908181526020018280546118dc90613034565b80156119295780601f106118fe57610100808354040283529160200191611929565b820191906000526020600020905b81548152906001019060200180831161190c57829003601f168201915b505050505081565b611939611a29565b73ffffffffffffffffffffffffffffffffffffffff1661195761112c565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490612d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490612cb4565b60405180910390fd5b611a2681611c52565b50565b600033905090565b611a4b828260405180602001604052806000815250612045565b5050565b600081611a5a611ab6565b11158015611a69575060015482105b8015611aa7575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ace611ab6565b11611b5657600154811015611b555760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b53575b6000811415611b49576005600083600190039350838152602001908152602001600020549050611b1e565b8092505050611b88565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c108686846120e3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3c611aae565b8786866040518563ffffffff1660e01b8152600401611d5e9493929190612bf0565b602060405180830381600087803b158015611d7857600080fd5b505af1925050508015611da957506040513d601f19601f82011682018060405250810190611da691906127d1565b60015b611e23573d8060008114611dd9576040519150601f19603f3d011682016040523d82523d6000602084013e611dde565b606091505b50600081511415611e1b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ebe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fd2565b600082905060005b60008214611ef0578080611ed990613097565b915050600a82611ee99190612f0f565b9150611ec6565b60008167ffffffffffffffff811115611f0c57611f0b6131f1565b5b6040519080825280601f01601f191660200182016040528015611f3e5781602001600182028036833780820191505090505b5090505b60008514611fcb57600182611f579190612f40565b9150600a85611f669190613104565b6030611f729190612eb9565b60f81b818381518110611f8857611f876131c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fc49190612f0f565b9450611f42565b8093505050505b919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008261203b85846120ec565b1490509392505050565b61204f8383612161565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120de5760006001549050600083820390505b6120906000868380600101945086611d16565b6120c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061207d5781600154146120db57600080fd5b50505b505050565b60009392505050565b60008082905060005b8451811015612156576000858281518110612113576121126131c2565b5b602002602001015190508083116121355761212e8382612336565b9250612142565b61213f8184612336565b92505b50808061214e90613097565b9150506120f5565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561220a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122176000848385611bf3565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061228e8361227f6000866000611bf9565b6122888561234d565b17611c21565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122b2578060018190555050506123316000848385611c4c565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461236990613034565b90600052602060002090601f01602090048101928261238b57600085556123d2565b82601f106123a457805160ff19168380011785556123d2565b828001600101855582156123d2579182015b828111156123d15782518255916020019190600101906123b6565b5b5090506123df91906123e3565b5090565b5b808211156123fc5760008160009055506001016123e4565b5090565b600061241361240e84612e14565b612def565b90508281526020810184848401111561242f5761242e61322f565b5b61243a848285612ff2565b509392505050565b600061245561245084612e45565b612def565b9050828152602081018484840111156124715761247061322f565b5b61247c848285612ff2565b509392505050565b6000813590506124938161346b565b92915050565b60008083601f8401126124af576124ae613225565b5b8235905067ffffffffffffffff8111156124cc576124cb613220565b5b6020830191508360208202830111156124e8576124e761322a565b5b9250929050565b6000813590506124fe81613482565b92915050565b60008135905061251381613499565b92915050565b600081359050612528816134b0565b92915050565b60008151905061253d816134b0565b92915050565b600082601f83011261255857612557613225565b5b8135612568848260208601612400565b91505092915050565b600082601f83011261258657612585613225565b5b8135612596848260208601612442565b91505092915050565b6000813590506125ae816134c7565b92915050565b6000602082840312156125ca576125c9613239565b5b60006125d884828501612484565b91505092915050565b600080604083850312156125f8576125f7613239565b5b600061260685828601612484565b925050602061261785828601612484565b9150509250929050565b60008060006060848603121561263a57612639613239565b5b600061264886828701612484565b935050602061265986828701612484565b925050604061266a8682870161259f565b9150509250925092565b6000806000806080858703121561268e5761268d613239565b5b600061269c87828801612484565b94505060206126ad87828801612484565b93505060406126be8782880161259f565b925050606085013567ffffffffffffffff8111156126df576126de613234565b5b6126eb87828801612543565b91505092959194509250565b6000806040838503121561270e5761270d613239565b5b600061271c85828601612484565b925050602061272d858286016124ef565b9150509250929050565b6000806040838503121561274e5761274d613239565b5b600061275c85828601612484565b925050602061276d8582860161259f565b9150509250929050565b60006020828403121561278d5761278c613239565b5b600061279b84828501612504565b91505092915050565b6000602082840312156127ba576127b9613239565b5b60006127c884828501612519565b91505092915050565b6000602082840312156127e7576127e6613239565b5b60006127f58482850161252e565b91505092915050565b60006020828403121561281457612813613239565b5b600082013567ffffffffffffffff81111561283257612831613234565b5b61283e84828501612571565b91505092915050565b60006020828403121561285d5761285c613239565b5b600061286b8482850161259f565b91505092915050565b60008060006040848603121561288d5761288c613239565b5b600061289b8682870161259f565b935050602084013567ffffffffffffffff8111156128bc576128bb613234565b5b6128c886828701612499565b92509250509250925092565b600080604083850312156128eb576128ea613239565b5b60006128f98582860161259f565b925050602061290a8582860161259f565b9150509250929050565b61291d81612f74565b82525050565b61293461292f82612f74565b6130e0565b82525050565b61294381612f86565b82525050565b61295281612f92565b82525050565b600061296382612e76565b61296d8185612e8c565b935061297d818560208601613001565b6129868161323e565b840191505092915050565b600061299c82612e81565b6129a68185612e9d565b93506129b6818560208601613001565b6129bf8161323e565b840191505092915050565b60006129d582612e81565b6129df8185612eae565b93506129ef818560208601613001565b80840191505092915050565b6000612a08601683612e9d565b9150612a138261325c565b602082019050919050565b6000612a2b602683612e9d565b9150612a3682613285565b604082019050919050565b6000612a4e603083612e9d565b9150612a59826132d4565b604082019050919050565b6000612a71600a83612e9d565b9150612a7c82613323565b602082019050919050565b6000612a94601e83612e9d565b9150612a9f8261334c565b602082019050919050565b6000612ab7600f83612e9d565b9150612ac282613375565b602082019050919050565b6000612ada601b83612e9d565b9150612ae58261339e565b602082019050919050565b6000612afd600583612eae565b9150612b08826133c7565b600582019050919050565b6000612b20602083612e9d565b9150612b2b826133f0565b602082019050919050565b6000612b43601883612e9d565b9150612b4e82613419565b602082019050919050565b6000612b66601783612e9d565b9150612b7182613442565b602082019050919050565b612b8581612fe8565b82525050565b6000612b978284612923565b60148201915081905092915050565b6000612bb282856129ca565b9150612bbe82846129ca565b9150612bc982612af0565b91508190509392505050565b6000602082019050612bea6000830184612914565b92915050565b6000608082019050612c056000830187612914565b612c126020830186612914565b612c1f6040830185612b7c565b8181036060830152612c318184612958565b905095945050505050565b6000602082019050612c51600083018461293a565b92915050565b6000602082019050612c6c6000830184612949565b92915050565b60006020820190508181036000830152612c8c8184612991565b905092915050565b60006020820190508181036000830152612cad816129fb565b9050919050565b60006020820190508181036000830152612ccd81612a1e565b9050919050565b60006020820190508181036000830152612ced81612a41565b9050919050565b60006020820190508181036000830152612d0d81612a64565b9050919050565b60006020820190508181036000830152612d2d81612a87565b9050919050565b60006020820190508181036000830152612d4d81612aaa565b9050919050565b60006020820190508181036000830152612d6d81612acd565b9050919050565b60006020820190508181036000830152612d8d81612b13565b9050919050565b60006020820190508181036000830152612dad81612b36565b9050919050565b60006020820190508181036000830152612dcd81612b59565b9050919050565b6000602082019050612de96000830184612b7c565b92915050565b6000612df9612e0a565b9050612e058282613066565b919050565b6000604051905090565b600067ffffffffffffffff821115612e2f57612e2e6131f1565b5b612e388261323e565b9050602081019050919050565b600067ffffffffffffffff821115612e6057612e5f6131f1565b5b612e698261323e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ec482612fe8565b9150612ecf83612fe8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0457612f03613135565b5b828201905092915050565b6000612f1a82612fe8565b9150612f2583612fe8565b925082612f3557612f34613164565b5b828204905092915050565b6000612f4b82612fe8565b9150612f5683612fe8565b925082821015612f6957612f68613135565b5b828203905092915050565b6000612f7f82612fc8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561301f578082015181840152602081019050613004565b8381111561302e576000848401525b50505050565b6000600282049050600182168061304c57607f821691505b602082108114156130605761305f613193565b5b50919050565b61306f8261323e565b810181811067ffffffffffffffff8211171561308e5761308d6131f1565b5b80604052505050565b60006130a282612fe8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130d5576130d4613135565b5b600182019050919050565b60006130eb826130f2565b9050919050565b60006130fd8261324f565b9050919050565b600061310f82612fe8565b915061311a83612fe8565b92508261312a57613129613164565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206e6f7420616374697665212100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f534f4c44204f5554212100000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d696e746564206d6178206f6e205075626c69632053616c6521210000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632053616c65206e6f742061637469766521210000000000000000600082015250565b7f4d696e746564206d6178206f6e2070726573616c652121000000000000000000600082015250565b61347481612f74565b811461347f57600080fd5b50565b61348b81612f86565b811461349657600080fd5b50565b6134a281612f92565b81146134ad57600080fd5b50565b6134b981612f9c565b81146134c457600080fd5b50565b6134d081612fe8565b81146134db57600080fd5b5056fea264697066735822122084103a3adab4e691b95e6ff68a2ffb4dec75bd939fe9d26a708adadf543d558c64736f6c6343000807003368747470733a2f2f6261667962656964376872766434346d323678736b7265676d766b66706832346b6169347371696f79327375737265366e6c76733277726c3567612e697066732e6e667473746f726167652e6c696e6b2f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063e3e1e8ef11610071578063e3e1e8ef14610504578063e985e9c514610520578063eac989f814610550578063f2fde38b1461056e576101cf565b8063a22cb4651461046c578063b88d4fde14610488578063c87b56dd146104a4578063dc33e681146104d4576101cf565b80637cb64759116100de5780637cb64759146103f85780638da5cb5b1461041457806395d89b4114610432578063a0712d6814610450576101cf565b80636c0360eb146103a057806370a08231146103be578063715018a6146103ee576101cf565b806323b872dd1161017157806342842e0e1161014b57806342842e0e1461031c57806355f804b3146103385780636352211e1461035457806369ba1a7514610384576101cf565b806323b872dd146102c65780632eb4a7ab146102e257806338cc7c4c14610300576101cf565b8063081812fc116101ad578063081812fc1461023e578063095ea7b31461026e57806318160ddd1461028a578063200d2ed2146102a8576101cf565b806301ffc9a7146101d4578063050225ea1461020457806306fdde0314610220575b600080fd5b6101ee60048036038101906101e991906127a4565b61058a565b6040516101fb9190612c3c565b60405180910390f35b61021e60048036038101906102199190612737565b61061c565b005b610228610760565b6040516102359190612c72565b60405180910390f35b61025860048036038101906102539190612847565b6107f2565b6040516102659190612bd5565b60405180910390f35b61028860048036038101906102839190612737565b61086e565b005b6102926109af565b60405161029f9190612dd4565b60405180910390f35b6102b06109c6565b6040516102bd9190612dd4565b60405180910390f35b6102e060048036038101906102db9190612621565b6109cc565b005b6102ea610cf1565b6040516102f79190612c57565b60405180910390f35b61031a600480360381019061031591906128d4565b610cf7565b005b61033660048036038101906103319190612621565b610d85565b005b610352600480360381019061034d91906127fe565b610da5565b005b61036e60048036038101906103699190612847565b610e3b565b60405161037b9190612bd5565b60405180910390f35b61039e60048036038101906103999190612847565b610e4d565b005b6103a8610ed3565b6040516103b59190612c72565b60405180910390f35b6103d860048036038101906103d391906125b4565b610f65565b6040516103e59190612dd4565b60405180910390f35b6103f661101e565b005b610412600480360381019061040d9190612777565b6110a6565b005b61041c61112c565b6040516104299190612bd5565b60405180910390f35b61043a611155565b6040516104479190612c72565b60405180910390f35b61046a60048036038101906104659190612847565b6111e7565b005b610486600480360381019061048191906126f7565b61134b565b005b6104a2600480360381019061049d9190612674565b6114c3565b005b6104be60048036038101906104b99190612847565b611536565b6040516104cb9190612c72565b60405180910390f35b6104ee60048036038101906104e991906125b4565b6115de565b6040516104fb9190612dd4565b60405180910390f35b61051e60048036038101906105199190612874565b6115f0565b005b61053a600480360381019061053591906125e1565b61180f565b6040516105479190612c3c565b60405180910390f35b6105586118a3565b6040516105659190612c72565b60405180910390f35b610588600480360381019061058391906125b4565b611931565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106155750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610624611a29565b73ffffffffffffffffffffffffffffffffffffffff1661064261112c565b73ffffffffffffffffffffffffffffffffffffffff1614610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f90612d74565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd90612d14565b60405180910390fd5b600e546107116109af565b1115610752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074990612cf4565b60405180910390fd5b61075c8282611a31565b5050565b60606003805461076f90613034565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90613034565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107fd82611a4f565b610833576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610e3b565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a611aae565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c1611aae565b61180f565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109b9611ab6565b6002546001540303905090565b600b5481565b60006109d782611abf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a4a84611b8d565b91509150610a608187610a5b611aae565b611baf565b610aac57610a7586610a70611aae565b61180f565b610aab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b208686866001611bf3565b8015610b2b57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf985610bd5888887611bf9565b7c020000000000000000000000000000000000000000000000000000000017611c21565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c81576000600185019050600060056000838152602001908152602001600020541415610c7f576001548114610c7e578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce98686866001611c4c565b505050505050565b600f5481565b610cff611a29565b73ffffffffffffffffffffffffffffffffffffffff16610d1d61112c565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90612d74565b60405180910390fd5b81600c8190555080600d819055505050565b610da0838383604051806020016040528060008152506114c3565b505050565b610dad611a29565b73ffffffffffffffffffffffffffffffffffffffff16610dcb61112c565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890612d74565b60405180910390fd5b80600a9080519060200190610e3792919061235d565b5050565b6000610e4682611abf565b9050919050565b610e55611a29565b73ffffffffffffffffffffffffffffffffffffffff16610e7361112c565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090612d74565b60405180910390fd5b80600b8190555050565b6060600a8054610ee290613034565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90613034565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fcd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611026611a29565b73ffffffffffffffffffffffffffffffffffffffff1661104461112c565b73ffffffffffffffffffffffffffffffffffffffff161461109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190612d74565b60405180910390fd5b6110a46000611c52565b565b6110ae611a29565b73ffffffffffffffffffffffffffffffffffffffff166110cc61112c565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990612d74565b60405180910390fd5b80600f8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461116490613034565b80601f016020809104026020016040519081016040528092919081815260200182805461119090613034565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612d14565b60405180910390fd5b6002600b541461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190612d94565b60405180910390fd5b600d54816112a7336115de565b6112b19190612eb9565b11156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990612d54565b60405180910390fd5b600e546112fd6109af565b111561133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133590612cf4565b60405180910390fd5b6113483382611a31565b50565b611353611aae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006113c5611aae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611472611aae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b79190612c3c565b60405180910390a35050565b6114ce8484846109cc565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611530576114f984848484611d16565b61152f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061154182611a4f565b611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790612cd4565b60405180910390fd5b600061158a610ed3565b51116115a557604051806020016040528060008152506115d7565b6115ad610ed3565b6115b683611e76565b6040516020016115c7929190612ba6565b6040516020818303038152906040525b9050919050565b60006115e982611fd7565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590612d14565b60405180910390fd5b6001600b54146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a90612c94565b60405180910390fd5b6000336040516020016116b69190612b8b565b60405160208183030381529060405280519060200120905061171c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f548361202e565b61175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290612d34565b60405180910390fd5b600c5484611768336115de565b6117729190612eb9565b11156117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90612db4565b60405180910390fd5b600e546117be6109af565b11156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690612cf4565b60405180910390fd5b6118093385611a31565b50505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a80546118b090613034565b80601f01602080910402602001604051908101604052809291908181526020018280546118dc90613034565b80156119295780601f106118fe57610100808354040283529160200191611929565b820191906000526020600020905b81548152906001019060200180831161190c57829003601f168201915b505050505081565b611939611a29565b73ffffffffffffffffffffffffffffffffffffffff1661195761112c565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490612d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490612cb4565b60405180910390fd5b611a2681611c52565b50565b600033905090565b611a4b828260405180602001604052806000815250612045565b5050565b600081611a5a611ab6565b11158015611a69575060015482105b8015611aa7575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ace611ab6565b11611b5657600154811015611b555760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b53575b6000811415611b49576005600083600190039350838152602001908152602001600020549050611b1e565b8092505050611b88565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c108686846120e3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3c611aae565b8786866040518563ffffffff1660e01b8152600401611d5e9493929190612bf0565b602060405180830381600087803b158015611d7857600080fd5b505af1925050508015611da957506040513d601f19601f82011682018060405250810190611da691906127d1565b60015b611e23573d8060008114611dd9576040519150601f19603f3d011682016040523d82523d6000602084013e611dde565b606091505b50600081511415611e1b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ebe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fd2565b600082905060005b60008214611ef0578080611ed990613097565b915050600a82611ee99190612f0f565b9150611ec6565b60008167ffffffffffffffff811115611f0c57611f0b6131f1565b5b6040519080825280601f01601f191660200182016040528015611f3e5781602001600182028036833780820191505090505b5090505b60008514611fcb57600182611f579190612f40565b9150600a85611f669190613104565b6030611f729190612eb9565b60f81b818381518110611f8857611f876131c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fc49190612f0f565b9450611f42565b8093505050505b919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008261203b85846120ec565b1490509392505050565b61204f8383612161565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120de5760006001549050600083820390505b6120906000868380600101945086611d16565b6120c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061207d5781600154146120db57600080fd5b50505b505050565b60009392505050565b60008082905060005b8451811015612156576000858281518110612113576121126131c2565b5b602002602001015190508083116121355761212e8382612336565b9250612142565b61213f8184612336565b92505b50808061214e90613097565b9150506120f5565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561220a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122176000848385611bf3565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061228e8361227f6000866000611bf9565b6122888561234d565b17611c21565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122b2578060018190555050506123316000848385611c4c565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461236990613034565b90600052602060002090601f01602090048101928261238b57600085556123d2565b82601f106123a457805160ff19168380011785556123d2565b828001600101855582156123d2579182015b828111156123d15782518255916020019190600101906123b6565b5b5090506123df91906123e3565b5090565b5b808211156123fc5760008160009055506001016123e4565b5090565b600061241361240e84612e14565b612def565b90508281526020810184848401111561242f5761242e61322f565b5b61243a848285612ff2565b509392505050565b600061245561245084612e45565b612def565b9050828152602081018484840111156124715761247061322f565b5b61247c848285612ff2565b509392505050565b6000813590506124938161346b565b92915050565b60008083601f8401126124af576124ae613225565b5b8235905067ffffffffffffffff8111156124cc576124cb613220565b5b6020830191508360208202830111156124e8576124e761322a565b5b9250929050565b6000813590506124fe81613482565b92915050565b60008135905061251381613499565b92915050565b600081359050612528816134b0565b92915050565b60008151905061253d816134b0565b92915050565b600082601f83011261255857612557613225565b5b8135612568848260208601612400565b91505092915050565b600082601f83011261258657612585613225565b5b8135612596848260208601612442565b91505092915050565b6000813590506125ae816134c7565b92915050565b6000602082840312156125ca576125c9613239565b5b60006125d884828501612484565b91505092915050565b600080604083850312156125f8576125f7613239565b5b600061260685828601612484565b925050602061261785828601612484565b9150509250929050565b60008060006060848603121561263a57612639613239565b5b600061264886828701612484565b935050602061265986828701612484565b925050604061266a8682870161259f565b9150509250925092565b6000806000806080858703121561268e5761268d613239565b5b600061269c87828801612484565b94505060206126ad87828801612484565b93505060406126be8782880161259f565b925050606085013567ffffffffffffffff8111156126df576126de613234565b5b6126eb87828801612543565b91505092959194509250565b6000806040838503121561270e5761270d613239565b5b600061271c85828601612484565b925050602061272d858286016124ef565b9150509250929050565b6000806040838503121561274e5761274d613239565b5b600061275c85828601612484565b925050602061276d8582860161259f565b9150509250929050565b60006020828403121561278d5761278c613239565b5b600061279b84828501612504565b91505092915050565b6000602082840312156127ba576127b9613239565b5b60006127c884828501612519565b91505092915050565b6000602082840312156127e7576127e6613239565b5b60006127f58482850161252e565b91505092915050565b60006020828403121561281457612813613239565b5b600082013567ffffffffffffffff81111561283257612831613234565b5b61283e84828501612571565b91505092915050565b60006020828403121561285d5761285c613239565b5b600061286b8482850161259f565b91505092915050565b60008060006040848603121561288d5761288c613239565b5b600061289b8682870161259f565b935050602084013567ffffffffffffffff8111156128bc576128bb613234565b5b6128c886828701612499565b92509250509250925092565b600080604083850312156128eb576128ea613239565b5b60006128f98582860161259f565b925050602061290a8582860161259f565b9150509250929050565b61291d81612f74565b82525050565b61293461292f82612f74565b6130e0565b82525050565b61294381612f86565b82525050565b61295281612f92565b82525050565b600061296382612e76565b61296d8185612e8c565b935061297d818560208601613001565b6129868161323e565b840191505092915050565b600061299c82612e81565b6129a68185612e9d565b93506129b6818560208601613001565b6129bf8161323e565b840191505092915050565b60006129d582612e81565b6129df8185612eae565b93506129ef818560208601613001565b80840191505092915050565b6000612a08601683612e9d565b9150612a138261325c565b602082019050919050565b6000612a2b602683612e9d565b9150612a3682613285565b604082019050919050565b6000612a4e603083612e9d565b9150612a59826132d4565b604082019050919050565b6000612a71600a83612e9d565b9150612a7c82613323565b602082019050919050565b6000612a94601e83612e9d565b9150612a9f8261334c565b602082019050919050565b6000612ab7600f83612e9d565b9150612ac282613375565b602082019050919050565b6000612ada601b83612e9d565b9150612ae58261339e565b602082019050919050565b6000612afd600583612eae565b9150612b08826133c7565b600582019050919050565b6000612b20602083612e9d565b9150612b2b826133f0565b602082019050919050565b6000612b43601883612e9d565b9150612b4e82613419565b602082019050919050565b6000612b66601783612e9d565b9150612b7182613442565b602082019050919050565b612b8581612fe8565b82525050565b6000612b978284612923565b60148201915081905092915050565b6000612bb282856129ca565b9150612bbe82846129ca565b9150612bc982612af0565b91508190509392505050565b6000602082019050612bea6000830184612914565b92915050565b6000608082019050612c056000830187612914565b612c126020830186612914565b612c1f6040830185612b7c565b8181036060830152612c318184612958565b905095945050505050565b6000602082019050612c51600083018461293a565b92915050565b6000602082019050612c6c6000830184612949565b92915050565b60006020820190508181036000830152612c8c8184612991565b905092915050565b60006020820190508181036000830152612cad816129fb565b9050919050565b60006020820190508181036000830152612ccd81612a1e565b9050919050565b60006020820190508181036000830152612ced81612a41565b9050919050565b60006020820190508181036000830152612d0d81612a64565b9050919050565b60006020820190508181036000830152612d2d81612a87565b9050919050565b60006020820190508181036000830152612d4d81612aaa565b9050919050565b60006020820190508181036000830152612d6d81612acd565b9050919050565b60006020820190508181036000830152612d8d81612b13565b9050919050565b60006020820190508181036000830152612dad81612b36565b9050919050565b60006020820190508181036000830152612dcd81612b59565b9050919050565b6000602082019050612de96000830184612b7c565b92915050565b6000612df9612e0a565b9050612e058282613066565b919050565b6000604051905090565b600067ffffffffffffffff821115612e2f57612e2e6131f1565b5b612e388261323e565b9050602081019050919050565b600067ffffffffffffffff821115612e6057612e5f6131f1565b5b612e698261323e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ec482612fe8565b9150612ecf83612fe8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0457612f03613135565b5b828201905092915050565b6000612f1a82612fe8565b9150612f2583612fe8565b925082612f3557612f34613164565b5b828204905092915050565b6000612f4b82612fe8565b9150612f5683612fe8565b925082821015612f6957612f68613135565b5b828203905092915050565b6000612f7f82612fc8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561301f578082015181840152602081019050613004565b8381111561302e576000848401525b50505050565b6000600282049050600182168061304c57607f821691505b602082108114156130605761305f613193565b5b50919050565b61306f8261323e565b810181811067ffffffffffffffff8211171561308e5761308d6131f1565b5b80604052505050565b60006130a282612fe8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130d5576130d4613135565b5b600182019050919050565b60006130eb826130f2565b9050919050565b60006130fd8261324f565b9050919050565b600061310f82612fe8565b915061311a83612fe8565b92508261312a57613129613164565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57686974656c697374206e6f7420616374697665212100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f534f4c44204f5554212100000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4d696e746564206d6178206f6e205075626c69632053616c6521210000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c69632053616c65206e6f742061637469766521210000000000000000600082015250565b7f4d696e746564206d6178206f6e2070726573616c652121000000000000000000600082015250565b61347481612f74565b811461347f57600080fd5b50565b61348b81612f86565b811461349657600080fd5b50565b6134a281612f92565b81146134ad57600080fd5b50565b6134b981612f9c565b81146134c457600080fd5b50565b6134d081612fe8565b81146134db57600080fd5b5056fea264697066735822122084103a3adab4e691b95e6ff68a2ffb4dec75bd939fe9d26a708adadf543d558c64736f6c63430008070033
Deployed Bytecode Sourcemap
47969:2829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17837:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49760:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23484:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25430:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24978:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16891:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48100:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34695:2800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48246:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50440:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26320:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50353:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23273:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50622:72;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50261:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18516:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3602:103;;;:::i;:::-;;48347:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3379:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23653:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49287:344;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25706:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26576:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49953:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49639:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48744:535;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26085:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48074:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17837:615;17922:4;18237:10;18222:25;;:11;:25;;;;:102;;;;18314:10;18299:25;;:11;:25;;;;18222:102;:179;;;;18391:10;18376:25;;:11;:25;;;;18222:179;18202:199;;17837:615;;;:::o;49760:185::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48494:10:::1;48481:23;;:9;:23;;;48473:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49873:15:::2;;49856:13;:11;:13::i;:::-;:32;;49848:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49914:23;49924:2;49928:8;49914:9;:23::i;:::-;49760:185:::0;;:::o;23484:100::-;23538:13;23571:5;23564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23484:100;:::o;25430:204::-;25498:7;25523:16;25531:7;25523;:16::i;:::-;25518:64;;25548:34;;;;;;;;;;;;;;25518:64;25602:15;:24;25618:7;25602:24;;;;;;;;;;;;;;;;;;;;;25595:31;;25430:204;;;:::o;24978:386::-;25051:13;25067:16;25075:7;25067;:16::i;:::-;25051:32;;25123:5;25100:28;;:19;:17;:19::i;:::-;:28;;;25096:175;;25148:44;25165:5;25172:19;:17;:19::i;:::-;25148:16;:44::i;:::-;25143:128;;25220:35;;;;;;;;;;;;;;25143:128;25096:175;25310:2;25283:15;:24;25299:7;25283:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25348:7;25344:2;25328:28;;25337:5;25328:28;;;;;;;;;;;;25040:324;24978:386;;:::o;16891:315::-;16944:7;17172:15;:13;:15::i;:::-;17157:12;;17141:13;;:28;:46;17134:53;;16891:315;:::o;48100:22::-;;;;:::o;34695:2800::-;34829:27;34859;34878:7;34859:18;:27::i;:::-;34829:57;;34944:4;34903:45;;34919:19;34903:45;;;34899:86;;34957:28;;;;;;;;;;;;;;34899:86;34999:27;35028:23;35055:28;35075:7;35055:19;:28::i;:::-;34998:85;;;;35183:62;35202:15;35219:4;35225:19;:17;:19::i;:::-;35183:18;:62::i;:::-;35178:174;;35265:43;35282:4;35288:19;:17;:19::i;:::-;35265:16;:43::i;:::-;35260:92;;35317:35;;;;;;;;;;;;;;35260:92;35178:174;35383:1;35369:16;;:2;:16;;;35365:52;;;35394:23;;;;;;;;;;;;;;35365:52;35430:43;35452:4;35458:2;35462:7;35471:1;35430:21;:43::i;:::-;35566:15;35563:160;;;35706:1;35685:19;35678:30;35563:160;36101:18;:24;36120:4;36101:24;;;;;;;;;;;;;;;;36099:26;;;;;;;;;;;;36170:18;:22;36189:2;36170:22;;;;;;;;;;;;;;;;36168:24;;;;;;;;;;;36492:145;36529:2;36577:45;36592:4;36598:2;36602:19;36577:14;:45::i;:::-;14119:8;36550:72;36492:18;:145::i;:::-;36463:17;:26;36481:7;36463:26;;;;;;;;;;;:174;;;;36807:1;14119:8;36757:19;:46;:51;36753:626;;;36829:19;36861:1;36851:7;:11;36829:33;;37018:1;36984:17;:30;37002:11;36984:30;;;;;;;;;;;;:35;36980:384;;;37122:13;;37107:11;:28;37103:242;;37302:19;37269:17;:30;37287:11;37269:30;;;;;;;;;;;:52;;;;37103:242;36980:384;36810:569;36753:626;37426:7;37422:2;37407:27;;37416:4;37407:27;;;;;;;;;;;;37445:42;37466:4;37472:2;37476:7;37485:1;37445:20;:42::i;:::-;34818:2677;;;34695:2800;;;:::o;48246:94::-;;;;:::o;50440:174::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50549:7:::1;50523:23;:33;;;;50596:10;50567:26;:39;;;;50440:174:::0;;:::o;26320:185::-;26458:39;26475:4;26481:2;26485:7;26458:39;;;;;;;;;;;;:16;:39::i;:::-;26320:185;;;:::o;50353:79::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50423:1:::1;50417:3;:7;;;;;;;;;;;;:::i;:::-;;50353:79:::0;:::o;23273:144::-;23337:7;23380:27;23399:7;23380:18;:27::i;:::-;23357:52;;23273:144;;;:::o;50622:72::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50685:1:::1;50676:6;:10;;;;50622:72:::0;:::o;50261:84::-;50301:13;50334:3;50327:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50261:84;:::o;18516:224::-;18580:7;18621:1;18604:19;;:5;:19;;;18600:60;;;18632:28;;;;;;;;;;;;;;18600:60;13071:13;18678:18;:25;18697:5;18678:25;;;;;;;;;;;;;;;;:54;18671:61;;18516:224;;;:::o;3602:103::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3667:30:::1;3694:1;3667:18;:30::i;:::-;3602:103::o:0;48347:83::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48421:1:::1;48408:10;:14;;;;48347:83:::0;:::o;3379:87::-;3425:7;3452:6;;;;;;;;;;;3445:13;;3379:87;:::o;23653:104::-;23709:13;23742:7;23735:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23653:104;:::o;49287:344::-;48494:10;48481:23;;:9;:23;;;48473:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49367:1:::1;49357:6;;:11;49349:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49455:26;;49443:8;49416:24;49429:10;49416:12;:24::i;:::-;:35;;;;:::i;:::-;:65;;49408:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;49549:15;;49532:13;:11;:13::i;:::-;:32;;49524:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49592:31;49602:10;49614:8;49592:9;:31::i;:::-;49287:344:::0;:::o;25706:308::-;25817:19;:17;:19::i;:::-;25805:31;;:8;:31;;;25801:61;;;25845:17;;;;;;;;;;;;;;25801:61;25927:8;25875:18;:39;25894:19;:17;:19::i;:::-;25875:39;;;;;;;;;;;;;;;:49;25915:8;25875:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25987:8;25951:55;;25966:19;:17;:19::i;:::-;25951:55;;;25997:8;25951:55;;;;;;:::i;:::-;;;;;;;;25706:308;;:::o;26576:399::-;26743:31;26756:4;26762:2;26766:7;26743:12;:31::i;:::-;26807:1;26789:2;:14;;;:19;26785:183;;26828:56;26859:4;26865:2;26869:7;26878:5;26828:30;:56::i;:::-;26823:145;;26912:40;;;;;;;;;;;;;;26823:145;26785:183;26576:399;;;;:::o;49953:300::-;50026:13;50060:16;50068:7;50060;:16::i;:::-;50052:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50172:1;50152:9;:7;:9::i;:::-;50146:23;:27;:99;;;;;;;;;;;;;;;;;50200:9;:7;:9::i;:::-;50211:18;:7;:16;:18::i;:::-;50183:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50146:99;50139:106;;49953:300;;;:::o;49639:113::-;49697:7;49724:20;49738:5;49724:13;:20::i;:::-;49717:27;;49639:113;;;:::o;48744:535::-;48494:10;48481:23;;:9;:23;;;48473:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48863:1:::1;48853:6;;:11;48845:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;48902:12;48944:10;48927:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48917:39;;;;;;48902:54;;48975:50;48995:11;;48975:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49008:10;;49020:4;48975:18;:50::i;:::-;48967:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49102:23;;49090:8;49063:24;49076:10;49063:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;49055:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49189:15;;49172:13;:11;:13::i;:::-;:32;;49164:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49240:31;49250:10;49262:8;49240:9;:31::i;:::-;48834:445;48744:535:::0;;;:::o;26085:164::-;26182:4;26206:18;:25;26225:5;26206:25;;;;;;;;;;;;;;;:35;26232:8;26206:35;;;;;;;;;;;;;;;;;;;;;;;;;26199:42;;26085:164;;;;:::o;48074:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3714:201::-;3524:12;:10;:12::i;:::-;3513:23;;:7;:5;:7::i;:::-;:23;;;3505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3823:1:::1;3803:22;;:8;:22;;;;3795:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3879:28;3898:8;3879:18;:28::i;:::-;3714:201:::0;:::o;2922:98::-;2975:7;3002:10;2995:17;;2922:98;:::o;27587:104::-;27656:27;27666:2;27670:8;27656:27;;;;;;;;;;;;:9;:27::i;:::-;27587:104;;:::o;27230:273::-;27287:4;27343:7;27324:15;:13;:15::i;:::-;:26;;:66;;;;;27377:13;;27367:7;:23;27324:66;:152;;;;;27475:1;13841:8;27428:17;:26;27446:7;27428:26;;;;;;;;;;;;:43;:48;27324:152;27304:172;;27230:273;;;:::o;45791:105::-;45851:7;45878:10;45871:17;;45791:105;:::o;50702:93::-;50759:7;50786:1;50779:8;;50702:93;:::o;20190:1129::-;20257:7;20277:12;20292:7;20277:22;;20360:4;20341:15;:13;:15::i;:::-;:23;20337:915;;20394:13;;20387:4;:20;20383:869;;;20432:14;20449:17;:23;20467:4;20449:23;;;;;;;;;;;;20432:40;;20565:1;13841:8;20538:6;:23;:28;20534:699;;;21057:113;21074:1;21064:6;:11;21057:113;;;21117:17;:25;21135:6;;;;;;;21117:25;;;;;;;;;;;;21108:34;;21057:113;;;21203:6;21196:13;;;;;;20534:699;20409:843;20383:869;20337:915;21280:31;;;;;;;;;;;;;;20190:1129;;;;:::o;33031:652::-;33126:27;33155:23;33196:53;33252:15;33196:71;;33438:7;33432:4;33425:21;33473:22;33467:4;33460:36;33549:4;33543;33533:21;33510:44;;33645:19;33639:26;33620:45;;33376:300;33031:652;;;:::o;33796:645::-;33938:11;34100:15;34094:4;34090:26;34082:34;;34259:15;34248:9;34244:31;34231:44;;34406:15;34395:9;34392:30;34385:4;34374:9;34371:19;34368:55;34358:65;;33796:645;;;;;:::o;44624:159::-;;;;;:::o;42936:309::-;43071:7;43091:16;14242:3;43117:19;:40;;43091:67;;14242:3;43184:31;43195:4;43201:2;43205:9;43184:10;:31::i;:::-;43176:40;;:61;;43169:68;;;42936:309;;;;;:::o;22764:447::-;22844:14;23012:15;23005:5;23001:27;22992:36;;23186:5;23172:11;23148:22;23144:40;23141:51;23134:5;23131:62;23121:72;;22764:447;;;;:::o;45442:158::-;;;;;:::o;3924:191::-;3998:16;4017:6;;;;;;;;;;;3998:25;;4043:8;4034:6;;:17;;;;;;;;;;;;;;;;;;4098:8;4067:40;;4088:8;4067:40;;;;;;;;;;;;3987:128;3924:191;:::o;41446:716::-;41609:4;41655:2;41630:45;;;41676:19;:17;:19::i;:::-;41697:4;41703:7;41712:5;41630:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41626:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41930:1;41913:6;:13;:18;41909:235;;;41959:40;;;;;;;;;;;;;;41909:235;42102:6;42096:13;42087:6;42083:2;42079:15;42072:38;41626:529;41799:54;;;41789:64;;;:6;:64;;;;41782:71;;;41446:716;;;;;;:::o;1539:533::-;1595:13;1635:1;1626:5;:10;1622:53;;;1653:10;;;;;;;;;;;;;;;;;;;;;1622:53;1685:12;1700:5;1685:20;;1716:14;1741:78;1756:1;1748:4;:9;1741:78;;1774:8;;;;;:::i;:::-;;;;1805:2;1797:10;;;;;:::i;:::-;;;1741:78;;;1829:19;1861:6;1851:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1829:39;;1879:154;1895:1;1886:5;:10;1879:154;;1923:1;1913:11;;;;;:::i;:::-;;;1990:2;1982:5;:10;;;;:::i;:::-;1969:2;:24;;;;:::i;:::-;1956:39;;1939:6;1946;1939:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2019:2;2010:11;;;;;:::i;:::-;;;1879:154;;;2057:6;2043:21;;;;;1539:533;;;;:::o;18822:176::-;18883:7;13071:13;13208:2;18911:18;:25;18930:5;18911:25;;;;;;;;;;;;;;;;:49;;18910:80;18903:87;;18822:176;;;:::o;86:190::-;211:4;264;235:25;248:5;255:4;235:12;:25::i;:::-;:33;228:40;;86:190;;;;;:::o;28107:681::-;28230:19;28236:2;28240:8;28230:5;:19::i;:::-;28309:1;28291:2;:14;;;:19;28287:483;;28331:11;28345:13;;28331:27;;28377:13;28399:8;28393:3;:14;28377:30;;28426:233;28457:62;28496:1;28500:2;28504:7;;;;;;28513:5;28457:30;:62::i;:::-;28452:167;;28555:40;;;;;;;;;;;;;;28452:167;28654:3;28646:5;:11;28426:233;;28741:3;28724:13;;:20;28720:34;;28746:8;;;28720:34;28312:458;;28287:483;28107:681;;;:::o;43821:147::-;43958:6;43821:147;;;;;:::o;281:517::-;364:7;384:20;407:4;384:27;;427:9;422:339;446:5;:12;442:1;:16;422:339;;;480:20;503:5;509:1;503:8;;;;;;;;:::i;:::-;;;;;;;;480:31;;546:12;530;:28;526:224;;594:42;609:12;623;594:14;:42::i;:::-;579:57;;526:224;;;692:42;707:12;721;692:14;:42::i;:::-;677:57;;526:224;465:296;460:3;;;;;:::i;:::-;;;;422:339;;;;778:12;771:19;;;281:517;;;;:::o;29061:1529::-;29126:20;29149:13;;29126:36;;29191:1;29177:16;;:2;:16;;;29173:48;;;29202:19;;;;;;;;;;;;;;29173:48;29248:1;29236:8;:13;29232:44;;;29258:18;;;;;;;;;;;;;;29232:44;29289:61;29319:1;29323:2;29327:12;29341:8;29289:21;:61::i;:::-;29832:1;13208:2;29803:1;:25;;29802:31;29790:8;:44;29764:18;:22;29783:2;29764:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30111:139;30148:2;30202:33;30225:1;30229:2;30233:1;30202:14;:33::i;:::-;30169:30;30190:8;30169:20;:30::i;:::-;:66;30111:18;:139::i;:::-;30077:17;:31;30095:12;30077:31;;;;;;;;;;;:173;;;;30267:15;30285:12;30267:30;;30312:11;30341:8;30326:12;:23;30312:37;;30364:101;30416:9;;;;;;30412:2;30391:35;;30408:1;30391:35;;;;;;;;;;;;30460:3;30450:7;:13;30364:101;;30497:3;30481:13;:19;;;;29538:974;;30522:60;30551:1;30555:2;30559:12;30573:8;30522:20;:60::i;:::-;29115:1475;29061:1529;;:::o;806:224::-;874:13;937:1;931:4;924:15;966:1;960:4;953:15;1007:4;1001;991:21;982:30;;806:224;;;;:::o;24594:322::-;24664:14;24895:1;24885:8;24882:15;24857:23;24853:45;24843:55;;24594:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:119;;;6470:79;;:::i;:::-;6432:119;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6356:329;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6691:327;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:119;;;7148:79;;:::i;:::-;7110:119;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7024:349;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:117;;;7703:79;;:::i;:::-;7667:117;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7379:509;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:119;;;8008:79;;:::i;:::-;7970:119;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7894:329;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:119;;;8395:79;;:::i;:::-;8357:119;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:117;;;8723:79;;:::i;:::-;8687:117;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8229:704;;;;;:::o;8939:474::-;9007:6;9015;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9190:1;9215:53;9260:7;9251:6;9240:9;9236:22;9215:53;:::i;:::-;9205:63;;9161:117;9317:2;9343:53;9388:7;9379:6;9368:9;9364:22;9343:53;:::i;:::-;9333:63;;9288:118;8939:474;;;;;:::o;9419:118::-;9506:24;9524:5;9506:24;:::i;:::-;9501:3;9494:37;9419:118;;:::o;9543:157::-;9648:45;9668:24;9686:5;9668:24;:::i;:::-;9648:45;:::i;:::-;9643:3;9636:58;9543:157;;:::o;9706:109::-;9787:21;9802:5;9787:21;:::i;:::-;9782:3;9775:34;9706:109;;:::o;9821:118::-;9908:24;9926:5;9908:24;:::i;:::-;9903:3;9896:37;9821:118;;:::o;9945:360::-;10031:3;10059:38;10091:5;10059:38;:::i;:::-;10113:70;10176:6;10171:3;10113:70;:::i;:::-;10106:77;;10192:52;10237:6;10232:3;10225:4;10218:5;10214:16;10192:52;:::i;:::-;10269:29;10291:6;10269:29;:::i;:::-;10264:3;10260:39;10253:46;;10035:270;9945:360;;;;:::o;10311:364::-;10399:3;10427:39;10460:5;10427:39;:::i;:::-;10482:71;10546:6;10541:3;10482:71;:::i;:::-;10475:78;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10403:272;10311:364;;;;:::o;10681:377::-;10787:3;10815:39;10848:5;10815:39;:::i;:::-;10870:89;10952:6;10947:3;10870:89;:::i;:::-;10863:96;;10968:52;11013:6;11008:3;11001:4;10994:5;10990:16;10968:52;:::i;:::-;11045:6;11040:3;11036:16;11029:23;;10791:267;10681:377;;;;:::o;11064:366::-;11206:3;11227:67;11291:2;11286:3;11227:67;:::i;:::-;11220:74;;11303:93;11392:3;11303:93;:::i;:::-;11421:2;11416:3;11412:12;11405:19;;11064:366;;;:::o;11436:::-;11578:3;11599:67;11663:2;11658:3;11599:67;:::i;:::-;11592:74;;11675:93;11764:3;11675:93;:::i;:::-;11793:2;11788:3;11784:12;11777:19;;11436:366;;;:::o;11808:::-;11950:3;11971:67;12035:2;12030:3;11971:67;:::i;:::-;11964:74;;12047:93;12136:3;12047:93;:::i;:::-;12165:2;12160:3;12156:12;12149:19;;11808:366;;;:::o;12180:::-;12322:3;12343:67;12407:2;12402:3;12343:67;:::i;:::-;12336:74;;12419:93;12508:3;12419:93;:::i;:::-;12537:2;12532:3;12528:12;12521:19;;12180:366;;;:::o;12552:::-;12694:3;12715:67;12779:2;12774:3;12715:67;:::i;:::-;12708:74;;12791:93;12880:3;12791:93;:::i;:::-;12909:2;12904:3;12900:12;12893:19;;12552:366;;;:::o;12924:::-;13066:3;13087:67;13151:2;13146:3;13087:67;:::i;:::-;13080:74;;13163:93;13252:3;13163:93;:::i;:::-;13281:2;13276:3;13272:12;13265:19;;12924:366;;;:::o;13296:::-;13438:3;13459:67;13523:2;13518:3;13459:67;:::i;:::-;13452:74;;13535:93;13624:3;13535:93;:::i;:::-;13653:2;13648:3;13644:12;13637:19;;13296:366;;;:::o;13668:400::-;13828:3;13849:84;13931:1;13926:3;13849:84;:::i;:::-;13842:91;;13942:93;14031:3;13942:93;:::i;:::-;14060:1;14055:3;14051:11;14044:18;;13668:400;;;:::o;14074:366::-;14216:3;14237:67;14301:2;14296:3;14237:67;:::i;:::-;14230:74;;14313:93;14402:3;14313:93;:::i;:::-;14431:2;14426:3;14422:12;14415:19;;14074:366;;;:::o;14446:::-;14588:3;14609:67;14673:2;14668:3;14609:67;:::i;:::-;14602:74;;14685:93;14774:3;14685:93;:::i;:::-;14803:2;14798:3;14794:12;14787:19;;14446:366;;;:::o;14818:::-;14960:3;14981:67;15045:2;15040:3;14981:67;:::i;:::-;14974:74;;15057:93;15146:3;15057:93;:::i;:::-;15175:2;15170:3;15166:12;15159:19;;14818:366;;;:::o;15190:118::-;15277:24;15295:5;15277:24;:::i;:::-;15272:3;15265:37;15190:118;;:::o;15314:256::-;15426:3;15441:75;15512:3;15503:6;15441:75;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15561:3;15554:10;;15314:256;;;;:::o;15576:701::-;15857:3;15879:95;15970:3;15961:6;15879:95;:::i;:::-;15872:102;;15991:95;16082:3;16073:6;15991:95;:::i;:::-;15984:102;;16103:148;16247:3;16103:148;:::i;:::-;16096:155;;16268:3;16261:10;;15576:701;;;;;:::o;16283:222::-;16376:4;16414:2;16403:9;16399:18;16391:26;;16427:71;16495:1;16484:9;16480:17;16471:6;16427:71;:::i;:::-;16283:222;;;;:::o;16511:640::-;16706:4;16744:3;16733:9;16729:19;16721:27;;16758:71;16826:1;16815:9;16811:17;16802:6;16758:71;:::i;:::-;16839:72;16907:2;16896:9;16892:18;16883:6;16839:72;:::i;:::-;16921;16989:2;16978:9;16974:18;16965:6;16921:72;:::i;:::-;17040:9;17034:4;17030:20;17025:2;17014:9;17010:18;17003:48;17068:76;17139:4;17130:6;17068:76;:::i;:::-;17060:84;;16511:640;;;;;;;:::o;17157:210::-;17244:4;17282:2;17271:9;17267:18;17259:26;;17295:65;17357:1;17346:9;17342:17;17333:6;17295:65;:::i;:::-;17157:210;;;;:::o;17373:222::-;17466:4;17504:2;17493:9;17489:18;17481:26;;17517:71;17585:1;17574:9;17570:17;17561:6;17517:71;:::i;:::-;17373:222;;;;:::o;17601:313::-;17714:4;17752:2;17741:9;17737:18;17729:26;;17801:9;17795:4;17791:20;17787:1;17776:9;17772:17;17765:47;17829:78;17902:4;17893:6;17829:78;:::i;:::-;17821:86;;17601:313;;;;:::o;17920:419::-;18086:4;18124:2;18113:9;18109:18;18101:26;;18173:9;18167:4;18163:20;18159:1;18148:9;18144:17;18137:47;18201:131;18327:4;18201:131;:::i;:::-;18193:139;;17920:419;;;:::o;18345:::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:::-;18936:4;18974:2;18963:9;18959:18;18951:26;;19023:9;19017:4;19013:20;19009:1;18998:9;18994:17;18987:47;19051:131;19177:4;19051:131;:::i;:::-;19043:139;;18770:419;;;:::o;19195:::-;19361:4;19399:2;19388:9;19384:18;19376:26;;19448:9;19442:4;19438:20;19434:1;19423:9;19419:17;19412:47;19476:131;19602:4;19476:131;:::i;:::-;19468:139;;19195:419;;;:::o;19620:::-;19786:4;19824:2;19813:9;19809:18;19801:26;;19873:9;19867:4;19863:20;19859:1;19848:9;19844:17;19837:47;19901:131;20027:4;19901:131;:::i;:::-;19893:139;;19620:419;;;:::o;20045:::-;20211:4;20249:2;20238:9;20234:18;20226:26;;20298:9;20292:4;20288:20;20284:1;20273:9;20269:17;20262:47;20326:131;20452:4;20326:131;:::i;:::-;20318:139;;20045:419;;;:::o;20470:::-;20636:4;20674:2;20663:9;20659:18;20651:26;;20723:9;20717:4;20713:20;20709:1;20698:9;20694:17;20687:47;20751:131;20877:4;20751:131;:::i;:::-;20743:139;;20470:419;;;:::o;20895:::-;21061:4;21099:2;21088:9;21084:18;21076:26;;21148:9;21142:4;21138:20;21134:1;21123:9;21119:17;21112:47;21176:131;21302:4;21176:131;:::i;:::-;21168:139;;20895:419;;;:::o;21320:::-;21486:4;21524:2;21513:9;21509:18;21501:26;;21573:9;21567:4;21563:20;21559:1;21548:9;21544:17;21537:47;21601:131;21727:4;21601:131;:::i;:::-;21593:139;;21320:419;;;:::o;21745:::-;21911:4;21949:2;21938:9;21934:18;21926:26;;21998:9;21992:4;21988:20;21984:1;21973:9;21969:17;21962:47;22026:131;22152:4;22026:131;:::i;:::-;22018:139;;21745:419;;;:::o;22170:222::-;22263:4;22301:2;22290:9;22286:18;22278:26;;22314:71;22382:1;22371:9;22367:17;22358:6;22314:71;:::i;:::-;22170:222;;;;:::o;22398:129::-;22432:6;22459:20;;:::i;:::-;22449:30;;22488:33;22516:4;22508:6;22488:33;:::i;:::-;22398:129;;;:::o;22533:75::-;22566:6;22599:2;22593:9;22583:19;;22533:75;:::o;22614:307::-;22675:4;22765:18;22757:6;22754:30;22751:56;;;22787:18;;:::i;:::-;22751:56;22825:29;22847:6;22825:29;:::i;:::-;22817:37;;22909:4;22903;22899:15;22891:23;;22614:307;;;:::o;22927:308::-;22989:4;23079:18;23071:6;23068:30;23065:56;;;23101:18;;:::i;:::-;23065:56;23139:29;23161:6;23139:29;:::i;:::-;23131:37;;23223:4;23217;23213:15;23205:23;;22927:308;;;:::o;23241:98::-;23292:6;23326:5;23320:12;23310:22;;23241:98;;;:::o;23345:99::-;23397:6;23431:5;23425:12;23415:22;;23345:99;;;:::o;23450:168::-;23533:11;23567:6;23562:3;23555:19;23607:4;23602:3;23598:14;23583:29;;23450:168;;;;:::o;23624:169::-;23708:11;23742:6;23737:3;23730:19;23782:4;23777:3;23773:14;23758:29;;23624:169;;;;:::o;23799:148::-;23901:11;23938:3;23923:18;;23799:148;;;;:::o;23953:305::-;23993:3;24012:20;24030:1;24012:20;:::i;:::-;24007:25;;24046:20;24064:1;24046:20;:::i;:::-;24041:25;;24200:1;24132:66;24128:74;24125:1;24122:81;24119:107;;;24206:18;;:::i;:::-;24119:107;24250:1;24247;24243:9;24236:16;;23953:305;;;;:::o;24264:185::-;24304:1;24321:20;24339:1;24321:20;:::i;:::-;24316:25;;24355:20;24373:1;24355:20;:::i;:::-;24350:25;;24394:1;24384:35;;24399:18;;:::i;:::-;24384:35;24441:1;24438;24434:9;24429:14;;24264:185;;;;:::o;24455:191::-;24495:4;24515:20;24533:1;24515:20;:::i;:::-;24510:25;;24549:20;24567:1;24549:20;:::i;:::-;24544:25;;24588:1;24585;24582:8;24579:34;;;24593:18;;:::i;:::-;24579:34;24638:1;24635;24631:9;24623:17;;24455:191;;;;:::o;24652:96::-;24689:7;24718:24;24736:5;24718:24;:::i;:::-;24707:35;;24652:96;;;:::o;24754:90::-;24788:7;24831:5;24824:13;24817:21;24806:32;;24754:90;;;:::o;24850:77::-;24887:7;24916:5;24905:16;;24850:77;;;:::o;24933:149::-;24969:7;25009:66;25002:5;24998:78;24987:89;;24933:149;;;:::o;25088:126::-;25125:7;25165:42;25158:5;25154:54;25143:65;;25088:126;;;:::o;25220:77::-;25257:7;25286:5;25275:16;;25220:77;;;:::o;25303:154::-;25387:6;25382:3;25377;25364:30;25449:1;25440:6;25435:3;25431:16;25424:27;25303:154;;;:::o;25463:307::-;25531:1;25541:113;25555:6;25552:1;25549:13;25541:113;;;25640:1;25635:3;25631:11;25625:18;25621:1;25616:3;25612:11;25605:39;25577:2;25574:1;25570:10;25565:15;;25541:113;;;25672:6;25669:1;25666:13;25663:101;;;25752:1;25743:6;25738:3;25734:16;25727:27;25663:101;25512:258;25463:307;;;:::o;25776:320::-;25820:6;25857:1;25851:4;25847:12;25837:22;;25904:1;25898:4;25894:12;25925:18;25915:81;;25981:4;25973:6;25969:17;25959:27;;25915:81;26043:2;26035:6;26032:14;26012:18;26009:38;26006:84;;;26062:18;;:::i;:::-;26006:84;25827:269;25776:320;;;:::o;26102:281::-;26185:27;26207:4;26185:27;:::i;:::-;26177:6;26173:40;26315:6;26303:10;26300:22;26279:18;26267:10;26264:34;26261:62;26258:88;;;26326:18;;:::i;:::-;26258:88;26366:10;26362:2;26355:22;26145:238;26102:281;;:::o;26389:233::-;26428:3;26451:24;26469:5;26451:24;:::i;:::-;26442:33;;26497:66;26490:5;26487:77;26484:103;;;26567:18;;:::i;:::-;26484:103;26614:1;26607:5;26603:13;26596:20;;26389:233;;;:::o;26628:100::-;26667:7;26696:26;26716:5;26696:26;:::i;:::-;26685:37;;26628:100;;;:::o;26734:94::-;26773:7;26802:20;26816:5;26802:20;:::i;:::-;26791:31;;26734:94;;;:::o;26834:176::-;26866:1;26883:20;26901:1;26883:20;:::i;:::-;26878:25;;26917:20;26935:1;26917:20;:::i;:::-;26912:25;;26956:1;26946:35;;26961:18;;:::i;:::-;26946:35;27002:1;26999;26995:9;26990:14;;26834:176;;;;:::o;27016:180::-;27064:77;27061:1;27054:88;27161:4;27158:1;27151:15;27185:4;27182:1;27175:15;27202:180;27250:77;27247:1;27240:88;27347:4;27344:1;27337:15;27371:4;27368:1;27361:15;27388:180;27436:77;27433:1;27426:88;27533:4;27530:1;27523:15;27557:4;27554:1;27547:15;27574:180;27622:77;27619:1;27612:88;27719:4;27716:1;27709:15;27743:4;27740:1;27733:15;27760:180;27808:77;27805:1;27798:88;27905:4;27902:1;27895:15;27929:4;27926:1;27919:15;27946:117;28055:1;28052;28045:12;28069:117;28178:1;28175;28168:12;28192:117;28301:1;28298;28291:12;28315:117;28424:1;28421;28414:12;28438:117;28547:1;28544;28537:12;28561:117;28670:1;28667;28660:12;28684:102;28725:6;28776:2;28772:7;28767:2;28760:5;28756:14;28752:28;28742:38;;28684:102;;;:::o;28792:94::-;28825:8;28873:5;28869:2;28865:14;28844:35;;28792:94;;;:::o;28892:172::-;29032:24;29028:1;29020:6;29016:14;29009:48;28892:172;:::o;29070:225::-;29210:34;29206:1;29198:6;29194:14;29187:58;29279:8;29274:2;29266:6;29262:15;29255:33;29070:225;:::o;29301:235::-;29441:34;29437:1;29429:6;29425:14;29418:58;29510:18;29505:2;29497:6;29493:15;29486:43;29301:235;:::o;29542:160::-;29682:12;29678:1;29670:6;29666:14;29659:36;29542:160;:::o;29708:180::-;29848:32;29844:1;29836:6;29832:14;29825:56;29708:180;:::o;29894:165::-;30034:17;30030:1;30022:6;30018:14;30011:41;29894:165;:::o;30065:177::-;30205:29;30201:1;30193:6;30189:14;30182:53;30065:177;:::o;30248:155::-;30388:7;30384:1;30376:6;30372:14;30365:31;30248:155;:::o;30409:182::-;30549:34;30545:1;30537:6;30533:14;30526:58;30409:182;:::o;30597:174::-;30737:26;30733:1;30725:6;30721:14;30714:50;30597:174;:::o;30777:173::-;30917:25;30913:1;30905:6;30901:14;30894:49;30777:173;:::o;30956:122::-;31029:24;31047:5;31029:24;:::i;:::-;31022:5;31019:35;31009:63;;31068:1;31065;31058:12;31009:63;30956:122;:::o;31084:116::-;31154:21;31169:5;31154:21;:::i;:::-;31147:5;31144:32;31134:60;;31190:1;31187;31180:12;31134:60;31084:116;:::o;31206:122::-;31279:24;31297:5;31279:24;:::i;:::-;31272:5;31269:35;31259:63;;31318:1;31315;31308:12;31259:63;31206:122;:::o;31334:120::-;31406:23;31423:5;31406:23;:::i;:::-;31399:5;31396:34;31386:62;;31444:1;31441;31434:12;31386:62;31334:120;:::o;31460:122::-;31533:24;31551:5;31533:24;:::i;:::-;31526:5;31523:35;31513:63;;31572:1;31569;31562:12;31513:63;31460:122;:::o
Swarm Source
ipfs://84103a3adab4e691b95e6ff68a2ffb4dec75bd939fe9d26a708adadf543d558c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.