ERC-721
NFT
Overview
Max Total Supply
14 RPL
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RPLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RolePlusLoot
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-17 */ 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); } /** * @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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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 String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /* * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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); } /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; } } /** * @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: balance query for the zero address"); 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: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overriden 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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: transfer caller is not 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: transfer caller is not 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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { 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 {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } interface Role { function ownerOf(uint i) external view returns (address owner); function getGender(uint i) external view returns (string memory); function getRace(uint i) external view returns (string memory); function getAlignment(uint i) external view returns (string memory); function getOccupation(uint i) external view returns (string memory); function getTrait1(uint i) external view returns (string memory); function getTrait2(uint i) external view returns (string memory); function getTrait3(uint i) external view returns (string memory); } interface Pets { function ownerOf(uint i) external view returns (address owner); function getAlignment(uint i) external view returns (string memory); function getSpecies(uint i) external view returns (string memory); function getTrait(uint i, uint index) external view returns (string memory); } interface Loot { function ownerOf(uint i) external view returns (address owner); function getWeapon(uint i) external view returns (string memory); function getChest(uint i) external view returns (string memory); function getHead(uint i) external view returns (string memory); function getWaist(uint i) external view returns (string memory); function getFoot(uint i) external view returns (string memory); function getHand(uint i) external view returns (string memory); function getNeck(uint i) external view returns (string memory); function getRing(uint i) external view returns (string memory); } contract RolePlusLoot is ERC721Enumerable, Ownable { address roleAddr=0xCd4D337554862F9bC9ffffB67465B7d643E4E3ad; address petsAddr=0x997020483A30678436E76c08a65BBeCbE69Bf704; address lootAddr=0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7; address mlootAddr=0x1dfe7Ca09e99d10835Bf73044a23B73Fc20623DF; struct Data { uint roleId; uint lootId; string url; } mapping(uint => Data) public tokenData; constructor() ERC721("Role+Loot", "RPL") Ownable() { } function stringCompare(string memory a, string memory b) public pure returns (bool) { if (bytes(a).length != bytes(b).length) { return false; } else { return keccak256(bytes(a)) == keccak256(bytes(b)); } } function tokenURI(uint tokenId) override public view returns (string memory) { Data memory data = tokenData[tokenId]; uint roleId = data.roleId; uint lootId = data.lootId; address _lootAddr = lootAddr; if(lootId > 8000){ _lootAddr = mlootAddr; } string[45] memory p; p[0] = '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 350"><defs><style>.cls-1,.cls-7{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#fff;}.cls-4{fill:#e2e2e2;}.cls-5{fill:#4d4d4d;}.cls-10,.cls-11,.cls-13,.cls-15,.cls-16,.cls-6{fill:#3a3a3a;}.cls-7{stroke:#3a3a3a;}.cls-8{fill:#898989;opacity:0.5;}.cls-9{fill:#515151;}.cls-10{font-size:8px;font-family:MicrosoftYaHeiLight, Microsoft YaHei;}.cls-11{opacity:0.58;font-size:21px;}.cls-11,.cls-13,.cls-15{font-family:MicrosoftYaHei-Bold, Microsoft YaHei;}.cls-11,.cls-12,.cls-13,.cls-14,.cls-15,.cls-16{font-weight:700;}.cls-12{font-size:48px;fill:#262626;}.cls-12,.cls-14,.cls-16{font-family:Arial-BoldMT, Arial;}.cls-13{opacity:0.63;font-size:14px;}.cls-13,.cls-14{letter-spacing:-0.03em;}.cls-14{opacity:0.8;fill:#232323;}.cls-14,.cls-16{font-size:28px;}.cls-15{opacity:0.4;font-size:10px;}.cls-16{opacity:0.68;}</style><clipPath id="clip-path"><rect class="cls-1" width="350" height="350"/></clipPath></defs><g class="cls-2"><g id="role"><rect class="cls-3" width="350" height="350"/><rect class="cls-4" width="350" height="350"/><image x="12%" y="10" height="330" xlink:href="'; p[1] = getUrl(tokenId, roleId); p[2] = '" /><image x="60%" y="250" width="40%" xlink:href="https://ipfs.io/ipfs/QmSLhQXyNgNL6JCq1Vvy3Dhun9Ewar2fr7tfMNtwKX2qzh/pet.svg" /><path class="cls-5" d="M33.71,12.44a7.39,7.39,0,0,1-5.23-2.16L26,7.81a1.06,1.06,0,0,0-.77-.32v3.67a1.07,1.07,0,0,1,1.07,1.07v1.2a1.88,1.88,0,0,0,1.88,1.87h.64a1.07,1.07,0,1,1,0,2.13h-.64a1.89,1.89,0,0,0-1.87,1.88V26.8a1.08,1.08,0,0,1-1.07,1.07v3.67A9.54,9.54,0,0,0,34.81,22V13.51A1.09,1.09,0,0,0,33.71,12.44Z"/><path class="cls-5" d="M25.26,27.85a1.07,1.07,0,0,1-1.06-1.06v-7.5a1.88,1.88,0,0,0-1.88-1.87h-.64a1.07,1.07,0,0,1,0-2.14h.64A1.88,1.88,0,0,0,24.2,13.4V12.2a1.07,1.07,0,0,1,1.06-1.06V7.49a1.05,1.05,0,0,0-.76.32L22,10.28a7.33,7.33,0,0,1-5.23,2.16,1.08,1.08,0,0,0-1.08,1.09V22a9.54,9.54,0,0,0,9.54,9.54V27.85Z"/><rect class="cls-6" y="265" width="18" height="42"/><line class="cls-7" x1="18" y1="265.5" x2="95.5" y2="265.5"/><line class="cls-7" x1="18" y1="306.5" x2="181.5" y2="306.5"/><g><rect class="cls-8" x="248" y="251" width="91" height="17"/></g><g><rect class="cls-8" x="248" y="270" width="91" height="17"/></g><g><rect class="cls-8" x="248" y="289" width="91" height="17"/></g><g><rect class="cls-8" x="248" y="308" width="91" height="17"/></g><g><rect class="cls-8" x="248" y="327" width="91" height="17"/></g><g><rect class="cls-8" x="11" y="152" width="88" height="17"/></g><g><rect class="cls-8" x="11" y="174" width="88" height="17"/></g><g><rect class="cls-8" x="11" y="196" width="88" height="17"/></g><g><rect class="cls-8" x="11" y="218" width="88" height="17"/></g><g><rect class="cls-8" x="11" y="240" width="88" height="17"/></g><rect class="cls-8" x="248" y="12" width="91" height="20"/><rect class="cls-8" x="248" y="36" width="91" height="20"/><rect class="cls-8" x="248" y="60" width="91" height="20"/><rect class="cls-8" x="248" y="84" width="91" height="20"/><rect class="cls-8" x="248" y="108" width="91" height="20"/><rect class="cls-8" x="248" y="132" width="91" height="20"/><rect class="cls-8" x="248" y="156" width="91" height="20"/><rect class="cls-8" x="248" y="180" width="91" height="20"/><path class="cls-5" d="M12.11,36.17l.5,64.53h-1l-.51-64.56Zm.49,63.45.32,42.16-1,0-.33-42.18Z"/><path class="cls-9" d="M292.12,227.66l40.42-.3,0,1-40.45.3Z"/></g></g><text class="cls-10" transform="translate(15.94 164.08)">'; p[3] = Role(roleAddr).getAlignment(roleId); p[4] = '</text><text class="cls-10" transform="translate(254.2 24.56)">'; p[5] = Loot(_lootAddr).getChest(lootId); p[6] = '</text><text class="cls-10" transform="translate(254.2 48.5)">'; p[7] = Loot(_lootAddr).getFoot(lootId); p[8] = '</text><text class="cls-10" transform="translate(254.2 72.28)">'; p[9] = Loot(_lootAddr).getHand(lootId); p[10] = '</text><text class="cls-10" transform="translate(254.2 97.22)">'; p[11] = Loot(_lootAddr).getHead(lootId); p[12] = '</text><text class="cls-10" transform="translate(254.2 120.67)">'; p[13] = Loot(_lootAddr).getNeck(lootId); p[14] = '</text><text class="cls-10" transform="translate(254.2 144.72)">'; p[15] = Loot(_lootAddr).getRing(lootId); p[16] = '</text><text class="cls-10" transform="translate(254.2 169)">'; p[17] = Loot(_lootAddr).getWaist(lootId); p[18] = '</text><text class="cls-10" transform="translate(254.2 193.05)">'; p[19] = Loot(_lootAddr).getWeapon(lootId); p[20] = '</text><text class="cls-10" transform="translate(254.2 263.46)">'; p[21] = Pets(petsAddr).getAlignment(tokenId); p[22] = '</text><text class="cls-10" transform="translate(254.2 281.13)">'; p[23] = Pets(petsAddr).getSpecies(tokenId); p[24] = '</text><text class="cls-10" transform="translate(254.2 300.61)">'; p[25] = Pets(petsAddr).getTrait(tokenId, 1); p[26] = '</text><text class="cls-10" transform="translate(254.2 319.26)">'; p[27] = Pets(petsAddr).getTrait(tokenId, 2); p[28] = '</text><text class="cls-10" transform="translate(254.2 339.08)">'; p[29] = Pets(petsAddr).getTrait(tokenId, 3); p[30] = '</text><text class="cls-10" transform="translate(15.94 185.66)">'; p[31] = Role(roleAddr).getOccupation(roleId); p[32] = '</text><text class="cls-10" transform="translate(15.94 207.7)">'; p[33] = Role(roleAddr).getTrait1(roleId); p[34] = '</text><text class="cls-10" transform="translate(15.94 229.94)">'; p[35] = Role(roleAddr).getTrait2(roleId); p[36] = '</text><text class="cls-10" transform="translate(15.94 251.62)">'; p[37] = Role(roleAddr).getTrait3(roleId); p[38] = '</text><text class="cls-11" transform="translate(136.13 303.28)">'; p[39] = toString(roleId); p[40] = '</text><text class="cls-12" transform="translate(21.56 304.54)">Role</text><text class="cls-13" transform="translate(19.68 100.41) rotate(90)">'; p[41] = toString(lootId); p[42] = '</text><text class="cls-14" transform="translate(19.32 35.87) rotate(90)">Loot</text><text class="cls-15" transform="translate(293.48 238.74)">'; p[43] = toString(tokenId); p[44] = '</text><text class="cls-16" transform="translate(288.63 223.13)">Pet</text></svg>'; string memory output = string(abi.encodePacked(p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], p[8])); output = string(abi.encodePacked(output, p[9], p[10], p[11], p[12], p[13], p[14], p[15], p[16])); output = string(abi.encodePacked(output, p[17], p[18], p[19], p[20], p[21], p[22], p[23], p[24])); output = string(abi.encodePacked(output, p[25], p[26], p[27], p[28], p[29], p[30], p[31], p[32])); output = string(abi.encodePacked(output, p[33], p[34], p[35], p[36], p[37], p[38], p[39], p[40])); output = string(abi.encodePacked(output, p[41], p[42], p[43], p[44])); string memory atrrOutput = makeAttributeParts(lootId, roleId, tokenId); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Role+Loot #', toString(tokenId), '", "description": "Combine Loot/mLoot, Role and Pet. Get Role+, the key to the New World.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"', ',"attributes":', atrrOutput, '}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function getUrl(uint tokenId, uint roleId) public view returns(string memory){ string memory prefix = "https://ipfs.io/ipfs/QmSLhQXyNgNL6JCq1Vvy3Dhun9Ewar2fr7tfMNtwKX2qzh/"; string memory suffix = ".svg"; if(!stringCompare(tokenData[tokenId].url, "")){ return tokenData[tokenId].url; } string memory race = Role(roleAddr).getRace(roleId); string memory gender = Role(roleAddr).getGender(roleId); string memory raceId; if(stringCompare(race, "Human")){ raceId = "0"; }else if(stringCompare(race, "Elf")){ raceId = "1"; }else if(stringCompare(race, "Orc")){ raceId = "2"; }else if(stringCompare(race, "Undead")){ raceId = "3"; }else if(stringCompare(race, "Demons")){ raceId = "4"; }else{ raceId = "5"; } string memory genderId; if(stringCompare(gender, "Female")){ genderId = "1"; } return string(abi.encodePacked(prefix, raceId, genderId, suffix)); } function makeAttributeParts(uint lootId, uint roleId, uint petId) internal view returns (string memory){ address _lootAddr = lootAddr; if(lootId > 8000){ _lootAddr = mlootAddr; } string[25] memory a; a[0] = '[{ "trait_type": "RoleAlignment", "value": "'; a[1] = Role(roleAddr).getAlignment(roleId); a[2] = '" }, { "trait_type": "RoleOccupation", "value": "'; a[3] = Role(roleAddr).getOccupation(roleId); a[4] = '" }, { "trait_type": "PetAlignment", "value": "'; a[5] = Pets(petsAddr).getAlignment(petId); a[6] = '" }, { "trait_type": "PetSpecies", "value": "'; a[7] = Pets(petsAddr).getSpecies(petId); a[8] = '" }, { "trait_type": "Chest", "value": "'; a[9] = Loot(_lootAddr).getChest(lootId); a[10] = '" }, { "trait_type": "Foot", "value": "'; a[11] = Loot(_lootAddr).getFoot(lootId); a[12] = '" }, { "trait_type": "Hand", "value": "'; a[13] = Loot(_lootAddr).getHand(lootId); a[14] = '" }, { "trait_type": "Head", "value": "'; a[15] = Loot(_lootAddr).getHead(lootId); a[16] = '" }, { "trait_type": "Neck", "value": "'; a[17] = Loot(_lootAddr).getNeck(lootId); a[18] = '" }, { "trait_type": "Ring", "value": "'; a[19] = Loot(_lootAddr).getRing(lootId); a[20] = '" }, { "trait_type": "Waist", "value": "'; a[21] = Loot(_lootAddr).getWaist(lootId); a[22] = '" }, { "trait_type": "Weapon", "value": "'; a[23] = Loot(_lootAddr).getWeapon(lootId); a[24] = '" }]'; string memory output = string(abi.encodePacked(a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8])); output = string(abi.encodePacked(output, a[9], a[10], a[11], a[12], a[13], a[14], a[15], a[16])); output = string(abi.encodePacked(output, a[17], a[18], a[19], a[20], a[21], a[22], a[23], a[24])); return output; } function claim(uint lootId, uint petId, uint roleId, string memory imageUrl) public { require(!_exists(petId), "Token ID invalid"); require(Pets(petsAddr).ownerOf(petId) == _msgSender(), "not pet owner"); require(Role(roleAddr).ownerOf(roleId) == _msgSender(), "not role owner"); if(lootId > 8000){ require(Loot(mlootAddr).ownerOf(lootId) == _msgSender(), "not mloot owner"); }else{ require(Loot(lootAddr).ownerOf(lootId) == _msgSender(), "not loot owner"); } _safeMint(_msgSender(), petId); tokenData[petId] = Data(roleId, lootId, imageUrl); } function setImageUrl(uint tokenId, string memory imageUrl) public{ require(_exists(tokenId), "ID invalid"); require(ownerOf(tokenId) == _msgSender(), "not owner"); tokenData[tokenId].url = imageUrl; } function toString(uint value) public pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint temp = value; uint digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint(value % 10))); value /= 10; } return string(buffer); } } library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"lootId","type":"uint256"},{"internalType":"uint256","name":"petId","type":"uint256"},{"internalType":"uint256","name":"roleId","type":"uint256"},{"internalType":"string","name":"imageUrl","type":"string"}],"name":"claim","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"roleId","type":"uint256"}],"name":"getUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"imageUrl","type":"string"}],"name":"setImageUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"a","type":"string"},{"internalType":"string","name":"b","type":"string"}],"name":"stringCompare","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"value","type":"uint256"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenData","outputs":[{"internalType":"uint256","name":"roleId","type":"uint256"},{"internalType":"uint256","name":"lootId","type":"uint256"},{"internalType":"string","name":"url","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b80546001600160a01b031990811673cd4d337554862f9bc9ffffb67465b7d643e4e3ad17909155600c8054821673997020483a30678436e76c08a65bbecbe69bf704179055600d8054821673ff9c1b15b16263c61d017ee9f65c50e4ae0113d7179055600e8054909116731dfe7ca09e99d10835bf73044a23b73fc20623df1790553480156200009557600080fd5b506040805180820182526009815268149bdb194ad31bdbdd60ba1b60208083019182528351808501909452600384526214941360ea1b908401528151919291620000e29160009162000171565b508051620000f890600190602084019062000171565b505050620001156200010f6200011b60201b60201c565b6200011f565b62000254565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017f9062000217565b90600052602060002090601f016020900481019282620001a35760008555620001ee565b82601f10620001be57805160ff1916838001178555620001ee565b82800160010185558215620001ee579182015b82811115620001ee578251825591602001919060010190620001d1565b50620001fc92915062000200565b5090565b5b80821115620001fc576000815560010162000201565b600181811c908216806200022c57607f821691505b602082108114156200024e57634e487b7160e01b600052602260045260246000fd5b50919050565b6159a480620002646000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636900a3ae116100de578063b4b5b48f11610097578063b9a0290111610071578063b9a029011461032e578063c87b56dd14610341578063e985e9c514610354578063f2fde38b1461039057600080fd5b8063b4b5b48f146102e6578063b88d4fde14610308578063b8bdd2451461031b57600080fd5b80636900a3ae1461028c57806370a082311461029f578063715018a6146102b25780638da5cb5b146102ba57806395d89b41146102cb578063a22cb465146102d357600080fd5b806323b872dd1161013057806323b872dd1461021a5780632f745c591461022d57806342842e0e146102405780634f6ccce71461025357806360353db9146102665780636352211e1461027957600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806315ea5e26146101f557806318160ddd14610208575b600080fd5b61018b610186366004613b7f565b6103a3565b60405190151581526020015b60405180910390f35b6101a86103ce565b60405161019791906140be565b6101c86101c3366004613c94565b610460565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004613b53565b6104fa565b005b6101a8610203366004613cea565b610610565b6008545b604051908152602001610197565b6101f3610228366004613a5f565b610ac0565b61020c61023b366004613b53565b610af1565b6101f361024e366004613a5f565b610b87565b61020c610261366004613c94565b610ba2565b61018b610274366004613c30565b610c35565b6101c8610287366004613c94565b610c60565b6101a861029a366004613c94565b610cd7565b61020c6102ad3660046139ec565b610ddd565b6101f3610e64565b600a546001600160a01b03166101c8565b6101a8610eca565b6101f36102e1366004613b20565b610ed9565b6102f96102f4366004613c94565b610f9e565b60405161019793929190614174565b6101f3610316366004613aa0565b611049565b6101f3610329366004613cad565b611081565b6101f361033c366004613d0c565b611143565b6101a861034f366004613c94565b611527565b61018b610362366004613a26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f361039e3660046139ec565b6124c2565b60006001600160e01b0319821663780e9d6360e01b14806103c857506103c88261258d565b92915050565b6060600080546103dd9061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546104099061427a565b80156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061050582610c60565b9050806001600160a01b0316836001600160a01b031614156105735760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104d5565b336001600160a01b038216148061058f575061058f8133610362565b6106015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104d5565b61060b83836125dd565b505050565b606060006040518060800160405280604481526020016158c36044913990506000604051806040016040528060048152602001632e73766760e01b8152509050610707600f600087815260200190815260200160002060020180546106749061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546106a09061427a565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b505050505060405180602001604052806000815250610c35565b6107ae576000858152600f6020526040902060020180546107279061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546107539061427a565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050925050506103c8565b600b54604051630d71aba560e01b8152600481018690526000916001600160a01b031690630d71aba59060240160006040518083038186803b1580156107f357600080fd5b505afa158015610807573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261082f9190810190613bb9565b600b5460405163e06d2eb560e01b8152600481018890529192506000916001600160a01b039091169063e06d2eb59060240160006040518083038186803b15801561087957600080fd5b505afa15801561088d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108b59190810190613bb9565b905060606108e08360405180604001604052806005815260200164243ab6b0b760d91b815250610c35565b1561090357506040805180820190915260018152600360fc1b6020820152610a43565b610928836040518060400160405280600381526020016222b63360e91b815250610c35565b1561094b57506040805180820190915260018152603160f81b6020820152610a43565b61097083604051806040016040528060038152602001624f726360e81b815250610c35565b1561099357506040805180820190915260018152601960f91b6020820152610a43565b6109bb8360405180604001604052806006815260200165155b9919585960d21b815250610c35565b156109de57506040805180820190915260018152603360f81b6020820152610a43565b610a06836040518060400160405280600681526020016544656d6f6e7360d01b815250610c35565b15610a2957506040805180820190915260018152600d60fa1b6020820152610a43565b506040805180820190915260018152603560f81b60208201525b6060610a6d836040518060400160405280600681526020016546656d616c6560d01b815250610c35565b15610a8c57506040805180820190915260018152603160f81b60208201525b85828287604051602001610aa39493929190613d86565b604051602081830303815290604052965050505050505092915050565b610aca338261264b565b610ae65760405162461bcd60e51b81526004016104d590614123565b61060b83838361273e565b6000610afc83610ddd565b8210610b5e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104d5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61060b83838360405180602001604052806000815250611049565b6000610bad60085490565b8210610c105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104d5565b60088281548110610c2357610c23614326565b90600052602060002001549050919050565b60008151835114610c48575060006103c8565b818051906020012083805190602001201490506103c8565b6000818152600260205260408120546001600160a01b0316806103c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104d5565b606081610cfb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610d255780610d0f816142b5565b9150610d1e9050600a83614204565b9150610cff565b60008167ffffffffffffffff811115610d4057610d4061433c565b6040519080825280601f01601f191660200182016040528015610d6a576020820181803683370190505b5090505b8415610dd557610d7f600183614237565b9150610d8c600a866142d0565b610d979060306141ec565b60f81b818381518110610dac57610dac614326565b60200101906001600160f81b031916908160001a905350610dce600a86614204565b9450610d6e565b949350505050565b60006001600160a01b038216610e485760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104d5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ebe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d5565b610ec860006128e9565b565b6060600180546103dd9061427a565b6001600160a01b038216331415610f325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104d5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f6020526000908152604090208054600182015460028301805492939192610fc69061427a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff29061427a565b801561103f5780601f106110145761010080835404028352916020019161103f565b820191906000526020600020905b81548152906001019060200180831161102257829003601f168201915b5050505050905083565b611053338361264b565b61106f5760405162461bcd60e51b81526004016104d590614123565b61107b8484848461293b565b50505050565b6000828152600260205260409020546001600160a01b03166110d25760405162461bcd60e51b815260206004820152600a6024820152691251081a5b9d985b1a5960b21b60448201526064016104d5565b336110dc83610c60565b6001600160a01b03161461111e5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b60448201526064016104d5565b6000828152600f60209081526040909120825161060b926002909201918401906138ab565b6000838152600260205260409020546001600160a01b03161561119b5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b60448201526064016104d5565b33600c546040516331a9108f60e11b8152600481018690526001600160a01b039283169290911690636352211e9060240160206040518083038186803b1580156111e457600080fd5b505afa1580156111f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121c9190613a09565b6001600160a01b0316146112625760405162461bcd60e51b815260206004820152600d60248201526c3737ba103832ba1037bbb732b960991b60448201526064016104d5565b33600b546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e9060240160206040518083038186803b1580156112ab57600080fd5b505afa1580156112bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e39190613a09565b6001600160a01b03161461132a5760405162461bcd60e51b815260206004820152600e60248201526d3737ba103937b6329037bbb732b960911b60448201526064016104d5565b611f408411156114025733600e546040516331a9108f60e11b8152600481018790526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561137d57600080fd5b505afa158015611391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b59190613a09565b6001600160a01b0316146113fd5760405162461bcd60e51b815260206004820152600f60248201526e3737ba1036b637b7ba1037bbb732b960891b60448201526064016104d5565b6114ca565b33600d546040516331a9108f60e11b8152600481018790526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561144b57600080fd5b505afa15801561145f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114839190613a09565b6001600160a01b0316146114ca5760405162461bcd60e51b815260206004820152600e60248201526d3737ba103637b7ba1037bbb732b960911b60448201526064016104d5565b6114d4338461296e565b6040805160608101825283815260208082018781528284018581526000888152600f84529490942083518155905160018201559251805192939261151e92600285019201906138ab565b50505050505050565b60606000600f6000848152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201805461156d9061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546115999061427a565b80156115e65780601f106115bb576101008083540402835291602001916115e6565b820191906000526020600020905b8154815290600101906020018083116115c957829003601f168201915b50505091909252505081516020830151600d5493945090929091506001600160a01b0316611f408211156116225750600e546001600160a01b03165b61162a61392f565b604051806104c001604052806104a081526020016143fd6104a0913981526116528785610610565b81600160200201819052506040518061092001604052806108f18152602001614a656108f191398160026020020152600b546040516327257c7560e01b8152600481018690526001600160a01b03909116906327257c759060240160006040518083038186803b1580156116c557600080fd5b505afa1580156116d9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117019190810190613bb9565b606080830191909152604080519182019052603f808252614a26602083013960808201526040516377b403ad60e11b8152600481018490526001600160a01b0383169063ef68075a9060240160006040518083038186803b15801561176557600080fd5b505afa158015611779573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117a19190810190613bb9565b60a08201526040805160608101909152603e8082526148c4602083013960c0820152604051630e99990d60e01b8152600481018490526001600160a01b03831690630e99990d9060240160006040518083038186803b15801561180357600080fd5b505afa158015611817573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261183f9190810190613bb9565b60e08201526040805160608101909152603f8082526158446020830139610100820152604051636a3f934f60e11b8152600481018490526001600160a01b0383169063d47f269e9060240160006040518083038186803b1580156118a257600080fd5b505afa1580156118b6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118de9190810190613bb9565b6101208201526040805160608101909152603f80825261437e6020830139610140820152604051639720c96960e01b8152600481018490526001600160a01b03831690639720c9699060240160006040518083038186803b15801561194257600080fd5b505afa158015611956573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261197e9190810190613bb9565b610160820152604080516060810182528181529061564c6020830139610180820152604051630ce4135560e31b8152600481018490526001600160a01b038316906367209aa89060240160006040518083038186803b1580156119e057600080fd5b505afa1580156119f4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a1c9190810190613bb9565b6101a0820152604080516060810182528181529061577360208301396101c082015260405163c08a5dd560e01b8152600481018490526001600160a01b0383169063c08a5dd59060240160006040518083038186803b158015611a7e57600080fd5b505afa158015611a92573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aba9190810190613bb9565b6101e08201526040805160608101909152603d8082526149296020830139610200820152604051639bdc1b6960e01b8152600481018490526001600160a01b03831690639bdc1b699060240160006040518083038186803b158015611b1e57600080fd5b505afa158015611b32573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b5a9190810190613bb9565b61022082015260408051606081018252818152906149666020830139610240820152604051639e41b73f60e01b8152600481018490526001600160a01b03831690639e41b73f9060240160006040518083038186803b158015611bbc57600080fd5b505afa158015611bd0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bf89190810190613bb9565b610260820152604080516060810182528181529061547c6020830139610280820152600c546040516327257c7560e01b8152600481018990526001600160a01b03909116906327257c759060240160006040518083038186803b158015611c5e57600080fd5b505afa158015611c72573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c9a9190810190613bb9565b6102a0820152604080516060810182528181529061592f60208301396102c0820152600c54604051632be6a2a960e01b8152600481018990526001600160a01b0390911690632be6a2a99060240160006040518083038186803b158015611d0057600080fd5b505afa158015611d14573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d3c9190810190613bb9565b6102e082015260408051606081018252818152906143bd6020830139610300820152600c5460405163bb08d1cd60e01b815260048101899052600160248201526001600160a01b039091169063bb08d1cd9060440160006040518083038186803b158015611da957600080fd5b505afa158015611dbd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611de59190810190613bb9565b61032082015260408051606081018252818152906158836020830139610340820152600c5460405163bb08d1cd60e01b815260048101899052600260248201526001600160a01b039091169063bb08d1cd9060440160006040518083038186803b158015611e5257600080fd5b505afa158015611e66573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e8e9190810190613bb9565b610360820152604080516060810182528181529061568c6020830139610380820152600c5460405163bb08d1cd60e01b815260048101899052600360248201526001600160a01b039091169063bb08d1cd9060440160006040518083038186803b158015611efb57600080fd5b505afa158015611f0f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f379190810190613bb9565b6103a082015260408051606081018252818152906156f360208301396103c0820152600b54604051630ad9687b60e11b8152600481018690526001600160a01b03909116906315b2d0f69060240160006040518083038186803b158015611f9d57600080fd5b505afa158015611fb1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fd99190810190613bb9565b6103e08201526040805160608101909152603f8082526153566020830139610400820152600b5460405163175d454d60e11b8152600481018690526001600160a01b0390911690632eba8a9a9060240160006040518083038186803b15801561204157600080fd5b505afa158015612055573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261207d9190810190613bb9565b61042082015260408051606081018252818152906157db6020830139610440820152600b54604051636c3370a960e11b8152600481018690526001600160a01b039091169063d866e1529060240160006040518083038186803b1580156120e357600080fd5b505afa1580156120f7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261211f9190810190613bb9565b61046082015260408051606081018252818152906157336020830139610480820152600b5460405163499309c360e01b8152600481018690526001600160a01b039091169063499309c39060240160006040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121c19190810190613bb9565b6104a0820152604080516080810190915260418082526154ed60208301396104c08201526121ee84610cd7565b6104e08201526040805160c08101909152608f80825261552e602083013961050082015261221b83610cd7565b6105208201526040805160c08101909152608f8082526155bd602083013961054082015261224887610cd7565b610560820152604080516080810190915260518082526149a6602083013961058082015280516020808301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0151965160009a6122ac9a9099989101613e48565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b01519799506122ff988a9890602001613e48565b60408051808303601f19018152908290526102208401516102408501516102608601516102808701516102a08801516102c08901516102e08a01516103008b0151979950612352988a9890602001613e48565b60408051601f19818403018152908290526103208401516103408501516103608601516103808701516103a08801516103c08901516103e08a01516104008b01519799506123a5988a9890602001613e48565b60408051808303601f19018152908290526104208401516104408501516104608601516104808701516104a08801516104c08901516104e08a01516105008b01519799506123f8988a9890602001613e48565b60408051808303601f190181529082905261052084015161054085015161056086015161058087015193955061243394869490602001613ddd565b6040516020818303038152906040529050600061245185878b61298c565b905060006124916124618b610cd7565b61246a8561326f565b8460405160200161247d93929190613f08565b60405160208183030381529060405261326f565b9050806040516020016124a4919061403c565b60408051601f198184030181529190529a9950505050505050505050565b600a546001600160a01b0316331461251c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d5565b6001600160a01b0381166125815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d5565b61258a816128e9565b50565b60006001600160e01b031982166380ac58cd60e01b14806125be57506001600160e01b03198216635b5e139f60e01b145b806103c857506301ffc9a760e01b6001600160e01b03198316146103c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061261282610c60565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d5565b60006126cf83610c60565b9050806001600160a01b0316846001600160a01b0316148061270a5750836001600160a01b03166126ff84610460565b6001600160a01b0316145b80610dd557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610dd5565b826001600160a01b031661275182610c60565b6001600160a01b0316146127b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104d5565b6001600160a01b03821661281b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104d5565b6128268383836133d5565b6128316000826125dd565b6001600160a01b038316600090815260036020526040812080546001929061285a908490614237565b90915550506001600160a01b03821660009081526003602052604081208054600192906128889084906141ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61294684848461273e565b6129528484848461348d565b61107b5760405162461bcd60e51b81526004016104d5906140d1565b61298882826040518060200160405280600081525061359a565b5050565b600d546060906001600160a01b0316611f408511156129b35750600e546001600160a01b03165b6129bb613957565b6040518060600160405280602c8152602001615395602c91398152600b546040516327257c7560e01b8152600481018790526001600160a01b03909116906327257c759060240160006040518083038186803b158015612a1a57600080fd5b505afa158015612a2e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a569190810190613bb9565b81600160200201819052506040518060600160405280603181526020016154bc603191398160026020020152600b54604051630ad9687b60e11b8152600481018790526001600160a01b03909116906315b2d0f69060240160006040518083038186803b158015612ac657600080fd5b505afa158015612ada573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b029190810190613bb9565b606080830191909152604080519182019052602f8082526149f760208301396080820152600c546040516327257c7560e01b8152600481018690526001600160a01b03909116906327257c759060240160006040518083038186803b158015612b6a57600080fd5b505afa158015612b7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ba69190810190613bb9565b60a08201526040805160608101909152602d8082526153c1602083013960c0820152600c54604051632be6a2a960e01b8152600481018690526001600160a01b0390911690632be6a2a99060240160006040518083038186803b158015612c0c57600080fd5b505afa158015612c20573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612c489190810190613bb9565b60e0820152604080516060810190915260288082526157b360208301396101008201526040516377b403ad60e11b8152600481018790526001600160a01b0383169063ef68075a9060240160006040518083038186803b158015612cab57600080fd5b505afa158015612cbf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ce79190810190613bb9565b6101208201526040805160608101909152602780825261489d6020830139610140820152604051630e99990d60e01b8152600481018790526001600160a01b03831690630e99990d9060240160006040518083038186803b158015612d4b57600080fd5b505afa158015612d5f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612d879190810190613bb9565b610160820152604080516060810190915260278082526154556020830139610180820152604051636a3f934f60e11b8152600481018790526001600160a01b0383169063d47f269e9060240160006040518083038186803b158015612deb57600080fd5b505afa158015612dff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e279190810190613bb9565b6101a08201526040805160608101909152602780825261490260208301396101c0820152604051639720c96960e01b8152600481018790526001600160a01b03831690639720c9699060240160006040518083038186803b158015612e8b57600080fd5b505afa158015612e9f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ec79190810190613bb9565b6101e0820152604080516060810190915260278082526156cc6020830139610200820152604051630ce4135560e31b8152600481018790526001600160a01b038316906367209aa89060240160006040518083038186803b158015612f2b57600080fd5b505afa158015612f3f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612f679190810190613bb9565b610220820152604080516060810190915260278082526153ee602083013961024082015260405163c08a5dd560e01b8152600481018790526001600160a01b0383169063c08a5dd59060240160006040518083038186803b158015612fcb57600080fd5b505afa158015612fdf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526130079190810190613bb9565b610260820152604080516060810190915260288082526159076020830139610280820152604051639bdc1b6960e01b8152600481018790526001600160a01b03831690639bdc1b699060240160006040518083038186803b15801561306b57600080fd5b505afa15801561307f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526130a79190810190613bb9565b6102a08201526040805160608101909152602980825261581b60208301396102c0820152604051639e41b73f60e01b8152600481018790526001600160a01b03831690639e41b73f9060240160006040518083038186803b15801561310b57600080fd5b505afa15801561311f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526131479190810190613bb9565b6102e0820152604080518082018252600481526322207d5d60e01b602080830191909152610300840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a6131ae9a909101613e48565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950613201988a9890602001613e48565b60408051808303601f19018152908290526102208401516102408501516102608601516102808701516102a08801516102c08901516102e08a01516103008b0151979950613254988a9890602001613e48565b60408051808303601f19018152919052979650505050505050565b80516060908061328f575050604080516020810190915260008152919050565b6000600361329e8360026141ec565b6132a89190614204565b6132b3906004614218565b905060006132c28260206141ec565b67ffffffffffffffff8111156132da576132da61433c565b6040519080825280601f01601f191660200182016040528015613304576020820181803683370190505b5090506000604051806060016040528060408152602001615415604091399050600181016020830160005b86811015613390576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161332f565b5060038606600181146133aa57600281146133bb576133c7565b613d3d60f01b6001198301526133c7565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b0383166134305761342b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613453565b816001600160a01b0316836001600160a01b0316146134535761345383826135cd565b6001600160a01b03821661346a5761060b8161366a565b826001600160a01b0316826001600160a01b03161461060b5761060b8282613719565b60006001600160a01b0384163b1561358f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906134d1903390899088908890600401614081565b602060405180830381600087803b1580156134eb57600080fd5b505af192505050801561351b575060408051601f3d908101601f1916820190925261351891810190613b9c565b60015b613575573d808015613549576040519150601f19603f3d011682016040523d82523d6000602084013e61354e565b606091505b50805161356d5760405162461bcd60e51b81526004016104d5906140d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dd5565b506001949350505050565b6135a4838361375d565b6135b1600084848461348d565b61060b5760405162461bcd60e51b81526004016104d5906140d1565b600060016135da84610ddd565b6135e49190614237565b600083815260076020526040902054909150808214613637576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061367c90600190614237565b600083815260096020526040812054600880549394509092849081106136a4576136a4614326565b9060005260206000200154905080600883815481106136c5576136c5614326565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806136fd576136fd614310565b6001900381819060005260206000200160009055905550505050565b600061372483610ddd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166137b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104d5565b6000818152600260205260409020546001600160a01b0316156138185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104d5565b613824600083836133d5565b6001600160a01b038216600090815260036020526040812080546001929061384d9084906141ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546138b79061427a565b90600052602060002090601f0160209004810192826138d9576000855561391f565b82601f106138f257805160ff191683800117855561391f565b8280016001018555821561391f579182015b8281111561391f578251825591602001919060010190613904565b5061392b929150613972565b5090565b604051806105a00160405280602d905b606081526020019060019003908161393f5790505090565b6040805161032081019091526060815260186020820161393f565b5b8082111561392b5760008155600101613973565b600061399a613995846141c4565b614193565b90508281528383830111156139ae57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126139d657600080fd5b6139e583833560208501613987565b9392505050565b6000602082840312156139fe57600080fd5b81356139e581614352565b600060208284031215613a1b57600080fd5b81516139e581614352565b60008060408385031215613a3957600080fd5b8235613a4481614352565b91506020830135613a5481614352565b809150509250929050565b600080600060608486031215613a7457600080fd5b8335613a7f81614352565b92506020840135613a8f81614352565b929592945050506040919091013590565b60008060008060808587031215613ab657600080fd5b8435613ac181614352565b93506020850135613ad181614352565b925060408501359150606085013567ffffffffffffffff811115613af457600080fd5b8501601f81018713613b0557600080fd5b613b1487823560208401613987565b91505092959194509250565b60008060408385031215613b3357600080fd5b8235613b3e81614352565b915060208301358015158114613a5457600080fd5b60008060408385031215613b6657600080fd5b8235613b7181614352565b946020939093013593505050565b600060208284031215613b9157600080fd5b81356139e581614367565b600060208284031215613bae57600080fd5b81516139e581614367565b600060208284031215613bcb57600080fd5b815167ffffffffffffffff811115613be257600080fd5b8201601f81018413613bf357600080fd5b8051613c01613995826141c4565b818152856020838501011115613c1657600080fd5b613c2782602083016020860161424e565b95945050505050565b60008060408385031215613c4357600080fd5b823567ffffffffffffffff80821115613c5b57600080fd5b613c67868387016139c5565b93506020850135915080821115613c7d57600080fd5b50613c8a858286016139c5565b9150509250929050565b600060208284031215613ca657600080fd5b5035919050565b60008060408385031215613cc057600080fd5b82359150602083013567ffffffffffffffff811115613cde57600080fd5b613c8a858286016139c5565b60008060408385031215613cfd57600080fd5b50508035926020909101359150565b60008060008060808587031215613d2257600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115613d4e57600080fd5b613b14878288016139c5565b60008151808452613d7281602086016020860161424e565b601f01601f19169290920160200192915050565b60008551613d98818460208a0161424e565b855190830190613dac818360208a0161424e565b8551910190613dbf81836020890161424e565b8451910190613dd281836020880161424e565b019695505050505050565b60008651613def818460208b0161424e565b865190830190613e03818360208b0161424e565b8651910190613e16818360208a0161424e565b8551910190613e2981836020890161424e565b8451910190613e3c81836020880161424e565b01979650505050505050565b60008a51613e5a818460208f0161424e565b8a51613e6c8183860160208f0161424e565b8a519184010190613e81818360208e0161424e565b8951910190613e94818360208d0161424e565b8851613ea68183850160208d0161424e565b8851929091010190613ebc818360208b0161424e565b8651613ece8183850160208b0161424e565b8651929091010190613ee481836020890161424e565b8451613ef6818385016020890161424e565b9101019b9a5050505050505050505050565b747b226e616d65223a2022526f6c652b4c6f6f74202360581b81528351600090613f3981601585016020890161424e565b7f222c20226465736372697074696f6e223a2022436f6d62696e65204c6f6f742f6015918401918201527f6d4c6f6f742c20526f6c6520616e64205065742e2047657420526f6c652b2c2060358201527f746865206b657920746f20746865204e657720576f726c642e222c2022696d6160558201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c60758201528451613fe881609584016020890161424e565b601160f91b609592909101918201526d161130ba3a3934b13aba32b9911d60911b609682015283516140218160a484016020880161424e565b607d60f81b60a4929091019182015260a50195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161407481601d85016020870161424e565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906140b490830184613d5a565b9695505050505050565b6020815260006139e56020830184613d5a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b838152826020820152606060408201526000613c276060830184613d5a565b604051601f8201601f1916810167ffffffffffffffff811182821017156141bc576141bc61433c565b604052919050565b600067ffffffffffffffff8211156141de576141de61433c565b50601f01601f191660200190565b600082198211156141ff576141ff6142e4565b500190565b600082614213576142136142fa565b500490565b6000816000190483118215151615614232576142326142e4565b500290565b600082821015614249576142496142e4565b500390565b60005b83811015614269578181015183820152602001614251565b8381111561107b5750506000910152565b600181811c9082168061428e57607f821691505b602082108114156142af57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156142c9576142c96142e4565b5060010190565b6000826142df576142df6142fa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461258a57600080fd5b6001600160e01b03198116811461258a57600080fdfe3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322039372e323229223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203330302e363129223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b222076696577426f783d223020302033353020333530223e3c646566733e3c7374796c653e2e636c732d312c2e636c732d377b66696c6c3a6e6f6e653b7d2e636c732d327b636c69702d706174683a75726c2823636c69702d70617468293b7d2e636c732d337b66696c6c3a236666663b7d2e636c732d347b66696c6c3a236532653265323b7d2e636c732d357b66696c6c3a233464346434643b7d2e636c732d31302c2e636c732d31312c2e636c732d31332c2e636c732d31352c2e636c732d31362c2e636c732d367b66696c6c3a233361336133613b7d2e636c732d377b7374726f6b653a233361336133613b7d2e636c732d387b66696c6c3a233839383938393b6f7061636974793a302e353b7d2e636c732d397b66696c6c3a233531353135313b7d2e636c732d31307b666f6e742d73697a653a3870783b666f6e742d66616d696c793a4d6963726f736f667459614865694c696768742c204d6963726f736f66742059614865693b7d2e636c732d31317b6f7061636974793a302e35383b666f6e742d73697a653a323170783b7d2e636c732d31312c2e636c732d31332c2e636c732d31357b666f6e742d66616d696c793a4d6963726f736f667459614865692d426f6c642c204d6963726f736f66742059614865693b7d2e636c732d31312c2e636c732d31322c2e636c732d31332c2e636c732d31342c2e636c732d31352c2e636c732d31367b666f6e742d7765696768743a3730303b7d2e636c732d31327b666f6e742d73697a653a343870783b66696c6c3a233236323632363b7d2e636c732d31322c2e636c732d31342c2e636c732d31367b666f6e742d66616d696c793a417269616c2d426f6c644d542c20417269616c3b7d2e636c732d31337b6f7061636974793a302e36333b666f6e742d73697a653a313470783b7d2e636c732d31332c2e636c732d31347b6c65747465722d73706163696e673a2d302e3033656d3b7d2e636c732d31347b6f7061636974793a302e383b66696c6c3a233233323332333b7d2e636c732d31342c2e636c732d31367b666f6e742d73697a653a323870783b7d2e636c732d31357b6f7061636974793a302e343b666f6e742d73697a653a313070783b7d2e636c732d31367b6f7061636974793a302e36383b7d3c2f7374796c653e3c636c6970506174682069643d22636c69702d70617468223e3c7265637420636c6173733d22636c732d31222077696474683d2233353022206865696768743d22333530222f3e3c2f636c6970506174683e3c2f646566733e3c6720636c6173733d22636c732d32223e3c672069643d22726f6c65223e3c7265637420636c6173733d22636c732d33222077696474683d2233353022206865696768743d22333530222f3e3c7265637420636c6173733d22636c732d34222077696474683d2233353022206865696768743d22333530222f3e3c696d61676520783d223132252220793d22313022206865696768743d223333302220786c696e6b3a687265663d2222207d2c207b202274726169745f74797065223a2022466f6f74222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322034382e3529223e22207d2c207b202274726169745f74797065223a202248656164222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322031363929223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203139332e303529223e3c2f746578743e3c7465787420636c6173733d22636c732d313622207472616e73666f726d3d227472616e736c617465283238382e3633203232332e313329223e5065743c2f746578743e3c2f7376673e22207d2c207b202274726169745f74797065223a2022506574416c69676e6d656e74222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322032342e353629223e22202f3e3c696d61676520783d223630252220793d22323530222077696474683d223430252220786c696e6b3a687265663d2268747470733a2f2f697066732e696f2f697066732f516d534c685158794e674e4c364a437131567679334468756e39457761723266723774664d4e74774b5832717a682f7065742e73766722202f3e3c7061746820636c6173733d22636c732d352220643d224d33332e37312c31322e343461372e33392c372e33392c302c302c312d352e32332d322e31364c32362c372e383161312e30362c312e30362c302c302c302d2e37372d2e333276332e363761312e30372c312e30372c302c302c312c312e30372c312e303776312e3261312e38382c312e38382c302c302c302c312e38382c312e3837682e363461312e30372c312e30372c302c312c312c302c322e3133682d2e363461312e38392c312e38392c302c302c302d312e38372c312e38385632362e3861312e30382c312e30382c302c302c312d312e30372c312e303776332e363741392e35342c392e35342c302c302c302c33342e38312c32325631332e353141312e30392c312e30392c302c302c302c33332e37312c31322e34345a222f3e3c7061746820636c6173733d22636c732d352220643d224d32352e32362c32372e383561312e30372c312e30372c302c302c312d312e30362d312e3036762d372e3561312e38382c312e38382c302c302c302d312e38382d312e3837682d2e363461312e30372c312e30372c302c302c312c302d322e3134682e363441312e38382c312e38382c302c302c302c32342e322c31332e345631322e3261312e30372c312e30372c302c302c312c312e30362d312e303656372e343961312e30352c312e30352c302c302c302d2e37362e33324c32322c31302e323861372e33332c372e33332c302c302c312d352e32332c322e31362c312e30382c312e30382c302c302c302d312e30382c312e303956323261392e35342c392e35342c302c302c302c392e35342c392e35345632372e38355a222f3e3c7265637420636c6173733d22636c732d362220793d22323635222077696474683d22313822206865696768743d223432222f3e3c6c696e6520636c6173733d22636c732d37222078313d223138222079313d223236352e35222078323d2239352e35222079323d223236352e35222f3e3c6c696e6520636c6173733d22636c732d37222078313d223138222079313d223330362e35222078323d223138312e35222079323d223330362e35222f3e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22323531222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22323730222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22323839222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22333038222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22333237222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22313532222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22313734222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22313936222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22323138222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22323430222077696474683d22383822206865696768743d223137222f3e3c2f673e3c7265637420636c6173733d22636c732d382220783d223234382220793d223132222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d223336222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d223630222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d223834222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313038222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313332222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313536222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313830222077696474683d22393122206865696768743d223230222f3e3c7061746820636c6173733d22636c732d352220643d224d31322e31312c33362e31376c2e352c36342e3533682d316c2d2e35312d36342e35365a6d2e34392c36332e34352e33322c34322e31362d312c302d2e33332d34322e31385a222f3e3c7061746820636c6173733d22636c732d392220643d224d3239322e31322c3232372e36366c34302e34322d2e332c302c312d34302e34352e335a222f3e3c2f673e3c2f673e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203136342e303829223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203230372e3729223e5b7b202274726169745f74797065223a2022526f6c65416c69676e6d656e74222c202276616c7565223a202222207d2c207b202274726169745f74797065223a202250657453706563696573222c202276616c7565223a202222207d2c207b202274726169745f74797065223a202252696e67222c202276616c7565223a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22207d2c207b202274726169745f74797065223a202248616e64222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203236332e343629223e22207d2c207b202274726169745f74797065223a2022526f6c654f636375706174696f6e222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313122207472616e73666f726d3d227472616e736c617465283133362e3133203330332e323829223e3c2f746578743e3c7465787420636c6173733d22636c732d313222207472616e73666f726d3d227472616e736c6174652832312e3536203330342e353429223e526f6c653c2f746578743e3c7465787420636c6173733d22636c732d313322207472616e73666f726d3d227472616e736c6174652831392e3638203130302e34312920726f7461746528393029223e3c2f746578743e3c7465787420636c6173733d22636c732d313422207472616e73666f726d3d227472616e736c6174652831392e33322033352e38372920726f7461746528393029223e4c6f6f743c2f746578743e3c7465787420636c6173733d22636c732d313522207472616e73666f726d3d227472616e736c617465283239332e3438203233382e373429223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203132302e363729223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203333392e303829223e22207d2c207b202274726169745f74797065223a20224e65636b222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203138352e363629223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203235312e363229223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203134342e373229223e22207d2c207b202274726169745f74797065223a20224368657374222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203232392e393429223e22207d2c207b202274726169745f74797065223a2022576561706f6e222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322037322e323829223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203331392e323629223e68747470733a2f2f697066732e696f2f697066732f516d534c685158794e674e4c364a437131567679334468756e39457761723266723774664d4e74774b5832717a682f22207d2c207b202274726169745f74797065223a20225761697374222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203238312e313329223ea2646970667358221220d360f0c1121ae5766c5fbed2ab93b4a3b4ab33cd6ea407226584fdc3257c5a8a64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636900a3ae116100de578063b4b5b48f11610097578063b9a0290111610071578063b9a029011461032e578063c87b56dd14610341578063e985e9c514610354578063f2fde38b1461039057600080fd5b8063b4b5b48f146102e6578063b88d4fde14610308578063b8bdd2451461031b57600080fd5b80636900a3ae1461028c57806370a082311461029f578063715018a6146102b25780638da5cb5b146102ba57806395d89b41146102cb578063a22cb465146102d357600080fd5b806323b872dd1161013057806323b872dd1461021a5780632f745c591461022d57806342842e0e146102405780634f6ccce71461025357806360353db9146102665780636352211e1461027957600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806315ea5e26146101f557806318160ddd14610208575b600080fd5b61018b610186366004613b7f565b6103a3565b60405190151581526020015b60405180910390f35b6101a86103ce565b60405161019791906140be565b6101c86101c3366004613c94565b610460565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004613b53565b6104fa565b005b6101a8610203366004613cea565b610610565b6008545b604051908152602001610197565b6101f3610228366004613a5f565b610ac0565b61020c61023b366004613b53565b610af1565b6101f361024e366004613a5f565b610b87565b61020c610261366004613c94565b610ba2565b61018b610274366004613c30565b610c35565b6101c8610287366004613c94565b610c60565b6101a861029a366004613c94565b610cd7565b61020c6102ad3660046139ec565b610ddd565b6101f3610e64565b600a546001600160a01b03166101c8565b6101a8610eca565b6101f36102e1366004613b20565b610ed9565b6102f96102f4366004613c94565b610f9e565b60405161019793929190614174565b6101f3610316366004613aa0565b611049565b6101f3610329366004613cad565b611081565b6101f361033c366004613d0c565b611143565b6101a861034f366004613c94565b611527565b61018b610362366004613a26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f361039e3660046139ec565b6124c2565b60006001600160e01b0319821663780e9d6360e01b14806103c857506103c88261258d565b92915050565b6060600080546103dd9061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546104099061427a565b80156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061050582610c60565b9050806001600160a01b0316836001600160a01b031614156105735760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104d5565b336001600160a01b038216148061058f575061058f8133610362565b6106015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104d5565b61060b83836125dd565b505050565b606060006040518060800160405280604481526020016158c36044913990506000604051806040016040528060048152602001632e73766760e01b8152509050610707600f600087815260200190815260200160002060020180546106749061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546106a09061427a565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b505050505060405180602001604052806000815250610c35565b6107ae576000858152600f6020526040902060020180546107279061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546107539061427a565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050925050506103c8565b600b54604051630d71aba560e01b8152600481018690526000916001600160a01b031690630d71aba59060240160006040518083038186803b1580156107f357600080fd5b505afa158015610807573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261082f9190810190613bb9565b600b5460405163e06d2eb560e01b8152600481018890529192506000916001600160a01b039091169063e06d2eb59060240160006040518083038186803b15801561087957600080fd5b505afa15801561088d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108b59190810190613bb9565b905060606108e08360405180604001604052806005815260200164243ab6b0b760d91b815250610c35565b1561090357506040805180820190915260018152600360fc1b6020820152610a43565b610928836040518060400160405280600381526020016222b63360e91b815250610c35565b1561094b57506040805180820190915260018152603160f81b6020820152610a43565b61097083604051806040016040528060038152602001624f726360e81b815250610c35565b1561099357506040805180820190915260018152601960f91b6020820152610a43565b6109bb8360405180604001604052806006815260200165155b9919585960d21b815250610c35565b156109de57506040805180820190915260018152603360f81b6020820152610a43565b610a06836040518060400160405280600681526020016544656d6f6e7360d01b815250610c35565b15610a2957506040805180820190915260018152600d60fa1b6020820152610a43565b506040805180820190915260018152603560f81b60208201525b6060610a6d836040518060400160405280600681526020016546656d616c6560d01b815250610c35565b15610a8c57506040805180820190915260018152603160f81b60208201525b85828287604051602001610aa39493929190613d86565b604051602081830303815290604052965050505050505092915050565b610aca338261264b565b610ae65760405162461bcd60e51b81526004016104d590614123565b61060b83838361273e565b6000610afc83610ddd565b8210610b5e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104d5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61060b83838360405180602001604052806000815250611049565b6000610bad60085490565b8210610c105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104d5565b60088281548110610c2357610c23614326565b90600052602060002001549050919050565b60008151835114610c48575060006103c8565b818051906020012083805190602001201490506103c8565b6000818152600260205260408120546001600160a01b0316806103c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104d5565b606081610cfb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610d255780610d0f816142b5565b9150610d1e9050600a83614204565b9150610cff565b60008167ffffffffffffffff811115610d4057610d4061433c565b6040519080825280601f01601f191660200182016040528015610d6a576020820181803683370190505b5090505b8415610dd557610d7f600183614237565b9150610d8c600a866142d0565b610d979060306141ec565b60f81b818381518110610dac57610dac614326565b60200101906001600160f81b031916908160001a905350610dce600a86614204565b9450610d6e565b949350505050565b60006001600160a01b038216610e485760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104d5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ebe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d5565b610ec860006128e9565b565b6060600180546103dd9061427a565b6001600160a01b038216331415610f325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104d5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f6020526000908152604090208054600182015460028301805492939192610fc69061427a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff29061427a565b801561103f5780601f106110145761010080835404028352916020019161103f565b820191906000526020600020905b81548152906001019060200180831161102257829003601f168201915b5050505050905083565b611053338361264b565b61106f5760405162461bcd60e51b81526004016104d590614123565b61107b8484848461293b565b50505050565b6000828152600260205260409020546001600160a01b03166110d25760405162461bcd60e51b815260206004820152600a6024820152691251081a5b9d985b1a5960b21b60448201526064016104d5565b336110dc83610c60565b6001600160a01b03161461111e5760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b60448201526064016104d5565b6000828152600f60209081526040909120825161060b926002909201918401906138ab565b6000838152600260205260409020546001600160a01b03161561119b5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b60448201526064016104d5565b33600c546040516331a9108f60e11b8152600481018690526001600160a01b039283169290911690636352211e9060240160206040518083038186803b1580156111e457600080fd5b505afa1580156111f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121c9190613a09565b6001600160a01b0316146112625760405162461bcd60e51b815260206004820152600d60248201526c3737ba103832ba1037bbb732b960991b60448201526064016104d5565b33600b546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e9060240160206040518083038186803b1580156112ab57600080fd5b505afa1580156112bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e39190613a09565b6001600160a01b03161461132a5760405162461bcd60e51b815260206004820152600e60248201526d3737ba103937b6329037bbb732b960911b60448201526064016104d5565b611f408411156114025733600e546040516331a9108f60e11b8152600481018790526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561137d57600080fd5b505afa158015611391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b59190613a09565b6001600160a01b0316146113fd5760405162461bcd60e51b815260206004820152600f60248201526e3737ba1036b637b7ba1037bbb732b960891b60448201526064016104d5565b6114ca565b33600d546040516331a9108f60e11b8152600481018790526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561144b57600080fd5b505afa15801561145f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114839190613a09565b6001600160a01b0316146114ca5760405162461bcd60e51b815260206004820152600e60248201526d3737ba103637b7ba1037bbb732b960911b60448201526064016104d5565b6114d4338461296e565b6040805160608101825283815260208082018781528284018581526000888152600f84529490942083518155905160018201559251805192939261151e92600285019201906138ab565b50505050505050565b60606000600f6000848152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201805461156d9061427a565b80601f01602080910402602001604051908101604052809291908181526020018280546115999061427a565b80156115e65780601f106115bb576101008083540402835291602001916115e6565b820191906000526020600020905b8154815290600101906020018083116115c957829003601f168201915b50505091909252505081516020830151600d5493945090929091506001600160a01b0316611f408211156116225750600e546001600160a01b03165b61162a61392f565b604051806104c001604052806104a081526020016143fd6104a0913981526116528785610610565b81600160200201819052506040518061092001604052806108f18152602001614a656108f191398160026020020152600b546040516327257c7560e01b8152600481018690526001600160a01b03909116906327257c759060240160006040518083038186803b1580156116c557600080fd5b505afa1580156116d9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117019190810190613bb9565b606080830191909152604080519182019052603f808252614a26602083013960808201526040516377b403ad60e11b8152600481018490526001600160a01b0383169063ef68075a9060240160006040518083038186803b15801561176557600080fd5b505afa158015611779573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117a19190810190613bb9565b60a08201526040805160608101909152603e8082526148c4602083013960c0820152604051630e99990d60e01b8152600481018490526001600160a01b03831690630e99990d9060240160006040518083038186803b15801561180357600080fd5b505afa158015611817573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261183f9190810190613bb9565b60e08201526040805160608101909152603f8082526158446020830139610100820152604051636a3f934f60e11b8152600481018490526001600160a01b0383169063d47f269e9060240160006040518083038186803b1580156118a257600080fd5b505afa1580156118b6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118de9190810190613bb9565b6101208201526040805160608101909152603f80825261437e6020830139610140820152604051639720c96960e01b8152600481018490526001600160a01b03831690639720c9699060240160006040518083038186803b15801561194257600080fd5b505afa158015611956573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261197e9190810190613bb9565b610160820152604080516060810182528181529061564c6020830139610180820152604051630ce4135560e31b8152600481018490526001600160a01b038316906367209aa89060240160006040518083038186803b1580156119e057600080fd5b505afa1580156119f4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a1c9190810190613bb9565b6101a0820152604080516060810182528181529061577360208301396101c082015260405163c08a5dd560e01b8152600481018490526001600160a01b0383169063c08a5dd59060240160006040518083038186803b158015611a7e57600080fd5b505afa158015611a92573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aba9190810190613bb9565b6101e08201526040805160608101909152603d8082526149296020830139610200820152604051639bdc1b6960e01b8152600481018490526001600160a01b03831690639bdc1b699060240160006040518083038186803b158015611b1e57600080fd5b505afa158015611b32573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b5a9190810190613bb9565b61022082015260408051606081018252818152906149666020830139610240820152604051639e41b73f60e01b8152600481018490526001600160a01b03831690639e41b73f9060240160006040518083038186803b158015611bbc57600080fd5b505afa158015611bd0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bf89190810190613bb9565b610260820152604080516060810182528181529061547c6020830139610280820152600c546040516327257c7560e01b8152600481018990526001600160a01b03909116906327257c759060240160006040518083038186803b158015611c5e57600080fd5b505afa158015611c72573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c9a9190810190613bb9565b6102a0820152604080516060810182528181529061592f60208301396102c0820152600c54604051632be6a2a960e01b8152600481018990526001600160a01b0390911690632be6a2a99060240160006040518083038186803b158015611d0057600080fd5b505afa158015611d14573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d3c9190810190613bb9565b6102e082015260408051606081018252818152906143bd6020830139610300820152600c5460405163bb08d1cd60e01b815260048101899052600160248201526001600160a01b039091169063bb08d1cd9060440160006040518083038186803b158015611da957600080fd5b505afa158015611dbd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611de59190810190613bb9565b61032082015260408051606081018252818152906158836020830139610340820152600c5460405163bb08d1cd60e01b815260048101899052600260248201526001600160a01b039091169063bb08d1cd9060440160006040518083038186803b158015611e5257600080fd5b505afa158015611e66573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e8e9190810190613bb9565b610360820152604080516060810182528181529061568c6020830139610380820152600c5460405163bb08d1cd60e01b815260048101899052600360248201526001600160a01b039091169063bb08d1cd9060440160006040518083038186803b158015611efb57600080fd5b505afa158015611f0f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f379190810190613bb9565b6103a082015260408051606081018252818152906156f360208301396103c0820152600b54604051630ad9687b60e11b8152600481018690526001600160a01b03909116906315b2d0f69060240160006040518083038186803b158015611f9d57600080fd5b505afa158015611fb1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fd99190810190613bb9565b6103e08201526040805160608101909152603f8082526153566020830139610400820152600b5460405163175d454d60e11b8152600481018690526001600160a01b0390911690632eba8a9a9060240160006040518083038186803b15801561204157600080fd5b505afa158015612055573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261207d9190810190613bb9565b61042082015260408051606081018252818152906157db6020830139610440820152600b54604051636c3370a960e11b8152600481018690526001600160a01b039091169063d866e1529060240160006040518083038186803b1580156120e357600080fd5b505afa1580156120f7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261211f9190810190613bb9565b61046082015260408051606081018252818152906157336020830139610480820152600b5460405163499309c360e01b8152600481018690526001600160a01b039091169063499309c39060240160006040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121c19190810190613bb9565b6104a0820152604080516080810190915260418082526154ed60208301396104c08201526121ee84610cd7565b6104e08201526040805160c08101909152608f80825261552e602083013961050082015261221b83610cd7565b6105208201526040805160c08101909152608f8082526155bd602083013961054082015261224887610cd7565b610560820152604080516080810190915260518082526149a6602083013961058082015280516020808301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0151965160009a6122ac9a9099989101613e48565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b01519799506122ff988a9890602001613e48565b60408051808303601f19018152908290526102208401516102408501516102608601516102808701516102a08801516102c08901516102e08a01516103008b0151979950612352988a9890602001613e48565b60408051601f19818403018152908290526103208401516103408501516103608601516103808701516103a08801516103c08901516103e08a01516104008b01519799506123a5988a9890602001613e48565b60408051808303601f19018152908290526104208401516104408501516104608601516104808701516104a08801516104c08901516104e08a01516105008b01519799506123f8988a9890602001613e48565b60408051808303601f190181529082905261052084015161054085015161056086015161058087015193955061243394869490602001613ddd565b6040516020818303038152906040529050600061245185878b61298c565b905060006124916124618b610cd7565b61246a8561326f565b8460405160200161247d93929190613f08565b60405160208183030381529060405261326f565b9050806040516020016124a4919061403c565b60408051601f198184030181529190529a9950505050505050505050565b600a546001600160a01b0316331461251c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d5565b6001600160a01b0381166125815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d5565b61258a816128e9565b50565b60006001600160e01b031982166380ac58cd60e01b14806125be57506001600160e01b03198216635b5e139f60e01b145b806103c857506301ffc9a760e01b6001600160e01b03198316146103c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061261282610c60565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d5565b60006126cf83610c60565b9050806001600160a01b0316846001600160a01b0316148061270a5750836001600160a01b03166126ff84610460565b6001600160a01b0316145b80610dd557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610dd5565b826001600160a01b031661275182610c60565b6001600160a01b0316146127b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104d5565b6001600160a01b03821661281b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104d5565b6128268383836133d5565b6128316000826125dd565b6001600160a01b038316600090815260036020526040812080546001929061285a908490614237565b90915550506001600160a01b03821660009081526003602052604081208054600192906128889084906141ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61294684848461273e565b6129528484848461348d565b61107b5760405162461bcd60e51b81526004016104d5906140d1565b61298882826040518060200160405280600081525061359a565b5050565b600d546060906001600160a01b0316611f408511156129b35750600e546001600160a01b03165b6129bb613957565b6040518060600160405280602c8152602001615395602c91398152600b546040516327257c7560e01b8152600481018790526001600160a01b03909116906327257c759060240160006040518083038186803b158015612a1a57600080fd5b505afa158015612a2e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a569190810190613bb9565b81600160200201819052506040518060600160405280603181526020016154bc603191398160026020020152600b54604051630ad9687b60e11b8152600481018790526001600160a01b03909116906315b2d0f69060240160006040518083038186803b158015612ac657600080fd5b505afa158015612ada573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b029190810190613bb9565b606080830191909152604080519182019052602f8082526149f760208301396080820152600c546040516327257c7560e01b8152600481018690526001600160a01b03909116906327257c759060240160006040518083038186803b158015612b6a57600080fd5b505afa158015612b7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ba69190810190613bb9565b60a08201526040805160608101909152602d8082526153c1602083013960c0820152600c54604051632be6a2a960e01b8152600481018690526001600160a01b0390911690632be6a2a99060240160006040518083038186803b158015612c0c57600080fd5b505afa158015612c20573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612c489190810190613bb9565b60e0820152604080516060810190915260288082526157b360208301396101008201526040516377b403ad60e11b8152600481018790526001600160a01b0383169063ef68075a9060240160006040518083038186803b158015612cab57600080fd5b505afa158015612cbf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ce79190810190613bb9565b6101208201526040805160608101909152602780825261489d6020830139610140820152604051630e99990d60e01b8152600481018790526001600160a01b03831690630e99990d9060240160006040518083038186803b158015612d4b57600080fd5b505afa158015612d5f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612d879190810190613bb9565b610160820152604080516060810190915260278082526154556020830139610180820152604051636a3f934f60e11b8152600481018790526001600160a01b0383169063d47f269e9060240160006040518083038186803b158015612deb57600080fd5b505afa158015612dff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e279190810190613bb9565b6101a08201526040805160608101909152602780825261490260208301396101c0820152604051639720c96960e01b8152600481018790526001600160a01b03831690639720c9699060240160006040518083038186803b158015612e8b57600080fd5b505afa158015612e9f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ec79190810190613bb9565b6101e0820152604080516060810190915260278082526156cc6020830139610200820152604051630ce4135560e31b8152600481018790526001600160a01b038316906367209aa89060240160006040518083038186803b158015612f2b57600080fd5b505afa158015612f3f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612f679190810190613bb9565b610220820152604080516060810190915260278082526153ee602083013961024082015260405163c08a5dd560e01b8152600481018790526001600160a01b0383169063c08a5dd59060240160006040518083038186803b158015612fcb57600080fd5b505afa158015612fdf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526130079190810190613bb9565b610260820152604080516060810190915260288082526159076020830139610280820152604051639bdc1b6960e01b8152600481018790526001600160a01b03831690639bdc1b699060240160006040518083038186803b15801561306b57600080fd5b505afa15801561307f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526130a79190810190613bb9565b6102a08201526040805160608101909152602980825261581b60208301396102c0820152604051639e41b73f60e01b8152600481018790526001600160a01b03831690639e41b73f9060240160006040518083038186803b15801561310b57600080fd5b505afa15801561311f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526131479190810190613bb9565b6102e0820152604080518082018252600481526322207d5d60e01b602080830191909152610300840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a6131ae9a909101613e48565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950613201988a9890602001613e48565b60408051808303601f19018152908290526102208401516102408501516102608601516102808701516102a08801516102c08901516102e08a01516103008b0151979950613254988a9890602001613e48565b60408051808303601f19018152919052979650505050505050565b80516060908061328f575050604080516020810190915260008152919050565b6000600361329e8360026141ec565b6132a89190614204565b6132b3906004614218565b905060006132c28260206141ec565b67ffffffffffffffff8111156132da576132da61433c565b6040519080825280601f01601f191660200182016040528015613304576020820181803683370190505b5090506000604051806060016040528060408152602001615415604091399050600181016020830160005b86811015613390576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161332f565b5060038606600181146133aa57600281146133bb576133c7565b613d3d60f01b6001198301526133c7565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b0383166134305761342b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613453565b816001600160a01b0316836001600160a01b0316146134535761345383826135cd565b6001600160a01b03821661346a5761060b8161366a565b826001600160a01b0316826001600160a01b03161461060b5761060b8282613719565b60006001600160a01b0384163b1561358f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906134d1903390899088908890600401614081565b602060405180830381600087803b1580156134eb57600080fd5b505af192505050801561351b575060408051601f3d908101601f1916820190925261351891810190613b9c565b60015b613575573d808015613549576040519150601f19603f3d011682016040523d82523d6000602084013e61354e565b606091505b50805161356d5760405162461bcd60e51b81526004016104d5906140d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dd5565b506001949350505050565b6135a4838361375d565b6135b1600084848461348d565b61060b5760405162461bcd60e51b81526004016104d5906140d1565b600060016135da84610ddd565b6135e49190614237565b600083815260076020526040902054909150808214613637576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061367c90600190614237565b600083815260096020526040812054600880549394509092849081106136a4576136a4614326565b9060005260206000200154905080600883815481106136c5576136c5614326565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806136fd576136fd614310565b6001900381819060005260206000200160009055905550505050565b600061372483610ddd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166137b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104d5565b6000818152600260205260409020546001600160a01b0316156138185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104d5565b613824600083836133d5565b6001600160a01b038216600090815260036020526040812080546001929061384d9084906141ec565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546138b79061427a565b90600052602060002090601f0160209004810192826138d9576000855561391f565b82601f106138f257805160ff191683800117855561391f565b8280016001018555821561391f579182015b8281111561391f578251825591602001919060010190613904565b5061392b929150613972565b5090565b604051806105a00160405280602d905b606081526020019060019003908161393f5790505090565b6040805161032081019091526060815260186020820161393f565b5b8082111561392b5760008155600101613973565b600061399a613995846141c4565b614193565b90508281528383830111156139ae57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126139d657600080fd5b6139e583833560208501613987565b9392505050565b6000602082840312156139fe57600080fd5b81356139e581614352565b600060208284031215613a1b57600080fd5b81516139e581614352565b60008060408385031215613a3957600080fd5b8235613a4481614352565b91506020830135613a5481614352565b809150509250929050565b600080600060608486031215613a7457600080fd5b8335613a7f81614352565b92506020840135613a8f81614352565b929592945050506040919091013590565b60008060008060808587031215613ab657600080fd5b8435613ac181614352565b93506020850135613ad181614352565b925060408501359150606085013567ffffffffffffffff811115613af457600080fd5b8501601f81018713613b0557600080fd5b613b1487823560208401613987565b91505092959194509250565b60008060408385031215613b3357600080fd5b8235613b3e81614352565b915060208301358015158114613a5457600080fd5b60008060408385031215613b6657600080fd5b8235613b7181614352565b946020939093013593505050565b600060208284031215613b9157600080fd5b81356139e581614367565b600060208284031215613bae57600080fd5b81516139e581614367565b600060208284031215613bcb57600080fd5b815167ffffffffffffffff811115613be257600080fd5b8201601f81018413613bf357600080fd5b8051613c01613995826141c4565b818152856020838501011115613c1657600080fd5b613c2782602083016020860161424e565b95945050505050565b60008060408385031215613c4357600080fd5b823567ffffffffffffffff80821115613c5b57600080fd5b613c67868387016139c5565b93506020850135915080821115613c7d57600080fd5b50613c8a858286016139c5565b9150509250929050565b600060208284031215613ca657600080fd5b5035919050565b60008060408385031215613cc057600080fd5b82359150602083013567ffffffffffffffff811115613cde57600080fd5b613c8a858286016139c5565b60008060408385031215613cfd57600080fd5b50508035926020909101359150565b60008060008060808587031215613d2257600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115613d4e57600080fd5b613b14878288016139c5565b60008151808452613d7281602086016020860161424e565b601f01601f19169290920160200192915050565b60008551613d98818460208a0161424e565b855190830190613dac818360208a0161424e565b8551910190613dbf81836020890161424e565b8451910190613dd281836020880161424e565b019695505050505050565b60008651613def818460208b0161424e565b865190830190613e03818360208b0161424e565b8651910190613e16818360208a0161424e565b8551910190613e2981836020890161424e565b8451910190613e3c81836020880161424e565b01979650505050505050565b60008a51613e5a818460208f0161424e565b8a51613e6c8183860160208f0161424e565b8a519184010190613e81818360208e0161424e565b8951910190613e94818360208d0161424e565b8851613ea68183850160208d0161424e565b8851929091010190613ebc818360208b0161424e565b8651613ece8183850160208b0161424e565b8651929091010190613ee481836020890161424e565b8451613ef6818385016020890161424e565b9101019b9a5050505050505050505050565b747b226e616d65223a2022526f6c652b4c6f6f74202360581b81528351600090613f3981601585016020890161424e565b7f222c20226465736372697074696f6e223a2022436f6d62696e65204c6f6f742f6015918401918201527f6d4c6f6f742c20526f6c6520616e64205065742e2047657420526f6c652b2c2060358201527f746865206b657920746f20746865204e657720576f726c642e222c2022696d6160558201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c60758201528451613fe881609584016020890161424e565b601160f91b609592909101918201526d161130ba3a3934b13aba32b9911d60911b609682015283516140218160a484016020880161424e565b607d60f81b60a4929091019182015260a50195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161407481601d85016020870161424e565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906140b490830184613d5a565b9695505050505050565b6020815260006139e56020830184613d5a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b838152826020820152606060408201526000613c276060830184613d5a565b604051601f8201601f1916810167ffffffffffffffff811182821017156141bc576141bc61433c565b604052919050565b600067ffffffffffffffff8211156141de576141de61433c565b50601f01601f191660200190565b600082198211156141ff576141ff6142e4565b500190565b600082614213576142136142fa565b500490565b6000816000190483118215151615614232576142326142e4565b500290565b600082821015614249576142496142e4565b500390565b60005b83811015614269578181015183820152602001614251565b8381111561107b5750506000910152565b600181811c9082168061428e57607f821691505b602082108114156142af57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156142c9576142c96142e4565b5060010190565b6000826142df576142df6142fa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461258a57600080fd5b6001600160e01b03198116811461258a57600080fdfe3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322039372e323229223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203330302e363129223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b222076696577426f783d223020302033353020333530223e3c646566733e3c7374796c653e2e636c732d312c2e636c732d377b66696c6c3a6e6f6e653b7d2e636c732d327b636c69702d706174683a75726c2823636c69702d70617468293b7d2e636c732d337b66696c6c3a236666663b7d2e636c732d347b66696c6c3a236532653265323b7d2e636c732d357b66696c6c3a233464346434643b7d2e636c732d31302c2e636c732d31312c2e636c732d31332c2e636c732d31352c2e636c732d31362c2e636c732d367b66696c6c3a233361336133613b7d2e636c732d377b7374726f6b653a233361336133613b7d2e636c732d387b66696c6c3a233839383938393b6f7061636974793a302e353b7d2e636c732d397b66696c6c3a233531353135313b7d2e636c732d31307b666f6e742d73697a653a3870783b666f6e742d66616d696c793a4d6963726f736f667459614865694c696768742c204d6963726f736f66742059614865693b7d2e636c732d31317b6f7061636974793a302e35383b666f6e742d73697a653a323170783b7d2e636c732d31312c2e636c732d31332c2e636c732d31357b666f6e742d66616d696c793a4d6963726f736f667459614865692d426f6c642c204d6963726f736f66742059614865693b7d2e636c732d31312c2e636c732d31322c2e636c732d31332c2e636c732d31342c2e636c732d31352c2e636c732d31367b666f6e742d7765696768743a3730303b7d2e636c732d31327b666f6e742d73697a653a343870783b66696c6c3a233236323632363b7d2e636c732d31322c2e636c732d31342c2e636c732d31367b666f6e742d66616d696c793a417269616c2d426f6c644d542c20417269616c3b7d2e636c732d31337b6f7061636974793a302e36333b666f6e742d73697a653a313470783b7d2e636c732d31332c2e636c732d31347b6c65747465722d73706163696e673a2d302e3033656d3b7d2e636c732d31347b6f7061636974793a302e383b66696c6c3a233233323332333b7d2e636c732d31342c2e636c732d31367b666f6e742d73697a653a323870783b7d2e636c732d31357b6f7061636974793a302e343b666f6e742d73697a653a313070783b7d2e636c732d31367b6f7061636974793a302e36383b7d3c2f7374796c653e3c636c6970506174682069643d22636c69702d70617468223e3c7265637420636c6173733d22636c732d31222077696474683d2233353022206865696768743d22333530222f3e3c2f636c6970506174683e3c2f646566733e3c6720636c6173733d22636c732d32223e3c672069643d22726f6c65223e3c7265637420636c6173733d22636c732d33222077696474683d2233353022206865696768743d22333530222f3e3c7265637420636c6173733d22636c732d34222077696474683d2233353022206865696768743d22333530222f3e3c696d61676520783d223132252220793d22313022206865696768743d223333302220786c696e6b3a687265663d2222207d2c207b202274726169745f74797065223a2022466f6f74222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322034382e3529223e22207d2c207b202274726169745f74797065223a202248656164222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322031363929223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203139332e303529223e3c2f746578743e3c7465787420636c6173733d22636c732d313622207472616e73666f726d3d227472616e736c617465283238382e3633203232332e313329223e5065743c2f746578743e3c2f7376673e22207d2c207b202274726169745f74797065223a2022506574416c69676e6d656e74222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322032342e353629223e22202f3e3c696d61676520783d223630252220793d22323530222077696474683d223430252220786c696e6b3a687265663d2268747470733a2f2f697066732e696f2f697066732f516d534c685158794e674e4c364a437131567679334468756e39457761723266723774664d4e74774b5832717a682f7065742e73766722202f3e3c7061746820636c6173733d22636c732d352220643d224d33332e37312c31322e343461372e33392c372e33392c302c302c312d352e32332d322e31364c32362c372e383161312e30362c312e30362c302c302c302d2e37372d2e333276332e363761312e30372c312e30372c302c302c312c312e30372c312e303776312e3261312e38382c312e38382c302c302c302c312e38382c312e3837682e363461312e30372c312e30372c302c312c312c302c322e3133682d2e363461312e38392c312e38392c302c302c302d312e38372c312e38385632362e3861312e30382c312e30382c302c302c312d312e30372c312e303776332e363741392e35342c392e35342c302c302c302c33342e38312c32325631332e353141312e30392c312e30392c302c302c302c33332e37312c31322e34345a222f3e3c7061746820636c6173733d22636c732d352220643d224d32352e32362c32372e383561312e30372c312e30372c302c302c312d312e30362d312e3036762d372e3561312e38382c312e38382c302c302c302d312e38382d312e3837682d2e363461312e30372c312e30372c302c302c312c302d322e3134682e363441312e38382c312e38382c302c302c302c32342e322c31332e345631322e3261312e30372c312e30372c302c302c312c312e30362d312e303656372e343961312e30352c312e30352c302c302c302d2e37362e33324c32322c31302e323861372e33332c372e33332c302c302c312d352e32332c322e31362c312e30382c312e30382c302c302c302d312e30382c312e303956323261392e35342c392e35342c302c302c302c392e35342c392e35345632372e38355a222f3e3c7265637420636c6173733d22636c732d362220793d22323635222077696474683d22313822206865696768743d223432222f3e3c6c696e6520636c6173733d22636c732d37222078313d223138222079313d223236352e35222078323d2239352e35222079323d223236352e35222f3e3c6c696e6520636c6173733d22636c732d37222078313d223138222079313d223330362e35222078323d223138312e35222079323d223330362e35222f3e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22323531222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22323730222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22323839222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22333038222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d223234382220793d22333237222077696474683d22393122206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22313532222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22313734222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22313936222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22323138222077696474683d22383822206865696768743d223137222f3e3c2f673e3c673e3c7265637420636c6173733d22636c732d382220783d2231312220793d22323430222077696474683d22383822206865696768743d223137222f3e3c2f673e3c7265637420636c6173733d22636c732d382220783d223234382220793d223132222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d223336222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d223630222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d223834222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313038222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313332222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313536222077696474683d22393122206865696768743d223230222f3e3c7265637420636c6173733d22636c732d382220783d223234382220793d22313830222077696474683d22393122206865696768743d223230222f3e3c7061746820636c6173733d22636c732d352220643d224d31322e31312c33362e31376c2e352c36342e3533682d316c2d2e35312d36342e35365a6d2e34392c36332e34352e33322c34322e31362d312c302d2e33332d34322e31385a222f3e3c7061746820636c6173733d22636c732d392220643d224d3239322e31322c3232372e36366c34302e34322d2e332c302c312d34302e34352e335a222f3e3c2f673e3c2f673e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203136342e303829223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203230372e3729223e5b7b202274726169745f74797065223a2022526f6c65416c69676e6d656e74222c202276616c7565223a202222207d2c207b202274726169745f74797065223a202250657453706563696573222c202276616c7565223a202222207d2c207b202274726169745f74797065223a202252696e67222c202276616c7565223a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22207d2c207b202274726169745f74797065223a202248616e64222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203236332e343629223e22207d2c207b202274726169745f74797065223a2022526f6c654f636375706174696f6e222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313122207472616e73666f726d3d227472616e736c617465283133362e3133203330332e323829223e3c2f746578743e3c7465787420636c6173733d22636c732d313222207472616e73666f726d3d227472616e736c6174652832312e3536203330342e353429223e526f6c653c2f746578743e3c7465787420636c6173733d22636c732d313322207472616e73666f726d3d227472616e736c6174652831392e3638203130302e34312920726f7461746528393029223e3c2f746578743e3c7465787420636c6173733d22636c732d313422207472616e73666f726d3d227472616e736c6174652831392e33322033352e38372920726f7461746528393029223e4c6f6f743c2f746578743e3c7465787420636c6173733d22636c732d313522207472616e73666f726d3d227472616e736c617465283239332e3438203233382e373429223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203132302e363729223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203333392e303829223e22207d2c207b202274726169745f74797065223a20224e65636b222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203138352e363629223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203235312e363229223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203134342e373229223e22207d2c207b202274726169745f74797065223a20224368657374222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c6174652831352e3934203232392e393429223e22207d2c207b202274726169745f74797065223a2022576561706f6e222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e322037322e323829223e3c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203331392e323629223e68747470733a2f2f697066732e696f2f697066732f516d534c685158794e674e4c364a437131567679334468756e39457761723266723774664d4e74774b5832717a682f22207d2c207b202274726169745f74797065223a20225761697374222c202276616c7565223a20223c2f746578743e3c7465787420636c6173733d22636c732d313022207472616e73666f726d3d227472616e736c617465283235342e32203238312e313329223ea2646970667358221220d360f0c1121ae5766c5fbed2ab93b4a3b4ab33cd6ea407226584fdc3257c5a8a64736f6c63430008070033
Deployed Bytecode Sourcemap
46031:13700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38315:224;;;;;;:::i;:::-;;:::i;:::-;;;13614:14:1;;13607:22;13589:41;;13577:2;13562:18;38315:224:0;;;;;;;;25429:100;;;:::i;:::-;;;;;;;:::i;26988:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12912:32:1;;;12894:51;;12882:2;12867:18;26988:221:0;12748:203:1;26511:411:0;;;;;;:::i;:::-;;:::i;:::-;;54884:1172;;;;;;:::i;:::-;;:::i;38955:113::-;39043:10;:17;38955:113;;;23195:25:1;;;23183:2;23168:18;38955:113:0;23049:177:1;27878:339:0;;;;;;:::i;:::-;;:::i;38623:256::-;;;;;;:::i;:::-;;:::i;28288:185::-;;;;;;:::i;:::-;;:::i;39145:233::-;;;;;;:::i;:::-;;:::i;46585:263::-;;;;;;:::i;:::-;;:::i;25123:239::-;;;;;;:::i;:::-;;:::i;59027:701::-;;;;;;:::i;:::-;;:::i;24853:208::-;;;;;;:::i;:::-;;:::i;9821:94::-;;;:::i;9170:87::-;9243:6;;-1:-1:-1;;;;;9243:6:0;9170:87;;25598:104;;;:::i;27281:295::-;;;;;;:::i;:::-;;:::i;46451:38::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;28544:328::-;;;;;;:::i;:::-;;:::i;58771:242::-;;;;;;:::i;:::-;;:::i;58112:647::-;;;;;;:::i;:::-;;:::i;46856:8022::-;;;;;;:::i;:::-;;:::i;27647:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27768:25:0;;;27744:4;27768:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27647:164;10070:192;;;;;;:::i;:::-;;:::i;38315:224::-;38417:4;-1:-1:-1;;;;;;38441:50:0;;-1:-1:-1;;;38441:50:0;;:90;;;38495:36;38519:11;38495:23;:36::i;:::-;38434:97;38315:224;-1:-1:-1;;38315:224:0:o;25429:100::-;25483:13;25516:5;25509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25429:100;:::o;26988:221::-;27064:7;30471:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30471:16:0;27084:73;;;;-1:-1:-1;;;27084:73:0;;18784:2:1;27084:73:0;;;18766:21:1;18823:2;18803:18;;;18796:30;18862:34;18842:18;;;18835:62;-1:-1:-1;;;18913:18:1;;;18906:42;18965:19;;27084:73:0;;;;;;;;;-1:-1:-1;27177:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27177:24:0;;26988:221::o;26511:411::-;26592:13;26608:23;26623:7;26608:14;:23::i;:::-;26592:39;;26656:5;-1:-1:-1;;;;;26650:11:0;:2;-1:-1:-1;;;;;26650:11:0;;;26642:57;;;;-1:-1:-1;;;26642:57:0;;20998:2:1;26642:57:0;;;20980:21:1;21037:2;21017:18;;;21010:30;21076:34;21056:18;;;21049:62;-1:-1:-1;;;21127:18:1;;;21120:31;21168:19;;26642:57:0;20796:397:1;26642:57:0;8110:10;-1:-1:-1;;;;;26734:21:0;;;;:62;;-1:-1:-1;26759:37:0;26776:5;8110:10;27647:164;:::i;26759:37::-;26712:168;;;;-1:-1:-1;;;26712:168:0;;17177:2:1;26712:168:0;;;17159:21:1;17216:2;17196:18;;;17189:30;17255:34;17235:18;;;17228:62;17326:26;17306:18;;;17299:54;17370:19;;26712:168:0;16975:420:1;26712:168:0;26893:21;26902:2;26906:7;26893:8;:21::i;:::-;26581:341;26511:411;;:::o;54884:1172::-;54947:13;54972:20;:93;;;;;;;;;;;;;;;;;;;55076:20;:29;;;;;;;;;;;;;-1:-1:-1;;;55076:29:0;;;;;55130:41;55144:9;:18;55154:7;55144:18;;;;;;;;;;;:22;;55130:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:41::i;:::-;55126:102;;55194:18;;;;:9;:18;;;;;:22;;55187:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55126:102;55274:8;;55269:30;;-1:-1:-1;;;55269:30:0;;;;;23195:25:1;;;55248:18:0;;-1:-1:-1;;;;;55274:8:0;;55269:22;;23168:18:1;;55269:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55269:30:0;;;;;;;;;;;;:::i;:::-;55338:8;;55333:32;;-1:-1:-1;;;55333:32:0;;;;;23195:25:1;;;55248:51:0;;-1:-1:-1;55310:20:0;;-1:-1:-1;;;;;55338:8:0;;;;55333:24;;23168:18:1;;55333:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55333:32:0;;;;;;;;;;;;:::i;:::-;55310:55;;55386:20;55420:28;55434:4;55420:28;;;;;;;;;;;;;-1:-1:-1;;;55420:28:0;;;:13;:28::i;:::-;55417:416;;;-1:-1:-1;55464:12:0;;;;;;;;;;;;-1:-1:-1;;;55464:12:0;;;;55417:416;;;55496:26;55510:4;55496:26;;;;;;;;;;;;;-1:-1:-1;;;55496:26:0;;;:13;:26::i;:::-;55493:340;;;-1:-1:-1;55538:12:0;;;;;;;;;;;;-1:-1:-1;;;55538:12:0;;;;55493:340;;;55570:26;55584:4;55570:26;;;;;;;;;;;;;-1:-1:-1;;;55570:26:0;;;:13;:26::i;:::-;55567:266;;;-1:-1:-1;55612:12:0;;;;;;;;;;;;-1:-1:-1;;;55612:12:0;;;;55567:266;;;55644:29;55658:4;55644:29;;;;;;;;;;;;;-1:-1:-1;;;55644:29:0;;;:13;:29::i;:::-;55641:192;;;-1:-1:-1;55689:12:0;;;;;;;;;;;;-1:-1:-1;;;55689:12:0;;;;55641:192;;;55721:29;55735:4;55721:29;;;;;;;;;;;;;-1:-1:-1;;;55721:29:0;;;:13;:29::i;:::-;55718:115;;;-1:-1:-1;55766:12:0;;;;;;;;;;;;-1:-1:-1;;;55766:12:0;;;;55718:115;;;-1:-1:-1;55809:12:0;;;;;;;;;;;;-1:-1:-1;;;55809:12:0;;;;55718:115;55853:22;55889:31;55903:6;55889:31;;;;;;;;;;;;;-1:-1:-1;;;55889:31:0;;;:13;:31::i;:::-;55886:76;;;-1:-1:-1;55936:14:0;;;;;;;;;;;;-1:-1:-1;;;55936:14:0;;;;55886:76;56014:6;56022;56030:8;56040:6;55997:50;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55982:66;;;;;;;;54884:1172;;;;:::o;27878:339::-;28073:41;8110:10;28106:7;28073:18;:41::i;:::-;28065:103;;;;-1:-1:-1;;;28065:103:0;;;;;;;:::i;:::-;28181:28;28191:4;28197:2;28201:7;28181:9;:28::i;38623:256::-;38720:7;38756:23;38773:5;38756:16;:23::i;:::-;38748:5;:31;38740:87;;;;-1:-1:-1;;;38740:87:0;;14067:2:1;38740:87:0;;;14049:21:1;14106:2;14086:18;;;14079:30;14145:34;14125:18;;;14118:62;-1:-1:-1;;;14196:18:1;;;14189:41;14247:19;;38740:87:0;13865:407:1;38740:87:0;-1:-1:-1;;;;;;38845:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38623:256::o;28288:185::-;28426:39;28443:4;28449:2;28453:7;28426:39;;;;;;;;;;;;:16;:39::i;39145:233::-;39220:7;39256:30;39043:10;:17;;38955:113;39256:30;39248:5;:38;39240:95;;;;-1:-1:-1;;;39240:95:0;;21818:2:1;39240:95:0;;;21800:21:1;21857:2;21837:18;;;21830:30;21896:34;21876:18;;;21869:62;-1:-1:-1;;;21947:18:1;;;21940:42;21999:19;;39240:95:0;21616:408:1;39240:95:0;39353:10;39364:5;39353:17;;;;;;;;:::i;:::-;;;;;;;;;39346:24;;39145:233;;;:::o;46585:263::-;46663:4;46709:1;46703:15;46690:1;46684:15;:34;46680:161;;-1:-1:-1;46742:5:0;46735:12;;46680:161;46826:1;46810:19;;;;;;46803:1;46787:19;;;;;;:42;46780:49;;;;25123:239;25195:7;25231:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25231:16:0;25266:19;25258:73;;;;-1:-1:-1;;;25258:73:0;;18013:2:1;25258:73:0;;;17995:21:1;18052:2;18032:18;;;18025:30;18091:34;18071:18;;;18064:62;-1:-1:-1;;;18142:18:1;;;18135:39;18191:19;;25258:73:0;17811:405:1;59027:701:0;59078:13;59291:10;59287:53;;-1:-1:-1;;59318:10:0;;;;;;;;;;;;-1:-1:-1;;;59318:10:0;;;;;59027:701::o;59287:53::-;59362:5;59350:9;59400:78;59407:9;;59400:78;;59433:8;;;;:::i;:::-;;-1:-1:-1;59456:10:0;;-1:-1:-1;59464:2:0;59456:10;;:::i;:::-;;;59400:78;;;59488:19;59520:6;59510:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59510:17:0;;59488:39;;59538:151;59545:10;;59538:151;;59572:11;59582:1;59572:11;;:::i;:::-;;-1:-1:-1;59638:10:0;59646:2;59638:5;:10;:::i;:::-;59628:21;;:2;:21;:::i;:::-;59615:36;;59598:6;59605;59598:14;;;;;;;;:::i;:::-;;;;:53;-1:-1:-1;;;;;59598:53:0;;;;;;;;-1:-1:-1;59666:11:0;59675:2;59666:11;;:::i;:::-;;;59538:151;;;59713:6;59027:701;-1:-1:-1;;;;59027:701:0:o;24853:208::-;24925:7;-1:-1:-1;;;;;24953:19:0;;24945:74;;;;-1:-1:-1;;;24945:74:0;;17602:2:1;24945:74:0;;;17584:21:1;17641:2;17621:18;;;17614:30;17680:34;17660:18;;;17653:62;-1:-1:-1;;;17731:18:1;;;17724:40;17781:19;;24945:74:0;17400:406:1;24945:74:0;-1:-1:-1;;;;;;25037:16:0;;;;;:9;:16;;;;;;;24853:208::o;9821:94::-;9243:6;;-1:-1:-1;;;;;9243:6:0;8110:10;9390:23;9382:68;;;;-1:-1:-1;;;9382:68:0;;19197:2:1;9382:68:0;;;19179:21:1;;;19216:18;;;19209:30;19275:34;19255:18;;;19248:62;19327:18;;9382:68:0;18995:356:1;9382:68:0;9886:21:::1;9904:1;9886:9;:21::i;:::-;9821:94::o:0;25598:104::-;25654:13;25687:7;25680:14;;;;;:::i;27281:295::-;-1:-1:-1;;;;;27384:24:0;;8110:10;27384:24;;27376:62;;;;-1:-1:-1;;;27376:62:0;;16067:2:1;27376:62:0;;;16049:21:1;16106:2;16086:18;;;16079:30;16145:27;16125:18;;;16118:55;16190:18;;27376:62:0;15865:349:1;27376:62:0;8110:10;27451:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27451:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27451:53:0;;;;;;;;;;27520:48;;13589:41:1;;;27451:42:0;;8110:10;27520:48;;13562:18:1;27520:48:0;;;;;;;27281:295;;:::o;46451:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28544:328::-;28719:41;8110:10;28752:7;28719:18;:41::i;:::-;28711:103;;;;-1:-1:-1;;;28711:103:0;;;;;;;:::i;:::-;28825:39;28839:4;28845:2;28849:7;28858:5;28825:13;:39::i;:::-;28544:328;;;;:::o;58771:242::-;30447:4;30471:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30471:16:0;58847:39;;;;-1:-1:-1;;;58847:39:0;;22575:2:1;58847:39:0;;;22557:21:1;22614:2;22594:18;;;22587:30;-1:-1:-1;;;22633:18:1;;;22626:40;22683:18;;58847:39:0;22373:334:1;58847:39:0;8110:10;58905:16;58913:7;58905;:16::i;:::-;-1:-1:-1;;;;;58905:32:0;;58897:54;;;;-1:-1:-1;;;58897:54:0;;22914:2:1;58897:54:0;;;22896:21:1;22953:1;22933:18;;;22926:29;-1:-1:-1;;;22971:18:1;;;22964:39;23020:18;;58897:54:0;22712:332:1;58897:54:0;58972:18;;;;:9;:18;;;;;;;;:33;;;;:22;;;;;:33;;;;:::i;58112:647::-;30447:4;30471:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30471:16:0;:30;58207:44;;;;-1:-1:-1;;;58207:44:0;;19558:2:1;58207:44:0;;;19540:21:1;19597:2;19577:18;;;19570:30;-1:-1:-1;;;19616:18:1;;;19609:46;19672:18;;58207:44:0;19356:340:1;58207:44:0;8110:10;58275:8;;58270:29;;-1:-1:-1;;;58270:29:0;;;;;23195:25:1;;;-1:-1:-1;;;;;58270:45:0;;;;58275:8;;;;58270:22;;23168:18:1;;58270:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58270:45:0;;58262:71;;;;-1:-1:-1;;;58262:71:0;;20656:2:1;58262:71:0;;;20638:21:1;20695:2;20675:18;;;20668:30;-1:-1:-1;;;20714:18:1;;;20707:43;20767:18;;58262:71:0;20454:337:1;58262:71:0;8110:10;58357:8;;58352:30;;-1:-1:-1;;;58352:30:0;;;;;23195:25:1;;;-1:-1:-1;;;;;58352:46:0;;;;58357:8;;;;58352:22;;23168:18:1;;58352:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58352:46:0;;58344:73;;;;-1:-1:-1;;;58344:73:0;;16834:2:1;58344:73:0;;;16816:21:1;16873:2;16853:18;;;16846:30;-1:-1:-1;;;16892:18:1;;;16885:44;16946:18;;58344:73:0;16632:338:1;58344:73:0;58440:4;58431:6;:13;58428:223;;;8110:10;58473:9;;58468:31;;-1:-1:-1;;;58468:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;58468:47:0;;;;58473:9;;;;58468:23;;23168:18:1;;58468:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58468:47:0;;58460:75;;;;-1:-1:-1;;;58460:75:0;;22231:2:1;58460:75:0;;;22213:21:1;22270:2;22250:18;;;22243:30;-1:-1:-1;;;22289:18:1;;;22282:45;22344:18;;58460:75:0;22029:339:1;58460:75:0;58428:223;;;8110:10;58579:8;;58574:30;;-1:-1:-1;;;58574:30:0;;;;;23195:25:1;;;-1:-1:-1;;;;;58574:46:0;;;;58579:8;;;;58574:22;;23168:18:1;;58574:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58574:46:0;;58566:73;;;;-1:-1:-1;;;58566:73:0;;20313:2:1;58566:73:0;;;20295:21:1;20352:2;20332:18;;;20325:30;-1:-1:-1;;;20371:18:1;;;20364:44;20425:18;;58566:73:0;20111:338:1;58566:73:0;58661:30;8110:10;58685:5;58661:9;:30::i;:::-;58721;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58702:16:0;;;:9;:16;;;;;;:49;;;;;;;;;;;;;;58721:30;;58702:16;:49;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;58112:647:0:o;46856:8022::-;46918:13;46944:16;46963:9;:18;46973:7;46963:18;;;;;;;;;;;46944:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46944:37:0;;;;-1:-1:-1;;47000:11:0;;47030;;;;47072:8;;46944:37;;-1:-1:-1;47000:11:0;;47030;;-1:-1:-1;;;;;;47072:8:0;47103:4;47094:13;;47091:65;;;-1:-1:-1;47135:9:0;;-1:-1:-1;;;;;47135:9:0;47091:65;47177:19;;:::i;:::-;47207:1193;;;;;;;;;;;;;;;;;;;48418:23;48425:7;48434:6;48418;:23::i;:::-;48411:1;48413;48411:4;;;:30;;;;48452:2298;;;;;;;;;;;;;;;;;:1;48454;48452:4;;;:2298;50773:8;;50768:35;;-1:-1:-1;;;50768:35:0;;;;;23195:25:1;;;-1:-1:-1;;;;;50773:8:0;;;;50768:27;;23168:18:1;;50768:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50768:35:0;;;;;;;;;;;;:::i;:::-;50761:4;;;;:42;;;;50814:72;;;;;;;;;;;;;50761:4;50814:72;;;:4;;;:72;50904:32;;-1:-1:-1;;;50904:32:0;;50816:1;50904:32;;23195:25:1;;;-1:-1:-1;;;;;50904:24:0;;;;;23168:18:1;;50904:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50904:32:0;;;;;;;;;;;;:::i;:::-;50897:4;;;:39;50947:71;;;;;;;;;;;;;;50897:4;50947:71;;;:4;;;:71;51036:31;;-1:-1:-1;;;51036:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51036:23:0;;;;;23168:18:1;;51036:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51036:31:0;;;;;;;;;;;;:::i;:::-;51029:4;;;:38;51078:72;;;;;;;;;;;;;;51029:4;51078:72;;;:4;;;:72;51168:31;;-1:-1:-1;;;51168:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51168:23:0;;;;;23168:18:1;;51168:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51168:31:0;;;;;;;;;;;;:::i;:::-;51161:4;;;:38;51210:73;;;;;;;;;;;;;;51161:4;51210:73;;;:5;;;:73;51302:31;;-1:-1:-1;;;51302:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51302:23:0;;;;;23168:18:1;;51302:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51302:31:0;;;;;;;;;;;;:::i;:::-;51294:5;;;:39;51344:74;;;;;;;;;;;;;51294:5;51344:74;;;:5;;;:74;51437:31;;-1:-1:-1;;;51437:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51437:23:0;;;;;23168:18:1;;51437:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51437:31:0;;;;;;;;;;;;:::i;:::-;51429:5;;;:39;51479:74;;;;;;;;;;;;;51429:5;51479:74;;;:5;;;:74;51572:31;;-1:-1:-1;;;51572:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51572:23:0;;;;;23168:18:1;;51572:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51572:31:0;;;;;;;;;;;;:::i;:::-;51564:5;;;:39;51614:71;;;;;;;;;;;;;;51564:5;51614:71;;;:5;;;:71;51704:32;;-1:-1:-1;;;51704:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51704:24:0;;;;;23168:18:1;;51704:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51704:32:0;;;;;;;;;;;;:::i;:::-;51696:5;;;:40;51741:74;;;;;;;;;;;;;51696:5;51741:74;;;:5;;;:74;51834:33;;-1:-1:-1;;;51834:33:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51834:25:0;;;;;23168:18:1;;51834:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51834:33:0;;;;;;;;;;;;:::i;:::-;51826:5;;;:41;51878:74;;;;;;;;;;;;;51826:5;51878:74;;;:5;;;:74;51976:8;;51971:36;;-1:-1:-1;;;51971:36:0;;;;;23195:25:1;;;-1:-1:-1;;;;;51976:8:0;;;;51971:27;;23168:18:1;;51971:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51971:36:0;;;;;;;;;;;;:::i;:::-;51963:5;;;:44;52018:74;;;;;;;;;;;;;51963:5;52018:74;;;:5;;;:74;52116:8;;52111:34;;-1:-1:-1;;;52111:34:0;;;;;23195:25:1;;;-1:-1:-1;;;;;52116:8:0;;;;52111:25;;23168:18:1;;52111:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52111:34:0;;;;;;;;;;;;:::i;:::-;52103:5;;;:42;52156:74;;;;;;;;;;;;;52103:5;52156:74;;;:5;;;:74;52254:8;;52249:35;;-1:-1:-1;;;52249:35:0;;;;;23413:25:1;;;52254:8:0;23454:18:1;;;23447:34;-1:-1:-1;;;;;52254:8:0;;;;52249:23;;23386:18:1;;52249:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52249:35:0;;;;;;;;;;;;:::i;:::-;52241:5;;;:43;52295:74;;;;;;;;;;;;;52241:5;52295:74;;;:5;;;:74;52393:8;;52388:35;;-1:-1:-1;;;52388:35:0;;;;;23413:25:1;;;52421:1:0;23454:18:1;;;23447:34;-1:-1:-1;;;;;52393:8:0;;;;52388:23;;23386:18:1;;52388:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52388:35:0;;;;;;;;;;;;:::i;:::-;52380:5;;;:43;52434:74;;;;;;;;;;;;;52380:5;52434:74;;;:5;;;:74;52532:8;;52527:35;;-1:-1:-1;;;52527:35:0;;;;;23413:25:1;;;52560:1:0;23454:18:1;;;23447:34;-1:-1:-1;;;;;52532:8:0;;;;52527:23;;23386:18:1;;52527:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52527:35:0;;;;;;;;;;;;:::i;:::-;52519:5;;;:43;52573:74;;;;;;;;;;;;;52519:5;52573:74;;;:5;;;:74;52671:8;;52666:36;;-1:-1:-1;;;52666:36:0;;;;;23195:25:1;;;-1:-1:-1;;;;;52671:8:0;;;;52666:28;;23168:18:1;;52666:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52666:36:0;;;;;;;;;;;;:::i;:::-;52658:5;;;:44;52713:73;;;;;;;;;;;;;;52658:5;52713:73;;;:5;;;:73;52810:8;;52805:32;;-1:-1:-1;;;52805:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;52810:8:0;;;;52805:24;;23168:18:1;;52805:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52805:32:0;;;;;;;;;;;;:::i;:::-;52797:5;;;:40;52848:74;;;;;;;;;;;;;52797:5;52848:74;;;:5;;;:74;52946:8;;52941:32;;-1:-1:-1;;;52941:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;52946:8:0;;;;52941:24;;23168:18:1;;52941:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52941:32:0;;;;;;;;;;;;:::i;:::-;52933:5;;;:40;52984:74;;;;;;;;;;;;;52933:5;52984:74;;;:5;;;:74;53082:8;;53077:32;;-1:-1:-1;;;53077:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;53082:8:0;;;;53077:24;;52986:2;23168:18:1;53077:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53077:32:0;;;;;;;;;;;;:::i;:::-;53069:5;;;:40;53120:75;;;;;;;;;;;;;;53069:5;53120:75;;;:5;;;:75;53214:16;53223:6;53214:8;:16::i;:::-;53206:5;;;:24;53241:153;;;;;;;;;;;;;;53206:5;53241:153;;;:5;;;:153;53413:16;53422:6;53413:8;:16::i;:::-;53405:5;;;:24;53440:153;;;;;;;;;;;;;;53405:5;53440:153;;;:5;;;:153;53612:17;53621:7;53612:8;:17::i;:::-;53604:5;;;:25;53640:91;;;;;;;;;;;;;;53604:5;53640:91;;;:5;;;:91;53791:4;;53640:5;53797:4;;;;53803;;;;;53809;;;;53815;;;;53821;;;;53827;;;;53833;;;;53839;;;;53774:70;;53744:20;;53774:70;;53791:4;;53797;53839;53774:70;;:::i;:::-;;;;;;;-1:-1:-1;;53774:70:0;;;;;;;53897:4;;;;53903:5;;;;53910;;;;53917;;;;53924;;;;53931;;;;53938;;;;53945;;;;53774:70;;-1:-1:-1;53872:79:0;;53774:70;;53945:5;53897:4;53872:79;;:::i;:::-;;;;;;;-1:-1:-1;;53872:79:0;;;;;;;54004:5;;;;54011;;;;54018;;;;54025;;;;54032;;;;54039;;;;54046;;;;54053;;;;53872:79;;-1:-1:-1;53979:80:0;;53872:79;;54053:5;54004;53979:80;;:::i;:::-;;;;-1:-1:-1;;53979:80:0;;;;;;;;;;54112:5;;;;54119;;;;54126;;;;54133;;;;54140;;;;54147;;;;54154;;;;54161;;;;53979:80;;-1:-1:-1;54087:80:0;;53979;;54161:5;54112;54087:80;;:::i;:::-;;;;;;;-1:-1:-1;;54087:80:0;;;;;;;54220:5;;;;54227;;;;54234;;;;54241;;;;54248;;;;54255;;;;54262;;;;54269;;;;54087:80;;-1:-1:-1;54195:80:0;;54087;;54269:5;54220;54195:80;;:::i;:::-;;;;;;;-1:-1:-1;;54195:80:0;;;;;;;54328:5;;;;54335;;;;54342;;;;54349;;;;54195:80;;-1:-1:-1;54303:52:0;;54195:80;;54349:5;54328;54303:52;;:::i;:::-;;;;;;;;;;;;;54287:69;;54369:24;54396:43;54415:6;54423;54431:7;54396:18;:43::i;:::-;54369:70;;54450:18;54471:292;54540:17;54549:7;54540:8;:17::i;:::-;54691:28;54711:6;54691:13;:28::i;:::-;54744:10;54498:262;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54471:13;:292::i;:::-;54450:313;;54840:4;54790:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54790:55:0;;;;;;;;;;46856:8022;-1:-1:-1;;;;;;;;;;46856:8022:0:o;10070:192::-;9243:6;;-1:-1:-1;;;;;9243:6:0;8110:10;9390:23;9382:68;;;;-1:-1:-1;;;9382:68:0;;19197:2:1;9382:68:0;;;19179:21:1;;;19216:18;;;19209:30;19275:34;19255:18;;;19248:62;19327:18;;9382:68:0;18995:356:1;9382:68:0;-1:-1:-1;;;;;10159:22:0;::::1;10151:73;;;::::0;-1:-1:-1;;;10151:73:0;;14898:2:1;10151:73:0::1;::::0;::::1;14880:21:1::0;14937:2;14917:18;;;14910:30;14976:34;14956:18;;;14949:62;-1:-1:-1;;;15027:18:1;;;15020:36;15073:19;;10151:73:0::1;14696:402:1::0;10151:73:0::1;10235:19;10245:8;10235:9;:19::i;:::-;10070:192:::0;:::o;24484:305::-;24586:4;-1:-1:-1;;;;;;24623:40:0;;-1:-1:-1;;;24623:40:0;;:105;;-1:-1:-1;;;;;;;24680:48:0;;-1:-1:-1;;;24680:48:0;24623:105;:158;;;-1:-1:-1;;;;;;;;;;23200:40:0;;;24745:36;23091:157;34364:174;34439:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34439:29:0;-1:-1:-1;;;;;34439:29:0;;;;;;;;:24;;34493:23;34439:24;34493:14;:23::i;:::-;-1:-1:-1;;;;;34484:46:0;;;;;;;;;;;34364:174;;:::o;30676:348::-;30769:4;30471:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30471:16:0;30786:73;;;;-1:-1:-1;;;30786:73:0;;16421:2:1;30786:73:0;;;16403:21:1;16460:2;16440:18;;;16433:30;16499:34;16479:18;;;16472:62;-1:-1:-1;;;16550:18:1;;;16543:42;16602:19;;30786:73:0;16219:408:1;30786:73:0;30870:13;30886:23;30901:7;30886:14;:23::i;:::-;30870:39;;30939:5;-1:-1:-1;;;;;30928:16:0;:7;-1:-1:-1;;;;;30928:16:0;;:51;;;;30972:7;-1:-1:-1;;;;;30948:31:0;:20;30960:7;30948:11;:20::i;:::-;-1:-1:-1;;;;;30948:31:0;;30928:51;:87;;;-1:-1:-1;;;;;;27768:25:0;;;27744:4;27768:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30983:32;27647:164;33668:578;33827:4;-1:-1:-1;;;;;33800:31:0;:23;33815:7;33800:14;:23::i;:::-;-1:-1:-1;;;;;33800:31:0;;33792:85;;;;-1:-1:-1;;;33792:85:0;;19903:2:1;33792:85:0;;;19885:21:1;19942:2;19922:18;;;19915:30;19981:34;19961:18;;;19954:62;-1:-1:-1;;;20032:18:1;;;20025:39;20081:19;;33792:85:0;19701:405:1;33792:85:0;-1:-1:-1;;;;;33896:16:0;;33888:65;;;;-1:-1:-1;;;33888:65:0;;15662:2:1;33888:65:0;;;15644:21:1;15701:2;15681:18;;;15674:30;15740:34;15720:18;;;15713:62;-1:-1:-1;;;15791:18:1;;;15784:34;15835:19;;33888:65:0;15460:400:1;33888:65:0;33966:39;33987:4;33993:2;33997:7;33966:20;:39::i;:::-;34070:29;34087:1;34091:7;34070:8;:29::i;:::-;-1:-1:-1;;;;;34112:15:0;;;;;;:9;:15;;;;;:20;;34131:1;;34112:15;:20;;34131:1;;34112:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34143:13:0;;;;;;:9;:13;;;;;:18;;34160:1;;34143:13;:18;;34160:1;;34143:18;:::i;:::-;;;;-1:-1:-1;;34172:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34172:21:0;-1:-1:-1;;;;;34172:21:0;;;;;;;;;34211:27;;34172:16;;34211:27;;;;;;;33668:578;;;:::o;10270:173::-;10345:6;;;-1:-1:-1;;;;;10362:17:0;;;-1:-1:-1;;;;;;10362:17:0;;;;;;;10395:40;;10345:6;;;10362:17;10345:6;;10395:40;;10326:16;;10395:40;10315:128;10270:173;:::o;29754:315::-;29911:28;29921:4;29927:2;29931:7;29911:9;:28::i;:::-;29958:48;29981:4;29987:2;29991:7;30000:5;29958:22;:48::i;:::-;29950:111;;;;-1:-1:-1;;;29950:111:0;;;;;;;:::i;31366:110::-;31442:26;31452:2;31456:7;31442:26;;;;;;;;;;;;:9;:26::i;:::-;31366:110;;:::o;56065:2021::-;56199:8;;56154:13;;-1:-1:-1;;;;;56199:8:0;56230:4;56221:13;;56218:65;;;-1:-1:-1;56262:9:0;;-1:-1:-1;;;;;56262:9:0;56218:65;56303:19;;:::i;:::-;56333:53;;;;;;;;;;;;;;;;;;;56409:8;;56404:35;;-1:-1:-1;;;56404:35:0;;;;;23195:25:1;;;-1:-1:-1;;;;;56409:8:0;;;;56404:27;;23168:18:1;;56404:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56404:35:0;;;;;;;;;;;;:::i;:::-;56397:1;56399;56397:4;;;:42;;;;56450:58;;;;;;;;;;;;;;;;;:1;56452;56450:4;;;:58;56531:8;;56526:36;;-1:-1:-1;;;56526:36:0;;;;;23195:25:1;;;-1:-1:-1;;;;;56531:8:0;;;;56526:28;;23168:18:1;;56526:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56526:36:0;;;;;;;;;;;;:::i;:::-;56519:4;;;;:43;;;;56573:56;;;;;;;;;;;;;56519:4;56573:56;;;:4;;;:56;56652:8;;56647:34;;-1:-1:-1;;;56647:34:0;;56575:1;56647:34;;23195:25:1;;;-1:-1:-1;;;;;56652:8:0;;;;56647:27;;23168:18:1;;56647:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56647:34:0;;;;;;;;;;;;:::i;:::-;56640:4;;;:41;56692:54;;;;;;;;;;;;;;56640:4;56692:54;;;:4;;;:54;56769:8;;56764:32;;-1:-1:-1;;;56764:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;56769:8:0;;;;56764:25;;23168:18:1;;56764:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56764:32:0;;;;;;;;;;;;:::i;:::-;56757:4;;;:39;56817:49;;;;;;;;;;;;;;56757:4;56817:49;;;:4;;;:49;56884:32;;-1:-1:-1;;;56884:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;56884:24:0;;;;;23168:18:1;;56884:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56884:32:0;;;;;;;;;;;;:::i;:::-;56877:4;;;:39;56927:49;;;;;;;;;;;;;;56877:4;56927:49;;;:5;;;:49;56995:31;;-1:-1:-1;;;56995:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;56995:23:0;;;;;23168:18:1;;56995:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56995:31:0;;;;;;;;;;;;:::i;:::-;56987:5;;;:39;57037:49;;;;;;;;;;;;;;56987:5;57037:49;;;:5;;;:49;57105:31;;-1:-1:-1;;;57105:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;57105:23:0;;;;;23168:18:1;;57105:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57105:31:0;;;;;;;;;;;;:::i;:::-;57097:5;;;:39;57147:49;;;;;;;;;;;;;;57097:5;57147:49;;;:5;;;:49;57215:31;;-1:-1:-1;;;57215:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;57215:23:0;;;;;23168:18:1;;57215:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57215:31:0;;;;;;;;;;;;:::i;:::-;57207:5;;;:39;57257:49;;;;;;;;;;;;;;57207:5;57257:49;;;:5;;;:49;57325:31;;-1:-1:-1;;;57325:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;57325:23:0;;;;;23168:18:1;;57325:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57325:31:0;;;;;;;;;;;;:::i;:::-;57317:5;;;:39;57367:49;;;;;;;;;;;;;;57317:5;57367:49;;;:5;;;:49;57435:31;;-1:-1:-1;;;57435:31:0;;;;;23195:25:1;;;-1:-1:-1;;;;;57435:23:0;;;;;23168:18:1;;57435:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57435:31:0;;;;;;;;;;;;:::i;:::-;57427:5;;;:39;57477:50;;;;;;;;;;;;;;57427:5;57477:50;;;:5;;;:50;57546:32;;-1:-1:-1;;;57546:32:0;;;;;23195:25:1;;;-1:-1:-1;;;;;57546:24:0;;;;;23168:18:1;;57546:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57546:32:0;;;;;;;;;;;;:::i;:::-;57538:5;;;:40;57589:51;;;;;;;;;;;;;;57538:5;57589:51;;;:5;;;:51;57659:33;;-1:-1:-1;;;57659:33:0;;;;;23195:25:1;;;-1:-1:-1;;;;;57659:25:0;;;;;23168:18:1;;57659:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57659:33:0;;;;;;;;;;;;:::i;:::-;57651:5;;;:41;57703:14;;;;;;;;;;;-1:-1:-1;;;57651:5:0;57703:14;;;;;;;:5;;;:14;;;;57785:4;;57791;;;;57797;;;;57803;;;;57809;;;;57815;;;;57821;;;;57827;;;;57833;;;;57768:70;;-1:-1:-1;;57768:70:0;;57833:4;;57768:70;;:::i;:::-;;;;;;;-1:-1:-1;;57768:70:0;;;;;;;57891:4;;;;57897:5;;;;57904;;;;57911;;;;57918;;;;57925;;;;57932;;;;57939;;;;57768:70;;-1:-1:-1;57866:79:0;;57768:70;;57939:5;57891:4;57866:79;;:::i;:::-;;;;;;;-1:-1:-1;;57866:79:0;;;;;;;57998:5;;;;58005;;;;58012;;;;58019;;;;58026;;;;58033;;;;58040;;;;58047;;;;57866:79;;-1:-1:-1;57973:80:0;;57866:79;;58047:5;57998;57973:80;;:::i;:::-;;;;;;;-1:-1:-1;;57973:80:0;;;;;;;56065:2021;-1:-1:-1;;;;;;;56065:2021:0:o;59929:1601::-;60024:11;;59987:13;;60050:8;60046:23;;-1:-1:-1;;60060:9:0;;;;;;;;;-1:-1:-1;60060:9:0;;;59929:1601;-1:-1:-1;59929:1601:0:o;60046:23::-;60121:15;60156:1;60145:7;:3;60151:1;60145:7;:::i;:::-;60144:13;;;;:::i;:::-;60139:19;;:1;:19;:::i;:::-;60121:37;-1:-1:-1;60216:19:0;60248:15;60121:37;60261:2;60248:15;:::i;:::-;60238:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60238:26:0;;60216:48;;60277:18;60298:5;;;;;;;;;;;;;;;;;60277:26;;60367:1;60360:5;60356:13;60412:2;60404:6;60400:15;60463:1;60431:777;60486:3;60483:1;60480:10;60431:777;;;60541:1;60584:12;;;;;60578:19;60679:4;60667:2;60663:14;;;;;60645:40;;60639:47;60788:2;60784:14;;;60780:25;;60766:40;;60760:47;60917:1;60913:13;;;60909:24;;60895:39;;60889:46;61037:16;;;;61023:31;;61017:38;60715:1;60711:11;;;60809:4;60756:58;;;60747:68;60840:11;;60885:57;;;60876:67;;;;60968:11;;61013:49;;61004:59;61092:3;61088:13;61121:22;;61191:1;61176:17;;;;60534:9;60431:777;;;60435:44;61240:1;61235:3;61231:11;61261:1;61256:84;;;;61359:1;61354:82;;;;61224:212;;61256:84;-1:-1:-1;;;;;61289:17:0;;61282:43;61256:84;;61354:82;-1:-1:-1;;;;;61387:17:0;;61380:41;61224:212;-1:-1:-1;;;61452:26:0;;;61459:6;59929:1601;-1:-1:-1;;;;59929:1601:0:o;39991:589::-;-1:-1:-1;;;;;40197:18:0;;40193:187;;40232:40;40264:7;41407:10;:17;;41380:24;;;;:15;:24;;;;;:44;;;41435:24;;;;;;;;;;;;41303:164;40232:40;40193:187;;;40302:2;-1:-1:-1;;;;;40294:10:0;:4;-1:-1:-1;;;;;40294:10:0;;40290:90;;40321:47;40354:4;40360:7;40321:32;:47::i;:::-;-1:-1:-1;;;;;40394:16:0;;40390:183;;40427:45;40464:7;40427:36;:45::i;40390:183::-;40500:4;-1:-1:-1;;;;;40494:10:0;:2;-1:-1:-1;;;;;40494:10:0;;40490:83;;40521:40;40549:2;40553:7;40521:27;:40::i;35103:803::-;35258:4;-1:-1:-1;;;;;35279:13:0;;15586:20;15634:8;35275:624;;35315:72;;-1:-1:-1;;;35315:72:0;;-1:-1:-1;;;;;35315:36:0;;;;;:72;;8110:10;;35366:4;;35372:7;;35381:5;;35315:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35315:72:0;;;;;;;;-1:-1:-1;;35315:72:0;;;;;;;;;;;;:::i;:::-;;;35311:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35561:13:0;;35557:272;;35604:60;;-1:-1:-1;;;35604:60:0;;;;;;;:::i;35557:272::-;35779:6;35773:13;35764:6;35760:2;35756:15;35749:38;35311:533;-1:-1:-1;;;;;;35438:55:0;-1:-1:-1;;;35438:55:0;;-1:-1:-1;35431:62:0;;35275:624;-1:-1:-1;35883:4:0;35103:803;;;;;;:::o;31703:321::-;31833:18;31839:2;31843:7;31833:5;:18::i;:::-;31884:54;31915:1;31919:2;31923:7;31932:5;31884:22;:54::i;:::-;31862:154;;;;-1:-1:-1;;;31862:154:0;;;;;;;:::i;42094:988::-;42360:22;42410:1;42385:22;42402:4;42385:16;:22::i;:::-;:26;;;;:::i;:::-;42422:18;42443:26;;;:17;:26;;;;;;42360:51;;-1:-1:-1;42576:28:0;;;42572:328;;-1:-1:-1;;;;;42643:18:0;;42621:19;42643:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42694:30;;;;;;:44;;;42811:30;;:17;:30;;;;;:43;;;42572:328;-1:-1:-1;42996:26:0;;;;:17;:26;;;;;;;;42989:33;;;-1:-1:-1;;;;;43040:18:0;;;;;:12;:18;;;;;:34;;;;;;;43033:41;42094:988::o;43377:1079::-;43655:10;:17;43630:22;;43655:21;;43675:1;;43655:21;:::i;:::-;43687:18;43708:24;;;:15;:24;;;;;;44081:10;:26;;43630:46;;-1:-1:-1;43708:24:0;;43630:46;;44081:26;;;;;;:::i;:::-;;;;;;;;;44059:48;;44145:11;44120:10;44131;44120:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44225:28;;;:15;:28;;;;;;;:41;;;44397:24;;;;;44390:31;44432:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43448:1008;;;43377:1079;:::o;40881:221::-;40966:14;40983:20;41000:2;40983:16;:20::i;:::-;-1:-1:-1;;;;;41014:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41059:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40881:221:0:o;32360:382::-;-1:-1:-1;;;;;32440:16:0;;32432:61;;;;-1:-1:-1;;;32432:61:0;;18423:2:1;32432:61:0;;;18405:21:1;;;18442:18;;;18435:30;18501:34;18481:18;;;18474:62;18553:18;;32432:61:0;18221:356:1;32432:61:0;30447:4;30471:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30471:16:0;:30;32504:58;;;;-1:-1:-1;;;32504:58:0;;15305:2:1;32504:58:0;;;15287:21:1;15344:2;15324:18;;;15317:30;15383;15363:18;;;15356:58;15431:18;;32504:58:0;15103:352:1;32504:58:0;32575:45;32604:1;32608:2;32612:7;32575:20;:45::i;:::-;-1:-1:-1;;;;;32633:13:0;;;;;;:9;:13;;;;;:18;;32650:1;;32633:13;:18;;32650:1;;32633:18;:::i;:::-;;;;-1:-1:-1;;32662:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32662:21:0;-1:-1:-1;;;;;32662:21:0;;;;;;;;32701:33;;32662:16;;;32701:33;;32662:16;;32701:33;32360:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:45;;;239:1;236;229:12;198:45;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;14:336;;;;;:::o;355:221::-;398:5;451:3;444:4;436:6;432:17;428:27;418:55;;469:1;466;459:12;418:55;491:79;566:3;557:6;544:20;537:4;529:6;525:17;491:79;:::i;:::-;482:88;355:221;-1:-1:-1;;;355:221:1:o;581:247::-;640:6;693:2;681:9;672:7;668:23;664:32;661:52;;;709:1;706;699:12;661:52;748:9;735:23;767:31;792:5;767:31;:::i;833:251::-;903:6;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;1004:9;998:16;1023:31;1048:5;1023:31;:::i;1089:388::-;1157:6;1165;1218:2;1206:9;1197:7;1193:23;1189:32;1186:52;;;1234:1;1231;1224:12;1186:52;1273:9;1260:23;1292:31;1317:5;1292:31;:::i;:::-;1342:5;-1:-1:-1;1399:2:1;1384:18;;1371:32;1412:33;1371:32;1412:33;:::i;:::-;1464:7;1454:17;;;1089:388;;;;;:::o;1482:456::-;1559:6;1567;1575;1628:2;1616:9;1607:7;1603:23;1599:32;1596:52;;;1644:1;1641;1634:12;1596:52;1683:9;1670:23;1702:31;1727:5;1702:31;:::i;:::-;1752:5;-1:-1:-1;1809:2:1;1794:18;;1781:32;1822:33;1781:32;1822:33;:::i;:::-;1482:456;;1874:7;;-1:-1:-1;;;1928:2:1;1913:18;;;;1900:32;;1482:456::o;1943:794::-;2038:6;2046;2054;2062;2115:3;2103:9;2094:7;2090:23;2086:33;2083:53;;;2132:1;2129;2122:12;2083:53;2171:9;2158:23;2190:31;2215:5;2190:31;:::i;:::-;2240:5;-1:-1:-1;2297:2:1;2282:18;;2269:32;2310:33;2269:32;2310:33;:::i;:::-;2362:7;-1:-1:-1;2416:2:1;2401:18;;2388:32;;-1:-1:-1;2471:2:1;2456:18;;2443:32;2498:18;2487:30;;2484:50;;;2530:1;2527;2520:12;2484:50;2553:22;;2606:4;2598:13;;2594:27;-1:-1:-1;2584:55:1;;2635:1;2632;2625:12;2584:55;2658:73;2723:7;2718:2;2705:16;2700:2;2696;2692:11;2658:73;:::i;:::-;2648:83;;;1943:794;;;;;;;:::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3163:315;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;3468:2;3453:18;;;;3440:32;;-1:-1:-1;;;3163:315:1:o;3483:245::-;3541:6;3594:2;3582:9;3573:7;3569:23;3565:32;3562:52;;;3610:1;3607;3600:12;3562:52;3649:9;3636:23;3668:30;3692:5;3668:30;:::i;3733:249::-;3802:6;3855:2;3843:9;3834:7;3830:23;3826:32;3823:52;;;3871:1;3868;3861:12;3823:52;3903:9;3897:16;3922:30;3946:5;3922:30;:::i;3987:635::-;4067:6;4120:2;4108:9;4099:7;4095:23;4091:32;4088:52;;;4136:1;4133;4126:12;4088:52;4169:9;4163:16;4202:18;4194:6;4191:30;4188:50;;;4234:1;4231;4224:12;4188:50;4257:22;;4310:4;4302:13;;4298:27;-1:-1:-1;4288:55:1;;4339:1;4336;4329:12;4288:55;4368:2;4362:9;4393:48;4409:31;4437:2;4409:31;:::i;4393:48::-;4464:2;4457:5;4450:17;4504:7;4499:2;4494;4490;4486:11;4482:20;4479:33;4476:53;;;4525:1;4522;4515:12;4476:53;4538:54;4589:2;4584;4577:5;4573:14;4568:2;4564;4560:11;4538:54;:::i;:::-;4611:5;3987:635;-1:-1:-1;;;;;3987:635:1:o;4627:543::-;4715:6;4723;4776:2;4764:9;4755:7;4751:23;4747:32;4744:52;;;4792:1;4789;4782:12;4744:52;4832:9;4819:23;4861:18;4902:2;4894:6;4891:14;4888:34;;;4918:1;4915;4908:12;4888:34;4941:50;4983:7;4974:6;4963:9;4959:22;4941:50;:::i;:::-;4931:60;;5044:2;5033:9;5029:18;5016:32;5000:48;;5073:2;5063:8;5060:16;5057:36;;;5089:1;5086;5079:12;5057:36;;5112:52;5156:7;5145:8;5134:9;5130:24;5112:52;:::i;:::-;5102:62;;;4627:543;;;;;:::o;5175:180::-;5234:6;5287:2;5275:9;5266:7;5262:23;5258:32;5255:52;;;5303:1;5300;5293:12;5255:52;-1:-1:-1;5326:23:1;;5175:180;-1:-1:-1;5175:180:1:o;5360:390::-;5438:6;5446;5499:2;5487:9;5478:7;5474:23;5470:32;5467:52;;;5515:1;5512;5505:12;5467:52;5551:9;5538:23;5528:33;;5612:2;5601:9;5597:18;5584:32;5639:18;5631:6;5628:30;5625:50;;;5671:1;5668;5661:12;5625:50;5694;5736:7;5727:6;5716:9;5712:22;5694:50;:::i;5755:248::-;5823:6;5831;5884:2;5872:9;5863:7;5859:23;5855:32;5852:52;;;5900:1;5897;5890:12;5852:52;-1:-1:-1;;5923:23:1;;;5993:2;5978:18;;;5965:32;;-1:-1:-1;5755:248:1:o;6008:527::-;6104:6;6112;6120;6128;6181:3;6169:9;6160:7;6156:23;6152:33;6149:53;;;6198:1;6195;6188:12;6149:53;6234:9;6221:23;6211:33;;6291:2;6280:9;6276:18;6263:32;6253:42;;6342:2;6331:9;6327:18;6314:32;6304:42;;6397:2;6386:9;6382:18;6369:32;6424:18;6416:6;6413:30;6410:50;;;6456:1;6453;6446:12;6410:50;6479;6521:7;6512:6;6501:9;6497:22;6479:50;:::i;6540:257::-;6581:3;6619:5;6613:12;6646:6;6641:3;6634:19;6662:63;6718:6;6711:4;6706:3;6702:14;6695:4;6688:5;6684:16;6662:63;:::i;:::-;6779:2;6758:15;-1:-1:-1;;6754:29:1;6745:39;;;;6786:4;6741:50;;6540:257;-1:-1:-1;;6540:257:1:o;6802:858::-;7077:3;7115:6;7109:13;7131:53;7177:6;7172:3;7165:4;7157:6;7153:17;7131:53;:::i;:::-;7247:13;;7206:16;;;;7269:57;7247:13;7206:16;7303:4;7291:17;;7269:57;:::i;:::-;7393:13;;7348:20;;;7415:57;7393:13;7348:20;7449:4;7437:17;;7415:57;:::i;:::-;7539:13;;7494:20;;;7561:57;7539:13;7494:20;7595:4;7583:17;;7561:57;:::i;:::-;7634:20;;6802:858;-1:-1:-1;;;;;;6802:858:1:o;7665:1052::-;7988:3;8026:6;8020:13;8042:53;8088:6;8083:3;8076:4;8068:6;8064:17;8042:53;:::i;:::-;8158:13;;8117:16;;;;8180:57;8158:13;8117:16;8214:4;8202:17;;8180:57;:::i;:::-;8304:13;;8259:20;;;8326:57;8304:13;8259:20;8360:4;8348:17;;8326:57;:::i;:::-;8450:13;;8405:20;;;8472:57;8450:13;8405:20;8506:4;8494:17;;8472:57;:::i;:::-;8596:13;;8551:20;;;8618:57;8596:13;8551:20;8652:4;8640:17;;8618:57;:::i;:::-;8691:20;;7665:1052;-1:-1:-1;;;;;;;7665:1052:1:o;8722:1776::-;9237:3;9275:6;9269:13;9291:53;9337:6;9332:3;9325:4;9317:6;9313:17;9291:53;:::i;:::-;9375:6;9369:13;9391:68;9450:8;9441:6;9436:3;9432:16;9425:4;9417:6;9413:17;9391:68;:::i;:::-;9537:13;;9485:16;;;9481:31;;9559:57;9537:13;9481:31;9593:4;9581:17;;9559:57;:::i;:::-;9683:13;;9638:20;;;9705:57;9683:13;9638:20;9739:4;9727:17;;9705:57;:::i;:::-;9793:6;9787:13;9809:72;9872:8;9861;9854:5;9850:20;9843:4;9835:6;9831:17;9809:72;:::i;:::-;9963:13;;9907:20;;;;9903:35;;9985:57;9963:13;9903:35;10019:4;10007:17;;9985:57;:::i;:::-;10073:6;10067:13;10089:72;10152:8;10141;10134:5;10130:20;10123:4;10115:6;10111:17;10089:72;:::i;:::-;10243:13;;10187:20;;;;10183:35;;10265:57;10243:13;10183:35;10299:4;10287:17;;10265:57;:::i;:::-;10353:6;10347:13;10369:72;10432:8;10421;10414:5;10410:20;10403:4;10395:6;10391:17;10369:72;:::i;:::-;10461:20;;10457:35;;8722:1776;-1:-1:-1;;;;;;;;;;;8722:1776:1:o;10503:1787::-;-1:-1:-1;;;11253:66:1;;11342:13;;11235:3;;11364:62;11342:13;11414:2;11405:12;;11398:4;11386:17;;11364:62;:::i;:::-;11490:66;11485:2;11445:16;;;11477:11;;;11470:87;11586:34;11581:2;11573:11;;11566:55;11650:66;11645:2;11637:11;;11630:87;11747:66;11741:3;11733:12;;11726:88;11839:13;;11861:64;11839:13;11910:3;11902:12;;11895:4;11883:17;;11861:64;:::i;:::-;-1:-1:-1;;;11985:3:1;11944:17;;;;11977:12;;;11970:34;-1:-1:-1;;;12028:3:1;12020:12;;12013:62;12100:13;;12122:64;12100:13;12171:3;12163:12;;12156:4;12144:17;;12122:64;:::i;:::-;-1:-1:-1;;;12246:3:1;12205:17;;;;12238:12;;;12231:25;12280:3;12272:12;;10503:1787;-1:-1:-1;;;;;10503:1787:1:o;12295:448::-;12557:31;12552:3;12545:44;12527:3;12618:6;12612:13;12634:62;12689:6;12684:2;12679:3;12675:12;12668:4;12660:6;12656:17;12634:62;:::i;:::-;12716:16;;;;12734:2;12712:25;;12295:448;-1:-1:-1;;12295:448:1:o;12956:488::-;-1:-1:-1;;;;;13225:15:1;;;13207:34;;13277:15;;13272:2;13257:18;;13250:43;13324:2;13309:18;;13302:34;;;13372:3;13367:2;13352:18;;13345:31;;;13150:4;;13393:45;;13418:19;;13410:6;13393:45;:::i;:::-;13385:53;12956:488;-1:-1:-1;;;;;;12956:488:1:o;13641:219::-;13790:2;13779:9;13772:21;13753:4;13810:44;13850:2;13839:9;13835:18;13827:6;13810:44;:::i;14277:414::-;14479:2;14461:21;;;14518:2;14498:18;;;14491:30;14557:34;14552:2;14537:18;;14530:62;-1:-1:-1;;;14623:2:1;14608:18;;14601:48;14681:3;14666:19;;14277:414::o;21198:413::-;21400:2;21382:21;;;21439:2;21419:18;;;21412:30;21478:34;21473:2;21458:18;;21451:62;-1:-1:-1;;;21544:2:1;21529:18;;21522:47;21601:3;21586:19;;21198:413::o;24014:361::-;24219:6;24208:9;24201:25;24262:6;24257:2;24246:9;24242:18;24235:34;24305:2;24300;24289:9;24285:18;24278:30;24182:4;24325:44;24365:2;24354:9;24350:18;24342:6;24325:44;:::i;24380:275::-;24451:2;24445:9;24516:2;24497:13;;-1:-1:-1;;24493:27:1;24481:40;;24551:18;24536:34;;24572:22;;;24533:62;24530:88;;;24598:18;;:::i;:::-;24634:2;24627:22;24380:275;;-1:-1:-1;24380:275:1:o;24660:186::-;24708:4;24741:18;24733:6;24730:30;24727:56;;;24763:18;;:::i;:::-;-1:-1:-1;24829:2:1;24808:15;-1:-1:-1;;24804:29:1;24835:4;24800:40;;24660:186::o;24851:128::-;24891:3;24922:1;24918:6;24915:1;24912:13;24909:39;;;24928:18;;:::i;:::-;-1:-1:-1;24964:9:1;;24851:128::o;24984:120::-;25024:1;25050;25040:35;;25055:18;;:::i;:::-;-1:-1:-1;25089:9:1;;24984:120::o;25109:168::-;25149:7;25215:1;25211;25207:6;25203:14;25200:1;25197:21;25192:1;25185:9;25178:17;25174:45;25171:71;;;25222:18;;:::i;:::-;-1:-1:-1;25262:9:1;;25109:168::o;25282:125::-;25322:4;25350:1;25347;25344:8;25341:34;;;25355:18;;:::i;:::-;-1:-1:-1;25392:9:1;;25282:125::o;25412:258::-;25484:1;25494:113;25508:6;25505:1;25502:13;25494:113;;;25584:11;;;25578:18;25565:11;;;25558:39;25530:2;25523:10;25494:113;;;25625:6;25622:1;25619:13;25616:48;;;-1:-1:-1;;25660:1:1;25642:16;;25635:27;25412:258::o;25675:380::-;25754:1;25750:12;;;;25797;;;25818:61;;25872:4;25864:6;25860:17;25850:27;;25818:61;25925:2;25917:6;25914:14;25894:18;25891:38;25888:161;;;25971:10;25966:3;25962:20;25959:1;25952:31;26006:4;26003:1;25996:15;26034:4;26031:1;26024:15;25888:161;;25675:380;;;:::o;26060:135::-;26099:3;-1:-1:-1;;26120:17:1;;26117:43;;;26140:18;;:::i;:::-;-1:-1:-1;26187:1:1;26176:13;;26060:135::o;26200:112::-;26232:1;26258;26248:35;;26263:18;;:::i;:::-;-1:-1:-1;26297:9:1;;26200:112::o;26317:127::-;26378:10;26373:3;26369:20;26366:1;26359:31;26409:4;26406:1;26399:15;26433:4;26430:1;26423:15;26449:127;26510:10;26505:3;26501:20;26498:1;26491:31;26541:4;26538:1;26531:15;26565:4;26562:1;26555:15;26581:127;26642:10;26637:3;26633:20;26630:1;26623:31;26673:4;26670:1;26663:15;26697:4;26694:1;26687:15;26713:127;26774:10;26769:3;26765:20;26762:1;26755:31;26805:4;26802:1;26795:15;26829:4;26826:1;26819:15;26845:127;26906:10;26901:3;26897:20;26894:1;26887:31;26937:4;26934:1;26927:15;26961:4;26958:1;26951:15;26977:131;-1:-1:-1;;;;;27052:31:1;;27042:42;;27032:70;;27098:1;27095;27088:12;27113:131;-1:-1:-1;;;;;;27187:32:1;;27177:43;;27167:71;;27234:1;27231;27224:12
Swarm Source
ipfs://d360f0c1121ae5766c5fbed2ab93b4a3b4ab33cd6ea407226584fdc3257c5a8a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.