Token Parmeus Career Match
Overview ERC721
Total Supply:
0 PCRRM
Holders:
2 addresses
Profile Summary
Contract:
Balance
396387739119734000000000000000000000000... PCRRM
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ParmeusCareer
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; contract ParmeusCareer is ERC721URIStorage { using Counters for Counters.Counter; Counters.Counter private _tokenIds; using EnumerableSet for EnumerableSet.UintSet; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; address private _contractManager; constructor() ERC721("Parmeus Career Match", "PCRRM"){ _tokenIds.increment(); // token id start from 1 _contractManager = msg.sender; } function mint(string memory _cid, uint8 v, bytes32 r, bytes32 s ) public returns(bool success){ // reconstruct origin sign message, only correct sender can mint string memory originSignMsg = string(abi.encodePacked( Strings.toHexString(msg.sender), _cid)); _requireSignatureFromManager(originSignMsg, v, r, s); uint256 newTokenId = _tokenIds.current(); _safeMint(msg.sender, newTokenId); _setTokenURI(newTokenId, string(abi.encodePacked('ipfs://', _cid))); _tokenIds.increment(); return true; } function burnNft(uint256 tokenId) public{ _burn(tokenId); } /** * get calller's nft */ function getSelfNfts() public view returns(string[] memory tokenUris, uint256[] memory tokenIds){ // If owner has too many fts, gas may out if(_holderTokens[msg.sender].length() == 0){ return (new string[](0), new uint256[](0)); } else{ string[] memory _tokenUris = new string[](_holderTokens[msg.sender].length()); uint256[] memory _tokenIds = new uint256[](_holderTokens[msg.sender].length()); for(uint16 i=0; i< _tokenUris.length; i++){ _tokenIds[i] = _holderTokens[msg.sender].at(i); _tokenUris[i] = tokenURI(_holderTokens[msg.sender].at(i)); } return (_tokenUris, _tokenIds); } } function changeManager(address _targetManager) public { require(msg.sender == _contractManager, 'You are not the current manager'); _contractManager = _targetManager; } /** * @dev resolve signature */ function _resolveSignature(string memory message, uint8 v, bytes32 r, bytes32 s) internal pure returns(address signer) { // The message header; we will fill in the length next string memory header = "\x19Ethereum Signed Message:\n000000"; uint256 lengthOffset; uint256 length; assembly { // The first word of a string is its length length := mload(message) // The beginning of the base-10 message length in the prefix lengthOffset := add(header, 57) } // Maximum length we support require(length <= 999999); // The length of the message's length in base-10 uint256 lengthLength = 0; // The divisor to get the next left-most message length digit uint256 divisor = 100000; // Move one digit of the message length to the right at a time while (divisor != 0) { // The place value at the divisor uint256 digit = length / divisor; if (digit == 0) { // Skip leading zeros if (lengthLength == 0) { divisor /= 10; continue; } } // Found a non-zero digit or non-leading zero digit lengthLength++; // Remove this digit from the message length's current value length -= digit * divisor; // Shift our base-10 divisor over divisor /= 10; // Convert the digit to its ASCII representation (man ascii) digit += 0x30; // Move to the next character and write the digit lengthOffset++; assembly { mstore8(lengthOffset, digit) } } // The null string requires exactly 1 zero (unskip 1 leading 0) if (lengthLength == 0) { lengthLength = 1 + 0x19 + 1; } else { lengthLength += 1 + 0x19; } // Truncate the tailing zeros from the header assembly { mstore(header, lengthLength) } // Perform the elliptic curve recover operation bytes32 msgHash = keccak256(abi.encodePacked(header, message)); return ecrecover(msgHash, v, r, s); } /** * @dev easy to use require manager signature */ function _requireSignatureFromManager(string memory message, uint8 v, bytes32 r, bytes32 s) internal view{ address signer = _resolveSignature(message, v, r, s); require(signer == _contractManager, 'Message signer is not the contract manager'); } /** * @dev override approve function to prevent approved to other address */ function approve(address to, uint256 tokenId) public virtual override { require(false, 'Parmeus Career Match nft can not be delegated'); } /** * @dev override setApprovalForAll function to prevent approved to other address */ function setApprovalForAll(address operator, bool approved) public virtual override { require(false, 'Parmeus Career Match nft can not be delegated'); } /** *@dev rewrite before transfer, (need to prevent user burn taits?) */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override virtual { require(from == address(0) || to == address(0), 'Parmeus Career Match nft can not be transfered'); } /** * @dev rewrite after token transfer */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal override virtual { if(from != address(0)){ _holderTokens[from].remove(tokenId); } if(to != address(0)){ _holderTokens[to].add(tokenId); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_targetManager","type":"address"}],"name":"changeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSelfNfts","outputs":[{"internalType":"string[]","name":"tokenUris","type":"string[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"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":[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601481527f5061726d65757320436172656572204d61746368000000000000000000000000602080830191825283518085019094526005845264504352524d60d81b9084015281519192916200007491600091620000c5565b5080516200008a906001906020840190620000c5565b505050620000a46007620000bc60201b620009a11760201c565b600980546001600160a01b03191633179055620001a8565b80546001019055565b828054620000d3906200016b565b90600052602060002090601f016020900481019282620000f7576000855562000142565b82601f106200011257805160ff191683800117855562000142565b8280016001018555821562000142579182015b828111156200014257825182559160200191906001019062000125565b506200015092915062000154565b5090565b5b8082111562000150576000815560010162000155565b600181811c908216806200018057607f821691505b60208210811415620001a257634e487b7160e01b600052602260045260246000fd5b50919050565b61205080620001b86000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636352211e116100a2578063a3fbbaae11610071578063a3fbbaae14610223578063b88d4fde14610236578063c87b56dd14610249578063e7873a131461025c578063e985e9c51461027257600080fd5b80636352211e146101d957806370a08231146101ec57806395d89b411461020d578063a22cb4651461021557600080fd5b8063194f52ac116100de578063194f52ac1461018d57806323b872dd146101a05780633d5efefe146101b357806342842e0e146101c657600080fd5b806301ffc9a71461011057806306fdde0314610138578063081812fc1461014d578063095ea7b314610178575b600080fd5b61012361011e36600461199c565b6102ae565b60405190151581526020015b60405180910390f35b610140610300565b60405161012f9190611a11565b61016061015b366004611a24565b610392565b6040516001600160a01b03909116815260200161012f565b61018b610186366004611a59565b6103b9565b005b61012361019b366004611b0f565b610420565b61018b6101ae366004611b88565b6104b8565b61018b6101c1366004611a24565b6104ee565b61018b6101d4366004611b88565b6104fa565b6101606101e7366004611a24565b610515565b6101ff6101fa366004611bc4565b610575565b60405190815260200161012f565b6101406105fb565b61018b610186366004611bdf565b61018b610231366004611bc4565b61060a565b61018b610244366004611c1b565b610686565b610140610257366004611a24565b6106be565b6102646107c7565b60405161012f929190611c97565b610123610280366004611d32565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806102df57506001600160e01b03198216635b5e139f60e01b145b806102fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461030f90611d65565b80601f016020809104026020016040519081016040528092919081815260200182805461033b90611d65565b80156103885780601f1061035d57610100808354040283529160200191610388565b820191906000526020600020905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b600061039d826109aa565b506000908152600460205260409020546001600160a01b031690565b60405162461bcd60e51b815260206004820152602d60248201527f5061726d65757320436172656572204d61746368206e66742063616e206e6f7460448201526c0818994819195b1959d85d1959609a1b60648201526084015b60405180910390fd5b5050565b60008061042c33610a09565b8660405160200161043e929190611da0565b604051602081830303815290604052905061045b81868686610a1f565b600061046660075490565b90506104723382610aa7565b61049b81886040516020016104879190611dcf565b604051602081830303815290604052610ac1565b6104a9600780546001019055565b6001925050505b949350505050565b6104c23382610b5b565b6104de5760405162461bcd60e51b815260040161041390611dfe565b6104e9838383610bd9565b505050565b6104f781610d86565b50565b6104e983838360405180602001604052806000815250610686565b6000818152600260205260408120546001600160a01b0316806102fa5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610413565b60006001600160a01b0382166105df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610413565b506001600160a01b031660009081526003602052604090205490565b60606001805461030f90611d65565b6009546001600160a01b031633146106645760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f74207468652063757272656e74206d616e61676572006044820152606401610413565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6106903383610b5b565b6106ac5760405162461bcd60e51b815260040161041390611dfe565b6106b884848484610dc6565b50505050565b60606106c9826109aa565b600082815260066020526040812080546106e290611d65565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611d65565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b50505050509050600061077960408051602081019091526000815290565b905080516000141561078c575092915050565b8151156107be5780826040516020016107a6929190611da0565b60405160208183030381529060405292505050919050565b6104b084610df9565b33600090815260086020526040902060609081906107e490610e6d565b61082c576040805160008082526020820190925290610813565b60608152602001906001900390816107fe5790505b5060408051600081526020810190915290939092509050565b33600090815260086020526040812061084490610e6d565b67ffffffffffffffff81111561085c5761085c611a83565b60405190808252806020026020018201604052801561088f57816020015b606081526020019060019003908161087a5790505b50336000908152600860205260408120919250906108ac90610e6d565b67ffffffffffffffff8111156108c4576108c4611a83565b6040519080825280602002602001820160405280156108ed578160200160208202803683370190505b50905060005b82518161ffff1610156109975733600090815260086020526040902061091d9061ffff8316610e77565b828261ffff168151811061093357610933611e4c565b602090810291909101810191909152336000908152600890915260409020610963906102579061ffff8416610e77565b838261ffff168151811061097957610979611e4c565b6020026020010181905250808061098f90611e78565b9150506108f3565b5090939092509050565b80546001019055565b6000818152600260205260409020546001600160a01b03166104f75760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610413565b60606102fa6001600160a01b0383166014610e83565b6000610a2d8585858561101f565b6009549091506001600160a01b03808316911614610aa05760405162461bcd60e51b815260206004820152602a60248201527f4d657373616765207369676e6572206973206e6f742074686520636f6e74726160448201526931ba1036b0b730b3b2b960b11b6064820152608401610413565b5050505050565b61041c8282604051806020016040528060008152506111b0565b6000828152600260205260409020546001600160a01b0316610b3c5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610413565b600082815260066020908152604090912082516104e9928401906118b7565b600080610b6783610515565b9050806001600160a01b0316846001600160a01b03161480610bae57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806104b05750836001600160a01b0316610bc784610392565b6001600160a01b031614949350505050565b826001600160a01b0316610bec82610515565b6001600160a01b031614610c505760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610413565b6001600160a01b038216610cb25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b610cbd8383836111e3565b610cc8600082611263565b6001600160a01b0383166000908152600360205260408120805460019290610cf1908490611e9a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d1f908490611eb1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46104e98383836112d1565b610d8f81611335565b60008181526006602052604090208054610da890611d65565b1590506104f75760008181526006602052604081206104f79161193b565b610dd1848484610bd9565b610ddd848484846113e4565b6106b85760405162461bcd60e51b815260040161041390611ec9565b6060610e04826109aa565b6000610e1b60408051602081019091526000815290565b90506000815111610e3b5760405180602001604052806000815250610e66565b80610e45846114df565b604051602001610e56929190611da0565b6040516020818303038152906040525b9392505050565b60006102fa825490565b6000610e6683836115dd565b60606000610e92836002611f1b565b610e9d906002611eb1565b67ffffffffffffffff811115610eb557610eb5611a83565b6040519080825280601f01601f191660200182016040528015610edf576020820181803683370190505b509050600360fc1b81600081518110610efa57610efa611e4c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610f2957610f29611e4c565b60200101906001600160f81b031916908160001a9053506000610f4d846002611f1b565b610f58906001611eb1565b90505b6001811115610fd0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f8c57610f8c611e4c565b1a60f81b828281518110610fa257610fa2611e4c565b60200101906001600160f81b031916908160001a90535060049490941c93610fc981611f3a565b9050610f5b565b508315610e665760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610413565b6040805180820190915260208082527f19457468657265756d205369676e6564204d6573736167653a0a303030303030908201528451600091906039820190620f423f81111561106e57600080fd5b6000620186a05b80156110fa5760006110878285611f67565b9050806110a657826110a65761109e600a83611f67565b915050611075565b826110b081611f7b565b93506110be90508282611f1b565b6110c89085611e9a565b93506110d5600a83611f67565b91506110e2603082611eb1565b9050846110ee81611f7b565b95505080855350611075565b8161110857601b9150611116565b611113601a83611eb1565b91505b8185526000858b60405160200161112e929190611da0565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8d1691830191909152606082018b9052608082018a9052915060019060a0016020604051602081039080840390855afa158015611196573d6000803e3d6000fd5b5050604051601f1901519c9b505050505050505050505050565b6111ba8383611607565b6111c760008484846113e4565b6104e95760405162461bcd60e51b815260040161041390611ec9565b6001600160a01b038316158061120057506001600160a01b038216155b6104e95760405162461bcd60e51b815260206004820152602e60248201527f5061726d65757320436172656572204d61746368206e66742063616e206e6f7460448201526d081899481d1c985b9cd9995c995960921b6064820152608401610413565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129882610515565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03831615611304576001600160a01b0383166000908152600860205260409020611302908261175d565b505b6001600160a01b038216156104e9576001600160a01b03821660009081526008602052604090206106b89082611769565b600061134082610515565b905061134e816000846111e3565b611359600083611263565b6001600160a01b0381166000908152600360205260408120805460019290611382908490611e9a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a461041c816000846112d1565b60006001600160a01b0384163b156114d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611428903390899088908890600401611f96565b6020604051808303816000875af1925050508015611463575060408051601f3d908101601f1916820190925261146091810190611fd3565b60015b6114bd573d808015611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b5080516114b55760405162461bcd60e51b815260040161041390611ec9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506104b0565b5060016104b0565b6060816115035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561152d578061151781611f7b565b91506115269050600a83611f67565b9150611507565b60008167ffffffffffffffff81111561154857611548611a83565b6040519080825280601f01601f191660200182016040528015611572576020820181803683370190505b5090505b84156104b057611587600183611e9a565b9150611594600a86611ff0565b61159f906030611eb1565b60f81b8183815181106115b4576115b4611e4c565b60200101906001600160f81b031916908160001a9053506115d6600a86611f67565b9450611576565b60008260000182815481106115f4576115f4611e4c565b9060005260206000200154905092915050565b6001600160a01b03821661165d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610413565b6000818152600260205260409020546001600160a01b0316156116c25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610413565b6116ce600083836111e3565b6001600160a01b03821660009081526003602052604081208054600192906116f7908490611eb1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461041c600083836112d1565b6000610e668383611775565b6000610e668383611868565b6000818152600183016020526040812054801561185e576000611799600183611e9a565b85549091506000906117ad90600190611e9a565b90508181146118125760008660000182815481106117cd576117cd611e4c565b90600052602060002001549050808760000184815481106117f0576117f0611e4c565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061182357611823612004565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506102fa565b60009150506102fa565b60008181526001830160205260408120546118af575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556102fa565b5060006102fa565b8280546118c390611d65565b90600052602060002090601f0160209004810192826118e5576000855561192b565b82601f106118fe57805160ff191683800117855561192b565b8280016001018555821561192b579182015b8281111561192b578251825591602001919060010190611910565b50611937929150611971565b5090565b50805461194790611d65565b6000825580601f10611957575050565b601f0160209004906000526020600020908101906104f791905b5b808211156119375760008155600101611972565b6001600160e01b0319811681146104f757600080fd5b6000602082840312156119ae57600080fd5b8135610e6681611986565b60005b838110156119d45781810151838201526020016119bc565b838111156106b85750506000910152565b600081518084526119fd8160208601602086016119b9565b601f01601f19169290920160200192915050565b602081526000610e6660208301846119e5565b600060208284031215611a3657600080fd5b5035919050565b80356001600160a01b0381168114611a5457600080fd5b919050565b60008060408385031215611a6c57600080fd5b611a7583611a3d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ab457611ab4611a83565b604051601f8501601f19908116603f01168101908282118183101715611adc57611adc611a83565b81604052809350858152868686011115611af557600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611b2557600080fd5b843567ffffffffffffffff811115611b3c57600080fd5b8501601f81018713611b4d57600080fd5b611b5c87823560208401611a99565b945050602085013560ff81168114611b7357600080fd5b93969395505050506040820135916060013590565b600080600060608486031215611b9d57600080fd5b611ba684611a3d565b9250611bb460208501611a3d565b9150604084013590509250925092565b600060208284031215611bd657600080fd5b610e6682611a3d565b60008060408385031215611bf257600080fd5b611bfb83611a3d565b915060208301358015158114611c1057600080fd5b809150509250929050565b60008060008060808587031215611c3157600080fd5b611c3a85611a3d565b9350611c4860208601611a3d565b925060408501359150606085013567ffffffffffffffff811115611c6b57600080fd5b8501601f81018713611c7c57600080fd5b611c8b87823560208401611a99565b91505092959194509250565b6000604082016040835280855180835260608501915060608160051b8601019250602080880160005b83811015611cee57605f19888703018552611cdc8683516119e5565b95509382019390820190600101611cc0565b50508584038187015286518085528782019482019350915060005b82811015611d2557845184529381019392810192600101611d09565b5091979650505050505050565b60008060408385031215611d4557600080fd5b611d4e83611a3d565b9150611d5c60208401611a3d565b90509250929050565b600181811c90821680611d7957607f821691505b60208210811415611d9a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611db28184602088016119b9565b835190830190611dc68183602088016119b9565b01949350505050565b66697066733a2f2f60c81b815260008251611df18160078501602087016119b9565b9190910160070192915050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681811415611e9057611e90611e62565b6001019392505050565b600082821015611eac57611eac611e62565b500390565b60008219821115611ec457611ec4611e62565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816000190483118215151615611f3557611f35611e62565b500290565b600081611f4957611f49611e62565b506000190190565b634e487b7160e01b600052601260045260246000fd5b600082611f7657611f76611f51565b500490565b6000600019821415611f8f57611f8f611e62565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc9908301846119e5565b9695505050505050565b600060208284031215611fe557600080fd5b8151610e6681611986565b600082611fff57611fff611f51565b500690565b634e487b7160e01b600052603160045260246000fdfea264697066735822122040cc6c70c41e8d1866260f58298db50425ab224ecdd425a892a221078821203c64736f6c634300080a0033
Deployed ByteCode Sourcemap
308:6059:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;1570:300:0;;;;;;;;2470:98;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:13;;;1674:51;;1662:2;1647:18;3935:167:0;1528:203:13;5234:150:12;;;;;;:::i;:::-;;:::i;:::-;;838:565;;;;;;:::i;:::-;;:::i;4612:327:0:-;;;;;;:::i;:::-;;:::i;1409:71:12:-;;;;;;:::i;:::-;;:::i;5005:179:0:-;;;;;;:::i;:::-;;:::i;2190:218::-;;;;;;:::i;:::-;;:::i;1929:204::-;;;;;;:::i;:::-;;:::i;:::-;;;4366:25:13;;;4354:2;4339:18;1929:204:0;4220:177:13;2632:102:0;;;:::i;5491:164:12:-;;;;;;:::i;2266:188::-;;;;;;:::i;:::-;;:::i;5250:315:0:-;;;;;;:::i;:::-;;:::i;482:608:3:-;;;;;;:::i;:::-;;:::i;1528:732:12:-;;;:::i;:::-;;;;;;;;:::i;4388:162:0:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4508:25:0;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162;1570:300;1672:4;-1:-1:-1;;;;;;1707:40:0;;-1:-1:-1;;;1707:40:0;;:104;;-1:-1:-1;;;;;;;1763:48:0;;-1:-1:-1;;;1763:48:0;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:9;;;1827:36:0;1688:175;1570:300;-1:-1:-1;;1570:300:0:o;2470:98::-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:0;;3935:167::o;5234:150:12:-;5314:63;;-1:-1:-1;;;5314:63:12;;7615:2:13;5314:63:12;;;7597:21:13;7654:2;7634:18;;;7627:30;7693:34;7673:18;;;7666:62;-1:-1:-1;;;7744:18:13;;;7737:43;7797:19;;5314:63:12;;;;;;;;;5234:150;;:::o;838:565::-;919:12;1015:27;1070:31;1090:10;1070:19;:31::i;:::-;1103:4;1052:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1015:94;;1119:52;1148:13;1163:1;1166;1169;1119:28;:52::i;:::-;1182:18;1203:19;:9;918:14:7;;827:112;1203:19:12;1182:40;;1232:33;1242:10;1254;1232:9;:33::i;:::-;1275:67;1288:10;1335:4;1307:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;1275:12;:67::i;:::-;1353:21;:9;1032:19:7;;1050:1;1032:19;;;945:123;1353:21:12;1392:4;1385:11;;;;838:565;;;;;;;:::o;4612:327:0:-;4801:41;719:10:6;4834:7:0;4801:18;:41::i;:::-;4793:100;;;;-1:-1:-1;;;4793:100:0;;;;;;;:::i;:::-;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;:::-;4612:327;;;:::o;1409:71:12:-;1459:14;1465:7;1459:5;:14::i;:::-;1409:71;:::o;5005:179:0:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;2190:218::-;2262:7;2297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2297:16:0;2331:19;2323:56;;;;-1:-1:-1;;;2323:56:0;;9348:2:13;2323:56:0;;;9330:21:13;9387:2;9367:18;;;9360:30;-1:-1:-1;;;9406:18:13;;;9399:54;9470:18;;2323:56:0;9146:348:13;1929:204:0;2001:7;-1:-1:-1;;;;;2028:19:0;;2020:73;;;;-1:-1:-1;;;2020:73:0;;9701:2:13;2020:73:0;;;9683:21:13;9740:2;9720:18;;;9713:30;9779:34;9759:18;;;9752:62;-1:-1:-1;;;9830:18:13;;;9823:39;9879:19;;2020:73:0;9499:405:13;2020:73:0;-1:-1:-1;;;;;;2110:16:0;;;;;:9;:16;;;;;;;1929:204::o;2632:102::-;2688:13;2720:7;2713:14;;;;;:::i;2266:188:12:-;2352:16;;-1:-1:-1;;;;;2352:16:12;2338:10;:30;2330:74;;;;-1:-1:-1;;;2330:74:12;;10111:2:13;2330:74:12;;;10093:21:13;10150:2;10130:18;;;10123:30;10189:33;10169:18;;;10162:61;10240:18;;2330:74:12;9909:355:13;2330:74:12;2414:16;:33;;-1:-1:-1;;;;;;2414:33:12;-1:-1:-1;;;;;2414:33:12;;;;;;;;;;2266:188::o;5250:315:0:-;5418:41;719:10:6;5451:7:0;5418:18;:41::i;:::-;5410:100;;;;-1:-1:-1;;;5410:100:0;;;;;;;:::i;:::-;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;482:608:3:-;555:13;580:23;595:7;580:14;:23::i;:::-;614;640:19;;;:10;:19;;;;;614:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669:18;690:10;3394:9:0;;;;;;;;;-1:-1:-1;3394:9:0;;;3318:92;690:10:3;669:31;;779:4;773:18;795:1;773:23;769:70;;;-1:-1:-1;819:9:3;482:608;-1:-1:-1;;482:608:3:o;769:70::-;941:23;;:27;937:106;;1015:4;1021:9;998:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;984:48;;;;482:608;;;:::o;937:106::-;1060:23;1075:7;1060:14;:23::i;1528:732:12:-;1701:10;1687:25;;;;:13;:25;;;;;1571;;;;1687:34;;:32;:34::i;:::-;1684:570;;1749:15;;;1762:1;1749:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1766:16:12;;;1780:1;1766:16;;;;;;;;1741:42;;1766:16;;-1:-1:-1;1528:732:12;-1:-1:-1;1528:732:12:o;1684:570::-;1877:10;1821:26;1863:25;;;:13;:25;;;;;:34;;:32;:34::i;:::-;1850:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1969:10:12;1912:26;1955:25;;;:13;:25;;;;;1821:77;;-1:-1:-1;1912:26:12;1955:34;;:32;:34::i;:::-;1941:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1941:49:12;;1912:78;;2008:8;2004:196;2023:10;:17;2020:1;:20;;;2004:196;;;2093:10;2079:25;;;;:13;:25;;;;;:31;;;;;:28;:31::i;:::-;2064:9;2074:1;2064:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;:46;;;;2167:10;2153:25;;;;:13;:25;;;;;;2144:41;;2153:31;;;;;:28;:31::i;2144:41::-;2128:10;2139:1;2128:13;;;;;;;;;;:::i;:::-;;;;;;:57;;;;2042:3;;;;;:::i;:::-;;;;2004:196;;;-1:-1:-1;2221:10:12;;2233:9;;-1:-1:-1;1528:732:12;-1:-1:-1;1528:732:12:o;945:123:7:-;1032:19;;1050:1;1032:19;;;945:123::o;11657:133:0:-;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:0;11730:53;;;;-1:-1:-1;;;11730:53:0;;9348:2:13;11730:53:0;;;9330:21:13;9387:2;9367:18;;;9360:30;-1:-1:-1;;;9406:18:13;;;9399:54;9470:18;;11730:53:0;9146:348:13;2245:149:8;2303:13;2335:52;-1:-1:-1;;;;;2347:22:8;;288:2;2335:11;:52::i;4871:265:12:-;4986:14;5003:35;5021:7;5030:1;5033;5036;5003:17;:35::i;:::-;5066:16;;4986:52;;-1:-1:-1;;;;;;5056:26:12;;;5066:16;;5056:26;5048:81;;;;-1:-1:-1;;;5048:81:12;;10937:2:13;5048:81:12;;;10919:21:13;10976:2;10956:18;;;10949:30;11015:34;10995:18;;;10988:62;-1:-1:-1;;;11066:18:13;;;11059:40;11116:19;;5048:81:12;10735:406:13;5048:81:12;4976:160;4871:265;;;;:::o;7908:108:0:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;1237:214:3:-;7099:4:0;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:0;1328:75:3;;;;-1:-1:-1;;;1328:75:3;;11348:2:13;1328:75:3;;;11330:21:13;11387:2;11367:18;;;11360:30;11426:34;11406:18;;;11399:62;-1:-1:-1;;;11477:18:13;;;11470:44;11531:19;;1328:75:3;11146:410:13;1328:75:3;1413:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;7317:261:0:-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;-1:-1:-1;;;;;7483:16:0;:7;-1:-1:-1;;;;;7483:16:0;;:52;;;-1:-1:-1;;;;;;4508:25:0;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7503:32;7483:87;;;;7563:7;-1:-1:-1;;;;;7539:31:0;:20;7551:7;7539:11;:20::i;:::-;-1:-1:-1;;;;;7539:31:0;;7475:96;7317:261;-1:-1:-1;;;;7317:261:0:o;10242:605::-;10396:4;-1:-1:-1;;;;;10369:31:0;:23;10384:7;10369:14;:23::i;:::-;-1:-1:-1;;;;;10369:31:0;;10361:81;;;;-1:-1:-1;;;10361:81:0;;11763:2:13;10361:81:0;;;11745:21:13;11802:2;11782:18;;;11775:30;11841:34;11821:18;;;11814:62;-1:-1:-1;;;11892:18:13;;;11885:35;11937:19;;10361:81:0;11561:401:13;10361:81:0;-1:-1:-1;;;;;10460:16:0;;10452:65;;;;-1:-1:-1;;;10452:65:0;;12169:2:13;10452:65:0;;;12151:21:13;12208:2;12188:18;;;12181:30;12247:34;12227:18;;;12220:62;-1:-1:-1;;;12298:18:13;;;12291:34;12342:19;;10452:65:0;11967:400:13;10452:65:0;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;-1:-1:-1;;;;;10669:15:0;;;;;;:9;:15;;;;;:20;;10688:1;;10669:15;:20;;10688:1;;10669:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10699:13:0;;;;;;:9;:13;;;;;:18;;10716:1;;10699:13;:18;;10716:1;;10699:18;:::i;:::-;;;;-1:-1:-1;;10727:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10727:21:0;-1:-1:-1;;;;;10727:21:0;;;;;;;;;10764:27;;10727:16;;10764:27;;;;;;;10802:38;10822:4;10828:2;10832:7;10802:19;:38::i;1669:200:3:-;1737:20;1749:7;1737:11;:20::i;:::-;1778:19;;;;:10;:19;;;;;1772:33;;;;;:::i;:::-;:38;;-1:-1:-1;1768:95:3;;1833:19;;;;:10;:19;;;;;1826:26;;;:::i;6426:305:0:-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;-1:-1:-1;;;6614:110:0;;;;;;;:::i;2800:276::-;2873:13;2898:23;2913:7;2898:14;:23::i;:::-;2932:21;2956:10;3394:9;;;;;;;;;-1:-1:-1;3394:9:0;;;3318:92;2956:10;2932:34;;3007:1;2989:7;2983:21;:25;:86;;;;;;;;;;;;;;;;;3035:7;3044:18;:7;:16;:18::i;:::-;3018:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2983:86;2976:93;2800:276;-1:-1:-1;;;2800:276:0:o;11254:112:11:-;11314:7;11340:19;11348:3;4444:18;;4362:107;11708:135;11779:7;11813:22;11817:3;11829:5;11813:3;:22::i;1652:441:8:-;1727:13;1752:19;1784:10;1788:6;1784:1;:10;:::i;:::-;:14;;1797:1;1784:14;:::i;:::-;1774:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1774:25:8;;1752:47;;-1:-1:-1;;;1809:6:8;1816:1;1809:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1809:15:8;;;;;;;;;-1:-1:-1;;;1834:6:8;1841:1;1834:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1834:15:8;;;;;;;;-1:-1:-1;1864:9:8;1876:10;1880:6;1876:1;:10;:::i;:::-;:14;;1889:1;1876:14;:::i;:::-;1864:26;;1859:132;1896:1;1892;:5;1859:132;;;-1:-1:-1;;;1943:5:8;1951:3;1943:11;1930:25;;;;;;;:::i;:::-;;;;1918:6;1925:1;1918:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;1918:37:8;;;;;;;;-1:-1:-1;1979:1:8;1969:11;;;;;1899:3;;;:::i;:::-;;;1859:132;;;-1:-1:-1;2008:10:8;;2000:55;;;;-1:-1:-1;;;2000:55:8;;13570:2:13;2000:55:8;;;13552:21:13;;;13589:18;;;13582:30;13648:34;13628:18;;;13621:62;13700:18;;2000:55:8;13368:356:13;2508:2291:12;2700:61;;;;;;;;;;;;;;;;;;2914:14;;2611;;2700:61;3042:2;3030:15;;;3119:6;3109:16;;;3101:25;;;;;;3193:20;3315:6;3402:884;3409:12;;3402:884;;3483:13;3499:16;3508:7;3499:6;:16;:::i;:::-;3483:32;-1:-1:-1;3533:10:12;3529:185;;3605:17;3601:99;;3642:13;3653:2;3642:13;;:::i;:::-;;;3673:8;;;3601:99;3791:14;;;;:::i;:::-;;-1:-1:-1;3902:15:12;;-1:-1:-1;3910:7:12;3902:5;:15;:::i;:::-;3892:25;;;;:::i;:::-;;-1:-1:-1;3977:13:12;3988:2;3977:13;;:::i;:::-;;-1:-1:-1;4090:13:12;4099:4;4090:13;;:::i;:::-;;-1:-1:-1;4179:14:12;;;;:::i;:::-;;;;4256:5;4242:12;4234:28;4216:60;3402:884;;;4371:17;4367:130;;4419:12;4404:27;;4367:130;;;4462:24;4478:8;4462:24;;:::i;:::-;;;4367:130;4598:12;4590:6;4583:28;4686:15;4731:6;4739:7;4714:33;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4714:33:12;;;;;;;;;4704:44;;4714:33;4704:44;;;;4765:27;;;;;;;;;14353:25:13;;;14426:4;14414:17;;14394:18;;;14387:45;;;;14448:18;;;14441:34;;;14491:18;;;14484:34;;;4704:44:12;-1:-1:-1;4765:27:12;;14325:19:13;;4765:27:12;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4765:27:12;;-1:-1:-1;;4765:27:12;;;2508:2291;-1:-1:-1;;;;;;;;;;;;2508:2291:12:o;8237:309:0:-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;-1:-1:-1;;;8389:150:0;;;;;;;:::i;5749:243:12:-;-1:-1:-1;;;;;5896:18:12;;;;:38;;-1:-1:-1;;;;;;5918:16:12;;;5896:38;5888:97;;;;-1:-1:-1;;;5888:97:12;;14731:2:13;5888:97:12;;;14713:21:13;14770:2;14750:18;;;14743:30;14809:34;14789:18;;;14782:62;-1:-1:-1;;;14860:18:13;;;14853:44;14914:19;;5888:97:12;14529:410:13;10959:171:0;11033:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11033:29:0;-1:-1:-1;;;;;11033:29:0;;;;;;;;:24;;11086:23;11033:24;11086:14;:23::i;:::-;-1:-1:-1;;;;;11077:46:0;;;;;;;;;;;10959:171;;:::o;6055:310:12:-;-1:-1:-1;;;;;6196:18:12;;;6193:82;;-1:-1:-1;;;;;6229:19:12;;;;;;:13;:19;;;;;:35;;6256:7;6229:26;:35::i;:::-;;6193:82;-1:-1:-1;;;;;6287:16:12;;;6284:75;;-1:-1:-1;;;;;6318:17:12;;;;;;:13;:17;;;;;:30;;6340:7;6318:21;:30::i;9512:406:0:-;9571:13;9587:23;9602:7;9587:14;:23::i;:::-;9571:39;;9621:48;9642:5;9657:1;9661:7;9621:20;:48::i;:::-;9707:29;9724:1;9728:7;9707:8;:29::i;:::-;-1:-1:-1;;;;;9747:16:0;;;;;;:9;:16;;;;;:21;;9767:1;;9747:16;:21;;9767:1;;9747:21;:::i;:::-;;;;-1:-1:-1;;9785:16:0;;;;:7;:16;;;;;;9778:23;;-1:-1:-1;;;;;;9778:23:0;;;9817:36;9793:7;;9785:16;-1:-1:-1;;;;;9817:36:0;;;;;9785:16;;9817:36;9864:47;9884:5;9899:1;9903:7;9864:19;:47::i;12342:831::-;12491:4;-1:-1:-1;;;;;12511:13:0;;1465:19:5;:23;12507:660:0;;12546:71;;-1:-1:-1;;;12546:71:0;;-1:-1:-1;;;;;12546:36:0;;;;;:71;;719:10:6;;12597:4:0;;12603:7;;12612:4;;12546:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12546:71:0;;;;;;;;-1:-1:-1;;12546:71:0;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12784:13:0;;12780:321;;12826:60;;-1:-1:-1;;;12826:60:0;;;;;;;:::i;12780:321::-;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;-1:-1:-1;;;;;;12667:51:0;-1:-1:-1;;;12667:51:0;;-1:-1:-1;12660:58:0;;12507:660;-1:-1:-1;13152:4:0;13145:11;;392:703:8;448:13;665:10;661:51;;-1:-1:-1;;691:10:8;;;;;;;;;;;;-1:-1:-1;;;691:10:8;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:8;;-1:-1:-1;837:2:8;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:8;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:8;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:8;;;;;;;;-1:-1:-1;1036:11:8;1045:2;1036:11;;:::i;:::-;;;908:150;;4811:118:11;4878:7;4904:3;:11;;4916:5;4904:18;;;;;;;;:::i;:::-;;;;;;;;;4897:25;;4811:118;;;;:::o;8868:427:0:-;-1:-1:-1;;;;;8947:16:0;;8939:61;;;;-1:-1:-1;;;8939:61:0;;16011:2:13;8939:61:0;;;15993:21:13;;;16030:18;;;16023:30;16089:34;16069:18;;;16062:62;16141:18;;8939:61:0;15809:356:13;8939:61:0;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:0;:30;9010:58;;;;-1:-1:-1;;;9010:58:0;;16372:2:13;9010:58:0;;;16354:21:13;16411:2;16391:18;;;16384:30;16450;16430:18;;;16423:58;16498:18;;9010:58:0;16170:352:13;9010:58:0;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;-1:-1:-1;;;;;9135:13:0;;;;;;:9;:13;;;;;:18;;9152:1;;9135:13;:18;;9152:1;;9135:18;:::i;:::-;;;;-1:-1:-1;;9163:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9163:21:0;-1:-1:-1;;;;;9163:21:0;;;;;;;;9200:33;;9163:16;;;9200:33;;9163:16;;9200:33;9244:44;9272:1;9276:2;9280:7;9244:19;:44::i;10813:135:11:-;10883:4;10906:35;10914:3;10934:5;10906:7;:35::i;10516:129::-;10583:4;10606:32;10611:3;10631:5;10606:4;:32::i;2685:1388::-;2751:4;2888:19;;;:12;;;:19;;;;;;2922:15;;2918:1149;;3291:21;3315:14;3328:1;3315:10;:14;:::i;:::-;3363:18;;3291:38;;-1:-1:-1;3343:17:11;;3363:22;;3384:1;;3363:22;:::i;:::-;3343:42;;3417:13;3404:9;:26;3400:398;;3450:17;3470:3;:11;;3482:9;3470:22;;;;;;;;:::i;:::-;;;;;;;;;3450:42;;3621:9;3592:3;:11;;3604:13;3592:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3704:23;;;:12;;;:23;;;;;:36;;;3400:398;3876:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3968:3;:12;;:19;3981:5;3968:19;;;;;;;;;;;3961:26;;;4009:4;4002:11;;;;;;;2918:1149;4051:5;4044:12;;;;;2113:404;2176:4;4250:19;;;:12;;;:19;;;;;;2192:319;;-1:-1:-1;2234:23:11;;;;;;;;:11;:23;;;;;;;;;;;;;2414:18;;2392:19;;;:12;;;:19;;;;;;:40;;;;2446:11;;2192:319;-1:-1:-1;2495:5:11;2488:12;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:13;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:13;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:13:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:13;;1343:180;-1:-1:-1;1343:180:13:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:13;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:13:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:13;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:749::-;3036:6;3044;3052;3060;3113:3;3101:9;3092:7;3088:23;3084:33;3081:53;;;3130:1;3127;3120:12;3081:53;3170:9;3157:23;3203:18;3195:6;3192:30;3189:50;;;3235:1;3232;3225:12;3189:50;3258:22;;3311:4;3303:13;;3299:27;-1:-1:-1;3289:55:13;;3340:1;3337;3330:12;3289:55;3363:76;3431:7;3426:2;3413:16;3406:4;3402:2;3398:13;3363:76;:::i;:::-;3353:86;;;3489:4;3478:9;3474:20;3461:34;3535:4;3528:5;3524:16;3517:5;3514:27;3504:55;;3555:1;3552;3545:12;3504:55;2942:749;;3578:5;;-1:-1:-1;;;;3630:2:13;3615:18;;3602:32;;3681:2;3666:18;3653:32;;2942:749::o;3696:328::-;3773:6;3781;3789;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3881:29;3900:9;3881:29;:::i;:::-;3871:39;;3929:38;3963:2;3952:9;3948:18;3929:38;:::i;:::-;3919:48;;4014:2;4003:9;3999:18;3986:32;3976:42;;3696:328;;;;;:::o;4029:186::-;4088:6;4141:2;4129:9;4120:7;4116:23;4112:32;4109:52;;;4157:1;4154;4147:12;4109:52;4180:29;4199:9;4180:29;:::i;4402:347::-;4467:6;4475;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;4567:29;4586:9;4567:29;:::i;:::-;4557:39;;4646:2;4635:9;4631:18;4618:32;4693:5;4686:13;4679:21;4672:5;4669:32;4659:60;;4715:1;4712;4705:12;4659:60;4738:5;4728:15;;;4402:347;;;;;:::o;4754:667::-;4849:6;4857;4865;4873;4926:3;4914:9;4905:7;4901:23;4897:33;4894:53;;;4943:1;4940;4933:12;4894:53;4966:29;4985:9;4966:29;:::i;:::-;4956:39;;5014:38;5048:2;5037:9;5033:18;5014:38;:::i;:::-;5004:48;;5099:2;5088:9;5084:18;5071:32;5061:42;;5154:2;5143:9;5139:18;5126:32;5181:18;5173:6;5170:30;5167:50;;;5213:1;5210;5203:12;5167:50;5236:22;;5289:4;5281:13;;5277:27;-1:-1:-1;5267:55:13;;5318:1;5315;5308:12;5267:55;5341:74;5407:7;5402:2;5389:16;5384:2;5380;5376:11;5341:74;:::i;:::-;5331:84;;;4754:667;;;;;;;:::o;5426:1332::-;5666:4;5714:2;5703:9;5699:18;5744:2;5733:9;5726:21;5767:6;5802;5796:13;5833:6;5825;5818:22;5871:2;5860:9;5856:18;5849:25;;5933:2;5923:6;5920:1;5916:14;5905:9;5901:30;5897:39;5883:53;;5955:4;5994:2;5986:6;5982:15;6015:1;6025:255;6039:6;6036:1;6033:13;6025:255;;;6132:2;6128:7;6116:9;6108:6;6104:22;6100:36;6095:3;6088:49;6160:40;6193:6;6184;6178:13;6160:40;:::i;:::-;6150:50;-1:-1:-1;6258:12:13;;;;6223:15;;;;6061:1;6054:9;6025:255;;;-1:-1:-1;;6316:22:13;;;6296:18;;;6289:50;6392:13;;6414:24;;;6496:15;;;;6456;;;-1:-1:-1;6392:13:13;-1:-1:-1;6531:1:13;6541:189;6557:8;6552:3;6549:17;6541:189;;;6626:15;;6612:30;;6703:17;;;;6664:14;;;;6585:1;6576:11;6541:189;;;-1:-1:-1;6747:5:13;;5426:1332;-1:-1:-1;;;;;;;5426:1332:13:o;6763:260::-;6831:6;6839;6892:2;6880:9;6871:7;6867:23;6863:32;6860:52;;;6908:1;6905;6898:12;6860:52;6931:29;6950:9;6931:29;:::i;:::-;6921:39;;6979:38;7013:2;7002:9;6998:18;6979:38;:::i;:::-;6969:48;;6763:260;;;;;:::o;7028:380::-;7107:1;7103:12;;;;7150;;;7171:61;;7225:4;7217:6;7213:17;7203:27;;7171:61;7278:2;7270:6;7267:14;7247:18;7244:38;7241:161;;;7324:10;7319:3;7315:20;7312:1;7305:31;7359:4;7356:1;7349:15;7387:4;7384:1;7377:15;7241:161;;7028:380;;;:::o;7827:470::-;8006:3;8044:6;8038:13;8060:53;8106:6;8101:3;8094:4;8086:6;8082:17;8060:53;:::i;:::-;8176:13;;8135:16;;;;8198:57;8176:13;8135:16;8232:4;8220:17;;8198:57;:::i;:::-;8271:20;;7827:470;-1:-1:-1;;;;7827:470:13:o;8302:424::-;-1:-1:-1;;;8559:3:13;8552:22;8534:3;8603:6;8597:13;8619:61;8673:6;8669:1;8664:3;8660:11;8653:4;8645:6;8641:17;8619:61;:::i;:::-;8700:16;;;;8718:1;8696:24;;8302:424;-1:-1:-1;;8302:424:13:o;8731:410::-;8933:2;8915:21;;;8972:2;8952:18;;;8945:30;9011:34;9006:2;8991:18;;8984:62;-1:-1:-1;;;9077:2:13;9062:18;;9055:44;9131:3;9116:19;;8731:410::o;10269:127::-;10330:10;10325:3;10321:20;10318:1;10311:31;10361:4;10358:1;10351:15;10385:4;10382:1;10375:15;10401:127;10462:10;10457:3;10453:20;10450:1;10443:31;10493:4;10490:1;10483:15;10517:4;10514:1;10507:15;10533:197;10571:3;10599:6;10640:2;10633:5;10629:14;10667:2;10658:7;10655:15;10652:41;;;10673:18;;:::i;:::-;10722:1;10709:15;;10533:197;-1:-1:-1;;;10533:197:13:o;12372:125::-;12412:4;12440:1;12437;12434:8;12431:34;;;12445:18;;:::i;:::-;-1:-1:-1;12482:9:13;;12372:125::o;12502:128::-;12542:3;12573:1;12569:6;12566:1;12563:13;12560:39;;;12579:18;;:::i;:::-;-1:-1:-1;12615:9:13;;12502:128::o;12635:414::-;12837:2;12819:21;;;12876:2;12856:18;;;12849:30;12915:34;12910:2;12895:18;;12888:62;-1:-1:-1;;;12981:2:13;12966:18;;12959:48;13039:3;13024:19;;12635:414::o;13054:168::-;13094:7;13160:1;13156;13152:6;13148:14;13145:1;13142:21;13137:1;13130:9;13123:17;13119:45;13116:71;;;13167:18;;:::i;:::-;-1:-1:-1;13207:9:13;;13054:168::o;13227:136::-;13266:3;13294:5;13284:39;;13303:18;;:::i;:::-;-1:-1:-1;;;13339:18:13;;13227:136::o;13729:127::-;13790:10;13785:3;13781:20;13778:1;13771:31;13821:4;13818:1;13811:15;13845:4;13842:1;13835:15;13861:120;13901:1;13927;13917:35;;13932:18;;:::i;:::-;-1:-1:-1;13966:9:13;;13861:120::o;13986:135::-;14025:3;-1:-1:-1;;14046:17:13;;14043:43;;;14066:18;;:::i;:::-;-1:-1:-1;14113:1:13;14102:13;;13986:135::o;14944:489::-;-1:-1:-1;;;;;15213:15:13;;;15195:34;;15265:15;;15260:2;15245:18;;15238:43;15312:2;15297:18;;15290:34;;;15360:3;15355:2;15340:18;;15333:31;;;15138:4;;15381:46;;15407:19;;15399:6;15381:46;:::i;:::-;15373:54;14944:489;-1:-1:-1;;;;;;14944:489:13:o;15438:249::-;15507:6;15560:2;15548:9;15539:7;15535:23;15531:32;15528:52;;;15576:1;15573;15566:12;15528:52;15608:9;15602:16;15627:30;15651:5;15627:30;:::i;15692:112::-;15724:1;15750;15740:35;;15755:18;;:::i;:::-;-1:-1:-1;15789:9:13;;15692:112::o;16527:127::-;16588:10;16583:3;16579:20;16576:1;16569:31;16619:4;16616:1;16609:15;16643:4;16640:1;16633:15
Swarm Source
ipfs://40cc6c70c41e8d1866260f58298db50425ab224ecdd425a892a221078821203c