ERC-721
NFT
Overview
Max Total Supply
8,888 Monsuta
Holders
2,562
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 MonsutaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Monsuta
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.17;import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";import {SafeERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";import {Address} from "@openzeppelin/contracts/utils/Address.sol";import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import {DefaultOperatorFilterer} from "operator-filter-registry/src/DefaultOperatorFilterer.sol";import {ERC721A, IERC721A, ERC721AQueryable} from "./ERC721AQueryable.sol";import {IOmen} from "./interfaces/IOmen.sol";import {IMonsutaRegistry} from "./interfaces/IMonsutaRegistry.sol";import {NameUtils} from "./utils/NameUtils.sol";import {Base64} from "./utils/Base64.sol";/*** @title Monsuta contract* @dev Extends ERC721 Non-Fungible Token Standard basic implementation*/contract Monsuta isERC721AQueryable,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,* given ``owner``'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../extensions/draft-IERC20Permit.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;function safeTransfer(IERC20 token,address to,uint256 value) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbol
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Tree proofs.** The proofs can be generated using the JavaScript library* https://github.com/miguelmota/merkletreejs[merkletreejs].* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.** See `test/utils/cryptography/MerkleProof.test.js` for some examples.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import {OperatorFilterer} from "./OperatorFilterer.sol";import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol";/*** @title DefaultOperatorFilterer* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.* @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide* administration methods on the contract itself to interact with the registry otherwise the subscription* will be locked to the options set during construction.*/abstract contract DefaultOperatorFilterer is OperatorFilterer {/// @dev The constructor that is called when the contract is being deployed.constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;interface IOperatorFilterRegistry {/*** @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns* true if supplied registrant address is not registered.*/function isOperatorAllowed(address registrant, address operator) external view returns (bool);/*** @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.*/function register(address registrant) external;/*** @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.*/function registerAndSubscribe(address registrant, address subscription) external;/*** @notice Registers an address with the registry and copies the filtered operators and codeHashes from another* address without subscribing.*/function registerAndCopyEntries(address registrant, address registrantToCopy) external;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";/*** @title OperatorFilterer* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another* registrant's entries in the OperatorFilterRegistry.* @dev This smart contract is meant to be inherited by token contracts so they can use the following:* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.* Please note that if your token contract does not provide an owner with EIP-173, it must provide* administration methods on the contract itself to interact with the registry otherwise the subscription* will be locked to the options set during construction.*/abstract contract OperatorFilterer {/// @dev Emitted when an operator is not allowed.error OperatorNotAllowed(address operator);IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);/// @dev The constructor that is called when the contract is being deployed.constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
12345// SPDX-License-Identifier: MITpragma solidity ^0.8.17;address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.2// Creator: Chiru Labspragma solidity 0.8.17;import "./interfaces/IERC721A.sol";/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.2// Creator: Chiru Labspragma solidity 0.8.17;import "./interfaces/IERC721AQueryable.sol";import "./ERC721A.sol";/*** @title ERC721AQueryable.** @dev ERC721A subclass with convenience query functions.*/abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {/*** @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.** If the `tokenId` is out of bounds:** - `addr = address(0)`* - `startTimestamp = 0`* - `burned = false`* - `extraData = 0`** If the `tokenId` is burned:
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.2// Creator: Chiru Labspragma solidity 0.8.17;/*** @dev Interface of ERC721A.*/interface IERC721A {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** Cannot query the balance for the zero address.*/error BalanceQueryForZeroAddress();/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.2// Creator: Chiru Labspragma solidity 0.8.17;import "./IERC721A.sol";/*** @dev Interface of ERC721AQueryable.*/interface IERC721AQueryable is IERC721A {/*** Invalid query range (`start` >= `stop`).*/error InvalidQueryRange();/*** @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.** If the `tokenId` is out of bounds:** - `addr = address(0)`* - `startTimestamp = 0`* - `burned = false`* - `extraData = 0`
123456789101112131415161718192021// SPDX-License-Identifier: MITpragma solidity 0.8.17;interface IMonsutaRegistry {function getTraitsOfMonsutaId(uint256 monsutaId)externalviewreturns (string memory character,string memory monsuta,string memory eyeColor,string memory skinColor,string memory item);function getEncodedTraitsOfMonsutaId(uint256 monsutaId, uint256 state)externalviewreturns (bytes memory traits);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragma solidity 0.8.17;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IOmen {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner,address indexed spender,uint256 value);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.17;/// @title Base64/// @author Brecht Devos - <brecht@loopring.org>/// @notice Provides functions for encoding/decoding base64library Base64 {string internal constant TABLE_ENCODE ="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";bytes internal constant TABLE_DECODE =hex"0000000000000000000000000000000000000000000000000000000000000000"hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";function encode(bytes memory data) internal pure returns (string memory) {if (data.length == 0) return "";// load the table into memorystring memory table = TABLE_ENCODE;// multiply by 4/3 rounded upuint256 encodedLen = 4 * ((data.length + 2) / 3);// add some extra buffer at the end required for the writing
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.17;/*** @dev Collection of utils functions related to on-chain naming*/library NameUtils {/*** @dev Check if the name string is valid (Alphanumeric and spaces without leading or trailing space)*/function validateName(string memory str) internal pure returns (bool) {bytes memory b = bytes(str);if (b.length < 1) return false;if (b.length > 25) return false; // Cannot be longer than 25 charactersif (b[0] == 0x20) return false; // Leading spaceif (b[b.length - 1] == 0x20) return false; // Trailing spacebytes1 lastChar = b[0];for (uint256 i; i < b.length; i++) {bytes1 char = b[i];if (char == 0x20 && lastChar == 0x20) return false; // Cannot contain continous spacesif (
12345678910111213141516171819202122232425{"evmVersion": "london","libraries": {},"metadata": {"bytecodeHash": "ipfs","useLiteralContent": true},"optimizer": {"enabled": true,"runs": 100},"remappings": [],"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32[3]","name":"_merkleRoots","type":"bytes32[3]"},{"internalType":"uint256[3]","name":"_prices","type":"uint256[3]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChange","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":"uint256","name":"evolvedTokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"soulTokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"Resurrect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"toEvolveId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"toSoulId","type":"uint256"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"Sacrificed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tradeId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tradeCloser","type":"address"}],"name":"TradeCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tradeId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tradeOpener","type":"address"},{"indexed":true,"internalType":"address","name":"tradeCloser","type":"address"}],"name":"TradeExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tradeId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tradeOpener","type":"address"},{"indexed":false,"internalType":"uint256","name":"openingTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"closingTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expiryDate","type":"uint256"}],"name":"TradeOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EVOLVED_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_ALLOTMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tradeId","type":"uint256"}],"name":"cancelTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changePhaseSettng","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"defaultImageURI","type":"string"},{"internalType":"string","name":"evolvedImageURI","type":"string"},{"internalType":"string","name":"soulImageURI","type":"string"},{"internalType":"string","name":"placeholderURI","type":"string"}],"name":"changeURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkWhiteListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAll","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultImageIPFSURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evolvedImageIPFSURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tradeId","type":"uint256"}],"name":"executeTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAccumulated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccumulatedAll","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLastClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTradeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tradeId","type":"uint256"}],"name":"isTradeExecutable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedForPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"multiplierFromState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameChangeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"openingTokenId","type":"uint256"},{"internalType":"uint256","name":"closingTokenId","type":"uint256"},{"internalType":"uint256","name":"expiryDate","type":"uint256"}],"name":"openNewTrade","outputs":[],"stateMutability":"nonpayable","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":"placeholderImageIPFSURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IMonsutaRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"evolvedTokenId","type":"uint256"},{"internalType":"uint256","name":"soulTokenId","type":"uint256"}],"name":"resurrect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resurrectPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"toEvolveId","type":"uint256"},{"internalType":"uint256","name":"toSoulId","type":"uint256"}],"name":"sacrifice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sacrificePrice","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":"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":"newPhase","type":"uint256"}],"name":"setCurrentPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setNameChangePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_omen","type":"address"}],"name":"setOmen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registry","type":"address"}],"name":"setRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setResurrectPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSacrificePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soulImageIPFSURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleNameChangeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenState","outputs":[{"internalType":"enum Monsuta.MonsutaState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"trades","outputs":[{"internalType":"uint256","name":"tradeId","type":"uint256"},{"internalType":"uint256","name":"openingTokenId","type":"uint256"},{"internalType":"uint256","name":"closingTokenId","type":"uint256"},{"internalType":"uint256","name":"expiryDate","type":"uint256"},{"internalType":"address","name":"tradeOpener","type":"address"},{"internalType":"address","name":"tradeCloser","type":"address"},{"internalType":"bool","name":"active","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wlPriceForPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
681b1ae4d6e2ef500000600e55680d8d726b7177a80000600f556828a857425466f800006010556016805460ff1916905560a060405260006080908152601b906200004b908262000453565b50604080516020810190915260008152601c906200006a908262000453565b50604080516020810190915260008152601d9062000089908262000453565b5060405180606001604052806035815260200162005c6d60359139601e90620000b3908262000453565b50348015620000c157600080fd5b5060405162005ca238038062005ca2833981016040819052620000e4916200054a565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806040016040528060078152602001664d6f6e7375746160c81b815250604051806040016040528060078152602001664d6f6e7375746160c81b81525081600290816200014c919062000453565b5060036200015b828262000453565b505060008055506200016d336200035c565b60016009556daaeb6d7670e522a718067333cd4e3b15620002b75780156200020557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001e657600080fd5b505af1158015620001fb573d6000803e3d6000fd5b50505050620002b7565b6001600160a01b03821615620002565760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001cb565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200029d57600080fd5b505af1158015620002b2573d6000803e3d6000fd5b505050505b506003905060005b816001600160401b03168110156200035257838160038110620002e657620002e662000607565b6020020151600b6000620002fc8460016200061d565b815260208101919091526040016000205582816003811062000322576200032262000607565b6020020151600c6000620003388460016200061d565b8152602081019190915260400160002055600101620002bf565b5050505062000645565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003d957607f821691505b602082108103620003fa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044e57600081815260208120601f850160051c81016020861015620004295750805b601f850160051c820191505b818110156200044a5782815560010162000435565b5050505b505050565b81516001600160401b038111156200046f576200046f620003ae565b6200048781620004808454620003c4565b8462000400565b602080601f831160018114620004bf5760008415620004a65750858301515b600019600386901b1c1916600185901b1785556200044a565b600085815260208120601f198616915b82811015620004f057888601518255948401946001909101908401620004cf565b50858210156200050f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b604051606081016001600160401b0381118282101715620005445762000544620003ae565b60405290565b60008060c083850312156200055e57600080fd5b83601f8401126200056e57600080fd5b620005786200051f565b8060608501868111156200058b57600080fd5b855b81811015620005a75780518452602093840193016200058d565b5081945086607f870112620005bb57600080fd5b620005c56200051f565b925082915060c0860187811115620005dc57600080fd5b5b80821015620005fa578151845260209384019390910190620005dd565b5093969095509350505050565b634e487b7160e01b600052603260045260246000fd5b808201808211156200063f57634e487b7160e01b600052601160045260246000fd5b92915050565b61561880620006556000396000f3fe60806040526004361061043d5760003560e01c80637d3e1ee41161022f578063b88d4fde11610139578063d1d838d3116100b6578063e36d64981161007a578063e36d649814610d2d578063e985e9c514610d43578063ee068c7d14610d8c578063f2fde38b14610dac578063f75acb6014610dcc57600080fd5b8063d1d838d314610c95578063d5b20f2d14610cc2578063d6fc765d14610ce2578063d70540ad14610d02578063e1dba5cc14610d1757600080fd5b8063c483b015116100fd578063c483b01514610bff578063c87b56dd14610c15578063cb774d4714610c35578063cdde120914610c4b578063d1058e5914610c8057600080fd5b8063b88d4fde14610b64578063ba41b0c614610b84578063c002d23d14610b97578063c23dc68f14610bb2578063c39cbef114610bdf57600080fd5b806399a2557a116101c7578063aa1eaea11161018b578063aa1eaea114610adb578063adf2131b14610afb578063b5077f4414610b11578063b551b82f14610b27578063b868870e14610b4457600080fd5b806399a2557a14610a515780639faaf6af14610a71578063a22cb46514610a86578063a3031b7714610aa6578063a91ee0dc14610abb57600080fd5b80637d3e1ee41461093c5780638368909c1461095c5780638462151c1461097457806384a1b902146109a15780638da5cb5b146109c157806391716d05146109df578063946807fd1461077157806395d89b41146109ff5780639745cc3d14610a1457600080fd5b80633a55355b1161034b5780636352211e116102c857806374df39c91161028c57806374df39c9146108b2578063793a9374146108c75780637b103999146108e75780637b25e04c146109075780637c69e2071461092757600080fd5b80636352211e1461082857806369202233146108485780636d5224181461085d57806370a082311461087d578063715018a61461089d57600080fd5b8063513da9481161030f578063513da948146107715780635334f13b146107895780635b703558146107a95780635bbb2177146107c35780635ecedfc9146107f057600080fd5b80633a55355b146106e45780633ccfd60b1461070457806341f434341461071957806342842e0e1461073b57806345ca77381461075b57600080fd5b806315bc0c8b116103d957806323b872dd1161039d57806323b872dd146106475780632895bf7d1461066757806329ca18fc146106875780632ccde4f6146106a7578063367df165146106c757600080fd5b806315bc0c8b1461058157806318160ddd146105a157806318e20a38146105ba5780631e238db4146105cf5780631e6c598e146105e457600080fd5b806301ffc9a71461044257806302d2838b14610477578063055ad42e1461049957806306fdde03146104bd578063081812fc146104df578063095ea7b31461050c57806309ec6cc71461052c57806312ef80ed1461054c57806315b56d1014610561575b600080fd5b34801561044e57600080fd5b5061046261045d366004614859565b610de1565b60405190151581526020015b60405180910390f35b34801561048357600080fd5b50610497610492366004614876565b610df2565b005b3480156104a557600080fd5b506104af600a5481565b60405190815260200161046e565b3480156104c957600080fd5b506104d2611103565b60405161046e91906148df565b3480156104eb57600080fd5b506104ff6104fa366004614876565b611195565b60405161046e91906148f2565b34801561051857600080fd5b50610497610527366004614922565b6111d9565b34801561053857600080fd5b50610497610547366004614876565b6111f2565b34801561055857600080fd5b506104af600381565b34801561056d57600080fd5b5061046261057c366004614a17565b6114b0565b34801561058d57600080fd5b5061049761059c366004614876565b6114e3565b3480156105ad57600080fd5b50600154600054036104af565b3480156105c657600080fd5b506104af6114f0565b3480156105db57600080fd5b506104d2611504565b3480156105f057600080fd5b506106046105ff366004614876565b611592565b6040805197885260208801969096529486019390935260608501919091526001600160a01b0390811660808501521660a0830152151560c082015260e00161046e565b34801561065357600080fd5b50610497610662366004614a4b565b6115f1565b34801561067357600080fd5b506104af610682366004614a87565b61161c565b34801561069357600080fd5b506104626106a2366004614876565b6116db565b3480156106b357600080fd5b506104d26106c2366004614876565b611796565b3480156106d357600080fd5b506104af681b1ae4d6e2ef50000081565b3480156106f057600080fd5b506104af6106ff366004614876565b611891565b34801561071057600080fd5b5061049761194e565b34801561072557600080fd5b506104ff6daaeb6d7670e522a718067333cd4e81565b34801561074757600080fd5b50610497610756366004614a4b565b6119a7565b34801561076757600080fd5b506104af600e5481565b34801561077d57600080fd5b506104af6363e64de081565b34801561079557600080fd5b506104976107a4366004614876565b6119cc565b3480156107b557600080fd5b506016546104629060ff1681565b3480156107cf57600080fd5b506107e36107de366004614aed565b6119d9565b60405161046e9190614b6a565b3480156107fc57600080fd5b506104af61080b366004614922565b600d60209081526000928352604080842090915290825290205481565b34801561083457600080fd5b506104ff610843366004614876565b611a8b565b34801561085457600080fd5b506104d2611a96565b34801561086957600080fd5b506104d2610878366004614876565b611aa3565b34801561088957600080fd5b506104af610898366004614a87565b611b45565b3480156108a957600080fd5b50610497611b93565b3480156108be57600080fd5b50610497611ba7565b3480156108d357600080fd5b506104976108e2366004614a87565b611ca6565b3480156108f357600080fd5b506017546104ff906001600160a01b031681565b34801561091357600080fd5b50610497610922366004614bac565b611cfc565b34801561093357600080fd5b50610497611efd565b34801561094857600080fd5b50610497610957366004614876565b611f67565b34801561096857600080fd5b506104af63688a094081565b34801561098057600080fd5b5061099461098f366004614a87565b611faf565b60405161046e9190614bce565b3480156109ad57600080fd5b506104976109bc366004614876565b612095565b3480156109cd57600080fd5b506008546001600160a01b03166104ff565b3480156109eb57600080fd5b506104af6109fa366004614876565b6120a2565b348015610a0b57600080fd5b506104d2612118565b348015610a2057600080fd5b50610a44610a2f366004614876565b601a6020526000908152604090205460ff1681565b60405161046e9190614c1c565b348015610a5d57600080fd5b50610994610a6c366004614c44565b612127565b348015610a7d57600080fd5b506104d261229e565b348015610a9257600080fd5b50610497610aa1366004614c85565b6122ab565b348015610ab257600080fd5b506019546104af565b348015610ac757600080fd5b50610497610ad6366004614a87565b6122bf565b348015610ae757600080fd5b50610497610af6366004614bac565b61230f565b348015610b0757600080fd5b506104af60135481565b348015610b1d57600080fd5b506104af6122b881565b348015610b3357600080fd5b506104af68015af1d78b58c4000081565b348015610b5057600080fd5b50610497610b5f366004614cbc565b61249d565b348015610b7057600080fd5b50610497610b7f366004614ce8565b6124c3565b610497610b92366004614d63565b6124f0565b348015610ba357600080fd5b506104af66d19c2ff9bf800081565b348015610bbe57600080fd5b50610bd2610bcd366004614876565b6127f8565b60405161046e9190614dae565b348015610beb57600080fd5b50610497610bfa366004614dbc565b61283b565b348015610c0b57600080fd5b506104af600f5481565b348015610c2157600080fd5b506104d2610c30366004614876565b612b68565b348015610c4157600080fd5b506104af60125481565b348015610c5757600080fd5b50610c6b610c66366004614e02565b612e0d565b6040805192835260208301919091520161046e565b348015610c8c57600080fd5b506104af612f08565b348015610ca157600080fd5b506104af610cb0366004614876565b600c6020526000908152604090205481565b348015610cce57600080fd5b506104af610cdd366004614876565b6130e9565b348015610cee57600080fd5b50610497610cfd366004614e3b565b613147565b348015610d0e57600080fd5b506104d2613182565b348015610d2357600080fd5b506104af60105481565b348015610d3957600080fd5b506104af60115481565b348015610d4f57600080fd5b50610462610d5e366004614edb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610d9857600080fd5b50610497610da7366004614cbc565b61318f565b348015610db857600080fd5b50610497610dc7366004614a87565b613410565b348015610dd857600080fd5b50610497613489565b6000610dec826134a5565b92915050565b600060198281548110610e0757610e07614f0e565b60009182526020918290206040805160e081018252600693909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b03908116608083015260059092015491821660a0820152600160a01b90910460ff16151560c08201819052909150610ec35760405162461bcd60e51b815260206004820152600d60248201526c2161637469766520747261646560981b60448201526064015b60405180910390fd5b42816060015111610f005760405162461bcd60e51b8152602060048201526007602482015266195e1c1a5c995960ca1b6044820152606401610eba565b60026040808301516000908152601a602052205460ff166002811115610f2857610f28614c06565b03610f455760405162461bcd60e51b8152600401610eba90614f24565b336001600160a01b0316610f5c8260400151611a8b565b6001600160a01b031614610fac5760405162461bcd60e51b815260206004820152601760248201527610b7bbb732b91037b31031b637b9b4b733903a37b5b2b760491b6044820152606401610eba565b610fbf81608001513383602001516134f3565b610fd233826080015183604001516134f3565b6040518060e001604052808260000151815260200182602001518152602001826040015181526020018260600151815260200182608001516001600160a01b03168152602001336001600160a01b03168152602001600015158152506019838154811061104157611041614f0e565b60009182526020808320845160069093020191825583015160018201556040808401516002830155606084015160038301556080808501516004840180546001600160a01b039283166001600160a01b031990911617905560a08601516005909401805460c0909701511515600160a01b026001600160a81b031990971694821694909417959095179092559084015184519151339491909116927f4d16bcd970ae0d8ad8871781ba650086db49df05d8ead538c980797d0d9235f991a45050565b60606002805461111290614f47565b80601f016020809104026020016040519081016040528092919081815260200182805461113e90614f47565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b5050505050905090565b60006111a08261363b565b6111bd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816111e381613662565b6111ed8383613712565b505050565b60006019828154811061120757611207614f0e565b60009182526020918290206040805160e0810182526006909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b039081166080830181905260059093015490811660a083015260ff600160a01b90910416151560c0820152915033146112b85760405162461bcd60e51b815260206004820152600760248201526610b7b832b732b960c91b6044820152606401610eba565b60a08101516001600160a01b0316156113295760405162461bcd60e51b815260206004820152602d60248201527f7472616465436c6f7365722063616e277420616c7265616479206265206e6f6e60448201526c2d7a65726f206164647265737360981b6064820152608401610eba565b428160600151116113885760405162461bcd60e51b815260206004820152602360248201527f74726164652e65787069727944617465203c3d20626c6f636b2e74696d6573746044820152620616d760ec1b6064820152608401610eba565b6040518060e001604052808260000151815260200182602001518152602001826040015181526020018260600151815260200182608001516001600160a01b03168152602001336001600160a01b0316815260200160001515815250601983815481106113f7576113f7614f0e565b600091825260208083208451600690930201918255830151600182015560408084015160028301556060840151600383015560808401516004830180546001600160a01b039283166001600160a01b031990911617905560a08501516005909301805460c0909601511515600160a01b026001600160a81b031990961693909116929092179390931790559051339184917f68bbfaa8a985659b13e3f23ffac8fc9039d6ca60199cd9327817cb0cc03eb8769190a35050565b600060156114bd836137b2565b6040516114ca9190614f7b565b9081526040519081900360200190205460ff1692915050565b6114eb613914565b600f55565b6115016363e64de06203f480614fad565b81565b601b805461151190614f47565b80601f016020809104026020016040519081016040528092919081815260200182805461153d90614f47565b801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b505050505081565b601981815481106115a257600080fd5b6000918252602090912060069091020180546001820154600283015460038401546004850154600590950154939550919390926001600160a01b0391821691811690600160a01b900460ff1687565b826001600160a01b038116331461160b5761160b33613662565b61161684848461396e565b50505050565b60006363e64de0421161163157506000919050565b600061163c83611b45565b90508060000361164f5750600092915050565b6000808061165b61481c565b60005b8584146116cf5761166e816139c5565b915081604001516116c75781516001600160a01b03161561168e57815192505b876001600160a01b0316836001600160a01b0316036116c75760019093019260006116b882611891565b905080156116c557948501945b505b60010161165e565b50929695505050505050565b600080601983815481106116f1576116f1614f0e565b60009182526020918290206040805160e0810182526006939093029091018054835260018101549383019390935260028301549082015260038201546060820181905260048301546001600160a01b03908116608084015260059093015492831660a0830152600160a01b90920460ff16151560c0820152915042111561177b5750600092915050565b8060c0015161178d5750600092915050565b50600192915050565b6000818152601a602052604081205460609160ff909116908160028111156117c0576117c0614c06565b0361185857601b80546117d290614f47565b80601f01602080910402602001604051908101604052809291908181526020018280546117fe90614f47565b801561184b5780601f106118205761010080835404028352916020019161184b565b820191906000526020600020905b81548152906001019060200180831161182e57829003601f168201915b5050505050915050919050565b600181600281111561186c5761186c614c06565b0361187e57601c80546117d290614f47565b601d80546117d290614f47565b50919050565b60006363e64de042116118a657506000919050565b60006118b1836120a2565b905063688a094081106118c75750600092915050565b600063688a094042106118de5763688a09406118e0565b425b90506000620151806118f1866130e9565b68015af1d78b58c400006119058686614fc0565b61190f9190614fd3565b6119199190614fd3565b6119239190615000565b90506363e64de0830361194657611943681b1ae4d6e2ef50000082614fad565b90505b949350505050565b611956613914565b476000606461196683600f614fd3565b6119709190615000565b905061199073fed505c80b72cdca5f72292d4bf1d6194cf23669826139e5565b6119a33361199e8385614fc0565b6139e5565b5050565b826001600160a01b03811633146119c1576119c133613662565b611616848484613afe565b6119d4613914565b601055565b6060816000816001600160401b038111156119f6576119f661494c565b604051908082528060200260200182016040528015611a2f57816020015b611a1c61481c565b815260200190600190039081611a145790505b50905060005b828114611a8257611a5d868683818110611a5157611a51614f0e565b905060200201356127f8565b828281518110611a6f57611a6f614f0e565b6020908102919091010152600101611a35565b50949350505050565b6000610dec82613b19565b601d805461151190614f47565b6000818152601460205260409020805460609190611ac090614f47565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec90614f47565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b50505050509050919050565b60006001600160a01b038216611b6e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611b9b613914565b611ba56000613b80565b565b60125415611bf75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610eba565b600060115411611c495760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610eba565b60ff60115443611c599190614fc0565b1115611c80576122b8611c6d600143614fc0565b611c78919040615014565b601255611c95565b601154611c91906122b89040615014565b6012555b601254600003611ba5576001601255565b611cae613914565b6001600160a01b038116611cd45760405162461bcd60e51b8152600401610eba90615028565b601680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b8133611d0782611a8b565b6001600160a01b031614611d2d5760405162461bcd60e51b8152600401610eba9061504f565b8133611d3882611a8b565b6001600160a01b031614611d5e5760405162461bcd60e51b8152600401610eba9061504f565b600060125411611da45760405162461bcd60e51b81526020600482015260116024820152701bdb9b1e4818599d195c881c995d99585b607a1b6044820152606401610eba565b6000848152601a602052604081205460ff166002811115611dc757611dc7614c06565b14611e0d5760405162461bcd60e51b815260206004820152601660248201527508595d9bdb1d9a5b99c81a5d195b48191959985d5b1d60521b6044820152606401610eba565b6000838152601a602052604081205460ff166002811115611e3057611e30614c06565b14611e725760405162461bcd60e51b8152602060048201526012602482015271085cdbdd5b081a5d195b48191959985d5b1d60721b6044820152606401610eba565b6000848152601a6020526040808220805460ff19908116600117909155858352912080549091166002179055600f54611eac903390613bd2565b611eb584613c56565b611ebe83613c56565b82847f8db0a45188fb388358a12efee9165c0721142258d470a99c8efa5383a7859b3c33604051611eef91906148f2565b60405180910390a350505050565b611f05613914565b600160135410611f445760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d195908185b1b60b21b6044820152606401610eba565b6001601381905550611ba533600160405180602001604052806000815250613ccc565b611f6f613914565b80600a5403611faa5760405162461bcd60e51b8152602060048201526007602482015266616c726561647960c81b6044820152606401610eba565b600a55565b60606000806000611fbf85611b45565b90506000816001600160401b03811115611fdb57611fdb61494c565b604051908082528060200260200182016040528015612004578160200160208202803683370190505b50905061200f61481c565b60005b83861461208957612022816139c5565b915081604001516120815781516001600160a01b03161561204257815194505b876001600160a01b0316856001600160a01b031603612081578083878060010198508151811061207457612074614f0e565b6020026020010181815250505b600101612012565b50909695505050505050565b61209d613914565b600e55565b60006120ad8261363b565b6120e25760405162461bcd60e51b815260206004820152600660248201526508595e1a5cdd60d21b6044820152606401610eba565b6000828152601860205260408120548103612101576363e64de0612111565b6000838152601860205260409020545b9392505050565b60606003805461111290614f47565b606081831061214957604051631960ccad60e11b815260040160405180910390fd5b60008061215560005490565b905080841115612163578093505b600061216e87611b45565b90508486101561218d5785850381811015612187578091505b50612191565b5060005b6000816001600160401b038111156121ab576121ab61494c565b6040519080825280602002602001820160405280156121d4578160200160208202803683370190505b509050816000036121ea57935061211192505050565b60006121f5886127f8565b905060008160400151612206575080515b885b8881141580156122185750848714155b1561228d57612226816139c5565b925082604001516122855782516001600160a01b03161561224657825191505b8a6001600160a01b0316826001600160a01b031603612285578084888060010199508151811061227857612278614f0e565b6020026020010181815250505b600101612208565b505050928352509095945050505050565b601e805461151190614f47565b816122b581613662565b6111ed8383613d32565b6122c7613914565b6001600160a01b0381166122ed5760405162461bcd60e51b8152600401610eba90615028565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b813361231a82611a8b565b6001600160a01b0316146123405760405162461bcd60e51b8152600401610eba9061504f565b813361234b82611a8b565b6001600160a01b0316146123715760405162461bcd60e51b8152600401610eba9061504f565b60026000848152601a602052604090205460ff16600281111561239657612396614c06565b146123cb5760405162461bcd60e51b8152602060048201526005602482015264085cdbdd5b60da1b6044820152606401610eba565b60016000858152601a602052604090205460ff1660028111156123f0576123f0614c06565b146124285760405162461bcd60e51b815260206004820152600860248201526708595d9bdb1d995960c21b6044820152606401610eba565b6000848152601a6020526040808220805460ff1990811690915585835291208054909116905561245783613c56565b61246084613c56565b61246c33601054613bd2565b82847f53b276ee76ababff76e2737881ee01288f2c37ede62c845e01d5b014f8c7c27d33604051611eef91906148f2565b6124a5613914565b6000928352600b6020908152604080852093909355600c9052912055565b836001600160a01b03811633146124dd576124dd33613662565b6124e985858585613d9e565b5050505050565b6002600954036125425760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610eba565b60026009556122b86125576001546000540390565b1061259d5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b6044820152606401610eba565b6000600a54116125e05760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610eba565b6363e64de042116126215760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b6044820152606401610eba565b6000831180156126315750600683105b6126745760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964206e756d6265724f664e66747360601b6044820152606401610eba565b6122b8836126856001546000540390565b61268f9190614fad565b11156126d25760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610eba565b6000806126e0338585612e0d565b9092509050811561271d57336000908152600d60209081526040808320600a54845290915281208054849290612717908490614fad565b90915550505b34816127298488614fc0565b61273a9066d19c2ff9bf8000614fd3565b6127449190614fad565b146127915760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610eba565b6127ab338660405180602001604052806000815250613ccc565b6011541580156127e257506122b86127c66001546000540390565b14806127e257506127de6363e64de06203f480614fad565b4210155b156127ec57436011555b50506001600955505050565b61280061481c565b61280861481c565b60005483106128175792915050565b612820836139c5565b90508060400151156128325792915050565b61211183613de2565b813361284682611a8b565b6001600160a01b03161461286c5760405162461bcd60e51b8152600401610eba9061504f565b60165460ff166128aa5760405162461bcd60e51b815260206004820152600960248201526864697361626c65642160b81b6044820152606401610eba565b6128b382613dfb565b15156001146128f95760405162461bcd60e51b81526020600482015260126024820152716e6f742076616c6964206e6577206e616d6560701b6044820152606401610eba565b600083815260146020526040908190209051600291612917916150ee565b602060405180830381855afa158015612934573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061295791906150fa565b6002836040516129679190614f7b565b602060405180830381855afa158015612984573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906129a791906150fa565b036129ee5760405162461bcd60e51b815260206004820152601760248201527673616d65206173207468652063757272656e74206f6e6560481b6044820152606401610eba565b6129f7826114b0565b15612a375760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c995cd95c9d995960821b6044820152606401610eba565b60008381526014602052604081208054612a5090614f47565b90501115612afb5760008381526014602052604090208054612afb9190612a7690614f47565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa290614f47565b8015612aef5780601f10612ac457610100808354040283529160200191612aef565b820191906000526020600020905b815481529060010190602001808311612ad257829003601f168201915b50505050506000614006565b612b06826001614006565b6000838152601460205260409020612b1e8382615159565b50612b2b33600e54613bd2565b827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b83604051612b5b91906148df565b60405180910390a2505050565b6060612b738261363b565b612bbf5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610eba565b60408051808201825260018152601160f91b60208083019190915260008581526014909152919091208054612bf390614f47565b159050612c2f576000838152601460209081526040918290209151612c19929101615218565b6040516020818303038152906040529050612c5a565b612c3883614043565b604051602001612c489190615235565b60405160208183030381529060405290505b601254600003612cb657612c8f81601e604051602001612c7b929190615271565b604051602081830303815290604052614143565b604051602001612c9f9190615301565b604051602081830303815290604052915050919050565b60006122b860125485612cc99190614fad565b612cd39190615014565b90506060612ce085611796565b612ce983614043565b604051602001612cfa929190615346565b60408051601f1981840301815290829052612d1791602001615384565b60408051601f198184030181529181526017546000888152601a6020529190912054919250612de49185916001600160a01b03169063a3161dba90899060ff166002811115612d6857612d68614c06565b6040516001600160e01b031960e085901b16815260048101929092526024820152604401600060405180830381865afa158015612da9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612dd191908101906153b9565b83604051602001612c7b9392919061542f565b604051602001612df49190615301565b6040516020818303038152906040529350505050919050565b600a546000908152600b602052604081205481908015801590612e2f57508315155b15612ef7576001600160a01b0386166000908152600d60209081526040808320600a54845290915290205460011115612ef757612ed5858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff1960608c901b1660208201528592506034019050604051602081830303815290604052805190602001206142a7565b15612ef7575050600a546000908152600c602052604090205460019150612f00565b60008092509250505b935093915050565b600080612f1433611b45565b905060008111612f555760405162461bcd60e51b815260206004820152600c60248201526b7a65726f2062616c616e636560a01b6044820152606401610eba565b6363e64de04211612fa85760405162461bcd60e51b815260206004820152601c60248201527f456d697373696f6e20686173206e6f74207374617274656420796574000000006044820152606401610eba565b60008080612fb461481c565b60005b85841461303057612fc7816139c5565b915081604001516130285781516001600160a01b031615612fe757815192505b336001600160a01b0384160361302857600190930192600061300882611891565b90508015613026576000828152601860205260409020429055948501945b505b600101612fb7565b505050506000811161307a5760405162461bcd60e51b815260206004820152601360248201527227379030b1b1bab6bab630ba32b21027b6b2b760691b6044820152606401610eba565b6016546040516340c10f1960e01b8152336004820152602481018390526101009091046001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156130ca57600080fd5b505af11580156130de573d6000803e3d6000fd5b509295945050505050565b6000818152601a602052604081205460ff168181600281111561310e5761310e614c06565b0361311c5750600192915050565b600181600281111561313057613130614c06565b0361313e5750600392915050565b50600092915050565b61314f613914565b601b61315b8582615159565b50601c6131688482615159565b50601d6131758382615159565b50601e6124e98282615159565b601c805461151190614f47565b823361319a82611a8b565b6001600160a01b0316146131c05760405162461bcd60e51b8152600401610eba9061504f565b42821161320f5760405162461bcd60e51b815260206004820152601d60248201527f65787069727944617465203c3d20626c6f636b2e74696d657374616d700000006044820152606401610eba565b60026000858152601a602052604090205460ff16600281111561323457613234614c06565b036132515760405162461bcd60e51b8152600401610eba90614f24565b601980546040805160e081018252828152602080820189815282840189815260608085018a81523360808701818152600060a08901818152600160c08b01818152908d018e559c909152975160068b027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969581019190915595517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969687015593517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969786015590517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969885015591517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9699840180546001600160a01b039283166001600160a01b031990911617905594517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969a909301805498511515600160a01b026001600160a81b0319909916939095169290921796909617909255825189815290810188905291820186905291929183917fac37cec9b9d12e2f430079b73359fc83d205d90a5b307ac7fc059ac552465273910160405180910390a35050505050565b613418613914565b6001600160a01b03811661347d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eba565b61348681613b80565b50565b613491613914565b6016805460ff19811660ff90911615179055565b60006301ffc9a760e01b6001600160e01b0319831614806134d657506380ac58cd60e01b6001600160e01b03198316145b80610dec5750506001600160e01b031916635b5e139f60e01b1490565b60006134fe82613b19565b9050836001600160a01b0316816001600160a01b0316146135315760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03831661355857604051633a954ecd60e21b815260040160405180910390fd5b61356584848460016142bd565b600082815260066020908152604080832080546001600160a01b03191690556001600160a01b03878116845260058352818420805460001901905586168084528184208054600101905585845260049092528220600160e11b4260a01b9092178217905582169003613607576001820160008181526004602052604081205490036136055760005481146136055760008181526004602052604090208290555b505b81836001600160a01b0316856001600160a01b03166000805160206155c383398151915260405160405180910390a4611616565b6000805482108015610dec575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561348657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156136cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f391906154d9565b6134865780604051633b79c77360e21b8152600401610eba91906148f2565b600061371d82611a8b565b9050336001600160a01b03821614613756576137398133610d5e565b613756576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60606000829050600081516001600160401b038111156137d4576137d461494c565b6040519080825280601f01601f1916602001820160405280156137fe576020820181803683370190505b50905060005b825181101561390c57604183828151811061382157613821614f0e565b016020015160f81c108015906138515750605a83828151811061384657613846614f0e565b016020015160f81c11155b156138b35782818151811061386857613868614f0e565b602001015160f81c60f81b60f81c602061388291906154f6565b60f81b82828151811061389757613897614f0e565b60200101906001600160f81b031916908160001a9053506138fa565b8281815181106138c5576138c5614f0e565b602001015160f81c60f81b8282815181106138e2576138e2614f0e565b60200101906001600160f81b031916908160001a9053505b806139048161550f565b915050613804565b509392505050565b6008546001600160a01b03163314611ba55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eba565b600081815260066020526040902054338082146001600160a01b038616909114176139ba5761399d8433610d5e565b6139ba57604051632ce44b5f60e11b815260040160405180910390fd5b6116168484846134f3565b6139cd61481c565b600082815260046020526040902054610dec90614356565b80471015613a355760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610eba565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613a82576040519150601f19603f3d011682016040523d82523d6000602084013e613a87565b606091505b50509050806111ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610eba565b6111ed838383604051806020016040528060008152506124c3565b600081600054811015613b675760008181526004602052604081205490600160e01b82169003613b65575b80600003612111575060001901600081815260046020526040902054613b44565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601654613bef9061010090046001600160a01b0316833084614399565b601654604051630852cd8d60e31b8152600481018390526101009091046001600160a01b0316906342966c68906024015b600060405180830381600087803b158015613c3a57600080fd5b505af1158015613c4e573d6000803e3d6000fd5b505050505050565b6000613c6182611891565b905080156119a357600082815260186020526040902042905560165461010090046001600160a01b03166340c10f19613c9984611a8b565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401613c20565b613cd683836143f3565b6001600160a01b0383163b156111ed576000548281035b613d0060008683806001019450866144da565b613d1d576040516368d2bf6b60e11b815260040160405180910390fd5b818110613ced5781600054146124e957600080fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b613da98484846115f1565b6001600160a01b0383163b1561161657613dc5848484846144da565b611616576040516368d2bf6b60e11b815260040160405180910390fd5b613dea61481c565b610dec613df683613b19565b614356565b600080829050600181511015613e145750600092915050565b601981511115613e275750600092915050565b80600081518110613e3a57613e3a614f0e565b01602001516001600160f81b031916600160fd1b03613e5c5750600092915050565b8060018251613e6b9190614fc0565b81518110613e7b57613e7b614f0e565b01602001516001600160f81b031916600160fd1b03613e9d5750600092915050565b600081600081518110613eb257613eb2614f0e565b01602001516001600160f81b031916905060005b8251811015613ffb576000838281518110613ee357613ee3614f0e565b01602001516001600160f81b0319169050600160fd1b81148015613f145750600160fd1b6001600160f81b03198416145b15613f255750600095945050505050565b600360fc1b6001600160f81b0319821610801590613f515750603960f81b6001600160f81b0319821611155b158015613f875750604160f81b6001600160f81b0319821610801590613f855750602d60f91b6001600160f81b0319821611155b155b8015613fbc5750606160f81b6001600160f81b0319821610801590613fba5750603d60f91b6001600160f81b0319821611155b155b8015613fd65750600160fd1b6001600160f81b0319821614155b15613fe75750600095945050505050565b915080613ff38161550f565b915050613ec6565b506001949350505050565b806015614012846137b2565b60405161401f9190614f7b565b908152604051908190036020019020805491151560ff199092169190911790555050565b60608160000361406a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614094578061407e8161550f565b915061408d9050600a83615000565b915061406e565b6000816001600160401b038111156140ae576140ae61494c565b6040519080825280601f01601f1916602001820160405280156140d8576020820181803683370190505b5090505b8415611946576140ed600183614fc0565b91506140fa600a86615014565b614105906030614fad565b60f81b81838151811061411a5761411a614f0e565b60200101906001600160f81b031916908160001a90535061413c600a86615000565b94506140dc565b6060815160000361416257505060408051602081019091526000815290565b600060405180606001604052806040815260200161558360409139905060006003845160026141919190614fad565b61419b9190615000565b6141a6906004614fd3565b905060006141b5826020614fad565b6001600160401b038111156141cc576141cc61494c565b6040519080825280601f01601f1916602001820160405280156141f6576020820181803683370190505b509050818152600183018586518101602084015b81831015614262576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161420a565b60038951066001811461427c576002811461428d57614299565b613d3d60f01b600119830152614299565b603d60f81b6000198301525b509398975050505050505050565b6000826142b485846145c5565b14949350505050565b60005b818110156124e95760006142d48285614fad565b90506001600160a01b0386161561434d576142ee81613c56565b60026000828152601a602052604090205460ff16600281111561431357614313614c06565b0361434d5760405162461bcd60e51b815260206004820152600a60248201526939b7bab6103a37b5b2b760b11b6044820152606401610eba565b506001016142c0565b61435e61481c565b6001600160a01b03821681526001600160401b0360a083901c166020820152600160e01b82161515604082015260e89190911c606082015290565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261161690859061460a565b60008054908290036144185760405163b562e8dd60e01b815260040160405180910390fd5b61442560008483856142bd565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206155c38339815191528180a4600183015b8181146144b057808360006000805160206155c3833981519152600080a460010161448a565b50816000036144d157604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061450f903390899088908890600401615528565b6020604051808303816000875af192505050801561454a575060408051601f3d908101601f1916820190925261454791810190615565565b60015b6145a8573d808015614578576040519150601f19603f3d011682016040523d82523d6000602084013e61457d565b606091505b5080516000036145a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b845181101561390c576145f6828683815181106145e9576145e9614f0e565b60200260200101516146dc565b9150806146028161550f565b9150506145ca565b600061465f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166147089092919063ffffffff16565b8051909150156111ed578080602001905181019061467d91906154d9565b6111ed5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610eba565b60008183106146f8576000828152602084905260409020612111565b5060009182526020526040902090565b60606119468484600085856001600160a01b0385163b61476a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610eba565b600080866001600160a01b031685876040516147869190614f7b565b60006040518083038185875af1925050503d80600081146147c3576040519150601f19603f3d011682016040523d82523d6000602084013e6147c8565b606091505b50915091506147d88282866147e3565b979650505050505050565b606083156147f2575081612111565b8251156148025782518084602001fd5b8160405162461bcd60e51b8152600401610eba91906148df565b60408051608081018252600080825260208201819052918101829052606081019190915290565b6001600160e01b03198116811461348657600080fd5b60006020828403121561486b57600080fd5b813561211181614843565b60006020828403121561488857600080fd5b5035919050565b60005b838110156148aa578181015183820152602001614892565b50506000910152565b600081518084526148cb81602086016020860161488f565b601f01601f19169290920160200192915050565b60208152600061211160208301846148b3565b6001600160a01b0391909116815260200190565b80356001600160a01b038116811461491d57600080fd5b919050565b6000806040838503121561493557600080fd5b61493e83614906565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561498a5761498a61494c565b604052919050565b60006001600160401b038211156149ab576149ab61494c565b50601f01601f191660200190565b60006149cc6149c784614992565b614962565b90508281528383830111156149e057600080fd5b828260208301376000602084830101529392505050565b600082601f830112614a0857600080fd5b612111838335602085016149b9565b600060208284031215614a2957600080fd5b81356001600160401b03811115614a3f57600080fd5b611946848285016149f7565b600080600060608486031215614a6057600080fd5b614a6984614906565b9250614a7760208501614906565b9150604084013590509250925092565b600060208284031215614a9957600080fd5b61211182614906565b60008083601f840112614ab457600080fd5b5081356001600160401b03811115614acb57600080fd5b6020830191508360208260051b8501011115614ae657600080fd5b9250929050565b60008060208385031215614b0057600080fd5b82356001600160401b03811115614b1657600080fd5b614b2285828601614aa2565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561208957614b99838551614b2e565b9284019260809290920191600101614b86565b60008060408385031215614bbf57600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b8181101561208957835183529284019291840191600101614bea565b634e487b7160e01b600052602160045260246000fd5b6020810160038310614c3e57634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215614c5957600080fd5b614c6284614906565b95602085013595506040909401359392505050565b801515811461348657600080fd5b60008060408385031215614c9857600080fd5b614ca183614906565b91506020830135614cb181614c77565b809150509250929050565b600080600060608486031215614cd157600080fd5b505081359360208301359350604090920135919050565b60008060008060808587031215614cfe57600080fd5b614d0785614906565b9350614d1560208601614906565b92506040850135915060608501356001600160401b03811115614d3757600080fd5b8501601f81018713614d4857600080fd5b614d57878235602084016149b9565b91505092959194509250565b600080600060408486031215614d7857600080fd5b8335925060208401356001600160401b03811115614d9557600080fd5b614da186828701614aa2565b9497909650939450505050565b60808101610dec8284614b2e565b60008060408385031215614dcf57600080fd5b8235915060208301356001600160401b03811115614dec57600080fd5b614df8858286016149f7565b9150509250929050565b600080600060408486031215614e1757600080fd5b614e2084614906565b925060208401356001600160401b03811115614d9557600080fd5b60008060008060808587031215614e5157600080fd5b84356001600160401b0380821115614e6857600080fd5b614e74888389016149f7565b95506020870135915080821115614e8a57600080fd5b614e96888389016149f7565b94506040870135915080821115614eac57600080fd5b614eb8888389016149f7565b93506060870135915080821115614ece57600080fd5b50614d57878288016149f7565b60008060408385031215614eee57600080fd5b614ef783614906565b9150614f0560208401614906565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b602080825260099082015268736f756c206974656d60b81b604082015260600190565b600181811c90821680614f5b57607f821691505b60208210810361188b57634e487b7160e01b600052602260045260246000fd5b60008251614f8d81846020870161488f565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610dec57610dec614f97565b81810381811115610dec57610dec614f97565b8082028115828204841417610dec57610dec614f97565b634e487b7160e01b600052601260045260246000fd5b60008261500f5761500f614fea565b500490565b60008261502357615023614fea565b500690565b6020808252600d908201526c217a65726f206164647265737360981b604082015260600190565b602080825260129082015271085bdddb995c881bd9881d1bdad95b881a5960721b604082015260600190565b6000815461508881614f47565b600182811680156150a057600181146150b5576150e4565b60ff19841687528215158302870194506150e4565b8560005260208060002060005b858110156150db5781548a8201529084019082016150c2565b50505082870194505b5050505092915050565b6000612111828461507b565b60006020828403121561510c57600080fd5b5051919050565b601f8211156111ed57600081815260208120601f850160051c8101602086101561513a5750805b601f850160051c820191505b81811015613c4e57828155600101615146565b81516001600160401b038111156151725761517261494c565b615186816151808454614f47565b84615113565b602080601f8311600181146151bb57600084156151a35750858301515b600019600386901b1c1916600185901b178555613c4e565b600085815260208120601f198616915b828110156151ea578886015182559484019460019091019084016151cb565b50858210156152085787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000615224828461507b565b601160f91b81526001019392505050565b684d6f6e73757461202360b81b81526000825161525981600985016020870161488f565b601160f91b6009939091019283015250600a01919050565b693d913730b6b2911d101160b11b8152825160009061529781600a85016020880161488f565b7f2c20226465736372697074696f6e223a2022546865204d6f6e7375746120436f600a9184019182015274363632b1ba34b7b71116101134b6b0b3b2911d101160591b602a8201526152ec603f82018561507b565b6222207d60e81b815260030195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161533981601d85016020870161488f565b91909101601d0192915050565b6000835161535881846020880161488f565b83519083019061536c81836020880161488f565b632e706e6760e01b9101908152600401949350505050565b6b16101134b6b0b3b2911d101160a11b815281516000906153ac81600c85016020870161488f565b91909101600c0192915050565b6000602082840312156153cb57600080fd5b81516001600160401b038111156153e157600080fd5b8201601f810184136153f257600080fd5b80516154006149c782614992565b81815285602083850101111561541557600080fd5b61542682602083016020860161488f565b95945050505050565b693d913730b6b2911d101160b11b8152835160009061545581600a85016020890161488f565b7f2c20226465736372697074696f6e223a2022546865204d6f6e7375746120436f600a918401918201526a0363632b1ba34b7b71116160ad1b602a82015284516154a681603584016020890161488f565b84519101906154bc81603584016020880161488f565b6222207d60e81b6035929091019182015260380195945050505050565b6000602082840312156154eb57600080fd5b815161211181614c77565b60ff8181168382160190811115610dec57610dec614f97565b60006001820161552157615521614f97565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061555b908301846148b3565b9695505050505050565b60006020828403121561557757600080fd5b81516121118161484356fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fe7ea87f162df139189d91161bbeef259192b8205bb7b3bc5d39234d73fdb87464736f6c63430008110033697066733a2f2f516d657a734135693941436e6b706b626f64357a6b4242714a436852756346476967774550576971515363664632aa2c71928d9eeeff76ca7bb1aea6ce7b294906b37e87e385d483167af3a7bf8c58e78f1a0aebdf7930c1ad063b25e6878567d6dd6be342b0e42a38946b2a848942037eae773bf8b13f2ea0ec2da46c20e49e25c8c809f963c3ee8f9ce895c70c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e1bc9bf040000000000000000000000000000000000000000000000000000008e1bc9bf040000
Deployed Bytecode
0x60806040526004361061043d5760003560e01c80637d3e1ee41161022f578063b88d4fde11610139578063d1d838d3116100b6578063e36d64981161007a578063e36d649814610d2d578063e985e9c514610d43578063ee068c7d14610d8c578063f2fde38b14610dac578063f75acb6014610dcc57600080fd5b8063d1d838d314610c95578063d5b20f2d14610cc2578063d6fc765d14610ce2578063d70540ad14610d02578063e1dba5cc14610d1757600080fd5b8063c483b015116100fd578063c483b01514610bff578063c87b56dd14610c15578063cb774d4714610c35578063cdde120914610c4b578063d1058e5914610c8057600080fd5b8063b88d4fde14610b64578063ba41b0c614610b84578063c002d23d14610b97578063c23dc68f14610bb2578063c39cbef114610bdf57600080fd5b806399a2557a116101c7578063aa1eaea11161018b578063aa1eaea114610adb578063adf2131b14610afb578063b5077f4414610b11578063b551b82f14610b27578063b868870e14610b4457600080fd5b806399a2557a14610a515780639faaf6af14610a71578063a22cb46514610a86578063a3031b7714610aa6578063a91ee0dc14610abb57600080fd5b80637d3e1ee41461093c5780638368909c1461095c5780638462151c1461097457806384a1b902146109a15780638da5cb5b146109c157806391716d05146109df578063946807fd1461077157806395d89b41146109ff5780639745cc3d14610a1457600080fd5b80633a55355b1161034b5780636352211e116102c857806374df39c91161028c57806374df39c9146108b2578063793a9374146108c75780637b103999146108e75780637b25e04c146109075780637c69e2071461092757600080fd5b80636352211e1461082857806369202233146108485780636d5224181461085d57806370a082311461087d578063715018a61461089d57600080fd5b8063513da9481161030f578063513da948146107715780635334f13b146107895780635b703558146107a95780635bbb2177146107c35780635ecedfc9146107f057600080fd5b80633a55355b146106e45780633ccfd60b1461070457806341f434341461071957806342842e0e1461073b57806345ca77381461075b57600080fd5b806315bc0c8b116103d957806323b872dd1161039d57806323b872dd146106475780632895bf7d1461066757806329ca18fc146106875780632ccde4f6146106a7578063367df165146106c757600080fd5b806315bc0c8b1461058157806318160ddd146105a157806318e20a38146105ba5780631e238db4146105cf5780631e6c598e146105e457600080fd5b806301ffc9a71461044257806302d2838b14610477578063055ad42e1461049957806306fdde03146104bd578063081812fc146104df578063095ea7b31461050c57806309ec6cc71461052c57806312ef80ed1461054c57806315b56d1014610561575b600080fd5b34801561044e57600080fd5b5061046261045d366004614859565b610de1565b60405190151581526020015b60405180910390f35b34801561048357600080fd5b50610497610492366004614876565b610df2565b005b3480156104a557600080fd5b506104af600a5481565b60405190815260200161046e565b3480156104c957600080fd5b506104d2611103565b60405161046e91906148df565b3480156104eb57600080fd5b506104ff6104fa366004614876565b611195565b60405161046e91906148f2565b34801561051857600080fd5b50610497610527366004614922565b6111d9565b34801561053857600080fd5b50610497610547366004614876565b6111f2565b34801561055857600080fd5b506104af600381565b34801561056d57600080fd5b5061046261057c366004614a17565b6114b0565b34801561058d57600080fd5b5061049761059c366004614876565b6114e3565b3480156105ad57600080fd5b50600154600054036104af565b3480156105c657600080fd5b506104af6114f0565b3480156105db57600080fd5b506104d2611504565b3480156105f057600080fd5b506106046105ff366004614876565b611592565b6040805197885260208801969096529486019390935260608501919091526001600160a01b0390811660808501521660a0830152151560c082015260e00161046e565b34801561065357600080fd5b50610497610662366004614a4b565b6115f1565b34801561067357600080fd5b506104af610682366004614a87565b61161c565b34801561069357600080fd5b506104626106a2366004614876565b6116db565b3480156106b357600080fd5b506104d26106c2366004614876565b611796565b3480156106d357600080fd5b506104af681b1ae4d6e2ef50000081565b3480156106f057600080fd5b506104af6106ff366004614876565b611891565b34801561071057600080fd5b5061049761194e565b34801561072557600080fd5b506104ff6daaeb6d7670e522a718067333cd4e81565b34801561074757600080fd5b50610497610756366004614a4b565b6119a7565b34801561076757600080fd5b506104af600e5481565b34801561077d57600080fd5b506104af6363e64de081565b34801561079557600080fd5b506104976107a4366004614876565b6119cc565b3480156107b557600080fd5b506016546104629060ff1681565b3480156107cf57600080fd5b506107e36107de366004614aed565b6119d9565b60405161046e9190614b6a565b3480156107fc57600080fd5b506104af61080b366004614922565b600d60209081526000928352604080842090915290825290205481565b34801561083457600080fd5b506104ff610843366004614876565b611a8b565b34801561085457600080fd5b506104d2611a96565b34801561086957600080fd5b506104d2610878366004614876565b611aa3565b34801561088957600080fd5b506104af610898366004614a87565b611b45565b3480156108a957600080fd5b50610497611b93565b3480156108be57600080fd5b50610497611ba7565b3480156108d357600080fd5b506104976108e2366004614a87565b611ca6565b3480156108f357600080fd5b506017546104ff906001600160a01b031681565b34801561091357600080fd5b50610497610922366004614bac565b611cfc565b34801561093357600080fd5b50610497611efd565b34801561094857600080fd5b50610497610957366004614876565b611f67565b34801561096857600080fd5b506104af63688a094081565b34801561098057600080fd5b5061099461098f366004614a87565b611faf565b60405161046e9190614bce565b3480156109ad57600080fd5b506104976109bc366004614876565b612095565b3480156109cd57600080fd5b506008546001600160a01b03166104ff565b3480156109eb57600080fd5b506104af6109fa366004614876565b6120a2565b348015610a0b57600080fd5b506104d2612118565b348015610a2057600080fd5b50610a44610a2f366004614876565b601a6020526000908152604090205460ff1681565b60405161046e9190614c1c565b348015610a5d57600080fd5b50610994610a6c366004614c44565b612127565b348015610a7d57600080fd5b506104d261229e565b348015610a9257600080fd5b50610497610aa1366004614c85565b6122ab565b348015610ab257600080fd5b506019546104af565b348015610ac757600080fd5b50610497610ad6366004614a87565b6122bf565b348015610ae757600080fd5b50610497610af6366004614bac565b61230f565b348015610b0757600080fd5b506104af60135481565b348015610b1d57600080fd5b506104af6122b881565b348015610b3357600080fd5b506104af68015af1d78b58c4000081565b348015610b5057600080fd5b50610497610b5f366004614cbc565b61249d565b348015610b7057600080fd5b50610497610b7f366004614ce8565b6124c3565b610497610b92366004614d63565b6124f0565b348015610ba357600080fd5b506104af66d19c2ff9bf800081565b348015610bbe57600080fd5b50610bd2610bcd366004614876565b6127f8565b60405161046e9190614dae565b348015610beb57600080fd5b50610497610bfa366004614dbc565b61283b565b348015610c0b57600080fd5b506104af600f5481565b348015610c2157600080fd5b506104d2610c30366004614876565b612b68565b348015610c4157600080fd5b506104af60125481565b348015610c5757600080fd5b50610c6b610c66366004614e02565b612e0d565b6040805192835260208301919091520161046e565b348015610c8c57600080fd5b506104af612f08565b348015610ca157600080fd5b506104af610cb0366004614876565b600c6020526000908152604090205481565b348015610cce57600080fd5b506104af610cdd366004614876565b6130e9565b348015610cee57600080fd5b50610497610cfd366004614e3b565b613147565b348015610d0e57600080fd5b506104d2613182565b348015610d2357600080fd5b506104af60105481565b348015610d3957600080fd5b506104af60115481565b348015610d4f57600080fd5b50610462610d5e366004614edb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610d9857600080fd5b50610497610da7366004614cbc565b61318f565b348015610db857600080fd5b50610497610dc7366004614a87565b613410565b348015610dd857600080fd5b50610497613489565b6000610dec826134a5565b92915050565b600060198281548110610e0757610e07614f0e565b60009182526020918290206040805160e081018252600693909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b03908116608083015260059092015491821660a0820152600160a01b90910460ff16151560c08201819052909150610ec35760405162461bcd60e51b815260206004820152600d60248201526c2161637469766520747261646560981b60448201526064015b60405180910390fd5b42816060015111610f005760405162461bcd60e51b8152602060048201526007602482015266195e1c1a5c995960ca1b6044820152606401610eba565b60026040808301516000908152601a602052205460ff166002811115610f2857610f28614c06565b03610f455760405162461bcd60e51b8152600401610eba90614f24565b336001600160a01b0316610f5c8260400151611a8b565b6001600160a01b031614610fac5760405162461bcd60e51b815260206004820152601760248201527610b7bbb732b91037b31031b637b9b4b733903a37b5b2b760491b6044820152606401610eba565b610fbf81608001513383602001516134f3565b610fd233826080015183604001516134f3565b6040518060e001604052808260000151815260200182602001518152602001826040015181526020018260600151815260200182608001516001600160a01b03168152602001336001600160a01b03168152602001600015158152506019838154811061104157611041614f0e565b60009182526020808320845160069093020191825583015160018201556040808401516002830155606084015160038301556080808501516004840180546001600160a01b039283166001600160a01b031990911617905560a08601516005909401805460c0909701511515600160a01b026001600160a81b031990971694821694909417959095179092559084015184519151339491909116927f4d16bcd970ae0d8ad8871781ba650086db49df05d8ead538c980797d0d9235f991a45050565b60606002805461111290614f47565b80601f016020809104026020016040519081016040528092919081815260200182805461113e90614f47565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b5050505050905090565b60006111a08261363b565b6111bd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816111e381613662565b6111ed8383613712565b505050565b60006019828154811061120757611207614f0e565b60009182526020918290206040805160e0810182526006909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b039081166080830181905260059093015490811660a083015260ff600160a01b90910416151560c0820152915033146112b85760405162461bcd60e51b815260206004820152600760248201526610b7b832b732b960c91b6044820152606401610eba565b60a08101516001600160a01b0316156113295760405162461bcd60e51b815260206004820152602d60248201527f7472616465436c6f7365722063616e277420616c7265616479206265206e6f6e60448201526c2d7a65726f206164647265737360981b6064820152608401610eba565b428160600151116113885760405162461bcd60e51b815260206004820152602360248201527f74726164652e65787069727944617465203c3d20626c6f636b2e74696d6573746044820152620616d760ec1b6064820152608401610eba565b6040518060e001604052808260000151815260200182602001518152602001826040015181526020018260600151815260200182608001516001600160a01b03168152602001336001600160a01b0316815260200160001515815250601983815481106113f7576113f7614f0e565b600091825260208083208451600690930201918255830151600182015560408084015160028301556060840151600383015560808401516004830180546001600160a01b039283166001600160a01b031990911617905560a08501516005909301805460c0909601511515600160a01b026001600160a81b031990961693909116929092179390931790559051339184917f68bbfaa8a985659b13e3f23ffac8fc9039d6ca60199cd9327817cb0cc03eb8769190a35050565b600060156114bd836137b2565b6040516114ca9190614f7b565b9081526040519081900360200190205460ff1692915050565b6114eb613914565b600f55565b6115016363e64de06203f480614fad565b81565b601b805461151190614f47565b80601f016020809104026020016040519081016040528092919081815260200182805461153d90614f47565b801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b505050505081565b601981815481106115a257600080fd5b6000918252602090912060069091020180546001820154600283015460038401546004850154600590950154939550919390926001600160a01b0391821691811690600160a01b900460ff1687565b826001600160a01b038116331461160b5761160b33613662565b61161684848461396e565b50505050565b60006363e64de0421161163157506000919050565b600061163c83611b45565b90508060000361164f5750600092915050565b6000808061165b61481c565b60005b8584146116cf5761166e816139c5565b915081604001516116c75781516001600160a01b03161561168e57815192505b876001600160a01b0316836001600160a01b0316036116c75760019093019260006116b882611891565b905080156116c557948501945b505b60010161165e565b50929695505050505050565b600080601983815481106116f1576116f1614f0e565b60009182526020918290206040805160e0810182526006939093029091018054835260018101549383019390935260028301549082015260038201546060820181905260048301546001600160a01b03908116608084015260059093015492831660a0830152600160a01b90920460ff16151560c0820152915042111561177b5750600092915050565b8060c0015161178d5750600092915050565b50600192915050565b6000818152601a602052604081205460609160ff909116908160028111156117c0576117c0614c06565b0361185857601b80546117d290614f47565b80601f01602080910402602001604051908101604052809291908181526020018280546117fe90614f47565b801561184b5780601f106118205761010080835404028352916020019161184b565b820191906000526020600020905b81548152906001019060200180831161182e57829003601f168201915b5050505050915050919050565b600181600281111561186c5761186c614c06565b0361187e57601c80546117d290614f47565b601d80546117d290614f47565b50919050565b60006363e64de042116118a657506000919050565b60006118b1836120a2565b905063688a094081106118c75750600092915050565b600063688a094042106118de5763688a09406118e0565b425b90506000620151806118f1866130e9565b68015af1d78b58c400006119058686614fc0565b61190f9190614fd3565b6119199190614fd3565b6119239190615000565b90506363e64de0830361194657611943681b1ae4d6e2ef50000082614fad565b90505b949350505050565b611956613914565b476000606461196683600f614fd3565b6119709190615000565b905061199073fed505c80b72cdca5f72292d4bf1d6194cf23669826139e5565b6119a33361199e8385614fc0565b6139e5565b5050565b826001600160a01b03811633146119c1576119c133613662565b611616848484613afe565b6119d4613914565b601055565b6060816000816001600160401b038111156119f6576119f661494c565b604051908082528060200260200182016040528015611a2f57816020015b611a1c61481c565b815260200190600190039081611a145790505b50905060005b828114611a8257611a5d868683818110611a5157611a51614f0e565b905060200201356127f8565b828281518110611a6f57611a6f614f0e565b6020908102919091010152600101611a35565b50949350505050565b6000610dec82613b19565b601d805461151190614f47565b6000818152601460205260409020805460609190611ac090614f47565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec90614f47565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b50505050509050919050565b60006001600160a01b038216611b6e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611b9b613914565b611ba56000613b80565b565b60125415611bf75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610eba565b600060115411611c495760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610eba565b60ff60115443611c599190614fc0565b1115611c80576122b8611c6d600143614fc0565b611c78919040615014565b601255611c95565b601154611c91906122b89040615014565b6012555b601254600003611ba5576001601255565b611cae613914565b6001600160a01b038116611cd45760405162461bcd60e51b8152600401610eba90615028565b601680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b8133611d0782611a8b565b6001600160a01b031614611d2d5760405162461bcd60e51b8152600401610eba9061504f565b8133611d3882611a8b565b6001600160a01b031614611d5e5760405162461bcd60e51b8152600401610eba9061504f565b600060125411611da45760405162461bcd60e51b81526020600482015260116024820152701bdb9b1e4818599d195c881c995d99585b607a1b6044820152606401610eba565b6000848152601a602052604081205460ff166002811115611dc757611dc7614c06565b14611e0d5760405162461bcd60e51b815260206004820152601660248201527508595d9bdb1d9a5b99c81a5d195b48191959985d5b1d60521b6044820152606401610eba565b6000838152601a602052604081205460ff166002811115611e3057611e30614c06565b14611e725760405162461bcd60e51b8152602060048201526012602482015271085cdbdd5b081a5d195b48191959985d5b1d60721b6044820152606401610eba565b6000848152601a6020526040808220805460ff19908116600117909155858352912080549091166002179055600f54611eac903390613bd2565b611eb584613c56565b611ebe83613c56565b82847f8db0a45188fb388358a12efee9165c0721142258d470a99c8efa5383a7859b3c33604051611eef91906148f2565b60405180910390a350505050565b611f05613914565b600160135410611f445760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d195908185b1b60b21b6044820152606401610eba565b6001601381905550611ba533600160405180602001604052806000815250613ccc565b611f6f613914565b80600a5403611faa5760405162461bcd60e51b8152602060048201526007602482015266616c726561647960c81b6044820152606401610eba565b600a55565b60606000806000611fbf85611b45565b90506000816001600160401b03811115611fdb57611fdb61494c565b604051908082528060200260200182016040528015612004578160200160208202803683370190505b50905061200f61481c565b60005b83861461208957612022816139c5565b915081604001516120815781516001600160a01b03161561204257815194505b876001600160a01b0316856001600160a01b031603612081578083878060010198508151811061207457612074614f0e565b6020026020010181815250505b600101612012565b50909695505050505050565b61209d613914565b600e55565b60006120ad8261363b565b6120e25760405162461bcd60e51b815260206004820152600660248201526508595e1a5cdd60d21b6044820152606401610eba565b6000828152601860205260408120548103612101576363e64de0612111565b6000838152601860205260409020545b9392505050565b60606003805461111290614f47565b606081831061214957604051631960ccad60e11b815260040160405180910390fd5b60008061215560005490565b905080841115612163578093505b600061216e87611b45565b90508486101561218d5785850381811015612187578091505b50612191565b5060005b6000816001600160401b038111156121ab576121ab61494c565b6040519080825280602002602001820160405280156121d4578160200160208202803683370190505b509050816000036121ea57935061211192505050565b60006121f5886127f8565b905060008160400151612206575080515b885b8881141580156122185750848714155b1561228d57612226816139c5565b925082604001516122855782516001600160a01b03161561224657825191505b8a6001600160a01b0316826001600160a01b031603612285578084888060010199508151811061227857612278614f0e565b6020026020010181815250505b600101612208565b505050928352509095945050505050565b601e805461151190614f47565b816122b581613662565b6111ed8383613d32565b6122c7613914565b6001600160a01b0381166122ed5760405162461bcd60e51b8152600401610eba90615028565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b813361231a82611a8b565b6001600160a01b0316146123405760405162461bcd60e51b8152600401610eba9061504f565b813361234b82611a8b565b6001600160a01b0316146123715760405162461bcd60e51b8152600401610eba9061504f565b60026000848152601a602052604090205460ff16600281111561239657612396614c06565b146123cb5760405162461bcd60e51b8152602060048201526005602482015264085cdbdd5b60da1b6044820152606401610eba565b60016000858152601a602052604090205460ff1660028111156123f0576123f0614c06565b146124285760405162461bcd60e51b815260206004820152600860248201526708595d9bdb1d995960c21b6044820152606401610eba565b6000848152601a6020526040808220805460ff1990811690915585835291208054909116905561245783613c56565b61246084613c56565b61246c33601054613bd2565b82847f53b276ee76ababff76e2737881ee01288f2c37ede62c845e01d5b014f8c7c27d33604051611eef91906148f2565b6124a5613914565b6000928352600b6020908152604080852093909355600c9052912055565b836001600160a01b03811633146124dd576124dd33613662565b6124e985858585613d9e565b5050505050565b6002600954036125425760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610eba565b60026009556122b86125576001546000540390565b1061259d5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b6044820152606401610eba565b6000600a54116125e05760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610eba565b6363e64de042116126215760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b6044820152606401610eba565b6000831180156126315750600683105b6126745760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964206e756d6265724f664e66747360601b6044820152606401610eba565b6122b8836126856001546000540390565b61268f9190614fad565b11156126d25760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610eba565b6000806126e0338585612e0d565b9092509050811561271d57336000908152600d60209081526040808320600a54845290915281208054849290612717908490614fad565b90915550505b34816127298488614fc0565b61273a9066d19c2ff9bf8000614fd3565b6127449190614fad565b146127915760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610eba565b6127ab338660405180602001604052806000815250613ccc565b6011541580156127e257506122b86127c66001546000540390565b14806127e257506127de6363e64de06203f480614fad565b4210155b156127ec57436011555b50506001600955505050565b61280061481c565b61280861481c565b60005483106128175792915050565b612820836139c5565b90508060400151156128325792915050565b61211183613de2565b813361284682611a8b565b6001600160a01b03161461286c5760405162461bcd60e51b8152600401610eba9061504f565b60165460ff166128aa5760405162461bcd60e51b815260206004820152600960248201526864697361626c65642160b81b6044820152606401610eba565b6128b382613dfb565b15156001146128f95760405162461bcd60e51b81526020600482015260126024820152716e6f742076616c6964206e6577206e616d6560701b6044820152606401610eba565b600083815260146020526040908190209051600291612917916150ee565b602060405180830381855afa158015612934573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061295791906150fa565b6002836040516129679190614f7b565b602060405180830381855afa158015612984573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906129a791906150fa565b036129ee5760405162461bcd60e51b815260206004820152601760248201527673616d65206173207468652063757272656e74206f6e6560481b6044820152606401610eba565b6129f7826114b0565b15612a375760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c995cd95c9d995960821b6044820152606401610eba565b60008381526014602052604081208054612a5090614f47565b90501115612afb5760008381526014602052604090208054612afb9190612a7690614f47565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa290614f47565b8015612aef5780601f10612ac457610100808354040283529160200191612aef565b820191906000526020600020905b815481529060010190602001808311612ad257829003601f168201915b50505050506000614006565b612b06826001614006565b6000838152601460205260409020612b1e8382615159565b50612b2b33600e54613bd2565b827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b83604051612b5b91906148df565b60405180910390a2505050565b6060612b738261363b565b612bbf5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610eba565b60408051808201825260018152601160f91b60208083019190915260008581526014909152919091208054612bf390614f47565b159050612c2f576000838152601460209081526040918290209151612c19929101615218565b6040516020818303038152906040529050612c5a565b612c3883614043565b604051602001612c489190615235565b60405160208183030381529060405290505b601254600003612cb657612c8f81601e604051602001612c7b929190615271565b604051602081830303815290604052614143565b604051602001612c9f9190615301565b604051602081830303815290604052915050919050565b60006122b860125485612cc99190614fad565b612cd39190615014565b90506060612ce085611796565b612ce983614043565b604051602001612cfa929190615346565b60408051601f1981840301815290829052612d1791602001615384565b60408051601f198184030181529181526017546000888152601a6020529190912054919250612de49185916001600160a01b03169063a3161dba90899060ff166002811115612d6857612d68614c06565b6040516001600160e01b031960e085901b16815260048101929092526024820152604401600060405180830381865afa158015612da9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612dd191908101906153b9565b83604051602001612c7b9392919061542f565b604051602001612df49190615301565b6040516020818303038152906040529350505050919050565b600a546000908152600b602052604081205481908015801590612e2f57508315155b15612ef7576001600160a01b0386166000908152600d60209081526040808320600a54845290915290205460011115612ef757612ed5858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff1960608c901b1660208201528592506034019050604051602081830303815290604052805190602001206142a7565b15612ef7575050600a546000908152600c602052604090205460019150612f00565b60008092509250505b935093915050565b600080612f1433611b45565b905060008111612f555760405162461bcd60e51b815260206004820152600c60248201526b7a65726f2062616c616e636560a01b6044820152606401610eba565b6363e64de04211612fa85760405162461bcd60e51b815260206004820152601c60248201527f456d697373696f6e20686173206e6f74207374617274656420796574000000006044820152606401610eba565b60008080612fb461481c565b60005b85841461303057612fc7816139c5565b915081604001516130285781516001600160a01b031615612fe757815192505b336001600160a01b0384160361302857600190930192600061300882611891565b90508015613026576000828152601860205260409020429055948501945b505b600101612fb7565b505050506000811161307a5760405162461bcd60e51b815260206004820152601360248201527227379030b1b1bab6bab630ba32b21027b6b2b760691b6044820152606401610eba565b6016546040516340c10f1960e01b8152336004820152602481018390526101009091046001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156130ca57600080fd5b505af11580156130de573d6000803e3d6000fd5b509295945050505050565b6000818152601a602052604081205460ff168181600281111561310e5761310e614c06565b0361311c5750600192915050565b600181600281111561313057613130614c06565b0361313e5750600392915050565b50600092915050565b61314f613914565b601b61315b8582615159565b50601c6131688482615159565b50601d6131758382615159565b50601e6124e98282615159565b601c805461151190614f47565b823361319a82611a8b565b6001600160a01b0316146131c05760405162461bcd60e51b8152600401610eba9061504f565b42821161320f5760405162461bcd60e51b815260206004820152601d60248201527f65787069727944617465203c3d20626c6f636b2e74696d657374616d700000006044820152606401610eba565b60026000858152601a602052604090205460ff16600281111561323457613234614c06565b036132515760405162461bcd60e51b8152600401610eba90614f24565b601980546040805160e081018252828152602080820189815282840189815260608085018a81523360808701818152600060a08901818152600160c08b01818152908d018e559c909152975160068b027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969581019190915595517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969687015593517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969786015590517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969885015591517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9699840180546001600160a01b039283166001600160a01b031990911617905594517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969a909301805498511515600160a01b026001600160a81b0319909916939095169290921796909617909255825189815290810188905291820186905291929183917fac37cec9b9d12e2f430079b73359fc83d205d90a5b307ac7fc059ac552465273910160405180910390a35050505050565b613418613914565b6001600160a01b03811661347d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eba565b61348681613b80565b50565b613491613914565b6016805460ff19811660ff90911615179055565b60006301ffc9a760e01b6001600160e01b0319831614806134d657506380ac58cd60e01b6001600160e01b03198316145b80610dec5750506001600160e01b031916635b5e139f60e01b1490565b60006134fe82613b19565b9050836001600160a01b0316816001600160a01b0316146135315760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03831661355857604051633a954ecd60e21b815260040160405180910390fd5b61356584848460016142bd565b600082815260066020908152604080832080546001600160a01b03191690556001600160a01b03878116845260058352818420805460001901905586168084528184208054600101905585845260049092528220600160e11b4260a01b9092178217905582169003613607576001820160008181526004602052604081205490036136055760005481146136055760008181526004602052604090208290555b505b81836001600160a01b0316856001600160a01b03166000805160206155c383398151915260405160405180910390a4611616565b6000805482108015610dec575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561348657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156136cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f391906154d9565b6134865780604051633b79c77360e21b8152600401610eba91906148f2565b600061371d82611a8b565b9050336001600160a01b03821614613756576137398133610d5e565b613756576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60606000829050600081516001600160401b038111156137d4576137d461494c565b6040519080825280601f01601f1916602001820160405280156137fe576020820181803683370190505b50905060005b825181101561390c57604183828151811061382157613821614f0e565b016020015160f81c108015906138515750605a83828151811061384657613846614f0e565b016020015160f81c11155b156138b35782818151811061386857613868614f0e565b602001015160f81c60f81b60f81c602061388291906154f6565b60f81b82828151811061389757613897614f0e565b60200101906001600160f81b031916908160001a9053506138fa565b8281815181106138c5576138c5614f0e565b602001015160f81c60f81b8282815181106138e2576138e2614f0e565b60200101906001600160f81b031916908160001a9053505b806139048161550f565b915050613804565b509392505050565b6008546001600160a01b03163314611ba55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eba565b600081815260066020526040902054338082146001600160a01b038616909114176139ba5761399d8433610d5e565b6139ba57604051632ce44b5f60e11b815260040160405180910390fd5b6116168484846134f3565b6139cd61481c565b600082815260046020526040902054610dec90614356565b80471015613a355760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610eba565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613a82576040519150601f19603f3d011682016040523d82523d6000602084013e613a87565b606091505b50509050806111ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610eba565b6111ed838383604051806020016040528060008152506124c3565b600081600054811015613b675760008181526004602052604081205490600160e01b82169003613b65575b80600003612111575060001901600081815260046020526040902054613b44565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601654613bef9061010090046001600160a01b0316833084614399565b601654604051630852cd8d60e31b8152600481018390526101009091046001600160a01b0316906342966c68906024015b600060405180830381600087803b158015613c3a57600080fd5b505af1158015613c4e573d6000803e3d6000fd5b505050505050565b6000613c6182611891565b905080156119a357600082815260186020526040902042905560165461010090046001600160a01b03166340c10f19613c9984611a8b565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401613c20565b613cd683836143f3565b6001600160a01b0383163b156111ed576000548281035b613d0060008683806001019450866144da565b613d1d576040516368d2bf6b60e11b815260040160405180910390fd5b818110613ced5781600054146124e957600080fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b613da98484846115f1565b6001600160a01b0383163b1561161657613dc5848484846144da565b611616576040516368d2bf6b60e11b815260040160405180910390fd5b613dea61481c565b610dec613df683613b19565b614356565b600080829050600181511015613e145750600092915050565b601981511115613e275750600092915050565b80600081518110613e3a57613e3a614f0e565b01602001516001600160f81b031916600160fd1b03613e5c5750600092915050565b8060018251613e6b9190614fc0565b81518110613e7b57613e7b614f0e565b01602001516001600160f81b031916600160fd1b03613e9d5750600092915050565b600081600081518110613eb257613eb2614f0e565b01602001516001600160f81b031916905060005b8251811015613ffb576000838281518110613ee357613ee3614f0e565b01602001516001600160f81b0319169050600160fd1b81148015613f145750600160fd1b6001600160f81b03198416145b15613f255750600095945050505050565b600360fc1b6001600160f81b0319821610801590613f515750603960f81b6001600160f81b0319821611155b158015613f875750604160f81b6001600160f81b0319821610801590613f855750602d60f91b6001600160f81b0319821611155b155b8015613fbc5750606160f81b6001600160f81b0319821610801590613fba5750603d60f91b6001600160f81b0319821611155b155b8015613fd65750600160fd1b6001600160f81b0319821614155b15613fe75750600095945050505050565b915080613ff38161550f565b915050613ec6565b506001949350505050565b806015614012846137b2565b60405161401f9190614f7b565b908152604051908190036020019020805491151560ff199092169190911790555050565b60608160000361406a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614094578061407e8161550f565b915061408d9050600a83615000565b915061406e565b6000816001600160401b038111156140ae576140ae61494c565b6040519080825280601f01601f1916602001820160405280156140d8576020820181803683370190505b5090505b8415611946576140ed600183614fc0565b91506140fa600a86615014565b614105906030614fad565b60f81b81838151811061411a5761411a614f0e565b60200101906001600160f81b031916908160001a90535061413c600a86615000565b94506140dc565b6060815160000361416257505060408051602081019091526000815290565b600060405180606001604052806040815260200161558360409139905060006003845160026141919190614fad565b61419b9190615000565b6141a6906004614fd3565b905060006141b5826020614fad565b6001600160401b038111156141cc576141cc61494c565b6040519080825280601f01601f1916602001820160405280156141f6576020820181803683370190505b509050818152600183018586518101602084015b81831015614262576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182535060010161420a565b60038951066001811461427c576002811461428d57614299565b613d3d60f01b600119830152614299565b603d60f81b6000198301525b509398975050505050505050565b6000826142b485846145c5565b14949350505050565b60005b818110156124e95760006142d48285614fad565b90506001600160a01b0386161561434d576142ee81613c56565b60026000828152601a602052604090205460ff16600281111561431357614313614c06565b0361434d5760405162461bcd60e51b815260206004820152600a60248201526939b7bab6103a37b5b2b760b11b6044820152606401610eba565b506001016142c0565b61435e61481c565b6001600160a01b03821681526001600160401b0360a083901c166020820152600160e01b82161515604082015260e89190911c606082015290565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261161690859061460a565b60008054908290036144185760405163b562e8dd60e01b815260040160405180910390fd5b61442560008483856142bd565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206155c38339815191528180a4600183015b8181146144b057808360006000805160206155c3833981519152600080a460010161448a565b50816000036144d157604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061450f903390899088908890600401615528565b6020604051808303816000875af192505050801561454a575060408051601f3d908101601f1916820190925261454791810190615565565b60015b6145a8573d808015614578576040519150601f19603f3d011682016040523d82523d6000602084013e61457d565b606091505b5080516000036145a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b845181101561390c576145f6828683815181106145e9576145e9614f0e565b60200260200101516146dc565b9150806146028161550f565b9150506145ca565b600061465f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166147089092919063ffffffff16565b8051909150156111ed578080602001905181019061467d91906154d9565b6111ed5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610eba565b60008183106146f8576000828152602084905260409020612111565b5060009182526020526040902090565b60606119468484600085856001600160a01b0385163b61476a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610eba565b600080866001600160a01b031685876040516147869190614f7b565b60006040518083038185875af1925050503d80600081146147c3576040519150601f19603f3d011682016040523d82523d6000602084013e6147c8565b606091505b50915091506147d88282866147e3565b979650505050505050565b606083156147f2575081612111565b8251156148025782518084602001fd5b8160405162461bcd60e51b8152600401610eba91906148df565b60408051608081018252600080825260208201819052918101829052606081019190915290565b6001600160e01b03198116811461348657600080fd5b60006020828403121561486b57600080fd5b813561211181614843565b60006020828403121561488857600080fd5b5035919050565b60005b838110156148aa578181015183820152602001614892565b50506000910152565b600081518084526148cb81602086016020860161488f565b601f01601f19169290920160200192915050565b60208152600061211160208301846148b3565b6001600160a01b0391909116815260200190565b80356001600160a01b038116811461491d57600080fd5b919050565b6000806040838503121561493557600080fd5b61493e83614906565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561498a5761498a61494c565b604052919050565b60006001600160401b038211156149ab576149ab61494c565b50601f01601f191660200190565b60006149cc6149c784614992565b614962565b90508281528383830111156149e057600080fd5b828260208301376000602084830101529392505050565b600082601f830112614a0857600080fd5b612111838335602085016149b9565b600060208284031215614a2957600080fd5b81356001600160401b03811115614a3f57600080fd5b611946848285016149f7565b600080600060608486031215614a6057600080fd5b614a6984614906565b9250614a7760208501614906565b9150604084013590509250925092565b600060208284031215614a9957600080fd5b61211182614906565b60008083601f840112614ab457600080fd5b5081356001600160401b03811115614acb57600080fd5b6020830191508360208260051b8501011115614ae657600080fd5b9250929050565b60008060208385031215614b0057600080fd5b82356001600160401b03811115614b1657600080fd5b614b2285828601614aa2565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561208957614b99838551614b2e565b9284019260809290920191600101614b86565b60008060408385031215614bbf57600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b8181101561208957835183529284019291840191600101614bea565b634e487b7160e01b600052602160045260246000fd5b6020810160038310614c3e57634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215614c5957600080fd5b614c6284614906565b95602085013595506040909401359392505050565b801515811461348657600080fd5b60008060408385031215614c9857600080fd5b614ca183614906565b91506020830135614cb181614c77565b809150509250929050565b600080600060608486031215614cd157600080fd5b505081359360208301359350604090920135919050565b60008060008060808587031215614cfe57600080fd5b614d0785614906565b9350614d1560208601614906565b92506040850135915060608501356001600160401b03811115614d3757600080fd5b8501601f81018713614d4857600080fd5b614d57878235602084016149b9565b91505092959194509250565b600080600060408486031215614d7857600080fd5b8335925060208401356001600160401b03811115614d9557600080fd5b614da186828701614aa2565b9497909650939450505050565b60808101610dec8284614b2e565b60008060408385031215614dcf57600080fd5b8235915060208301356001600160401b03811115614dec57600080fd5b614df8858286016149f7565b9150509250929050565b600080600060408486031215614e1757600080fd5b614e2084614906565b925060208401356001600160401b03811115614d9557600080fd5b60008060008060808587031215614e5157600080fd5b84356001600160401b0380821115614e6857600080fd5b614e74888389016149f7565b95506020870135915080821115614e8a57600080fd5b614e96888389016149f7565b94506040870135915080821115614eac57600080fd5b614eb8888389016149f7565b93506060870135915080821115614ece57600080fd5b50614d57878288016149f7565b60008060408385031215614eee57600080fd5b614ef783614906565b9150614f0560208401614906565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b602080825260099082015268736f756c206974656d60b81b604082015260600190565b600181811c90821680614f5b57607f821691505b60208210810361188b57634e487b7160e01b600052602260045260246000fd5b60008251614f8d81846020870161488f565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610dec57610dec614f97565b81810381811115610dec57610dec614f97565b8082028115828204841417610dec57610dec614f97565b634e487b7160e01b600052601260045260246000fd5b60008261500f5761500f614fea565b500490565b60008261502357615023614fea565b500690565b6020808252600d908201526c217a65726f206164647265737360981b604082015260600190565b602080825260129082015271085bdddb995c881bd9881d1bdad95b881a5960721b604082015260600190565b6000815461508881614f47565b600182811680156150a057600181146150b5576150e4565b60ff19841687528215158302870194506150e4565b8560005260208060002060005b858110156150db5781548a8201529084019082016150c2565b50505082870194505b5050505092915050565b6000612111828461507b565b60006020828403121561510c57600080fd5b5051919050565b601f8211156111ed57600081815260208120601f850160051c8101602086101561513a5750805b601f850160051c820191505b81811015613c4e57828155600101615146565b81516001600160401b038111156151725761517261494c565b615186816151808454614f47565b84615113565b602080601f8311600181146151bb57600084156151a35750858301515b600019600386901b1c1916600185901b178555613c4e565b600085815260208120601f198616915b828110156151ea578886015182559484019460019091019084016151cb565b50858210156152085787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000615224828461507b565b601160f91b81526001019392505050565b684d6f6e73757461202360b81b81526000825161525981600985016020870161488f565b601160f91b6009939091019283015250600a01919050565b693d913730b6b2911d101160b11b8152825160009061529781600a85016020880161488f565b7f2c20226465736372697074696f6e223a2022546865204d6f6e7375746120436f600a9184019182015274363632b1ba34b7b71116101134b6b0b3b2911d101160591b602a8201526152ec603f82018561507b565b6222207d60e81b815260030195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161533981601d85016020870161488f565b91909101601d0192915050565b6000835161535881846020880161488f565b83519083019061536c81836020880161488f565b632e706e6760e01b9101908152600401949350505050565b6b16101134b6b0b3b2911d101160a11b815281516000906153ac81600c85016020870161488f565b91909101600c0192915050565b6000602082840312156153cb57600080fd5b81516001600160401b038111156153e157600080fd5b8201601f810184136153f257600080fd5b80516154006149c782614992565b81815285602083850101111561541557600080fd5b61542682602083016020860161488f565b95945050505050565b693d913730b6b2911d101160b11b8152835160009061545581600a85016020890161488f565b7f2c20226465736372697074696f6e223a2022546865204d6f6e7375746120436f600a918401918201526a0363632b1ba34b7b71116160ad1b602a82015284516154a681603584016020890161488f565b84519101906154bc81603584016020880161488f565b6222207d60e81b6035929091019182015260380195945050505050565b6000602082840312156154eb57600080fd5b815161211181614c77565b60ff8181168382160190811115610dec57610dec614f97565b60006001820161552157615521614f97565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061555b908301846148b3565b9695505050505050565b60006020828403121561557757600080fd5b81516121118161484356fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fe7ea87f162df139189d91161bbeef259192b8205bb7b3bc5d39234d73fdb87464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
aa2c71928d9eeeff76ca7bb1aea6ce7b294906b37e87e385d483167af3a7bf8c58e78f1a0aebdf7930c1ad063b25e6878567d6dd6be342b0e42a38946b2a848942037eae773bf8b13f2ea0ec2da46c20e49e25c8c809f963c3ee8f9ce895c70c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008e1bc9bf040000000000000000000000000000000000000000000000000000008e1bc9bf040000
-----Decoded View---------------
Arg [0] : _merkleRoots (bytes32[3]): System.Byte[],System.Byte[],System.Byte[]
Arg [1] : _prices (uint256[3]): 0,40000000000000000,40000000000000000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : aa2c71928d9eeeff76ca7bb1aea6ce7b294906b37e87e385d483167af3a7bf8c
Arg [1] : 58e78f1a0aebdf7930c1ad063b25e6878567d6dd6be342b0e42a38946b2a8489
Arg [2] : 42037eae773bf8b13f2ea0ec2da46c20e49e25c8c809f963c3ee8f9ce895c70c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [5] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
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.