ERC-721
NFT
Overview
Max Total Supply
1,400 [BOX]
Holders
860
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 [BOX]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFTBoxesBox
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /* * @dev 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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } interface IVendingMachine { function NFTMachineFor(uint256 NFTId, address _recipient) external; } pragma experimental ABIEncoderV2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @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); } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint256(value))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key)))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key), errorMessage))); } } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } /** * @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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; } interface IBoxVoucher is IERC1155 { function mintFor(address _to, uint256 _id, uint256 _amount) external; function burnFrom(address _from, uint256 _id, uint256 _amount) external; function totalSupply(uint256 _id) external view returns(uint256); } contract HasSecondaryBoxSaleFees is ERC165 { address payable teamAddress; uint256 teamSecondaryBps; /* * bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f * bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb * * => 0x0ebd4c7f ^ 0xb9c4d9fb == 0xb7799584 */ bytes4 private constant _INTERFACE_ID_FEES = 0xb7799584; constructor() public { _registerInterface(_INTERFACE_ID_FEES); } function getFeeRecipients(uint256 id) public view returns (address payable[] memory){ address payable[] memory addressArray = new address payable[](1); addressArray[0] = teamAddress; return addressArray; } function getFeeBps(uint256 id) public view returns (uint[] memory){ uint[] memory bpsArray = new uint[](1); bpsArray[0] = teamSecondaryBps; return bpsArray; } } contract NFTBoxesBox is ERC721("NFTBox", "[BOX]"), Ownable, HasSecondaryBoxSaleFees { struct BoxMould{ uint8 live; // bool uint8 shared; // bool uint128 maxEdition; uint128 maxBuyAmount; uint128 currentEditionCount; uint256 price; address payable[] artists; uint256[] shares; string name; string series; string theme; string ipfsHash; string arweaveHash; } struct Box { uint256 mouldId; uint256 edition; } IVendingMachine public vendingMachine; IBoxVoucher public boxVoucher; uint256 public boxMouldCount; uint256 public gasFee; uint256 constant public TOTAL_SHARES = 1000; uint256 constant DELIMITOR = 100000; mapping(uint256 => BoxMould) public boxMoulds; mapping(uint256 => Box) public boxes; mapping(uint256 => bool) public lockedBoxes; mapping(uint256 => uint256) public voucherValidityInterval; mapping(uint256 => address[]) public reservations; mapping(address => uint256) public teamShare; address payable[] public team; uint256 gasMoney; mapping(address => bool) public authorisedCaller; event BoxMouldCreated(uint256 id); event BoxBought(uint256 indexed boxMould, uint256 boxEdition, uint256 tokenId); event BatchDeployed(uint256 indexed boxMould, uint256 batchSize); constructor() public { _setBaseURI("https://nftboxesbox.azurewebsites.net/api/HttpTrigger?id="); gasFee = 1050; boxMouldCount = 2; team.push(payable(0x3428B1746Dfd26C7C725913D829BE2706AA89B2e)); team.push(payable(0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3)); team.push(payable(0x4C7BEdfA26C744e6bd61CBdF86F3fc4a76DCa073)); team.push(payable(0xf521Bb7437bEc77b0B15286dC3f49A87b9946773)); team.push(payable(0x3945476E477De76d53b4833a46c806Ef3D72b21E)); team.push(payable(0xd084c5fF298E951E0e4CD29dD29684d5a54C0d8e)); teamShare[address(0x3428B1746Dfd26C7C725913D829BE2706AA89B2e)] = 600; teamShare[address(0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3)] = 10; teamShare[address(0x4C7BEdfA26C744e6bd61CBdF86F3fc4a76DCa073)] = 30; teamShare[address(0xf521Bb7437bEc77b0B15286dC3f49A87b9946773)] = 60; teamShare[address(0x3945476E477De76d53b4833a46c806Ef3D72b21E)] = 10; teamShare[address(0xd084c5fF298E951E0e4CD29dD29684d5a54C0d8e)] = 20; authorisedCaller[0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3] = true; vendingMachine = IVendingMachine(0x6d4530149e5B4483d2F7E60449C02570531A0751); } function updateURI(string memory newURI) public onlyOwner { _setBaseURI(newURI); } modifier authorised() { require(authorisedCaller[msg.sender] || msg.sender == owner(), "NFTBoxes: Not authorised to execute."); _; } function setCaller(address _caller, bool _value) external onlyOwner { authorisedCaller[_caller] = _value; } function addTeamMember(address payable _member) external onlyOwner { for (uint256 i = 0; i < team.length; i++) require( _member != team[i], "NFTBoxes: members exists already"); team.push(_member); } function removeTeamMember(address payable _member) external onlyOwner { for (uint256 i = 0; i < team.length; i++) if (team[i] == _member) { delete teamShare[_member]; team[i] = team[team.length - 1]; team.pop(); } } function setTeamShare(address _member, uint _share) external onlyOwner { require(_share <= TOTAL_SHARES, "NFTBoxes: share must be below 1000"); for (uint256 i = 0; i < team.length; i++) if (team[i] == _member) teamShare[_member] = _share; } function setLockOnBox(uint256 _id, bool _lock) external authorised { require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist."); lockedBoxes[_id] = _lock; } function createBoxMould( uint128 _max, uint128 _maxBuyAmount, uint128 _reserve, uint256 _price, address payable[] memory _artists, uint256[] memory _shares, string memory _name, string memory _series, string memory _theme, string memory _ipfsHash, string memory _arweaveHash) external onlyOwner { require(_artists.length == _shares.length, "NFTBoxes: arrays are not of same length"); require(_reserve <= _max, "NFTBoxes: Cannot mint more vouchers than boxes"); boxMoulds[boxMouldCount + 1] = BoxMould({ live: uint8(0), shared: uint8(0), maxEdition: _max, maxBuyAmount: _maxBuyAmount, currentEditionCount: 0, price: _price, artists: _artists, shares: _shares, name: _name, series: _series, theme: _theme, ipfsHash: _ipfsHash, arweaveHash: _arweaveHash }); boxMouldCount++; lockedBoxes[boxMouldCount] = true; boxVoucher.mintFor(msg.sender, boxMouldCount, _reserve); emit BoxMouldCreated(boxMouldCount); } function removeArtist(uint256 _id, address payable _artist) external onlyOwner { BoxMould storage boxMould = boxMoulds[_id]; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist."); for (uint256 i = 0; i < boxMould.artists.length; i++) { if (boxMould.artists[i] == _artist) { boxMould.artists[i] = boxMould.artists[boxMould.artists.length - 1]; boxMould.artists.pop(); boxMould.shares[i] = boxMould.shares[boxMould.shares.length - 1]; boxMould.shares.pop(); } } } function addArtists(uint256 _id, address payable _artist, uint256 _share) external onlyOwner { BoxMould storage boxMould = boxMoulds[_id]; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist"); boxMould.artists.push(_artist); boxMould.shares.push(_share); } function buyManyBoxes(uint256 _id, uint128 _quantity) external payable { BoxMould storage boxMould = boxMoulds[_id]; uint128 currentEdition = boxMould.currentEditionCount; uint128 max = boxMould.maxEdition; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist"); require(!lockedBoxes[_id], "NFTBoxes: Box is locked"); require(voucherValidityInterval[_id] != 0 && block.timestamp > voucherValidityInterval[_id], "NFTBoxes: Buy window not open"); require(boxMould.price.mul(_quantity) == msg.value, "NFTBoxes: !price"); require(currentEdition + _quantity <= max, "NFTBoxes: Too many boxes"); require(_quantity <= boxMould.maxBuyAmount, "NFTBoxes: !buy"); for (uint128 i = 0; i < _quantity; i++) _buy(currentEdition, _id, i, msg.sender); boxMould.currentEditionCount += _quantity; if (currentEdition + _quantity == max) boxMould.live = uint8(1); } function buyBoxesWithVouchers(uint256 _id, uint128 _quantity) external payable { BoxMould storage boxMould = boxMoulds[_id]; uint128 currentEdition = boxMould.currentEditionCount; uint128 max = boxMould.maxEdition; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist"); require(!lockedBoxes[_id], "NFTBoxes: Box is locked"); require(boxMould.price.mul(_quantity) == msg.value, "NFTBoxes: !price"); boxVoucher.burnFrom(msg.sender, _id, _quantity); boxVoucher.mintFor(msg.sender, _id + DELIMITOR, _quantity); for (uint128 i = 0; i < _quantity; i++) _buy(currentEdition, _id, i, msg.sender); boxMould.currentEditionCount += _quantity; if (currentEdition + _quantity == max) boxMould.live = uint8(1); } function reserveBoxes(uint256 _id, uint256 _quantity) external payable { BoxMould memory boxMould = boxMoulds[_id]; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist"); require(voucherValidityInterval[_id] == 0, "NFTBoxes: Cannot reserve anymore"); require(boxMould.price.mul(_quantity).mul(gasFee).div(TOTAL_SHARES) == msg.value, "NFTBoxes: !price"); boxVoucher.burnFrom(msg.sender, _id, _quantity); boxVoucher.mintFor(msg.sender, _id + DELIMITOR, _quantity); for (uint256 i = 0; i < _quantity; i++) reservations[_id].push(msg.sender); gasMoney = gasMoney.add(msg.value.sub(boxMould.price.mul(_quantity))); } function withdrawGasMoney() external onlyOwner { msg.sender.transfer(gasMoney); gasMoney = 0; } function distributeReservedBoxes(uint256 _id, uint256 _amount) external authorised { require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist"); require(!lockedBoxes[_id], "NFTBoxes: Box is locked"); require(voucherValidityInterval[_id] == 0, "NFTBoxes: Box distribution over"); BoxMould storage boxMould = boxMoulds[_id]; uint128 currentEdition = boxMould.currentEditionCount; uint256 length = reservations[_id].length; uint256 i = 0; while (length > 0 && _amount > 0) { _buy(currentEdition, _id, i, reservations[_id][length - 1]); reservations[_id].pop(); length--; _amount--; i++; } boxMould.currentEditionCount += uint128(i); if (currentEdition + i == boxMould.maxEdition) boxMould.live = uint8(1); if (length == 0) voucherValidityInterval[_id] = block.timestamp + 900; } function _buy(uint128 _currentEdition, uint256 _id, uint256 _new, address _recipient) internal { boxes[totalSupply() + 1] = Box(_id, _currentEdition + _new + 1); //safe mint? emit BoxBought(_id, _currentEdition + _new + 1, totalSupply() + 1); _mint(_recipient, totalSupply() + 1); } // close a sale if not sold out function closeBox(uint256 _id) external authorised { BoxMould storage boxMould = boxMoulds[_id]; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: Mould ID does not exist."); boxMould.live = uint8(1); } function setVendingMachine(address _machine) external onlyOwner { vendingMachine = IVendingMachine(_machine); } function setBoxVoucher(address _vouchers) external onlyOwner { boxVoucher = IBoxVoucher(_vouchers); } function setGasFee(uint256 _fee) external onlyOwner { gasFee = _fee; } function distributeOffchain(uint256 _id, address[][] calldata _recipients, uint256[] calldata _ids) external authorised { BoxMould memory boxMould= boxMoulds[_id]; require(boxMould.live == 1, "NTFBoxes: Box is still live"); require (_recipients[0].length == _ids.length, "NFTBoxes: Wrong array size."); // i is batch number for (uint256 i = 0; i < _recipients.length; i++) { // j is for the index of nft ID to send for (uint256 j = 0;j < _recipients[0].length; j++) vendingMachine.NFTMachineFor(_ids[j], _recipients[i][j]); } emit BatchDeployed(_id, _recipients.length); } function distributeShares(uint256 _id) external { BoxMould storage boxMould= boxMoulds[_id]; require(_id <= boxMouldCount && _id > 0, "NFTBoxes: ID !exist."); require(boxMould.live == 1 && boxMould.shared == 0, "NFTBoxes: cannot distribute"); require(is100(_id), "NFTBoxes: sum != 100%."); boxMould.shared = 1; uint256 rev = uint256(boxMould.currentEditionCount).mul(boxMould.price); uint256 share; for (uint256 i = 0; i < team.length; i++) { share = rev.mul(teamShare[team[i]]).div(TOTAL_SHARES); team[i].transfer(share); } for (uint256 i = 0; i < boxMould.artists.length; i++) { share = rev.mul(boxMould.shares[i]).div(TOTAL_SHARES); boxMould.artists[i].transfer(share); } } function is100(uint256 _id) internal returns(bool) { BoxMould storage boxMould= boxMoulds[_id]; uint256 total; for (uint256 i = 0; i < team.length; i++) { total = total.add(teamShare[team[i]]); } for (uint256 i = 0; i < boxMould.shares.length; i++) { total = total.add(boxMould.shares[i]); } return total == TOTAL_SHARES; } function getReservationCount(uint256 _id) external view returns(uint256) { return reservations[_id].length; } function getArtist(uint256 _id) external view returns (address payable[] memory) { return boxMoulds[_id].artists; } function getArtistShares(uint256 _id) external view returns (uint256[] memory) { return boxMoulds[_id].shares; } function updateTeamAddress(address payable newTeamAddress) public onlyOwner { teamAddress = newTeamAddress; } function updateSecondaryFee(uint256 newSecondaryBps) public onlyOwner { teamSecondaryBps = newSecondaryBps; } function getBoxMetaData(uint256 _id) external view returns (uint256 boxId, uint256 boxEdition, uint128 boxMax, string memory boxName, string memory boxSeries, string memory boxTheme, string memory boxHashIPFS, string memory boxHashArweave) { Box memory box = boxes[_id]; BoxMould memory mould = boxMoulds[box.mouldId]; return (box.mouldId, box.edition, mould.maxEdition, mould.name, mould.series, mould.theme, mould.ipfsHash, mould.arweaveHash); } function _transfer(address from, address to, uint256 tokenId) internal override { Box memory box = boxes[tokenId]; require(!lockedBoxes[box.mouldId], "NFTBoxes: Box is locked"); super._transfer(from, to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"boxMould","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"BatchDeployed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"boxMould","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"boxEdition","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BoxBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"BoxMouldCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SHARES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address payable","name":"_artist","type":"address"},{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"addArtists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_member","type":"address"}],"name":"addTeamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorisedCaller","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boxMouldCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"boxMoulds","outputs":[{"internalType":"uint8","name":"live","type":"uint8"},{"internalType":"uint8","name":"shared","type":"uint8"},{"internalType":"uint128","name":"maxEdition","type":"uint128"},{"internalType":"uint128","name":"maxBuyAmount","type":"uint128"},{"internalType":"uint128","name":"currentEditionCount","type":"uint128"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"series","type":"string"},{"internalType":"string","name":"theme","type":"string"},{"internalType":"string","name":"ipfsHash","type":"string"},{"internalType":"string","name":"arweaveHash","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boxVoucher","outputs":[{"internalType":"contract IBoxVoucher","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"boxes","outputs":[{"internalType":"uint256","name":"mouldId","type":"uint256"},{"internalType":"uint256","name":"edition","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint128","name":"_quantity","type":"uint128"}],"name":"buyBoxesWithVouchers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint128","name":"_quantity","type":"uint128"}],"name":"buyManyBoxes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"closeBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_max","type":"uint128"},{"internalType":"uint128","name":"_maxBuyAmount","type":"uint128"},{"internalType":"uint128","name":"_reserve","type":"uint128"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"address payable[]","name":"_artists","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_series","type":"string"},{"internalType":"string","name":"_theme","type":"string"},{"internalType":"string","name":"_ipfsHash","type":"string"},{"internalType":"string","name":"_arweaveHash","type":"string"}],"name":"createBoxMould","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address[][]","name":"_recipients","type":"address[][]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"distributeOffchain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"distributeReservedBoxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"distributeShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasFee","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":"_id","type":"uint256"}],"name":"getArtist","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getArtistShares","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getBoxMetaData","outputs":[{"internalType":"uint256","name":"boxId","type":"uint256"},{"internalType":"uint256","name":"boxEdition","type":"uint256"},{"internalType":"uint128","name":"boxMax","type":"uint128"},{"internalType":"string","name":"boxName","type":"string"},{"internalType":"string","name":"boxSeries","type":"string"},{"internalType":"string","name":"boxTheme","type":"string"},{"internalType":"string","name":"boxHashIPFS","type":"string"},{"internalType":"string","name":"boxHashArweave","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getReservationCount","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":"uint256","name":"","type":"uint256"}],"name":"lockedBoxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address payable","name":"_artist","type":"address"}],"name":"removeArtist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_member","type":"address"}],"name":"removeTeamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservations","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reserveBoxes","outputs":[],"stateMutability":"payable","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":"address","name":"_vouchers","type":"address"}],"name":"setBoxVoucher","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setCaller","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setGasFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"_lock","type":"bool"}],"name":"setLockOnBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"},{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"setTeamShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_machine","type":"address"}],"name":"setVendingMachine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"team","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"teamShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSecondaryBps","type":"uint256"}],"name":"updateSecondaryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newTeamAddress","type":"address"}],"name":"updateTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vendingMachine","outputs":[{"internalType":"contract IVendingMachine","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voucherValidityInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawGasMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600681526509c8ca884def60d31b602080830191909152825180840190935260058352645b424f585d60d81b90830152906200005e6301ffc9a760e01b620003a9565b81516200007390600690602085019062000421565b5080516200008990600790602084019062000421565b506200009c6380ac58cd60e01b620003a9565b620000ae635b5e139f60e01b620003a9565b620000c063780e9d6360e01b620003a9565b5060009050620000cf62000404565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200012f632dde656160e21b620003a9565b62000153604051806060016040528060398152602001620064c86039913962000408565b61041a6010556002600f5560178054600181810183557fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1591820180546001600160a01b0319908116733428b1746dfd26c7c725913d829be2706aa89b2e17909155835480830185558301805482167363a9dbce75413036b2b778e670aabd4493aaf9f390811790915584548084018655840180548316734c7bedfa26c744e6bd61cbdf86f3fc4a76dca0731790558454808401865584018054831673f521bb7437bec77b0b15286dc3f49a87b994677317905584548084018655840180548316733945476e477de76d53b4833a46c806ef3d72b21e1790558454808401909555939092018054831673d084c5ff298e951e0e4cd29dd29684d5a54c0d8e1790556102587f475559477956982e03324121b8fc6ab928c2dd7133d7dedc587afa3d743ff08755600a7fc4bc5b4f794c3135f8bb6310c6251831e5080cab4218d85e49bd057c5624b552819055601e7f2fcf657267c6c9dde894726c2e129fb83795a03d85b5f381fb33c2e69e41862555603c7f3c0301ffd96127897bfa3e61192e41851f88c3684e1948e0e4c7392838089fff557f8b1c0dfa1977f6ef5916c5fa978b719cfa95a0aa0b8eab10eb3729c23013168d5560147fe7c21be4ff47f9c2cacb682da2c02804e1ebb209cb7527e770da8ec570148c1c5560009290925260196020527f0172f0a6b36eb50a18ecdfa68290a23c7e5a7f6b0a06dff7be25cca7d7800190805460ff1916909217909155600d8054909116736d4530149e5b4483d2f7e60449c02570531a0751179055620004f4565b6001600160e01b03198082161415620003df5760405162461bcd60e51b8152600401620003d690620004bd565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b80516200041d90600990602084019062000421565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046457805160ff191683800117855562000494565b8280016001018555821562000494579182015b828111156200049457825182559160200191906001019062000477565b50620004a2929150620004a6565b5090565b5b80821115620004a25760008155600101620004a7565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b615fc480620005046000396000f3fe6080604052600436106103a25760003560e01c806370a08231116101e7578063b2d443fe1161010d578063cd9fe121116100a0578063f5f0cebd1161006f578063f5f0cebd14610abb578063f769046f14610adb578063fb4a255814610afb578063fccee1b414610b1b576103a2565b8063cd9fe12114610a3b578063e985e9c514610a5b578063eba2389d14610a7b578063f2fde38b14610a9b576103a2565b8063b9c4d9fb116100dc578063b9c4d9fb146109bb578063c30f4a5a146109db578063c87b56dd146109fb578063cb67558e14610a1b576103a2565b8063b2d443fe1461093d578063b3ed1da414610952578063b5a3f84f14610986578063b88d4fde1461099b576103a2565b80638da5cb5b116101855780639e418926116101545780639e418926146108ca578063a22cb465146108ea578063a74772c81461090a578063aef078bc1461092a576103a2565b80638da5cb5b1461086057806395d89b411461087557806397de16f21461088a5780639cae6eae146108aa576103a2565b8063811dd0e2116101c1578063811dd0e2146107de57806385e3f9971461080b578063894ca535146108205780638ad0e8cc14610840576103a2565b806370a0823114610789578063715018a6146107a9578063783abc8e146107be576103a2565b806330662b7b116102cc5780634ccc6b5f1161026a5780636352211e116102395780636352211e1461071f578063658612e91461073f578063678edca3146107545780636c0360eb14610774576103a2565b80634ccc6b5f146106915780634ed3faf2146106b15780634f6ccce7146106df57806362638c8b146106ff576103a2565b80633f3266f3116102a65780633f3266f3146106275780633f53bbc71461063c578063424f4fef1461065c57806342842e0e14610671576103a2565b806330662b7b146105b057806333c1da70146105d05780633eb2b5ad14610607576103a2565b806314eba0261161034457806325bf8b5e1161031357806325bf8b5e1461053d57806326303056146105505780632b28bc99146105705780632f745c5914610590576103a2565b806314eba026146104bb57806318160ddd146104db578063197ebd53146104fd57806323b872dd1461051d576103a2565b8063095ea7b311610380578063095ea7b31461042c5780630ebd4c7f1461044e5780630fceb9ab1461047b57806314eb76ac1461049b576103a2565b806301ffc9a7146103a757806306fdde03146103dd578063081812fc146103ff575b600080fd5b3480156103b357600080fd5b506103c76103c2366004614e21565b610b2e565b6040516103d49190615331565b60405180910390f35b3480156103e957600080fd5b506103f2610b51565b6040516103d4919061533c565b34801561040b57600080fd5b5061041f61041a366004614fec565b610be7565b6040516103d49190615210565b34801561043857600080fd5b5061044c610447366004614df6565b610c33565b005b34801561045a57600080fd5b5061046e610469366004614fec565b610ccb565b6040516103d491906152f9565b34801561048757600080fd5b5061044c610496366004614fec565b610d11565b3480156104a757600080fd5b5061044c6104b6366004614cc7565b610dad565b3480156104c757600080fd5b5061044c6104d6366004614cc7565b610e04565b3480156104e757600080fd5b506104f0610f31565b6040516103d49190615cd8565b34801561050957600080fd5b5061041f610518366004614fec565b610f42565b34801561052957600080fd5b5061044c610538366004614d1b565b610f69565b61044c61054b366004615119565b610fa1565b34801561055c57600080fd5b5061046e61056b366004614fec565b6115a0565b34801561057c57600080fd5b5061044c61058b366004615028565b611605565b34801561059c57600080fd5b506104f06105ab366004614df6565b6116c5565b3480156105bc57600080fd5b5061041f6105cb366004615119565b6116f0565b3480156105dc57600080fd5b506105f06105eb366004614fec565b611725565b6040516103d49b9a99989796959493929190615d94565b34801561061357600080fd5b5061044c610622366004614cc7565b611a43565b34801561063357600080fd5b5061041f611b24565b34801561064857600080fd5b506104f0610657366004614fec565b611b33565b34801561066857600080fd5b5061041f611b45565b34801561067d57600080fd5b5061044c61068c366004614d1b565b611b54565b34801561069d57600080fd5b506103c76106ac366004614fec565b611b6f565b3480156106bd57600080fd5b506106d16106cc366004614fec565b611b84565b6040516103d4929190615cf8565b3480156106eb57600080fd5b506104f06106fa366004614fec565b611b9d565b34801561070b57600080fd5b506104f061071a366004614fec565b611bb3565b34801561072b57600080fd5b5061041f61073a366004614fec565b611bc5565b34801561074b57600080fd5b506104f0611bed565b34801561076057600080fd5b5061044c61076f366004614fec565b611bf3565b34801561078057600080fd5b506103f2611c2d565b34801561079557600080fd5b506104f06107a4366004614cc7565b611c8e565b3480156107b557600080fd5b5061044c611cd7565b3480156107ca57600080fd5b5061044c6107d9366004615004565b611d56565b3480156107ea57600080fd5b506107fe6107f9366004614fec565b611f11565b6040516103d491906152ac565b34801561081757600080fd5b506104f0611f7f565b34801561082c57600080fd5b5061044c61083b366004614fec565b611f85565b34801561084c57600080fd5b5061044c61085b366004615119565b611fbf565b34801561086c57600080fd5b5061041f6121de565b34801561088157600080fd5b506103f26121ed565b34801561089657600080fd5b5061044c6108a5366004614e8c565b61224e565b3480156108b657600080fd5b5061044c6108c5366004614dc5565b6125dc565b3480156108d657600080fd5b5061044c6108e53660046150c5565b61263c565b3480156108f657600080fd5b5061044c610905366004614dc5565b6126dc565b34801561091657600080fd5b506103c7610925366004614cc7565b6127aa565b61044c6109383660046150ed565b6127bf565b34801561094957600080fd5b5061044c6129b3565b34801561095e57600080fd5b5061097261096d366004614fec565b612a1e565b6040516103d4989796959493929190615d06565b34801561099257600080fd5b506104f0612eb5565b3480156109a757600080fd5b5061044c6109b6366004614d5b565b612ebb565b3480156109c757600080fd5b506107fe6109d6366004614fec565b612ef4565b3480156109e757600080fd5b5061044c6109f6366004614e59565b612f52565b348015610a0757600080fd5b506103f2610a16366004614fec565b612f93565b348015610a2757600080fd5b5061044c610a36366004614cc7565b6130dd565b348015610a4757600080fd5b5061044c610a56366004614cc7565b613134565b348015610a6757600080fd5b506103c7610a76366004614ce3565b61318b565b348015610a8757600080fd5b5061044c610a96366004614df6565b6131b9565b348015610aa757600080fd5b5061044c610ab6366004614cc7565b613273565b348015610ac757600080fd5b5061044c610ad636600461504e565b61332a565b348015610ae757600080fd5b506104f0610af6366004614cc7565b61392d565b348015610b0757600080fd5b5061044c610b16366004614fec565b61393f565b61044c610b293660046150ed565b613b56565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b6000610bf282613d27565b610c175760405162461bcd60e51b8152600401610c0e906159fa565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c3e82611bc5565b9050806001600160a01b0316836001600160a01b03161415610c725760405162461bcd60e51b8152600401610c0e90615b3b565b806001600160a01b0316610c84613d34565b6001600160a01b03161480610ca05750610ca081610a76613d34565b610cbc5760405162461bcd60e51b8152600401610c0e906157f8565b610cc68383613d38565b505050565b60408051600180825281830190925260609182919060208083019080368337019050509050600c5481600081518110610d0057fe5b602090810291909101015292915050565b3360009081526019602052604090205460ff1680610d475750610d326121de565b6001600160a01b0316336001600160a01b0316145b610d635760405162461bcd60e51b8152600401610c0e90615b7c565b6000818152601160205260409020600f548211801590610d835750600082115b610d9f5760405162461bcd60e51b8152600401610c0e90615391565b805460ff1916600117905550565b610db5613d34565b600a546001600160a01b03908116911614610de25760405162461bcd60e51b8152600401610c0e90615a46565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610e0c613d34565b600a546001600160a01b03908116911614610e395760405162461bcd60e51b8152600401610c0e90615a46565b60005b601754811015610f2d57816001600160a01b031660178281548110610e5d57fe5b6000918252602090912001546001600160a01b03161415610f25576001600160a01b038216600090815260166020526040812055601780546000198101908110610ea357fe5b600091825260209091200154601780546001600160a01b039092169183908110610ec957fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506017805480610f0257fe5b600082815260209020810160001990810180546001600160a01b03191690550190555b600101610e3c565b5050565b6000610f3d6002613da6565b905090565b60178181548110610f4f57fe5b6000918252602090912001546001600160a01b0316905081565b610f7a610f74613d34565b82613db1565b610f965760405162461bcd60e51b8152600401610c0e90615bc0565b610cc6838383613e36565b610fa9614940565b60008381526011602090815260409182902082516101a081018452815460ff8082168352610100820416828501526001600160801b036201000090910481168286015260018301548082166060840152600160801b9004166080820152600282015460a08201526003820180548551818602810186019096528086529194929360c0860193929083018282801561106957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161104b575b50505050508152602001600482018054806020026020016040519081016040528092919081815260200182805480156110c157602002820191906000526020600020905b8154815260200190600101908083116110ad575b505050918352505060058201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050918352505060068201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156111e95780601f106111be576101008083540402835291602001916111e9565b820191906000526020600020905b8154815290600101906020018083116111cc57829003601f168201915b505050918352505060078201805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815293820193929183018282801561127d5780601f106112525761010080835404028352916020019161127d565b820191906000526020600020905b81548152906001019060200180831161126057829003601f168201915b505050918352505060088201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156113115780601f106112e657610100808354040283529160200191611311565b820191906000526020600020905b8154815290600101906020018083116112f457829003601f168201915b505050918352505060098201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b5050505050815250509050600f5483111580156113c25750600083115b6113de5760405162461bcd60e51b8152600401610c0e906155e4565b6000838152601460205260409020541561140a5760405162461bcd60e51b8152600401610c0e9061589f565b3461143a6103e861143460105461142e878760a00151613e9d90919063ffffffff16565b90613e9d565b90613ed7565b146114575760405162461bcd60e51b8152600401610c0e9061551e565b600e5460405163124d91e560e01b81526001600160a01b039091169063124d91e59061148b9033908790879060040161528b565b600060405180830381600087803b1580156114a557600080fd5b505af11580156114b9573d6000803e3d6000fd5b5050600e5460405163aab68bdb60e01b81526001600160a01b03909116925063aab68bdb91506114f6903390620186a0880190879060040161528b565b600060405180830381600087803b15801561151057600080fd5b505af1158015611524573d6000803e3d6000fd5b5050505060005b8281101561156a5760008481526015602090815260408220805460018181018355918452919092200180546001600160a01b031916331790550161152b565b5061159861158f611588848460a00151613e9d90919063ffffffff16565b3490613f19565b60185490613f5b565b601855505050565b6000818152601160209081526040918290206004018054835181840281018401909452808452606093928301828280156115f957602002820191906000526020600020905b8154815260200190600101908083116115e5575b50505050509050919050565b61160d613d34565b600a546001600160a01b0390811691161461163a5760405162461bcd60e51b8152600401610c0e90615a46565b6000838152601160205260409020600f54841180159061165a5750600084115b6116765760405162461bcd60e51b8152600401610c0e906155e4565b600381018054600180820183556000928352602080842090920180546001600160a01b0319166001600160a01b0397909716969096179095556004909201805494850181558152209091015550565b6001600160a01b03821660009081526001602052604081206116e79083613f80565b90505b92915050565b6015602052816000526040600020818154811061170957fe5b6000918252602090912001546001600160a01b03169150829050565b601160209081526000918252604091829020805460018083015460028085015460058601805489516101009682161587026000190190911693909304601f810189900489028401890190995288835260ff808716999587041697620100009096046001600160801b039081169781861697600160801b909604909116959294909392908301828280156117f95780601f106117ce576101008083540402835291602001916117f9565b820191906000526020600020905b8154815290600101906020018083116117dc57829003601f168201915b5050505060068301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b5050505060078301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505060088301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156119a95780601f1061197e576101008083540402835291602001916119a9565b820191906000526020600020905b81548152906001019060200180831161198c57829003601f168201915b5050505060098301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b505050505090508b565b611a4b613d34565b600a546001600160a01b03908116911614611a785760405162461bcd60e51b8152600401610c0e90615a46565b60005b601754811015611ad15760178181548110611a9257fe5b6000918252602090912001546001600160a01b0383811691161415611ac95760405162461bcd60e51b8152600401610c0e906153d3565b600101611a7b565b50601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319166001600160a01b0392909216919091179055565b600e546001600160a01b031681565b60146020526000908152604090205481565b600d546001600160a01b031681565b610cc683838360405180602001604052806000815250612ebb565b60136020526000908152604090205460ff1681565b6012602052600090815260409020805460019091015482565b600080611bab600284613f8c565b509392505050565b60009081526015602052604090205490565b60006116ea82604051806060016040528060298152602001615f666029913960029190613faa565b60105481565b611bfb613d34565b600a546001600160a01b03908116911614611c285760405162461bcd60e51b8152600401610c0e90615a46565b601055565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b60006001600160a01b038216611cb65760405162461bcd60e51b8152600401610c0e90615855565b6001600160a01b03821660009081526001602052604090206116ea90613da6565b611cdf613d34565b600a546001600160a01b03908116911614611d0c5760405162461bcd60e51b8152600401610c0e90615a46565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b611d5e613d34565b600a546001600160a01b03908116911614611d8b5760405162461bcd60e51b8152600401610c0e90615a46565b6000828152601160205260409020600f548311801590611dab5750600083115b611dc75760405162461bcd60e51b8152600401610c0e90615391565b60005b6003820154811015611f0b57826001600160a01b0316826003018281548110611def57fe5b6000918252602090912001546001600160a01b03161415611f03576003820180546000198101908110611e1e57fe5b6000918252602090912001546003830180546001600160a01b039092169183908110611e4657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600301805480611e8157fe5b600082815260209020810160001990810180546001600160a01b031916905590810190915560048301805490918101908110611eb957fe5b9060005260206000200154826004018281548110611ed357fe5b60009182526020909120015560048201805480611eec57fe5b600190038181906000526020600020016000905590555b600101611dca565b50505050565b6000818152601160209081526040918290206003018054835181840281018401909452808452606093928301828280156115f957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611f565750505050509050919050565b6103e881565b611f8d613d34565b600a546001600160a01b03908116911614611fba5760405162461bcd60e51b8152600401610c0e90615a46565b600c55565b3360009081526019602052604090205460ff1680611ff55750611fe06121de565b6001600160a01b0316336001600160a01b0316145b6120115760405162461bcd60e51b8152600401610c0e90615b7c565b600f5482111580156120235750600082115b61203f5760405162461bcd60e51b8152600401610c0e906155e4565b60008281526013602052604090205460ff161561206e5760405162461bcd60e51b8152600401610c0e90615753565b6000828152601460205260409020541561209a5760405162461bcd60e51b8152600401610c0e90615625565b600082815260116020908152604080832060018101546015909352908320549092600160801b9092046001600160801b0316915b6000821180156120de5750600085115b1561217157612124838783601560008b8152602001908152602001600020600187038154811061210a57fe5b6000918252602090912001546001600160a01b0316613fc1565b600086815260156020526040902080548061213b57fe5b600082815260209020810160001990810180546001600160a01b03191690559081019091559485019491909101906001016120ce565b6001840180546001600160801b03600160801b8083048216850182160291811691909117909155845484821683016201000090910490911614156121bb57835460ff191660011784555b816121d6576000868152601460205260409020610384420190555b505050505050565b600a546001600160a01b031690565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b612256613d34565b600a546001600160a01b039081169116146122835760405162461bcd60e51b8152600401610c0e90615a46565b85518751146122a45760405162461bcd60e51b8152600401610c0e90615408565b8a6001600160801b0316896001600160801b031611156122d65760405162461bcd60e51b8152600401610c0e90615c8a565b604051806101a00160405280600060ff168152602001600060ff1681526020018c6001600160801b031681526020018b6001600160801b0316815260200160006001600160801b031681526020018981526020018881526020018781526020018681526020018581526020018481526020018381526020018281525060116000600f54600101815260200190815260200160002060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160000160026101000a8154816001600160801b0302191690836001600160801b0316021790555060608201518160010160006101000a8154816001600160801b0302191690836001600160801b0316021790555060808201518160010160106101000a8154816001600160801b0302191690836001600160801b0316021790555060a0820151816002015560c08201518160030190805190602001906124599291906149c9565b5060e08201518051612475916004840191602090910190614a2e565b506101008201518051612492916005840191602090910190614a75565b5061012082015180516124af916006840191602090910190614a75565b5061014082015180516124cc916007840191602090910190614a75565b5061016082015180516124e9916008840191602090910190614a75565b506101808201518051612506916009840191602090910190614a75565b5050600f8054600190810180835560009081526013602052604090819020805460ff1916909217909155600e549154905163aab68bdb60e01b81526001600160a01b03909216925063aab68bdb916125649133918e90600401615261565b600060405180830381600087803b15801561257e57600080fd5b505af1158015612592573d6000803e3d6000fd5b505050507f77628c9166aca2fc4ccb8b7681fa345c93f54fb929f857d05cfebbfb665bad02600f546040516125c79190615cd8565b60405180910390a15050505050505050505050565b6125e4613d34565b600a546001600160a01b039081169116146126115760405162461bcd60e51b8152600401610c0e90615a46565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b3360009081526019602052604090205460ff1680612672575061265d6121de565b6001600160a01b0316336001600160a01b0316145b61268e5760405162461bcd60e51b8152600401610c0e90615b7c565b600f5482111580156126a05750600082115b6126bc5760405162461bcd60e51b8152600401610c0e90615391565b600091825260136020526040909120805460ff1916911515919091179055565b6126e4613d34565b6001600160a01b0316826001600160a01b031614156127155760405162461bcd60e51b8152600401610c0e906156d0565b8060056000612722613d34565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155612766613d34565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161279e9190615331565b60405180910390a35050565b60196020526000908152604090205460ff1681565b600082815260116020526040902060018101548154600f54600160801b9092046001600160801b039081169262010000909204169085118015906128035750600085115b61281f5760405162461bcd60e51b8152600401610c0e906155e4565b60008581526013602052604090205460ff161561284e5760405162461bcd60e51b8152600401610c0e90615753565b60008581526014602052604090205415801590612878575060008581526014602052604090205442115b6128945760405162461bcd60e51b8152600401610c0e90615982565b600283015434906128ae906001600160801b038716613e9d565b146128cb5760405162461bcd60e51b8152600401610c0e9061551e565b806001600160801b03168483016001600160801b031611156128ff5760405162461bcd60e51b8152600401610c0e9061557f565b60018301546001600160801b0390811690851611156129305760405162461bcd60e51b8152600401610c0e90615a7b565b60005b846001600160801b0316816001600160801b0316101561296a576129628387836001600160801b031633613fc1565b600101612933565b506001830180546001600160801b03600160801b8083048216880182160291811691909117909155828501811690821614156129ac57825460ff191660011783555b5050505050565b6129bb613d34565b600a546001600160a01b039081169116146129e85760405162461bcd60e51b8152600401610c0e90615a46565b601854604051339180156108fc02916000818181858888f19350505050158015612a16573d6000803e3d6000fd5b506000601855565b60008060006060806060806060612a33614ae2565b506000898152601260209081526040918290208251808401909352805483526001015490820152612a62614940565b815160009081526011602090815260409182902082516101a081018452815460ff8082168352610100820416828501526001600160801b036201000090910481168286015260018301548082166060840152600160801b9004166080820152600282015460a08201526003820180548551818602810186019096528086529194929360c08601939290830182828015612b2457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612b06575b5050505050815260200160048201805480602002602001604051908101604052809291908181526020018280548015612b7c57602002820191906000526020600020905b815481526020019060010190808311612b68575b505050918352505060058201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612c105780601f10612be557610100808354040283529160200191612c10565b820191906000526020600020905b815481529060010190602001808311612bf357829003601f168201915b505050918352505060068201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612ca45780601f10612c7957610100808354040283529160200191612ca4565b820191906000526020600020905b815481529060010190602001808311612c8757829003601f168201915b505050918352505060078201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b505050918352505060088201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612dcc5780601f10612da157610100808354040283529160200191612dcc565b820191906000526020600020905b815481529060010190602001808311612daf57829003601f168201915b505050918352505060098201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612e605780601f10612e3557610100808354040283529160200191612e60565b820191906000526020600020905b815481529060010190602001808311612e4357829003601f168201915b5050505050815250509050816000015182602001518260400151836101000151846101200151856101400151866101600151876101800151995099509950995099509950995099505050919395975091939597565b600f5481565b612ecc612ec6613d34565b83613db1565b612ee85760405162461bcd60e51b8152600401610c0e90615bc0565b611f0b8484848461407e565b604080516001808252818301909252606091829190602080830190803683375050600b5482519293506001600160a01b031691839150600090612f3357fe5b6001600160a01b03909216602092830291909101909101529050919050565b612f5a613d34565b600a546001600160a01b03908116911614612f875760405162461bcd60e51b8152600401610c0e90615a46565b612f90816140b1565b50565b6060612f9e82613d27565b612fba5760405162461bcd60e51b8152600401610c0e90615aec565b60008281526008602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561304f5780601f106130245761010080835404028352916020019161304f565b820191906000526020600020905b81548152906001019060200180831161303257829003601f168201915b505060095493945050505060026000196101006001841615020190911604613078579050610b4c565b8051156130aa5760098160405160200161309392919061518f565b604051602081830303815290604052915050610b4c565b60096130b5846140c4565b6040516020016130c692919061518f565b604051602081830303815290604052915050919050565b6130e5613d34565b600a546001600160a01b039081169116146131125760405162461bcd60e51b8152600401610c0e90615a46565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b61313c613d34565b600a546001600160a01b039081169116146131695760405162461bcd60e51b8152600401610c0e90615a46565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6131c1613d34565b600a546001600160a01b039081169116146131ee5760405162461bcd60e51b8152600401610c0e90615a46565b6103e88111156132105760405162461bcd60e51b8152600401610c0e90615c48565b60005b601754811015610cc657826001600160a01b03166017828154811061323457fe5b6000918252602090912001546001600160a01b0316141561326b576001600160a01b03831660009081526016602052604090208290555b600101613213565b61327b613d34565b600a546001600160a01b039081169116146132a85760405162461bcd60e51b8152600401610c0e90615a46565b6001600160a01b0381166132ce5760405162461bcd60e51b8152600401610c0e906154a1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526019602052604090205460ff1680613360575061334b6121de565b6001600160a01b0316336001600160a01b0316145b61337c5760405162461bcd60e51b8152600401610c0e90615b7c565b613384614940565b60008681526011602090815260409182902082516101a081018452815460ff8082168352610100820416828501526001600160801b036201000090910481168286015260018301548082166060840152600160801b9004166080820152600282015460a08201526003820180548551818602810186019096528086529194929360c0860193929083018282801561344457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613426575b505050505081526020016004820180548060200260200160405190810160405280929190818152602001828054801561349c57602002820191906000526020600020905b815481526020019060010190808311613488575b505050918352505060058201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156135305780601f1061350557610100808354040283529160200191613530565b820191906000526020600020905b81548152906001019060200180831161351357829003601f168201915b505050918352505060068201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156135c45780601f10613599576101008083540402835291602001916135c4565b820191906000526020600020905b8154815290600101906020018083116135a757829003601f168201915b505050918352505060078201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156136585780601f1061362d57610100808354040283529160200191613658565b820191906000526020600020905b81548152906001019060200180831161363b57829003601f168201915b505050918352505060088201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156136ec5780601f106136c1576101008083540402835291602001916136ec565b820191906000526020600020905b8154815290600101906020018083116136cf57829003601f168201915b505050918352505060098201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156137805780601f1061375557610100808354040283529160200191613780565b820191906000526020600020905b81548152906001019060200180831161376357829003601f168201915b5050505050815250509050806000015160ff166001146137b25760405162461bcd60e51b8152600401610c0e906157c1565b8185856000816137be57fe5b90506020028101906137d09190615e4e565b9050146137ef5760405162461bcd60e51b8152600401610c0e9061578a565b60005b848110156138ea5760005b8686600081811061380a57fe5b905060200281019061381c9190615e4e565b90508110156138e157600d546001600160a01b031663e56e347986868481811061384257fe5b9050602002013589898681811061385557fe5b90506020028101906138679190615e4e565b8581811061387157fe5b90506020020160208101906138869190614cc7565b6040518363ffffffff1660e01b81526004016138a3929190615ce1565b600060405180830381600087803b1580156138bd57600080fd5b505af11580156138d1573d6000803e3d6000fd5b5050600190920191506137fd9050565b506001016137f2565b5060405186907fb3e821bfa4e118cf1cac28128930a4e53e59dd51d9e30c95ee100e4d3b0d2ef29061391d908790615cd8565b60405180910390a2505050505050565b60166020526000908152604090205481565b6000818152601160205260409020600f54821180159061395f5750600082115b61397b5760405162461bcd60e51b8152600401610c0e906155b6565b805460ff16600114801561399657508054610100900460ff16155b6139b25760405162461bcd60e51b8152600401610c0e906158d4565b6139bb8261419f565b6139d75760405162461bcd60e51b8152600401610c0e9061565c565b805461ff00191661010017815560028101546001820154600091613a0c916001600160801b03600160801b9091041690613e9d565b90506000805b601754811015613aba57613a626103e86114346016600060178681548110613a3657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548690613e9d565b915060178181548110613a7157fe5b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015613ab1573d6000803e3d6000fd5b50600101613a12565b5060005b60038401548110156129ac57613afc6103e8611434866004018481548110613ae257fe5b906000526020600020015486613e9d90919063ffffffff16565b9150836003018181548110613b0d57fe5b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015613b4d573d6000803e3d6000fd5b50600101613abe565b600082815260116020526040902060018101548154600f54600160801b9092046001600160801b03908116926201000090920416908511801590613b9a5750600085115b613bb65760405162461bcd60e51b8152600401610c0e906155e4565b60008581526013602052604090205460ff1615613be55760405162461bcd60e51b8152600401610c0e90615753565b60028301543490613bff906001600160801b038716613e9d565b14613c1c5760405162461bcd60e51b8152600401610c0e9061551e565b600e5460405163124d91e560e01b81526001600160a01b039091169063124d91e590613c5090339089908990600401615261565b600060405180830381600087803b158015613c6a57600080fd5b505af1158015613c7e573d6000803e3d6000fd5b5050600e5460405163aab68bdb60e01b81526001600160a01b03909116925063aab68bdb9150613cbb903390620186a08a01908990600401615261565b600060405180830381600087803b158015613cd557600080fd5b505af1158015613ce9573d6000803e3d6000fd5b5050505060005b846001600160801b0316816001600160801b0316101561296a57613d1f8387836001600160801b031633613fc1565b600101613cf0565b60006116ea600283614256565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d6d82611bc5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116ea82614262565b6000613dbc82613d27565b613dd85760405162461bcd60e51b8152600401610c0e90615707565b6000613de383611bc5565b9050806001600160a01b0316846001600160a01b03161480613e1e5750836001600160a01b0316613e1384610be7565b6001600160a01b0316145b80613e2e5750613e2e818561318b565b949350505050565b613e3e614ae2565b5060008181526012602090815260408083208151808301835281548082526001909201548185015290845260139092529091205460ff1615613e925760405162461bcd60e51b8152600401610c0e90615753565b611f0b848484614266565b600082613eac575060006116ea565b82820282848281613eb957fe5b04146116e75760405162461bcd60e51b8152600401610c0e906159b9565b60006116e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614374565b60006116e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506143ab565b6000828201838110156116e75760405162461bcd60e51b8152600401610c0e90615548565b60006116e783836143d7565b6000808080613f9b868661441c565b909450925050505b9250929050565b6000613fb7848484614478565b90505b9392505050565b604051806040016040528084815260200183866001600160801b03160160010181525060126000613ff0610f31565b60010181526020019081526020016000206000820151816000015560208201518160010155905050827f5420392aab8a9f3a70c0145321ff58bc86c3da3596336224396de59f430fc0f583866001600160801b031601600101614051610f31565b600101604051614062929190615cf8565b60405180910390a2611f0b81614076610f31565b6001016144d7565b614089848484613e36565b6140958484848461459b565b611f0b5760405162461bcd60e51b8152600401610c0e9061544f565b8051610f2d906009906020840190614a75565b6060816140e957506040805180820190915260018152600360fc1b6020820152610b4c565b8160005b811561410157600101600a820491506140ed565b60608167ffffffffffffffff8111801561411a57600080fd5b506040519080825280601f01601f191660200182016040528015614145576020820181803683370190505b50859350905060001982015b831561419657600a840660300160f81b8282806001900393508151811061417457fe5b60200101906001600160f81b031916908160001a905350600a84049350614151565b50949350505050565b600081815260116020526040812081805b601754811015614204576141fa60166000601784815481106141ce57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390613f5b565b91506001016141b0565b5060005b600483015481101561424a5761424083600401828154811061422657fe5b906000526020600020015483613f5b90919063ffffffff16565b9150600101614208565b506103e8149392505050565b60006116e7838361467a565b5490565b826001600160a01b031661427982611bc5565b6001600160a01b03161461429f5760405162461bcd60e51b8152600401610c0e90615aa3565b6001600160a01b0382166142c55760405162461bcd60e51b8152600401610c0e9061568c565b6142d0838383610cc6565b6142db600082613d38565b6001600160a01b03831660009081526001602052604090206142fd9082614692565b506001600160a01b0382166000908152600160205260409020614320908261469e565b5061432d600282846146aa565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836143955760405162461bcd60e51b8152600401610c0e919061533c565b5060008385816143a157fe5b0495945050505050565b600081848411156143cf5760405162461bcd60e51b8152600401610c0e919061533c565b505050900390565b815460009082106143fa5760405162461bcd60e51b8152600401610c0e9061534f565b82600001828154811061440957fe5b9060005260206000200154905092915050565b8154600090819083106144415760405162461bcd60e51b8152600401610c0e9061590b565b600084600001848154811061445257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816144a85760405162461bcd60e51b8152600401610c0e919061533c565b508460000160018203815481106144bb57fe5b9060005260206000209060020201600101549150509392505050565b6001600160a01b0382166144fd5760405162461bcd60e51b8152600401610c0e9061594d565b61450681613d27565b156145235760405162461bcd60e51b8152600401610c0e906154e7565b61452f60008383610cc6565b6001600160a01b0382166000908152600160205260409020614551908261469e565b5061455e600282846146aa565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006145af846001600160a01b03166146c0565b6145bb57506001613e2e565b6060614643630a85bd0160e11b6145d0613d34565b8887876040516024016145e69493929190615224565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001615f34603291396001600160a01b03881691906146c6565b905060008180602001905181019061465b9190614e3d565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60006116e783836146d5565b60006116e7838361479b565b6000613fb784846001600160a01b0385166147e5565b3b151590565b6060613fb7848460008561487c565b60008181526001830160205260408120548015614791578354600019808301919081019060009087908390811061470857fe5b906000526020600020015490508087600001848154811061472557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061475557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506116ea565b60009150506116ea565b60006147a7838361467a565b6147dd575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556116ea565b5060006116ea565b60008281526001840160205260408120548061484a575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055613fba565b8285600001600183038154811061485d57fe5b9060005260206000209060020201600101819055506000915050613fba565b6060614887856146c0565b6148a35760405162461bcd60e51b8152600401610c0e90615c11565b60006060866001600160a01b031685876040516148c09190615173565b60006040518083038185875af1925050503d80600081146148fd576040519150601f19603f3d011682016040523d82523d6000602084013e614902565b606091505b50915091508115614916579150613e2e9050565b8051156149265780518082602001fd5b8360405162461bcd60e51b8152600401610c0e919061533c565b604051806101a00160405280600060ff168152602001600060ff16815260200160006001600160801b0316815260200160006001600160801b0316815260200160006001600160801b0316815260200160008152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b828054828255906000526020600020908101928215614a1e579160200282015b82811115614a1e57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906149e9565b50614a2a929150614afc565b5090565b828054828255906000526020600020908101928215614a69579160200282015b82811115614a69578251825591602001919060010190614a4e565b50614a2a929150614b1b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ab657805160ff1916838001178555614a69565b82800160010185558215614a695791820182811115614a69578251825591602001919060010190614a4e565b604051806040016040528060008152602001600081525090565b5b80821115614a2a5780546001600160a01b0319168155600101614afd565b5b80821115614a2a5760008155600101614b1c565b600082601f830112614b40578081fd5b8135614b53614b4e82615ebc565b615e95565b818152915060208083019084810181840286018201871015614b7457600080fd5b60005b84811015614b9c578135614b8a81615f08565b84529282019290820190600101614b77565b505050505092915050565b60008083601f840112614bb8578081fd5b50813567ffffffffffffffff811115614bcf578182fd5b6020830191508360208083028501011115613fa357600080fd5b600082601f830112614bf9578081fd5b8135614c07614b4e82615ebc565b818152915060208083019084810181840286018201871015614c2857600080fd5b60005b84811015614b9c57813584529282019290820190600101614c2b565b600082601f830112614c57578081fd5b813567ffffffffffffffff811115614c6d578182fd5b614c80601f8201601f1916602001615e95565b9150808252836020828501011115614c9757600080fd5b8060208401602084013760009082016020015292915050565b80356001600160801b03811681146116ea57600080fd5b600060208284031215614cd8578081fd5b81356116e781615f08565b60008060408385031215614cf5578081fd5b8235614d0081615f08565b91506020830135614d1081615f08565b809150509250929050565b600080600060608486031215614d2f578081fd5b8335614d3a81615f08565b92506020840135614d4a81615f08565b929592945050506040919091013590565b60008060008060808587031215614d70578081fd5b8435614d7b81615f08565b93506020850135614d8b81615f08565b925060408501359150606085013567ffffffffffffffff811115614dad578182fd5b614db987828801614c47565b91505092959194509250565b60008060408385031215614dd7578182fd5b8235614de281615f08565b915060208301358015158114614d10578182fd5b60008060408385031215614e08578182fd5b8235614e1381615f08565b946020939093013593505050565b600060208284031215614e32578081fd5b81356116e781615f1d565b600060208284031215614e4e578081fd5b81516116e781615f1d565b600060208284031215614e6a578081fd5b813567ffffffffffffffff811115614e80578182fd5b613e2e84828501614c47565b60008060008060008060008060008060006101608c8e031215614ead578889fd5b614eb78d8d614cb0565b9a50614ec68d60208e01614cb0565b9950614ed58d60408e01614cb0565b985060608c0135975067ffffffffffffffff8060808e01351115614ef7578788fd5b614f078e60808f01358f01614b30565b97508060a08e01351115614f19578687fd5b614f298e60a08f01358f01614be9565b96508060c08e01351115614f3b578586fd5b614f4b8e60c08f01358f01614c47565b95508060e08e01351115614f5d578485fd5b614f6d8e60e08f01358f01614c47565b9450806101008e01351115614f80578384fd5b614f918e6101008f01358f01614c47565b9350806101208e01351115614fa4578283fd5b614fb58e6101208f01358f01614c47565b9250806101408e01351115614fc8578182fd5b50614fda8d6101408e01358e01614c47565b90509295989b509295989b9093969950565b600060208284031215614ffd578081fd5b5035919050565b60008060408385031215615016578182fd5b823591506020830135614d1081615f08565b60008060006060848603121561503c578081fd5b833592506020840135614d4a81615f08565b600080600080600060608688031215615065578283fd5b85359450602086013567ffffffffffffffff80821115615083578485fd5b61508f89838a01614ba7565b909650945060408801359150808211156150a7578283fd5b506150b488828901614ba7565b969995985093965092949392505050565b600080604083850312156150d7578182fd5b8235915060208301358015158114614d10578182fd5b600080604083850312156150ff578182fd5b823591506151108460208501614cb0565b90509250929050565b6000806040838503121561512b578182fd5b50508035926020909101359150565b60008151808452615152816020860160208601615edc565b601f01601f19169290920160200192915050565b6001600160801b03169052565b60008251615185818460208701615edc565b9190910192915050565b60008084546001808216600081146151ae57600181146151c5576151f4565b60ff198316865260028304607f16860193506151f4565b600283048886526020808720875b838110156151ec5781548a8201529085019082016151d3565b505050860193505b5050508351615207818360208801615edc565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906152579083018461513a565b9695505050505050565b6001600160a01b0393909316835260208301919091526001600160801b0316604082015260600190565b6001600160a01b039390931683526020830191909152604082015260600190565b6020808252825182820181905260009190848201906040850190845b818110156152ed5783516001600160a01b0316835292840192918401916001016152c8565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156152ed57835183529284019291840191600101615315565b901515815260200190565b6000602082526116e7602083018461513a565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526022908201527f4e4654426f7865733a204d6f756c6420494420646f6573206e6f7420657869736040820152613a1760f11b606082015260800190565b6020808252818101527f4e4654426f7865733a206d656d626572732065786973747320616c7265616479604082015260600190565b60208082526027908201527f4e4654426f7865733a2061727261797320617265206e6f74206f662073616d65604082015266040d8cadccee8d60cb1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526010908201526f4e4654426f7865733a2021707269636560801b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526018908201527f4e4654426f7865733a20546f6f206d616e7920626f7865730000000000000000604082015260600190565b60208082526014908201527327232a2137bc32b99d1024a21010b2bc34b9ba1760611b604082015260600190565b60208082526021908201527f4e4654426f7865733a204d6f756c6420494420646f6573206e6f7420657869736040820152601d60fa1b606082015260800190565b6020808252601f908201527f4e4654426f7865733a20426f7820646973747269627574696f6e206f76657200604082015260600190565b60208082526016908201527527232a2137bc32b99d1039bab690109e90189818129760511b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f4e4654426f7865733a20426f78206973206c6f636b6564000000000000000000604082015260600190565b6020808252601b908201527f4e4654426f7865733a2057726f6e672061727261792073697a652e0000000000604082015260600190565b6020808252601b908201527f4e5446426f7865733a20426f78206973207374696c6c206c6976650000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4e4654426f7865733a2043616e6e6f74207265736572766520616e796d6f7265604082015260600190565b6020808252601b908201527f4e4654426f7865733a2063616e6e6f7420646973747269627574650000000000604082015260600190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601d908201527f4e4654426f7865733a204275792077696e646f77206e6f74206f70656e000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600e908201526d4e4654426f7865733a202162757960901b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526024908201527f4e4654426f7865733a204e6f7420617574686f726973656420746f20657865636040820152633aba329760e11b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526022908201527f4e4654426f7865733a207368617265206d7573742062652062656c6f77203130604082015261030360f41b606082015260800190565b6020808252602e908201527f4e4654426f7865733a2043616e6e6f74206d696e74206d6f726520766f75636860408201526d657273207468616e20626f78657360901b606082015260800190565b90815260200190565b9182526001600160a01b0316602082015260400190565b918252602082015260400190565b60006101008a83528960208401526001600160801b0389166040840152806060840152615d358184018961513a565b90508281036080840152615d49818861513a565b905082810360a0840152615d5d818761513a565b905082810360c0840152615d71818661513a565b905082810360e0840152615d85818561513a565b9b9a5050505050505050505050565b600061016060ff8e16835260ff8d1660208401526001600160801b038c166040840152615dc4606084018c615166565b615dd1608084018b615166565b8860a08401528060c0840152615de98184018961513a565b905082810360e0840152615dfd818861513a565b9050828103610100840152615e12818761513a565b9050828103610120840152615e27818661513a565b9050828103610140840152615e3c818561513a565b9e9d5050505050505050505050505050565b6000808335601e19843603018112615e64578283fd5b83018035915067ffffffffffffffff821115615e7e578283fd5b6020908101925081023603821315613fa357600080fd5b60405181810167ffffffffffffffff81118282101715615eb457600080fd5b604052919050565b600067ffffffffffffffff821115615ed2578081fd5b5060209081020190565b60005b83811015615ef7578181015183820152602001615edf565b83811115611f0b5750506000910152565b6001600160a01b0381168114612f9057600080fd5b6001600160e01b031981168114612f9057600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212207144684dcf7292176db6e28790f99078b3a2a6f490b8c51310026dea6f06b20d64736f6c634300060c003368747470733a2f2f6e6674626f786573626f782e617a75726577656273697465732e6e65742f6170692f48747470547269676765723f69643d
Deployed Bytecode
0x6080604052600436106103a25760003560e01c806370a08231116101e7578063b2d443fe1161010d578063cd9fe121116100a0578063f5f0cebd1161006f578063f5f0cebd14610abb578063f769046f14610adb578063fb4a255814610afb578063fccee1b414610b1b576103a2565b8063cd9fe12114610a3b578063e985e9c514610a5b578063eba2389d14610a7b578063f2fde38b14610a9b576103a2565b8063b9c4d9fb116100dc578063b9c4d9fb146109bb578063c30f4a5a146109db578063c87b56dd146109fb578063cb67558e14610a1b576103a2565b8063b2d443fe1461093d578063b3ed1da414610952578063b5a3f84f14610986578063b88d4fde1461099b576103a2565b80638da5cb5b116101855780639e418926116101545780639e418926146108ca578063a22cb465146108ea578063a74772c81461090a578063aef078bc1461092a576103a2565b80638da5cb5b1461086057806395d89b411461087557806397de16f21461088a5780639cae6eae146108aa576103a2565b8063811dd0e2116101c1578063811dd0e2146107de57806385e3f9971461080b578063894ca535146108205780638ad0e8cc14610840576103a2565b806370a0823114610789578063715018a6146107a9578063783abc8e146107be576103a2565b806330662b7b116102cc5780634ccc6b5f1161026a5780636352211e116102395780636352211e1461071f578063658612e91461073f578063678edca3146107545780636c0360eb14610774576103a2565b80634ccc6b5f146106915780634ed3faf2146106b15780634f6ccce7146106df57806362638c8b146106ff576103a2565b80633f3266f3116102a65780633f3266f3146106275780633f53bbc71461063c578063424f4fef1461065c57806342842e0e14610671576103a2565b806330662b7b146105b057806333c1da70146105d05780633eb2b5ad14610607576103a2565b806314eba0261161034457806325bf8b5e1161031357806325bf8b5e1461053d57806326303056146105505780632b28bc99146105705780632f745c5914610590576103a2565b806314eba026146104bb57806318160ddd146104db578063197ebd53146104fd57806323b872dd1461051d576103a2565b8063095ea7b311610380578063095ea7b31461042c5780630ebd4c7f1461044e5780630fceb9ab1461047b57806314eb76ac1461049b576103a2565b806301ffc9a7146103a757806306fdde03146103dd578063081812fc146103ff575b600080fd5b3480156103b357600080fd5b506103c76103c2366004614e21565b610b2e565b6040516103d49190615331565b60405180910390f35b3480156103e957600080fd5b506103f2610b51565b6040516103d4919061533c565b34801561040b57600080fd5b5061041f61041a366004614fec565b610be7565b6040516103d49190615210565b34801561043857600080fd5b5061044c610447366004614df6565b610c33565b005b34801561045a57600080fd5b5061046e610469366004614fec565b610ccb565b6040516103d491906152f9565b34801561048757600080fd5b5061044c610496366004614fec565b610d11565b3480156104a757600080fd5b5061044c6104b6366004614cc7565b610dad565b3480156104c757600080fd5b5061044c6104d6366004614cc7565b610e04565b3480156104e757600080fd5b506104f0610f31565b6040516103d49190615cd8565b34801561050957600080fd5b5061041f610518366004614fec565b610f42565b34801561052957600080fd5b5061044c610538366004614d1b565b610f69565b61044c61054b366004615119565b610fa1565b34801561055c57600080fd5b5061046e61056b366004614fec565b6115a0565b34801561057c57600080fd5b5061044c61058b366004615028565b611605565b34801561059c57600080fd5b506104f06105ab366004614df6565b6116c5565b3480156105bc57600080fd5b5061041f6105cb366004615119565b6116f0565b3480156105dc57600080fd5b506105f06105eb366004614fec565b611725565b6040516103d49b9a99989796959493929190615d94565b34801561061357600080fd5b5061044c610622366004614cc7565b611a43565b34801561063357600080fd5b5061041f611b24565b34801561064857600080fd5b506104f0610657366004614fec565b611b33565b34801561066857600080fd5b5061041f611b45565b34801561067d57600080fd5b5061044c61068c366004614d1b565b611b54565b34801561069d57600080fd5b506103c76106ac366004614fec565b611b6f565b3480156106bd57600080fd5b506106d16106cc366004614fec565b611b84565b6040516103d4929190615cf8565b3480156106eb57600080fd5b506104f06106fa366004614fec565b611b9d565b34801561070b57600080fd5b506104f061071a366004614fec565b611bb3565b34801561072b57600080fd5b5061041f61073a366004614fec565b611bc5565b34801561074b57600080fd5b506104f0611bed565b34801561076057600080fd5b5061044c61076f366004614fec565b611bf3565b34801561078057600080fd5b506103f2611c2d565b34801561079557600080fd5b506104f06107a4366004614cc7565b611c8e565b3480156107b557600080fd5b5061044c611cd7565b3480156107ca57600080fd5b5061044c6107d9366004615004565b611d56565b3480156107ea57600080fd5b506107fe6107f9366004614fec565b611f11565b6040516103d491906152ac565b34801561081757600080fd5b506104f0611f7f565b34801561082c57600080fd5b5061044c61083b366004614fec565b611f85565b34801561084c57600080fd5b5061044c61085b366004615119565b611fbf565b34801561086c57600080fd5b5061041f6121de565b34801561088157600080fd5b506103f26121ed565b34801561089657600080fd5b5061044c6108a5366004614e8c565b61224e565b3480156108b657600080fd5b5061044c6108c5366004614dc5565b6125dc565b3480156108d657600080fd5b5061044c6108e53660046150c5565b61263c565b3480156108f657600080fd5b5061044c610905366004614dc5565b6126dc565b34801561091657600080fd5b506103c7610925366004614cc7565b6127aa565b61044c6109383660046150ed565b6127bf565b34801561094957600080fd5b5061044c6129b3565b34801561095e57600080fd5b5061097261096d366004614fec565b612a1e565b6040516103d4989796959493929190615d06565b34801561099257600080fd5b506104f0612eb5565b3480156109a757600080fd5b5061044c6109b6366004614d5b565b612ebb565b3480156109c757600080fd5b506107fe6109d6366004614fec565b612ef4565b3480156109e757600080fd5b5061044c6109f6366004614e59565b612f52565b348015610a0757600080fd5b506103f2610a16366004614fec565b612f93565b348015610a2757600080fd5b5061044c610a36366004614cc7565b6130dd565b348015610a4757600080fd5b5061044c610a56366004614cc7565b613134565b348015610a6757600080fd5b506103c7610a76366004614ce3565b61318b565b348015610a8757600080fd5b5061044c610a96366004614df6565b6131b9565b348015610aa757600080fd5b5061044c610ab6366004614cc7565b613273565b348015610ac757600080fd5b5061044c610ad636600461504e565b61332a565b348015610ae757600080fd5b506104f0610af6366004614cc7565b61392d565b348015610b0757600080fd5b5061044c610b16366004614fec565b61393f565b61044c610b293660046150ed565b613b56565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b6000610bf282613d27565b610c175760405162461bcd60e51b8152600401610c0e906159fa565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c3e82611bc5565b9050806001600160a01b0316836001600160a01b03161415610c725760405162461bcd60e51b8152600401610c0e90615b3b565b806001600160a01b0316610c84613d34565b6001600160a01b03161480610ca05750610ca081610a76613d34565b610cbc5760405162461bcd60e51b8152600401610c0e906157f8565b610cc68383613d38565b505050565b60408051600180825281830190925260609182919060208083019080368337019050509050600c5481600081518110610d0057fe5b602090810291909101015292915050565b3360009081526019602052604090205460ff1680610d475750610d326121de565b6001600160a01b0316336001600160a01b0316145b610d635760405162461bcd60e51b8152600401610c0e90615b7c565b6000818152601160205260409020600f548211801590610d835750600082115b610d9f5760405162461bcd60e51b8152600401610c0e90615391565b805460ff1916600117905550565b610db5613d34565b600a546001600160a01b03908116911614610de25760405162461bcd60e51b8152600401610c0e90615a46565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610e0c613d34565b600a546001600160a01b03908116911614610e395760405162461bcd60e51b8152600401610c0e90615a46565b60005b601754811015610f2d57816001600160a01b031660178281548110610e5d57fe5b6000918252602090912001546001600160a01b03161415610f25576001600160a01b038216600090815260166020526040812055601780546000198101908110610ea357fe5b600091825260209091200154601780546001600160a01b039092169183908110610ec957fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506017805480610f0257fe5b600082815260209020810160001990810180546001600160a01b03191690550190555b600101610e3c565b5050565b6000610f3d6002613da6565b905090565b60178181548110610f4f57fe5b6000918252602090912001546001600160a01b0316905081565b610f7a610f74613d34565b82613db1565b610f965760405162461bcd60e51b8152600401610c0e90615bc0565b610cc6838383613e36565b610fa9614940565b60008381526011602090815260409182902082516101a081018452815460ff8082168352610100820416828501526001600160801b036201000090910481168286015260018301548082166060840152600160801b9004166080820152600282015460a08201526003820180548551818602810186019096528086529194929360c0860193929083018282801561106957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161104b575b50505050508152602001600482018054806020026020016040519081016040528092919081815260200182805480156110c157602002820191906000526020600020905b8154815260200190600101908083116110ad575b505050918352505060058201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050918352505060068201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156111e95780601f106111be576101008083540402835291602001916111e9565b820191906000526020600020905b8154815290600101906020018083116111cc57829003601f168201915b505050918352505060078201805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815293820193929183018282801561127d5780601f106112525761010080835404028352916020019161127d565b820191906000526020600020905b81548152906001019060200180831161126057829003601f168201915b505050918352505060088201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156113115780601f106112e657610100808354040283529160200191611311565b820191906000526020600020905b8154815290600101906020018083116112f457829003601f168201915b505050918352505060098201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b5050505050815250509050600f5483111580156113c25750600083115b6113de5760405162461bcd60e51b8152600401610c0e906155e4565b6000838152601460205260409020541561140a5760405162461bcd60e51b8152600401610c0e9061589f565b3461143a6103e861143460105461142e878760a00151613e9d90919063ffffffff16565b90613e9d565b90613ed7565b146114575760405162461bcd60e51b8152600401610c0e9061551e565b600e5460405163124d91e560e01b81526001600160a01b039091169063124d91e59061148b9033908790879060040161528b565b600060405180830381600087803b1580156114a557600080fd5b505af11580156114b9573d6000803e3d6000fd5b5050600e5460405163aab68bdb60e01b81526001600160a01b03909116925063aab68bdb91506114f6903390620186a0880190879060040161528b565b600060405180830381600087803b15801561151057600080fd5b505af1158015611524573d6000803e3d6000fd5b5050505060005b8281101561156a5760008481526015602090815260408220805460018181018355918452919092200180546001600160a01b031916331790550161152b565b5061159861158f611588848460a00151613e9d90919063ffffffff16565b3490613f19565b60185490613f5b565b601855505050565b6000818152601160209081526040918290206004018054835181840281018401909452808452606093928301828280156115f957602002820191906000526020600020905b8154815260200190600101908083116115e5575b50505050509050919050565b61160d613d34565b600a546001600160a01b0390811691161461163a5760405162461bcd60e51b8152600401610c0e90615a46565b6000838152601160205260409020600f54841180159061165a5750600084115b6116765760405162461bcd60e51b8152600401610c0e906155e4565b600381018054600180820183556000928352602080842090920180546001600160a01b0319166001600160a01b0397909716969096179095556004909201805494850181558152209091015550565b6001600160a01b03821660009081526001602052604081206116e79083613f80565b90505b92915050565b6015602052816000526040600020818154811061170957fe5b6000918252602090912001546001600160a01b03169150829050565b601160209081526000918252604091829020805460018083015460028085015460058601805489516101009682161587026000190190911693909304601f810189900489028401890190995288835260ff808716999587041697620100009096046001600160801b039081169781861697600160801b909604909116959294909392908301828280156117f95780601f106117ce576101008083540402835291602001916117f9565b820191906000526020600020905b8154815290600101906020018083116117dc57829003601f168201915b5050505060068301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b5050505060078301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505060088301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156119a95780601f1061197e576101008083540402835291602001916119a9565b820191906000526020600020905b81548152906001019060200180831161198c57829003601f168201915b5050505060098301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b505050505090508b565b611a4b613d34565b600a546001600160a01b03908116911614611a785760405162461bcd60e51b8152600401610c0e90615a46565b60005b601754811015611ad15760178181548110611a9257fe5b6000918252602090912001546001600160a01b0383811691161415611ac95760405162461bcd60e51b8152600401610c0e906153d3565b600101611a7b565b50601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319166001600160a01b0392909216919091179055565b600e546001600160a01b031681565b60146020526000908152604090205481565b600d546001600160a01b031681565b610cc683838360405180602001604052806000815250612ebb565b60136020526000908152604090205460ff1681565b6012602052600090815260409020805460019091015482565b600080611bab600284613f8c565b509392505050565b60009081526015602052604090205490565b60006116ea82604051806060016040528060298152602001615f666029913960029190613faa565b60105481565b611bfb613d34565b600a546001600160a01b03908116911614611c285760405162461bcd60e51b8152600401610c0e90615a46565b601055565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b60006001600160a01b038216611cb65760405162461bcd60e51b8152600401610c0e90615855565b6001600160a01b03821660009081526001602052604090206116ea90613da6565b611cdf613d34565b600a546001600160a01b03908116911614611d0c5760405162461bcd60e51b8152600401610c0e90615a46565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b611d5e613d34565b600a546001600160a01b03908116911614611d8b5760405162461bcd60e51b8152600401610c0e90615a46565b6000828152601160205260409020600f548311801590611dab5750600083115b611dc75760405162461bcd60e51b8152600401610c0e90615391565b60005b6003820154811015611f0b57826001600160a01b0316826003018281548110611def57fe5b6000918252602090912001546001600160a01b03161415611f03576003820180546000198101908110611e1e57fe5b6000918252602090912001546003830180546001600160a01b039092169183908110611e4657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600301805480611e8157fe5b600082815260209020810160001990810180546001600160a01b031916905590810190915560048301805490918101908110611eb957fe5b9060005260206000200154826004018281548110611ed357fe5b60009182526020909120015560048201805480611eec57fe5b600190038181906000526020600020016000905590555b600101611dca565b50505050565b6000818152601160209081526040918290206003018054835181840281018401909452808452606093928301828280156115f957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611f565750505050509050919050565b6103e881565b611f8d613d34565b600a546001600160a01b03908116911614611fba5760405162461bcd60e51b8152600401610c0e90615a46565b600c55565b3360009081526019602052604090205460ff1680611ff55750611fe06121de565b6001600160a01b0316336001600160a01b0316145b6120115760405162461bcd60e51b8152600401610c0e90615b7c565b600f5482111580156120235750600082115b61203f5760405162461bcd60e51b8152600401610c0e906155e4565b60008281526013602052604090205460ff161561206e5760405162461bcd60e51b8152600401610c0e90615753565b6000828152601460205260409020541561209a5760405162461bcd60e51b8152600401610c0e90615625565b600082815260116020908152604080832060018101546015909352908320549092600160801b9092046001600160801b0316915b6000821180156120de5750600085115b1561217157612124838783601560008b8152602001908152602001600020600187038154811061210a57fe5b6000918252602090912001546001600160a01b0316613fc1565b600086815260156020526040902080548061213b57fe5b600082815260209020810160001990810180546001600160a01b03191690559081019091559485019491909101906001016120ce565b6001840180546001600160801b03600160801b8083048216850182160291811691909117909155845484821683016201000090910490911614156121bb57835460ff191660011784555b816121d6576000868152601460205260409020610384420190555b505050505050565b600a546001600160a01b031690565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b612256613d34565b600a546001600160a01b039081169116146122835760405162461bcd60e51b8152600401610c0e90615a46565b85518751146122a45760405162461bcd60e51b8152600401610c0e90615408565b8a6001600160801b0316896001600160801b031611156122d65760405162461bcd60e51b8152600401610c0e90615c8a565b604051806101a00160405280600060ff168152602001600060ff1681526020018c6001600160801b031681526020018b6001600160801b0316815260200160006001600160801b031681526020018981526020018881526020018781526020018681526020018581526020018481526020018381526020018281525060116000600f54600101815260200190815260200160002060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160000160026101000a8154816001600160801b0302191690836001600160801b0316021790555060608201518160010160006101000a8154816001600160801b0302191690836001600160801b0316021790555060808201518160010160106101000a8154816001600160801b0302191690836001600160801b0316021790555060a0820151816002015560c08201518160030190805190602001906124599291906149c9565b5060e08201518051612475916004840191602090910190614a2e565b506101008201518051612492916005840191602090910190614a75565b5061012082015180516124af916006840191602090910190614a75565b5061014082015180516124cc916007840191602090910190614a75565b5061016082015180516124e9916008840191602090910190614a75565b506101808201518051612506916009840191602090910190614a75565b5050600f8054600190810180835560009081526013602052604090819020805460ff1916909217909155600e549154905163aab68bdb60e01b81526001600160a01b03909216925063aab68bdb916125649133918e90600401615261565b600060405180830381600087803b15801561257e57600080fd5b505af1158015612592573d6000803e3d6000fd5b505050507f77628c9166aca2fc4ccb8b7681fa345c93f54fb929f857d05cfebbfb665bad02600f546040516125c79190615cd8565b60405180910390a15050505050505050505050565b6125e4613d34565b600a546001600160a01b039081169116146126115760405162461bcd60e51b8152600401610c0e90615a46565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b3360009081526019602052604090205460ff1680612672575061265d6121de565b6001600160a01b0316336001600160a01b0316145b61268e5760405162461bcd60e51b8152600401610c0e90615b7c565b600f5482111580156126a05750600082115b6126bc5760405162461bcd60e51b8152600401610c0e90615391565b600091825260136020526040909120805460ff1916911515919091179055565b6126e4613d34565b6001600160a01b0316826001600160a01b031614156127155760405162461bcd60e51b8152600401610c0e906156d0565b8060056000612722613d34565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155612766613d34565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161279e9190615331565b60405180910390a35050565b60196020526000908152604090205460ff1681565b600082815260116020526040902060018101548154600f54600160801b9092046001600160801b039081169262010000909204169085118015906128035750600085115b61281f5760405162461bcd60e51b8152600401610c0e906155e4565b60008581526013602052604090205460ff161561284e5760405162461bcd60e51b8152600401610c0e90615753565b60008581526014602052604090205415801590612878575060008581526014602052604090205442115b6128945760405162461bcd60e51b8152600401610c0e90615982565b600283015434906128ae906001600160801b038716613e9d565b146128cb5760405162461bcd60e51b8152600401610c0e9061551e565b806001600160801b03168483016001600160801b031611156128ff5760405162461bcd60e51b8152600401610c0e9061557f565b60018301546001600160801b0390811690851611156129305760405162461bcd60e51b8152600401610c0e90615a7b565b60005b846001600160801b0316816001600160801b0316101561296a576129628387836001600160801b031633613fc1565b600101612933565b506001830180546001600160801b03600160801b8083048216880182160291811691909117909155828501811690821614156129ac57825460ff191660011783555b5050505050565b6129bb613d34565b600a546001600160a01b039081169116146129e85760405162461bcd60e51b8152600401610c0e90615a46565b601854604051339180156108fc02916000818181858888f19350505050158015612a16573d6000803e3d6000fd5b506000601855565b60008060006060806060806060612a33614ae2565b506000898152601260209081526040918290208251808401909352805483526001015490820152612a62614940565b815160009081526011602090815260409182902082516101a081018452815460ff8082168352610100820416828501526001600160801b036201000090910481168286015260018301548082166060840152600160801b9004166080820152600282015460a08201526003820180548551818602810186019096528086529194929360c08601939290830182828015612b2457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612b06575b5050505050815260200160048201805480602002602001604051908101604052809291908181526020018280548015612b7c57602002820191906000526020600020905b815481526020019060010190808311612b68575b505050918352505060058201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612c105780601f10612be557610100808354040283529160200191612c10565b820191906000526020600020905b815481529060010190602001808311612bf357829003601f168201915b505050918352505060068201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612ca45780601f10612c7957610100808354040283529160200191612ca4565b820191906000526020600020905b815481529060010190602001808311612c8757829003601f168201915b505050918352505060078201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b505050918352505060088201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612dcc5780601f10612da157610100808354040283529160200191612dcc565b820191906000526020600020905b815481529060010190602001808311612daf57829003601f168201915b505050918352505060098201805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152938201939291830182828015612e605780601f10612e3557610100808354040283529160200191612e60565b820191906000526020600020905b815481529060010190602001808311612e4357829003601f168201915b5050505050815250509050816000015182602001518260400151836101000151846101200151856101400151866101600151876101800151995099509950995099509950995099505050919395975091939597565b600f5481565b612ecc612ec6613d34565b83613db1565b612ee85760405162461bcd60e51b8152600401610c0e90615bc0565b611f0b8484848461407e565b604080516001808252818301909252606091829190602080830190803683375050600b5482519293506001600160a01b031691839150600090612f3357fe5b6001600160a01b03909216602092830291909101909101529050919050565b612f5a613d34565b600a546001600160a01b03908116911614612f875760405162461bcd60e51b8152600401610c0e90615a46565b612f90816140b1565b50565b6060612f9e82613d27565b612fba5760405162461bcd60e51b8152600401610c0e90615aec565b60008281526008602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561304f5780601f106130245761010080835404028352916020019161304f565b820191906000526020600020905b81548152906001019060200180831161303257829003601f168201915b505060095493945050505060026000196101006001841615020190911604613078579050610b4c565b8051156130aa5760098160405160200161309392919061518f565b604051602081830303815290604052915050610b4c565b60096130b5846140c4565b6040516020016130c692919061518f565b604051602081830303815290604052915050919050565b6130e5613d34565b600a546001600160a01b039081169116146131125760405162461bcd60e51b8152600401610c0e90615a46565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b61313c613d34565b600a546001600160a01b039081169116146131695760405162461bcd60e51b8152600401610c0e90615a46565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6131c1613d34565b600a546001600160a01b039081169116146131ee5760405162461bcd60e51b8152600401610c0e90615a46565b6103e88111156132105760405162461bcd60e51b8152600401610c0e90615c48565b60005b601754811015610cc657826001600160a01b03166017828154811061323457fe5b6000918252602090912001546001600160a01b0316141561326b576001600160a01b03831660009081526016602052604090208290555b600101613213565b61327b613d34565b600a546001600160a01b039081169116146132a85760405162461bcd60e51b8152600401610c0e90615a46565b6001600160a01b0381166132ce5760405162461bcd60e51b8152600401610c0e906154a1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526019602052604090205460ff1680613360575061334b6121de565b6001600160a01b0316336001600160a01b0316145b61337c5760405162461bcd60e51b8152600401610c0e90615b7c565b613384614940565b60008681526011602090815260409182902082516101a081018452815460ff8082168352610100820416828501526001600160801b036201000090910481168286015260018301548082166060840152600160801b9004166080820152600282015460a08201526003820180548551818602810186019096528086529194929360c0860193929083018282801561344457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613426575b505050505081526020016004820180548060200260200160405190810160405280929190818152602001828054801561349c57602002820191906000526020600020905b815481526020019060010190808311613488575b505050918352505060058201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156135305780601f1061350557610100808354040283529160200191613530565b820191906000526020600020905b81548152906001019060200180831161351357829003601f168201915b505050918352505060068201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156135c45780601f10613599576101008083540402835291602001916135c4565b820191906000526020600020905b8154815290600101906020018083116135a757829003601f168201915b505050918352505060078201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156136585780601f1061362d57610100808354040283529160200191613658565b820191906000526020600020905b81548152906001019060200180831161363b57829003601f168201915b505050918352505060088201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156136ec5780601f106136c1576101008083540402835291602001916136ec565b820191906000526020600020905b8154815290600101906020018083116136cf57829003601f168201915b505050918352505060098201805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529382019392918301828280156137805780601f1061375557610100808354040283529160200191613780565b820191906000526020600020905b81548152906001019060200180831161376357829003601f168201915b5050505050815250509050806000015160ff166001146137b25760405162461bcd60e51b8152600401610c0e906157c1565b8185856000816137be57fe5b90506020028101906137d09190615e4e565b9050146137ef5760405162461bcd60e51b8152600401610c0e9061578a565b60005b848110156138ea5760005b8686600081811061380a57fe5b905060200281019061381c9190615e4e565b90508110156138e157600d546001600160a01b031663e56e347986868481811061384257fe5b9050602002013589898681811061385557fe5b90506020028101906138679190615e4e565b8581811061387157fe5b90506020020160208101906138869190614cc7565b6040518363ffffffff1660e01b81526004016138a3929190615ce1565b600060405180830381600087803b1580156138bd57600080fd5b505af11580156138d1573d6000803e3d6000fd5b5050600190920191506137fd9050565b506001016137f2565b5060405186907fb3e821bfa4e118cf1cac28128930a4e53e59dd51d9e30c95ee100e4d3b0d2ef29061391d908790615cd8565b60405180910390a2505050505050565b60166020526000908152604090205481565b6000818152601160205260409020600f54821180159061395f5750600082115b61397b5760405162461bcd60e51b8152600401610c0e906155b6565b805460ff16600114801561399657508054610100900460ff16155b6139b25760405162461bcd60e51b8152600401610c0e906158d4565b6139bb8261419f565b6139d75760405162461bcd60e51b8152600401610c0e9061565c565b805461ff00191661010017815560028101546001820154600091613a0c916001600160801b03600160801b9091041690613e9d565b90506000805b601754811015613aba57613a626103e86114346016600060178681548110613a3657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548690613e9d565b915060178181548110613a7157fe5b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015613ab1573d6000803e3d6000fd5b50600101613a12565b5060005b60038401548110156129ac57613afc6103e8611434866004018481548110613ae257fe5b906000526020600020015486613e9d90919063ffffffff16565b9150836003018181548110613b0d57fe5b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015613b4d573d6000803e3d6000fd5b50600101613abe565b600082815260116020526040902060018101548154600f54600160801b9092046001600160801b03908116926201000090920416908511801590613b9a5750600085115b613bb65760405162461bcd60e51b8152600401610c0e906155e4565b60008581526013602052604090205460ff1615613be55760405162461bcd60e51b8152600401610c0e90615753565b60028301543490613bff906001600160801b038716613e9d565b14613c1c5760405162461bcd60e51b8152600401610c0e9061551e565b600e5460405163124d91e560e01b81526001600160a01b039091169063124d91e590613c5090339089908990600401615261565b600060405180830381600087803b158015613c6a57600080fd5b505af1158015613c7e573d6000803e3d6000fd5b5050600e5460405163aab68bdb60e01b81526001600160a01b03909116925063aab68bdb9150613cbb903390620186a08a01908990600401615261565b600060405180830381600087803b158015613cd557600080fd5b505af1158015613ce9573d6000803e3d6000fd5b5050505060005b846001600160801b0316816001600160801b0316101561296a57613d1f8387836001600160801b031633613fc1565b600101613cf0565b60006116ea600283614256565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d6d82611bc5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116ea82614262565b6000613dbc82613d27565b613dd85760405162461bcd60e51b8152600401610c0e90615707565b6000613de383611bc5565b9050806001600160a01b0316846001600160a01b03161480613e1e5750836001600160a01b0316613e1384610be7565b6001600160a01b0316145b80613e2e5750613e2e818561318b565b949350505050565b613e3e614ae2565b5060008181526012602090815260408083208151808301835281548082526001909201548185015290845260139092529091205460ff1615613e925760405162461bcd60e51b8152600401610c0e90615753565b611f0b848484614266565b600082613eac575060006116ea565b82820282848281613eb957fe5b04146116e75760405162461bcd60e51b8152600401610c0e906159b9565b60006116e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614374565b60006116e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506143ab565b6000828201838110156116e75760405162461bcd60e51b8152600401610c0e90615548565b60006116e783836143d7565b6000808080613f9b868661441c565b909450925050505b9250929050565b6000613fb7848484614478565b90505b9392505050565b604051806040016040528084815260200183866001600160801b03160160010181525060126000613ff0610f31565b60010181526020019081526020016000206000820151816000015560208201518160010155905050827f5420392aab8a9f3a70c0145321ff58bc86c3da3596336224396de59f430fc0f583866001600160801b031601600101614051610f31565b600101604051614062929190615cf8565b60405180910390a2611f0b81614076610f31565b6001016144d7565b614089848484613e36565b6140958484848461459b565b611f0b5760405162461bcd60e51b8152600401610c0e9061544f565b8051610f2d906009906020840190614a75565b6060816140e957506040805180820190915260018152600360fc1b6020820152610b4c565b8160005b811561410157600101600a820491506140ed565b60608167ffffffffffffffff8111801561411a57600080fd5b506040519080825280601f01601f191660200182016040528015614145576020820181803683370190505b50859350905060001982015b831561419657600a840660300160f81b8282806001900393508151811061417457fe5b60200101906001600160f81b031916908160001a905350600a84049350614151565b50949350505050565b600081815260116020526040812081805b601754811015614204576141fa60166000601784815481106141ce57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390613f5b565b91506001016141b0565b5060005b600483015481101561424a5761424083600401828154811061422657fe5b906000526020600020015483613f5b90919063ffffffff16565b9150600101614208565b506103e8149392505050565b60006116e7838361467a565b5490565b826001600160a01b031661427982611bc5565b6001600160a01b03161461429f5760405162461bcd60e51b8152600401610c0e90615aa3565b6001600160a01b0382166142c55760405162461bcd60e51b8152600401610c0e9061568c565b6142d0838383610cc6565b6142db600082613d38565b6001600160a01b03831660009081526001602052604090206142fd9082614692565b506001600160a01b0382166000908152600160205260409020614320908261469e565b5061432d600282846146aa565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836143955760405162461bcd60e51b8152600401610c0e919061533c565b5060008385816143a157fe5b0495945050505050565b600081848411156143cf5760405162461bcd60e51b8152600401610c0e919061533c565b505050900390565b815460009082106143fa5760405162461bcd60e51b8152600401610c0e9061534f565b82600001828154811061440957fe5b9060005260206000200154905092915050565b8154600090819083106144415760405162461bcd60e51b8152600401610c0e9061590b565b600084600001848154811061445257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816144a85760405162461bcd60e51b8152600401610c0e919061533c565b508460000160018203815481106144bb57fe5b9060005260206000209060020201600101549150509392505050565b6001600160a01b0382166144fd5760405162461bcd60e51b8152600401610c0e9061594d565b61450681613d27565b156145235760405162461bcd60e51b8152600401610c0e906154e7565b61452f60008383610cc6565b6001600160a01b0382166000908152600160205260409020614551908261469e565b5061455e600282846146aa565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006145af846001600160a01b03166146c0565b6145bb57506001613e2e565b6060614643630a85bd0160e11b6145d0613d34565b8887876040516024016145e69493929190615224565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001615f34603291396001600160a01b03881691906146c6565b905060008180602001905181019061465b9190614e3d565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60006116e783836146d5565b60006116e7838361479b565b6000613fb784846001600160a01b0385166147e5565b3b151590565b6060613fb7848460008561487c565b60008181526001830160205260408120548015614791578354600019808301919081019060009087908390811061470857fe5b906000526020600020015490508087600001848154811061472557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061475557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506116ea565b60009150506116ea565b60006147a7838361467a565b6147dd575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556116ea565b5060006116ea565b60008281526001840160205260408120548061484a575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055613fba565b8285600001600183038154811061485d57fe5b9060005260206000209060020201600101819055506000915050613fba565b6060614887856146c0565b6148a35760405162461bcd60e51b8152600401610c0e90615c11565b60006060866001600160a01b031685876040516148c09190615173565b60006040518083038185875af1925050503d80600081146148fd576040519150601f19603f3d011682016040523d82523d6000602084013e614902565b606091505b50915091508115614916579150613e2e9050565b8051156149265780518082602001fd5b8360405162461bcd60e51b8152600401610c0e919061533c565b604051806101a00160405280600060ff168152602001600060ff16815260200160006001600160801b0316815260200160006001600160801b0316815260200160006001600160801b0316815260200160008152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b828054828255906000526020600020908101928215614a1e579160200282015b82811115614a1e57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906149e9565b50614a2a929150614afc565b5090565b828054828255906000526020600020908101928215614a69579160200282015b82811115614a69578251825591602001919060010190614a4e565b50614a2a929150614b1b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ab657805160ff1916838001178555614a69565b82800160010185558215614a695791820182811115614a69578251825591602001919060010190614a4e565b604051806040016040528060008152602001600081525090565b5b80821115614a2a5780546001600160a01b0319168155600101614afd565b5b80821115614a2a5760008155600101614b1c565b600082601f830112614b40578081fd5b8135614b53614b4e82615ebc565b615e95565b818152915060208083019084810181840286018201871015614b7457600080fd5b60005b84811015614b9c578135614b8a81615f08565b84529282019290820190600101614b77565b505050505092915050565b60008083601f840112614bb8578081fd5b50813567ffffffffffffffff811115614bcf578182fd5b6020830191508360208083028501011115613fa357600080fd5b600082601f830112614bf9578081fd5b8135614c07614b4e82615ebc565b818152915060208083019084810181840286018201871015614c2857600080fd5b60005b84811015614b9c57813584529282019290820190600101614c2b565b600082601f830112614c57578081fd5b813567ffffffffffffffff811115614c6d578182fd5b614c80601f8201601f1916602001615e95565b9150808252836020828501011115614c9757600080fd5b8060208401602084013760009082016020015292915050565b80356001600160801b03811681146116ea57600080fd5b600060208284031215614cd8578081fd5b81356116e781615f08565b60008060408385031215614cf5578081fd5b8235614d0081615f08565b91506020830135614d1081615f08565b809150509250929050565b600080600060608486031215614d2f578081fd5b8335614d3a81615f08565b92506020840135614d4a81615f08565b929592945050506040919091013590565b60008060008060808587031215614d70578081fd5b8435614d7b81615f08565b93506020850135614d8b81615f08565b925060408501359150606085013567ffffffffffffffff811115614dad578182fd5b614db987828801614c47565b91505092959194509250565b60008060408385031215614dd7578182fd5b8235614de281615f08565b915060208301358015158114614d10578182fd5b60008060408385031215614e08578182fd5b8235614e1381615f08565b946020939093013593505050565b600060208284031215614e32578081fd5b81356116e781615f1d565b600060208284031215614e4e578081fd5b81516116e781615f1d565b600060208284031215614e6a578081fd5b813567ffffffffffffffff811115614e80578182fd5b613e2e84828501614c47565b60008060008060008060008060008060006101608c8e031215614ead578889fd5b614eb78d8d614cb0565b9a50614ec68d60208e01614cb0565b9950614ed58d60408e01614cb0565b985060608c0135975067ffffffffffffffff8060808e01351115614ef7578788fd5b614f078e60808f01358f01614b30565b97508060a08e01351115614f19578687fd5b614f298e60a08f01358f01614be9565b96508060c08e01351115614f3b578586fd5b614f4b8e60c08f01358f01614c47565b95508060e08e01351115614f5d578485fd5b614f6d8e60e08f01358f01614c47565b9450806101008e01351115614f80578384fd5b614f918e6101008f01358f01614c47565b9350806101208e01351115614fa4578283fd5b614fb58e6101208f01358f01614c47565b9250806101408e01351115614fc8578182fd5b50614fda8d6101408e01358e01614c47565b90509295989b509295989b9093969950565b600060208284031215614ffd578081fd5b5035919050565b60008060408385031215615016578182fd5b823591506020830135614d1081615f08565b60008060006060848603121561503c578081fd5b833592506020840135614d4a81615f08565b600080600080600060608688031215615065578283fd5b85359450602086013567ffffffffffffffff80821115615083578485fd5b61508f89838a01614ba7565b909650945060408801359150808211156150a7578283fd5b506150b488828901614ba7565b969995985093965092949392505050565b600080604083850312156150d7578182fd5b8235915060208301358015158114614d10578182fd5b600080604083850312156150ff578182fd5b823591506151108460208501614cb0565b90509250929050565b6000806040838503121561512b578182fd5b50508035926020909101359150565b60008151808452615152816020860160208601615edc565b601f01601f19169290920160200192915050565b6001600160801b03169052565b60008251615185818460208701615edc565b9190910192915050565b60008084546001808216600081146151ae57600181146151c5576151f4565b60ff198316865260028304607f16860193506151f4565b600283048886526020808720875b838110156151ec5781548a8201529085019082016151d3565b505050860193505b5050508351615207818360208801615edc565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906152579083018461513a565b9695505050505050565b6001600160a01b0393909316835260208301919091526001600160801b0316604082015260600190565b6001600160a01b039390931683526020830191909152604082015260600190565b6020808252825182820181905260009190848201906040850190845b818110156152ed5783516001600160a01b0316835292840192918401916001016152c8565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156152ed57835183529284019291840191600101615315565b901515815260200190565b6000602082526116e7602083018461513a565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526022908201527f4e4654426f7865733a204d6f756c6420494420646f6573206e6f7420657869736040820152613a1760f11b606082015260800190565b6020808252818101527f4e4654426f7865733a206d656d626572732065786973747320616c7265616479604082015260600190565b60208082526027908201527f4e4654426f7865733a2061727261797320617265206e6f74206f662073616d65604082015266040d8cadccee8d60cb1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526010908201526f4e4654426f7865733a2021707269636560801b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526018908201527f4e4654426f7865733a20546f6f206d616e7920626f7865730000000000000000604082015260600190565b60208082526014908201527327232a2137bc32b99d1024a21010b2bc34b9ba1760611b604082015260600190565b60208082526021908201527f4e4654426f7865733a204d6f756c6420494420646f6573206e6f7420657869736040820152601d60fa1b606082015260800190565b6020808252601f908201527f4e4654426f7865733a20426f7820646973747269627574696f6e206f76657200604082015260600190565b60208082526016908201527527232a2137bc32b99d1039bab690109e90189818129760511b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f4e4654426f7865733a20426f78206973206c6f636b6564000000000000000000604082015260600190565b6020808252601b908201527f4e4654426f7865733a2057726f6e672061727261792073697a652e0000000000604082015260600190565b6020808252601b908201527f4e5446426f7865733a20426f78206973207374696c6c206c6976650000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4e4654426f7865733a2043616e6e6f74207265736572766520616e796d6f7265604082015260600190565b6020808252601b908201527f4e4654426f7865733a2063616e6e6f7420646973747269627574650000000000604082015260600190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601d908201527f4e4654426f7865733a204275792077696e646f77206e6f74206f70656e000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600e908201526d4e4654426f7865733a202162757960901b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526024908201527f4e4654426f7865733a204e6f7420617574686f726973656420746f20657865636040820152633aba329760e11b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526022908201527f4e4654426f7865733a207368617265206d7573742062652062656c6f77203130604082015261030360f41b606082015260800190565b6020808252602e908201527f4e4654426f7865733a2043616e6e6f74206d696e74206d6f726520766f75636860408201526d657273207468616e20626f78657360901b606082015260800190565b90815260200190565b9182526001600160a01b0316602082015260400190565b918252602082015260400190565b60006101008a83528960208401526001600160801b0389166040840152806060840152615d358184018961513a565b90508281036080840152615d49818861513a565b905082810360a0840152615d5d818761513a565b905082810360c0840152615d71818661513a565b905082810360e0840152615d85818561513a565b9b9a5050505050505050505050565b600061016060ff8e16835260ff8d1660208401526001600160801b038c166040840152615dc4606084018c615166565b615dd1608084018b615166565b8860a08401528060c0840152615de98184018961513a565b905082810360e0840152615dfd818861513a565b9050828103610100840152615e12818761513a565b9050828103610120840152615e27818661513a565b9050828103610140840152615e3c818561513a565b9e9d5050505050505050505050505050565b6000808335601e19843603018112615e64578283fd5b83018035915067ffffffffffffffff821115615e7e578283fd5b6020908101925081023603821315613fa357600080fd5b60405181810167ffffffffffffffff81118282101715615eb457600080fd5b604052919050565b600067ffffffffffffffff821115615ed2578081fd5b5060209081020190565b60005b83811015615ef7578181015183820152602001615edf565b83811115611f0b5750506000910152565b6001600160a01b0381168114612f9057600080fd5b6001600160e01b031981168114612f9057600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212207144684dcf7292176db6e28790f99078b3a2a6f490b8c51310026dea6f06b20d64736f6c634300060c0033
Deployed Bytecode Sourcemap
63208:12908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10655:142;;;;;;;;;;-1:-1:-1;10655:142:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43334:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46021:213::-;;;;;;;;;;-1:-1:-1;46021:213:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45565:390::-;;;;;;;;;;-1:-1:-1;45565:390:0;;;;;:::i;:::-;;:::i;:::-;;63005:191;;;;;;;;;;-1:-1:-1;63005:191:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72520:215::-;;;;;;;;;;-1:-1:-1;72520:215:0;;;;;:::i;:::-;;:::i;75131:123::-;;;;;;;;;;-1:-1:-1;75131:123:0;;;;;:::i;:::-;;:::i;66285:243::-;;;;;;;;;;-1:-1:-1;66285:243:0;;;;;:::i;:::-;;:::i;45059:203::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;64248:29::-;;;;;;;;;;-1:-1:-1;64248:29:0;;;;;:::i;:::-;;:::i;46895:305::-;;;;;;;;;;-1:-1:-1;46895:305:0;;;;;:::i;:::-;;:::i;70538:667::-;;;;;;:::i;:::-;;:::i;75006:117::-;;;;;;;;;;-1:-1:-1;75006:117:0;;;;;:::i;:::-;;:::i;68542:295::-;;;;;;;;;;-1:-1:-1;68542:295:0;;;;;:::i;:::-;;:::i;44829:154::-;;;;;;;;;;-1:-1:-1;44829:154:0;;;;;:::i;:::-;;:::i;64145:49::-;;;;;;;;;;-1:-1:-1;64145:49:0;;;;;:::i;:::-;;:::i;63946:45::-;;;;;;;;;;-1:-1:-1;63946:45:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;66070:210::-;;;;;;;;;;-1:-1:-1;66070:210:0;;;;;:::i;:::-;;:::i;63761:30::-;;;;;;;;;;;;;:::i;64083:58::-;;;;;;;;;;-1:-1:-1;64083:58:0;;;;;:::i;:::-;;:::i;63720:37::-;;;;;;;;;;;;;:::i;47271:151::-;;;;;;;;;;-1:-1:-1;47271:151:0;;;;;:::i;:::-;;:::i;64036:43::-;;;;;;;;;;-1:-1:-1;64036:43:0;;;;;:::i;:::-;;:::i;63995:37::-;;;;;;;;;;-1:-1:-1;63995:37:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;45339:164::-;;;;;;;;;;-1:-1:-1;45339:164:0;;;;;:::i;:::-;;:::i;74762:114::-;;;;;;;;;;-1:-1:-1;74762:114:0;;;;;:::i;:::-;;:::i;43098:169::-;;;;;;;;;;-1:-1:-1;43098:169:0;;;;;:::i;:::-;;:::i;63829:23::-;;;;;;;;;;;;;:::i;72972:75::-;;;;;;;;;;-1:-1:-1;72972:75:0;;;;;:::i;:::-;;:::i;44656:89::-;;;;;;;;;;;;;:::i;42821:215::-;;;;;;;;;;-1:-1:-1;42821:215:0;;;;;:::i;:::-;;:::i;57605:148::-;;;;;;;;;;;;;:::i;68008:528::-;;;;;;;;;;-1:-1:-1;68008:528:0;;;;;:::i;:::-;;:::i;74881:120::-;;;;;;;;;;-1:-1:-1;74881:120:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63858:43::-;;;;;;;;;;;;;:::i;75266:123::-;;;;;;;;;;-1:-1:-1;75266:123:0;;;;;:::i;:::-;;:::i;71318:862::-;;;;;;;;;;-1:-1:-1;71318:862:0;;;;;:::i;:::-;;:::i;56963:79::-;;;;;;;;;;;;;:::i;43495:96::-;;;;;;;;;;;;;:::i;66984:1019::-;;;;;;;;;;-1:-1:-1;66984:1019:0;;;;;:::i;:::-;;:::i;65953:112::-;;;;;;;;;;-1:-1:-1;65953:112:0;;;;;:::i;:::-;;:::i;66795:184::-;;;;;;;;;;-1:-1:-1;66795:184:0;;;;;:::i;:::-;;:::i;46306:295::-;;;;;;;;;;-1:-1:-1;46306:295:0;;;;;:::i;:::-;;:::i;64305:48::-;;;;;;;;;;-1:-1:-1;64305:48:0;;;;;:::i;:::-;;:::i;68842:919::-;;;;;;:::i;:::-;;:::i;71210:103::-;;;;;;;;;;;;;:::i;75397:485::-;;;;;;;;;;-1:-1:-1;75397:485:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;63795:30::-;;;;;;;;;;;;;:::i;47493:285::-;;;;;;;;;;-1:-1:-1;47493:285:0;;;;;:::i;:::-;;:::i;62756:237::-;;;;;;;;;;-1:-1:-1;62756:237:0;;;;;:::i;:::-;;:::i;65716:87::-;;;;;;;;;;-1:-1:-1;65716:87:0;;;;;:::i;:::-;;:::i;43662:755::-;;;;;;;;;;-1:-1:-1;43662:755:0;;;;;:::i;:::-;;:::i;72740:116::-;;;;;;;;;;-1:-1:-1;72740:116:0;;;;;:::i;:::-;;:::i;72861:106::-;;;;;;;;;;-1:-1:-1;72861:106:0;;;;;:::i;:::-;;:::i;46672:156::-;;;;;;;;;;-1:-1:-1;46672:156:0;;;;;:::i;:::-;;:::i;66533:257::-;;;;;;;;;;-1:-1:-1;66533:257:0;;;;;:::i;:::-;;:::i;57908:244::-;;;;;;;;;;-1:-1:-1;57908:244:0;;;;;:::i;:::-;;:::i;73052:611::-;;;;;;;;;;-1:-1:-1;73052:611:0;;;;;:::i;:::-;;:::i;64200:44::-;;;;;;;;;;-1:-1:-1;64200:44:0;;;;;:::i;:::-;;:::i;73668:730::-;;;;;;;;;;-1:-1:-1;73668:730:0;;;;;:::i;:::-;;:::i;69766:767::-;;;;;;:::i;:::-;;:::i;10655:142::-;-1:-1:-1;;;;;;10756:33:0;;10732:4;10756:33;;;;;;;;;;;;;10655:142;;;;:::o;43334:92::-;43413:5;43406:12;;;;;;;;-1:-1:-1;;43406:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43380:13;;43406:12;;43413:5;;43406:12;;43413:5;43406:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43334:92;:::o;46021:213::-;46089:7;46117:16;46125:7;46117;:16::i;:::-;46109:73;;;;-1:-1:-1;;;46109:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;46202:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46202:24:0;;46021:213::o;45565:390::-;45646:13;45662:16;45670:7;45662;:16::i;:::-;45646:32;;45703:5;-1:-1:-1;;;;;45697:11:0;:2;-1:-1:-1;;;;;45697:11:0;;;45689:57;;;;-1:-1:-1;;;45689:57:0;;;;;;;:::i;:::-;45783:5;-1:-1:-1;;;;;45767:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45767:21:0;;:62;;;;45792:37;45809:5;45816:12;:10;:12::i;45792:37::-;45759:154;;;;-1:-1:-1;;;45759:154:0;;;;;;;:::i;:::-;45926:21;45935:2;45939:7;45926:8;:21::i;:::-;45565:390;;;:::o;63005:191::-;63107:13;;;63118:1;63107:13;;;;;;;;;63057;;;;63107;;;;;;;;;;;;-1:-1:-1;63107:13:0;63082:38;;63145:16;;63131:8;63140:1;63131:11;;;;;;;;;;;;;;;;;:30;63180:8;63005:191;-1:-1:-1;;63005:191:0:o;72520:215::-;65860:10;65843:28;;;;:16;:28;;;;;;;;;:53;;;65889:7;:5;:7::i;:::-;-1:-1:-1;;;;;65875:21:0;:10;-1:-1:-1;;;;;65875:21:0;;65843:53;65835:102;;;;-1:-1:-1;;;65835:102:0;;;;;;;:::i;:::-;72576:25:::1;72604:14:::0;;;:9:::1;:14;::::0;;;;72638:13:::1;::::0;72631:20;::::1;::::0;::::1;::::0;:31:::1;;;72661:1;72655:3;:7;72631:31;72623:78;;;;-1:-1:-1::0;;;72623:78:0::1;;;;;;;:::i;:::-;72706:24:::0;;-1:-1:-1;;72706:24:0::1;72728:1;72706:24;::::0;;-1:-1:-1;72520:215:0:o;75131:123::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;75218:11:::1;:28:::0;;-1:-1:-1;;;;;;75218:28:0::1;-1:-1:-1::0;;;;;75218:28:0;;;::::1;::::0;;;::::1;::::0;;75131:123::o;66285:243::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;66365:9:::1;66360:164;66384:4;:11:::0;66380:15;::::1;66360:164;;;66421:7;-1:-1:-1::0;;;;;66410:18:0::1;:4;66415:1;66410:7;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;66410:7:0::1;:18;66406:118;;;-1:-1:-1::0;;;;;66444:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;66437:25;66479:4:::1;66484:11:::0;;-1:-1:-1;;66484:15:0;;;66479:21;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;66469:4:::1;:7:::0;;-1:-1:-1;;;;;66479:21:0;;::::1;::::0;66474:1;;66469:7;::::1;;;;;;;;;;;;;:31;;;;;-1:-1:-1::0;;;;;66469:31:0::1;;;;;-1:-1:-1::0;;;;;66469:31:0::1;;;;;;66507:4;:10;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;66507:10:0;;;;;-1:-1:-1;;;;;;66507:10:0::1;::::0;;;;;66406:118:::1;66397:3;;66360:164;;;;66285:243:::0;:::o;45059:203::-;45112:7;45233:21;:12;:19;:21::i;:::-;45226:28;;45059:203;:::o;64248:29::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64248:29:0;;-1:-1:-1;64248:29:0;:::o;46895:305::-;47056:41;47075:12;:10;:12::i;:::-;47089:7;47056:18;:41::i;:::-;47048:103;;;;-1:-1:-1;;;47048:103:0;;;;;;;:::i;:::-;47164:28;47174:4;47180:2;47184:7;47164:9;:28::i;70538:667::-;70614:24;;:::i;:::-;70641:14;;;;:9;:14;;;;;;;;;70614:41;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70614:41:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70641:14;;70614:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70614:41:0;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70614:41:0;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70614:41:0;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70614:41:0;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;70614:41:0;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;-1:-1:-1;;70614:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70675:13;;70668:3;:20;;:31;;;;;70698:1;70692:3;:7;70668:31;70660:77;;;;-1:-1:-1;;;70660:77:0;;;;;;;:::i;:::-;70750:28;;;;:23;:28;;;;;;:33;70742:78;;;;-1:-1:-1;;;70742:78:0;;;;;;;:::i;:::-;70896:9;70833:59;63897:4;70833:41;70867:6;;70833:29;70852:9;70833:8;:14;;;:18;;:29;;;;:::i;:::-;:33;;:41::i;:::-;:45;;:59::i;:::-;:72;70825:101;;;;-1:-1:-1;;;70825:101:0;;;;;;;:::i;:::-;70933:10;;:47;;-1:-1:-1;;;70933:47:0;;-1:-1:-1;;;;;70933:10:0;;;;:19;;:47;;70953:10;;70965:3;;70970:9;;70933:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70985:10:0;;:58;;-1:-1:-1;;;70985:58:0;;-1:-1:-1;;;;;70985:10:0;;;;-1:-1:-1;70985:18:0;;-1:-1:-1;70985:58:0;;71004:10;;63934:6;71016:15;;;71033:9;;70985:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71053:9;71048:78;71072:9;71068:1;:13;71048:78;;;71092:17;;;;:12;:17;;;;;;;:34;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;71092:34:0;71115:10;71092:34;;;71083:3;71048:78;;;;71142:58;71155:44;71169:29;71188:9;71169:8;:14;;;:18;;:29;;;;:::i;:::-;71155:9;;:13;:44::i;:::-;71142:8;;;:12;:58::i;:::-;71131:8;:69;-1:-1:-1;;;70538:667:0:o;75006:117::-;75097:14;;;;:9;:14;;;;;;;;;:21;;75090:28;;;;;;;;;;;;;;;;;75067:16;;75090:28;;;75097:21;75090:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75006:117;;;:::o;68542:295::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;68640:25:::1;68668:14:::0;;;:9:::1;:14;::::0;;;;68702:13:::1;::::0;68695:20;::::1;::::0;::::1;::::0;:31:::1;;;68725:1;68719:3;:7;68695:31;68687:77;;;;-1:-1:-1::0;;;68687:77:0::1;;;;;;;:::i;:::-;68769:16;::::0;::::1;:30:::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;68769:30:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;68769:30:0::1;-1:-1:-1::0;;;;;68769:30:0;;;::::1;::::0;;;::::1;::::0;;;68804:15:::1;::::0;;::::1;:28:::0;;;;::::1;::::0;;;;;;;::::1;::::0;-1:-1:-1;68542:295:0:o;44829:154::-;-1:-1:-1;;;;;44945:20:0;;44918:7;44945:20;;;:13;:20;;;;;:30;;44969:5;44945:23;:30::i;:::-;44938:37;;44829:154;;;;;:::o;64145:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64145:49:0;;-1:-1:-1;64145:49:0;;-1:-1:-1;64145:49:0:o;63946:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63946:45:0;;;;;;;;-1:-1:-1;;;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;63946:45:0;;;;;;;;;;;;;;;;-1:-1:-1;;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;63946:45:0;;;;;;;;;;;;;;;;-1:-1:-1;;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;63946:45:0;;;;;;;;;;;;;;;;-1:-1:-1;;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;63946:45:0;;;;;;;;;;;;;;;;-1:-1:-1;;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63946:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66070:210::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;66147:9:::1;66142:110;66166:4;:11:::0;66162:15;::::1;66142:110;;;66208:4;66213:1;66208:7;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;66197:18:0;;::::1;66208:7:::0;::::1;66197:18;;66188:64;;;;-1:-1:-1::0;;;66188:64:0::1;;;;;;;:::i;:::-;66179:3;;66142:110;;;-1:-1:-1::0;66257:4:0::1;:18:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;66257:18:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;66257:18:0::1;-1:-1:-1::0;;;;;66257:18:0;;;::::1;::::0;;;::::1;::::0;;66070:210::o;63761:30::-;;;-1:-1:-1;;;;;63761:30:0;;:::o;64083:58::-;;;;;;;;;;;;;:::o;63720:37::-;;;-1:-1:-1;;;;;63720:37:0;;:::o;47271:151::-;47375:39;47392:4;47398:2;47402:7;47375:39;;;;;;;;;;;;:16;:39::i;64036:43::-;;;;;;;;;;;;;;;:::o;63995:37::-;;;;;;;;;;;;;;;;;;;:::o;45339:164::-;45406:7;;45448:22;:12;45464:5;45448:15;:22::i;:::-;-1:-1:-1;45426:44:0;45339:164;-1:-1:-1;;;45339:164:0:o;74762:114::-;74826:7;74847:17;;;:12;:17;;;;;:24;;74762:114::o;43098:169::-;43162:7;43189:70;43206:7;43189:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;63829:23::-;;;;:::o;72972:75::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;73029:6:::1;:13:::0;72972:75::o;44656:89::-;44729:8;44722:15;;;;;;;;-1:-1:-1;;44722:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44696:13;;44722:15;;44729:8;;44722:15;;44729:8;44722:15;;;;;;;;;;;;;;;;;;;;;;;;42821:215;42885:7;-1:-1:-1;;;;;42913:19:0;;42905:74;;;;-1:-1:-1;;;42905:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42999:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;57605:148::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;57696:6:::1;::::0;57675:40:::1;::::0;57712:1:::1;::::0;-1:-1:-1;;;;;57696:6:0::1;::::0;57675:40:::1;::::0;57712:1;;57675:40:::1;57726:6;:19:::0;;-1:-1:-1;;;;;;57726:19:0::1;::::0;;57605:148::o;68008:528::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;68092:25:::1;68120:14:::0;;;:9:::1;:14;::::0;;;;68154:13:::1;::::0;68147:20;::::1;::::0;::::1;::::0;:31:::1;;;68177:1;68171:3;:7;68147:31;68139:78;;;;-1:-1:-1::0;;;68139:78:0::1;;;;;;;:::i;:::-;68227:9;68222:310;68246:16;::::0;::::1;:23:::0;68242:27;::::1;68222:310;;;68309:7;-1:-1:-1::0;;;;;68286:30:0::1;:8;:16;;68303:1;68286:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;68286:19:0::1;:30;68282:245;;;68347:16;::::0;::::1;68364:23:::0;;-1:-1:-1;;68364:27:0;;;68347:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;68325:16:::1;::::0;::::1;:19:::0;;-1:-1:-1;;;;;68347:45:0;;::::1;::::0;68342:1;;68325:19;::::1;;;;;;;;;;;;;:67;;;;;-1:-1:-1::0;;;;;68325:67:0::1;;;;;-1:-1:-1::0;;;;;68325:67:0::1;;;;;;68399:8;:16;;:22;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;68399:22:0;;;;;-1:-1:-1;;;;;;68399:22:0::1;::::0;;;;;;;;68449:15:::1;::::0;::::1;68465:22:::0;;68449:15;;68465:26;;;68449:43;::::1;;;;;;;;;;;;;68428:8;:15;;68444:1;68428:18;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:64:::0;68499:15:::1;::::0;::::1;:21:::0;;;::::1;;;;;;;;;;;;;;;;;;;;;68282:245;68271:3;;68222:310;;;;57245:1;68008:528:::0;;:::o;74881:120::-;74974:14;;;;:9;:14;;;;;;;;;:22;;74967:29;;;;;;;;;;;;;;;;;74936:24;;74967:29;;;74974:22;74967:29;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;74967:29:0;;;;;;;;;;;;;;;;;;;;;;74881:120;;;:::o;63858:43::-;63897:4;63858:43;:::o;75266:123::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;75347:16:::1;:34:::0;75266:123::o;71318:862::-;65860:10;65843:28;;;;:16;:28;;;;;;;;;:53;;;65889:7;:5;:7::i;:::-;-1:-1:-1;;;;;65875:21:0;:10;-1:-1:-1;;;;;65875:21:0;;65843:53;65835:102;;;;-1:-1:-1;;;65835:102:0;;;;;;;:::i;:::-;71421:13:::1;;71414:3;:20;;:31;;;;;71444:1;71438:3;:7;71414:31;71406:77;;;;-1:-1:-1::0;;;71406:77:0::1;;;;;;;:::i;:::-;71497:16;::::0;;;:11:::1;:16;::::0;;;;;::::1;;71496:17;71488:53;;;;-1:-1:-1::0;;;71488:53:0::1;;;;;;;:::i;:::-;71554:28;::::0;;;:23:::1;:28;::::0;;;;;:33;71546:77:::1;;;;-1:-1:-1::0;;;71546:77:0::1;;;;;;;:::i;:::-;71630:25;71658:14:::0;;;:9:::1;:14;::::0;;;;;;;71702:28:::1;::::0;::::1;::::0;71752:12:::1;:17:::0;;;;;;:24;71658:14;;-1:-1:-1;;;71702:28:0;;::::1;-1:-1:-1::0;;;;;71702:28:0::1;::::0;71799:172:::1;71815:1;71806:6;:10;:25;;;;;71830:1;71820:7;:11;71806:25;71799:172;;;71839:59;71844:14;71860:3;71865:1;71868:12;:17;71881:3;71868:17;;;;;;;;;;;71895:1;71886:6;:10;71868:29;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;71868:29:0::1;71839:4;:59::i;:::-;71904:17;::::0;;;:12:::1;:17;::::0;;;;:23;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;71904:23:0;;;;;-1:-1:-1;;;;;;71904:23:0::1;::::0;;;;;;;;71947:9;;;;71933:8;;;;;71904:23:::1;71962:3;71799:172;;;71975:28;::::0;::::1;:42:::0;;-1:-1:-1;;;;;;;;71975:42:0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;72048:19;;72026:18;;::::1;::::0;::::1;72048:19:::0;;;::::1;::::0;;::::1;72026:41;72022:75;;;72073:24:::0;;-1:-1:-1;;72073:24:0::1;72095:1;72073:24;::::0;;72022:75:::1;72106:11:::0;72102:73:::1;;72123:28;::::0;;;:23:::1;:28;::::0;;;;72172:3:::1;72154:15;:21;72123:52:::0;;72102:73:::1;65942:1;;;;71318:862:::0;;:::o;56963:79::-;57028:6;;-1:-1:-1;;;;;57028:6:0;56963:79;:::o;43495:96::-;43576:7;43569:14;;;;;;;;-1:-1:-1;;43569:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43543:13;;43569:14;;43576:7;;43569:14;;43576:7;43569:14;;;;;;;;;;;;;;;;;;;;;;;;66984:1019;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;67350:7:::1;:14;67331:8;:15;:33;67323:85;;;;-1:-1:-1::0;;;67323:85:0::1;;;;;;;:::i;:::-;67433:4;-1:-1:-1::0;;;;;67421:16:0::1;:8;-1:-1:-1::0;;;;;67421:16:0::1;;;67413:75;;;;-1:-1:-1::0;;;67413:75:0::1;;;;;;;:::i;:::-;67524:316;;;;;;;;67551:1;67524:316;;;;;;67573:1;67524:316;;;;;;67593:4;-1:-1:-1::0;;;;;67524:316:0::1;;;;;67617:13;-1:-1:-1::0;;;;;67524:316:0::1;;;;;67657:1;-1:-1:-1::0;;;;;67524:316:0::1;;;;;67671:6;67524:316;;;;67692:8;67524:316;;;;67714:7;67524:316;;;;67733:5;67524:316;;;;67752:7;67524:316;;;;67772:6;67524:316;;;;67794:9;67524:316;;;;67822:12;67524:316;;::::0;67493:9:::1;:28;67503:13;;67519:1;67503:17;67493:28;;;;;;;;;;;:347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;67493:347:0::1;;;;;-1:-1:-1::0;;;;;67493:347:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;67493:347:0::1;;;;;-1:-1:-1::0;;;;;67493:347:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;67493:347:0::1;;;;;-1:-1:-1::0;;;;;67493:347:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;67493:347:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;67493:347:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;67493:347:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;67493:347:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;67493:347:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;67493:347:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;67845:13:0::1;:15:::0;;::::1;::::0;;::::1;::::0;;;:13:::1;67865:26:::0;;;:11:::1;:26;::::0;;;;;;:33;;-1:-1:-1;;67865:33:0::1;::::0;;::::1;::::0;;;67903:10:::1;::::0;67934:13;;67903:55;;-1:-1:-1;;;67903:55:0;;-1:-1:-1;;;;;67903:10:0;;::::1;::::0;-1:-1:-1;67903:18:0::1;::::0;:55:::1;::::0;67922:10:::1;::::0;67949:8;;67903:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67968:30;67984:13;;67968:30;;;;;;:::i;:::-;;;;;;;;66984:1019:::0;;;;;;;;;;;:::o;65953:112::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66026:25:0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:34;;-1:-1:-1;;66026:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65953:112::o;66795:184::-;65860:10;65843:28;;;;:16;:28;;;;;;;;;:53;;;65889:7;:5;:7::i;:::-;-1:-1:-1;;;;;65875:21:0;:10;-1:-1:-1;;;;;65875:21:0;;65843:53;65835:102;;;;-1:-1:-1;;;65835:102:0;;;;;;;:::i;:::-;66882:13:::1;;66875:3;:20;;:31;;;;;66905:1;66899:3;:7;66875:31;66867:78;;;;-1:-1:-1::0;;;66867:78:0::1;;;;;;;:::i;:::-;66950:16;::::0;;;:11:::1;:16;::::0;;;;;:24;;-1:-1:-1;;66950:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66795:184::o;46306:295::-;46421:12;:10;:12::i;:::-;-1:-1:-1;;;;;46409:24:0;:8;-1:-1:-1;;;;;46409:24:0;;;46401:62;;;;-1:-1:-1;;;46401:62:0;;;;;;;:::i;:::-;46521:8;46476:18;:32;46495:12;:10;:12::i;:::-;-1:-1:-1;;;;;46476:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;46476:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;46476:53:0;;;;;;;;;;;46560:12;:10;:12::i;:::-;-1:-1:-1;;;;;46545:48:0;;46584:8;46545:48;;;;;;:::i;:::-;;;;;;;;46306:295;;:::o;64305:48::-;;;;;;;;;;;;;;;:::o;68842:919::-;68918:25;68946:14;;;:9;:14;;;;;68990:28;;;;69037:19;;69076:13;;-1:-1:-1;;;68990:28:0;;;-1:-1:-1;;;;;68990:28:0;;;;69037:19;;;;;;69069:20;;;;;:31;;;69099:1;69093:3;:7;69069:31;69061:77;;;;-1:-1:-1;;;69061:77:0;;;;;;;:::i;:::-;69152:16;;;;:11;:16;;;;;;;;69151:17;69143:53;;;;-1:-1:-1;;;69143:53:0;;;;;;;:::i;:::-;69209:28;;;;:23;:28;;;;;;:33;;;;:83;;-1:-1:-1;69264:28:0;;;;:23;:28;;;;;;69246:15;:46;69209:83;69201:129;;;;-1:-1:-1;;;69201:129:0;;;;;;;:::i;:::-;69343:14;;;;69376:9;;69343:29;;-1:-1:-1;;;;;69343:29:0;;:18;:29::i;:::-;:42;69335:71;;;;-1:-1:-1;;;69335:71:0;;;;;;;:::i;:::-;69449:3;-1:-1:-1;;;;;69419:33:0;69436:9;69419:14;:26;-1:-1:-1;;;;;69419:33:0;;;69411:70;;;;-1:-1:-1;;;69411:70:0;;;;;;;:::i;:::-;69507:21;;;;-1:-1:-1;;;;;69507:21:0;;;69494:34;;;;;69486:61;;;;-1:-1:-1;;;69486:61:0;;;;;;;:::i;:::-;69559:9;69554:84;69578:9;-1:-1:-1;;;;;69574:13:0;:1;-1:-1:-1;;;;;69574:13:0;;69554:84;;;69598:40;69603:14;69619:3;69624:1;-1:-1:-1;;;;;69598:40:0;69627:10;69598:4;:40::i;:::-;69589:3;;69554:84;;;-1:-1:-1;69643:28:0;;;:41;;-1:-1:-1;;;;;;;;69643:41:0;;;;;;;;;;;;;;;;;;;;69693:26;;;:33;;;;;;69689:67;;;69732:24;;-1:-1:-1;;69732:24:0;69754:1;69732:24;;;69689:67;68842:919;;;;;:::o;71210:103::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;71282:8:::1;::::0;71262:29:::1;::::0;:10:::1;::::0;:29;::::1;;;::::0;::::1;::::0;;;71282:8;71262:10;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;71307:1:0::1;71296:8;:12:::0;71210:103::o;75397:485::-;75463:13;75478:18;75498:14;75514:21;75537:23;75562:22;75586:25;75613:28;75654:14;;:::i;:::-;-1:-1:-1;75671:10:0;;;;:5;:10;;;;;;;;;75654:27;;;;;;;;;;;;;;;;;;;75692:21;;:::i;:::-;75726:11;;75716:22;;;;:9;:22;;;;;;;;;75692:46;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;75692:46:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75716:22;;75692:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75692:46:0;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75692:46:0;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75692:46:0;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75692:46:0;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75692:46:0;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;-1:-1:-1;;75692:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75757:3;:11;;;75770:3;:11;;;75783:5;:16;;;75801:5;:10;;;75813:5;:12;;;75827:5;:11;;;75840:5;:14;;;75856:5;:17;;;75749:125;;;;;;;;;;;;;;;;;;75397:485;;;;;;;;;:::o;63795:30::-;;;;:::o;47493:285::-;47625:41;47644:12;:10;:12::i;:::-;47658:7;47625:18;:41::i;:::-;47617:103;;;;-1:-1:-1;;;47617:103:0;;;;;;;:::i;:::-;47731:39;47745:4;47751:2;47755:7;47764:5;47731:13;:39::i;62756:237::-;62891:24;;;62913:1;62891:24;;;;;;;;;62815;;;;62891;;;;;;;;;;-1:-1:-1;;62944:11:0;;62926:15;;;;-1:-1:-1;;;;;;62944:11:0;;62926:15;;-1:-1:-1;62944:11:0;;62926:15;;;;-1:-1:-1;;;;;62926:29:0;;;:15;;;;;;;;;;;:29;62973:12;-1:-1:-1;62756:237:0;;;:::o;65716:87::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;65779:19:::1;65791:6;65779:11;:19::i;:::-;65716:87:::0;:::o;43662:755::-;43727:13;43761:16;43769:7;43761;:16::i;:::-;43753:76;;;;-1:-1:-1;;;43753:76:0;;;;;;;:::i;:::-;43868:19;;;;:10;:19;;;;;;;;;43842:45;;;;;;-1:-1:-1;;43842:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;43868:19;43842:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43969:8:0;43963:22;43842:45;;-1:-1:-1;;;;43963:22:0;-1:-1:-1;;43963:22:0;;;;;;;;;;;43959:76;;44014:9;-1:-1:-1;44007:16:0;;43959:76;44139:23;;:27;44135:112;;44214:8;44224:9;44197:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44183:52;;;;;44135:112;44379:8;44389:18;:7;:16;:18::i;:::-;44362:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44348:61;;;43662:755;;;:::o;72740:116::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;72809:14:::1;:42:::0;;-1:-1:-1;;;;;;72809:42:0::1;-1:-1:-1::0;;;;;72809:42:0;;;::::1;::::0;;;::::1;::::0;;72740:116::o;72861:106::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;72927:10:::1;:35:::0;;-1:-1:-1;;;;;;72927:35:0::1;-1:-1:-1::0;;;;;72927:35:0;;;::::1;::::0;;;::::1;::::0;;72861:106::o;46672:156::-;-1:-1:-1;;;;;46785:25:0;;;46761:4;46785:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46672:156::o;66533:257::-;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;63897:4:::1;66617:6;:22;;66609:69;;;;-1:-1:-1::0;;;66609:69:0::1;;;;;;;:::i;:::-;66688:9;66683:102;66707:4;:11:::0;66703:15;::::1;66683:102;;;66744:7;-1:-1:-1::0;;;;;66733:18:0::1;:4;66738:1;66733:7;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;66733:7:0::1;:18;66729:56;;;-1:-1:-1::0;;;;;66758:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;:27;;;66729:56:::1;66720:3;;66683:102;;57908:244:::0;57185:12;:10;:12::i;:::-;57175:6;;-1:-1:-1;;;;;57175:6:0;;;:22;;;57167:67;;;;-1:-1:-1;;;57167:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57997:22:0;::::1;57989:73;;;;-1:-1:-1::0;;;57989:73:0::1;;;;;;;:::i;:::-;58099:6;::::0;58078:38:::1;::::0;-1:-1:-1;;;;;58078:38:0;;::::1;::::0;58099:6:::1;::::0;58078:38:::1;::::0;58099:6:::1;::::0;58078:38:::1;58127:6;:17:::0;;-1:-1:-1;;;;;;58127:17:0::1;-1:-1:-1::0;;;;;58127:17:0;;;::::1;::::0;;;::::1;::::0;;57908:244::o;73052:611::-;65860:10;65843:28;;;;:16;:28;;;;;;;;;:53;;;65889:7;:5;:7::i;:::-;-1:-1:-1;;;;;65875:21:0;:10;-1:-1:-1;;;;;65875:21:0;;65843:53;65835:102;;;;-1:-1:-1;;;65835:102:0;;;;;;;:::i;:::-;73177:24:::1;;:::i;:::-;73203:14;::::0;;;:9:::1;:14;::::0;;;;;;;;73177:40;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;;::::0;;::::1;::::0;-1:-1:-1;;;;;73177:40:0;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;;;73177:40:0;::::1;;::::0;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;;;;73203:14;;73177:40;;;;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;73177:40:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;73177:40:0;;;-1:-1:-1;;73177:40:0::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;;::::0;::::1;;;;-1:-1:-1::0;;73177:40:0;;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;73177:40:0;;;-1:-1:-1;;73177:40:0::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;;::::0;::::1;;;;-1:-1:-1::0;;73177:40:0;;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;73177:40:0;;;-1:-1:-1;;73177:40:0::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;;::::0;::::1;;;;-1:-1:-1::0;;73177:40:0;;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;73177:40:0;;;-1:-1:-1;;73177:40:0::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;;::::0;::::1;;;;-1:-1:-1::0;;73177:40:0;;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;73177:40:0;;;-1:-1:-1;;73177:40:0::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;;::::0;::::1;;;;-1:-1:-1::0;;73177:40:0;;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;73230:8;:13;;;:18;;73247:1;73230:18;73222:58;;;;-1:-1:-1::0;;;73222:58:0::1;;;;;;;:::i;:::-;73319:4:::0;73294:11;;73306:1:::1;73294:14:::0;::::1;;;;;;;;;;;;;;;:::i;:::-;:21;;:36;73285:77;;;;-1:-1:-1::0;;;73285:77:0::1;;;;;;;:::i;:::-;73398:9;73393:218;73413:22:::0;;::::1;73393:218;;;73497:9;73492:113;73516:11;;73528:1;73516:14;;;;;;;;;;;;;;;;;;:::i;:::-;:21;;73511:1;:26;73492:113;;;73549:14;::::0;-1:-1:-1;;;;;73549:14:0::1;:28;73578:4:::0;;73583:1;73578:7;;::::1;;;;;;;;;;;73587:11;;73599:1;73587:14;;;;;;;;;;;;;;;;;;:::i;:::-;73602:1;73587:17;;;;;;;;;;;;;;;;;;;;:::i;:::-;73549:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;73539:3:0::1;::::0;;::::1;::::0;-1:-1:-1;73492:113:0::1;::::0;-1:-1:-1;73492:113:0::1;;-1:-1:-1::0;73437:3:0::1;;73393:218;;;-1:-1:-1::0;73620:38:0::1;::::0;73634:3;;73620:38:::1;::::0;::::1;::::0;73639:11;;73620:38:::1;:::i;:::-;;;;;;;;65942:1;73052:611:::0;;;;;:::o;64200:44::-;;;;;;;;;;;;;:::o;73668:730::-;73721:25;73748:14;;;:9;:14;;;;;73782:13;;73775:20;;;;;:31;;;73805:1;73799:3;:7;73775:31;73767:64;;;;-1:-1:-1;;;73767:64:0;;;;;;;:::i;:::-;73844:13;;;;;:18;:42;;;;-1:-1:-1;73866:15:0;;;;;;;:20;73844:42;73836:83;;;;-1:-1:-1;;;73836:83:0;;;;;;;:::i;:::-;73932:10;73938:3;73932:5;:10::i;:::-;73924:45;;;;-1:-1:-1;;;73924:45:0;;;;;;;:::i;:::-;73976:19;;-1:-1:-1;;73976:19:0;;;;;74056:14;;;;73994:1;74022:28;;;73976:15;;74014:57;;-1:-1:-1;;;;;;;;74022:28:0;;;;;74014:41;:57::i;:::-;74000:71;-1:-1:-1;74076:13:0;;74094:136;74118:4;:11;74114:15;;74094:136;;;74150:45;63897:4;74150:27;74158:9;:18;74168:4;74173:1;74168:7;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;74168:7:0;74158:18;;;;;;;;;;;;;74150:3;;:7;:27::i;:45::-;74142:53;;74201:4;74206:1;74201:7;;;;;;;;;;;;;;;;;:23;;-1:-1:-1;;;;;74201:7:0;;;;:23;;;;;74218:5;;74201:23;:7;:23;74218:5;74201:7;:23;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74131:3:0;;74094:136;;;;74239:9;74234:160;74258:16;;;:23;74254:27;;74234:160;;;74302:45;63897:4;74302:27;74310:8;:15;;74326:1;74310:18;;;;;;;;;;;;;;;;74302:3;:7;;:27;;;;:::i;:45::-;74294:53;;74353:8;:16;;74370:1;74353:19;;;;;;;;;;;;;;;;;:35;;-1:-1:-1;;;;;74353:19:0;;;;:35;;;;;74382:5;;74353:35;:19;:35;74382:5;74353:19;:35;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74283:3:0;;74234:160;;69766:767;69850:25;69878:14;;;:9;:14;;;;;69922:28;;;;69969:19;;70008:13;;-1:-1:-1;;;69922:28:0;;;-1:-1:-1;;;;;69922:28:0;;;;69969:19;;;;;;70001:20;;;;;:31;;;70031:1;70025:3;:7;70001:31;69993:77;;;;-1:-1:-1;;;69993:77:0;;;;;;;:::i;:::-;70084:16;;;;:11;:16;;;;;;;;70083:17;70075:53;;;;-1:-1:-1;;;70075:53:0;;;;;;;:::i;:::-;70141:14;;;;70174:9;;70141:29;;-1:-1:-1;;;;;70141:29:0;;:18;:29::i;:::-;:42;70133:71;;;;-1:-1:-1;;;70133:71:0;;;;;;;:::i;:::-;70211:10;;:47;;-1:-1:-1;;;70211:47:0;;-1:-1:-1;;;;;70211:10:0;;;;:19;;:47;;70231:10;;70243:3;;70248:9;;70211:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70263:10:0;;:58;;-1:-1:-1;;;70263:58:0;;-1:-1:-1;;;;;70263:10:0;;;;-1:-1:-1;70263:18:0;;-1:-1:-1;70263:58:0;;70282:10;;63934:6;70294:15;;;70311:9;;70263:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70331:9;70326:84;70350:9;-1:-1:-1;;;;;70346:13:0;:1;-1:-1:-1;;;;;70346:13:0;;70326:84;;;70370:40;70375:14;70391:3;70396:1;-1:-1:-1;;;;;70370:40:0;70399:10;70370:4;:40::i;:::-;70361:3;;70326:84;;49245:119;49302:4;49326:30;:12;49348:7;49326:21;:30::i;1361:106::-;1449:10;1361:106;:::o;55072:158::-;55138:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55138:29:0;-1:-1:-1;;;;;55138:29:0;;;;;;;;:24;;55192:16;55138:24;55192:7;:16::i;:::-;-1:-1:-1;;;;;55183:39:0;;;;;;;;;;;55072:158;;:::o;37838:123::-;37907:7;37934:19;37942:3;37934:7;:19::i;49531:333::-;49616:4;49641:16;49649:7;49641;:16::i;:::-;49633:73;;;;-1:-1:-1;;;49633:73:0;;;;;;;:::i;:::-;49717:13;49733:16;49741:7;49733;:16::i;:::-;49717:32;;49779:5;-1:-1:-1;;;;;49768:16:0;:7;-1:-1:-1;;;;;49768:16:0;;:51;;;;49812:7;-1:-1:-1;;;;;49788:31:0;:20;49800:7;49788:11;:20::i;:::-;-1:-1:-1;;;;;49788:31:0;;49768:51;:87;;;;49823:32;49840:5;49847:7;49823:16;:32::i;:::-;49760:96;49531:333;-1:-1:-1;;;;49531:333:0:o;75887:226::-;75972:14;;:::i;:::-;-1:-1:-1;75989:14:0;;;;:5;:14;;;;;;;;75972:31;;;;;;;;;;;;;;;;;;;;;76017:24;;;:11;:24;;;;;;;;;76016:25;76008:61;;;;-1:-1:-1;;;76008:61:0;;;;;;;:::i;:::-;76074:34;76090:4;76096:2;76100:7;76074:15;:34::i;13614:471::-;13672:7;13917:6;13913:47;;-1:-1:-1;13947:1:0;13940:8;;13913:47;13984:5;;;13988:1;13984;:5;:1;14008:5;;;;;:10;14000:56;;;;-1:-1:-1;;;14000:56:0;;;;;;;:::i;14561:132::-;14619:7;14646:39;14650:1;14653;14646:39;;;;;;;;;;;;;;;;;:3;:39::i;12724:136::-;12782:7;12809:43;12813:1;12816;12809:43;;;;;;;;;;;;;;;;;:3;:43::i;12260:181::-;12318:7;12350:5;;;12374:6;;;;12366:46;;;;-1:-1:-1;;;12366:46:0;;;;;;;:::i;30524:137::-;30595:7;30630:22;30634:3;30646:5;30630:3;:22::i;38300:227::-;38380:7;;;;38440:22;38444:3;38456:5;38440:3;:22::i;:::-;38409:53;;-1:-1:-1;38409:53:0;-1:-1:-1;;;38300:227:0;;;;;;:::o;38962:204::-;39069:7;39112:44;39117:3;39137;39143:12;39112:4;:44::i;:::-;39104:53;-1:-1:-1;38962:204:0;;;;;;:::o;72185:296::-;72312:36;;;;;;;;72316:3;72312:36;;;;72339:4;72321:15;-1:-1:-1;;;;;72321:22:0;;72346:1;72321:26;72312:36;;;72285:5;:24;72291:13;:11;:13::i;:::-;72307:1;72291:17;72285:24;;;;;;;;;;;:63;;;;;;;;;;;;;;;;;;;72384:3;72374:61;72407:4;72389:15;-1:-1:-1;;;;;72389:22:0;;72414:1;72389:26;72417:13;:11;:13::i;:::-;72433:1;72417:17;72374:61;;;;;;;:::i;:::-;;;;;;;;72440:36;72446:10;72458:13;:11;:13::i;:::-;72474:1;72458:17;72440:5;:36::i;48660:272::-;48774:28;48784:4;48790:2;48794:7;48774:9;:28::i;:::-;48821:48;48844:4;48850:2;48854:7;48863:5;48821:22;:48::i;:::-;48813:111;;;;-1:-1:-1;;;48813:111:0;;;;;;;:::i;53795:100::-;53868:19;;;;:8;;:19;;;;;:::i;1872:744::-;1928:13;2149:10;2145:53;;-1:-1:-1;2176:10:0;;;;;;;;;;;;-1:-1:-1;;;2176:10:0;;;;;;2145:53;2223:5;2208:12;2264:78;2271:9;;2264:78;;2297:8;;2328:2;2320:10;;;;2264:78;;;2352:19;2384:6;2374:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2374:17:0;-1:-1:-1;2446:5:0;;-1:-1:-1;2352:39:0;-1:-1:-1;;;2418:10:0;;2462:115;2469:9;;2462:115;;2536:2;2529:4;:9;2524:2;:14;2513:27;;2495:6;2502:7;;;;;;;2495:15;;;;;;;;;;;:45;-1:-1:-1;;;;;2495:45:0;;;;;;;;-1:-1:-1;2563:2:0;2555:10;;;;2462:115;;;-1:-1:-1;2601:6:0;1872:744;-1:-1:-1;;;;1872:744:0:o;74403:354::-;74448:4;74486:14;;;:9;:14;;;;;74448:4;;74523:91;74547:4;:11;74543:15;;74523:91;;;74579:29;74589:9;:18;74599:4;74604:1;74599:7;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;74599:7:0;74589:18;;;;;;;;;;;;;74579:5;;:9;:29::i;:::-;74571:37;-1:-1:-1;74560:3:0;;74523:91;;;;74623:9;74618:102;74642:15;;;:22;74638:26;;74618:102;;;74685:29;74695:8;:15;;74711:1;74695:18;;;;;;;;;;;;;;;;74685:5;:9;;:29;;;;:::i;:::-;74677:37;-1:-1:-1;74666:3:0;;74618:102;;;-1:-1:-1;63897:4:0;74731:21;;74403:354;-1:-1:-1;;;74403:354:0:o;37599:151::-;37683:4;37707:35;37717:3;37737;37707:9;:35::i;35221:110::-;35304:19;;35221:110::o;52620:574::-;52738:4;-1:-1:-1;;;;;52718:24:0;:16;52726:7;52718;:16::i;:::-;-1:-1:-1;;;;;52718:24:0;;52710:78;;;;-1:-1:-1;;;52710:78:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52807:16:0;;52799:65;;;;-1:-1:-1;;;52799:65:0;;;;;;;:::i;:::-;52877:39;52898:4;52904:2;52908:7;52877:20;:39::i;:::-;52981:29;52998:1;53002:7;52981:8;:29::i;:::-;-1:-1:-1;;;;;53023:19:0;;;;;;:13;:19;;;;;:35;;53050:7;53023:26;:35::i;:::-;-1:-1:-1;;;;;;53069:17:0;;;;;;:13;:17;;;;;:30;;53091:7;53069:21;:30::i;:::-;-1:-1:-1;53112:29:0;:12;53129:7;53138:2;53112:16;:29::i;:::-;;53178:7;53174:2;-1:-1:-1;;;;;53159:27:0;53168:4;-1:-1:-1;;;;;53159:27:0;;;;;;;;;;;52620:574;;;:::o;15189:278::-;15275:7;15310:12;15303:5;15295:28;;;;-1:-1:-1;;;15295:28:0;;;;;;;;:::i;:::-;;15334:9;15350:1;15346;:5;;;;;;;15189:278;-1:-1:-1;;;;;15189:278:0:o;13163:192::-;13249:7;13285:12;13277:6;;;;13269:29;;;;-1:-1:-1;;;13269:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;13321:5:0;;;13163:192::o;27188:204::-;27283:18;;27255:7;;27283:26;-1:-1:-1;27275:73:0;;;;-1:-1:-1;;;27275:73:0;;;;;;;:::i;:::-;27366:3;:11;;27378:5;27366:18;;;;;;;;;;;;;;;;27359:25;;27188:204;;;;:::o;35686:279::-;35790:19;;35753:7;;;;35790:27;-1:-1:-1;35782:74:0;;;;-1:-1:-1;;;35782:74:0;;;;;;;:::i;:::-;35869:22;35894:3;:12;;35907:5;35894:19;;;;;;;;;;;;;;;;;;35869:44;;35932:5;:10;;;35944:5;:12;;;35924:33;;;;;35686:279;;;;;:::o;36388:319::-;36482:7;36521:17;;;:12;;;:17;;;;;;36572:12;36557:13;36549:36;;;;-1:-1:-1;;;36549:36:0;;;;;;;;:::i;:::-;;36639:3;:12;;36663:1;36652:8;:12;36639:26;;;;;;;;;;;;;;;;;;:33;;;36632:40;;;36388:319;;;;;:::o;51130:404::-;-1:-1:-1;;;;;51210:16:0;;51202:61;;;;-1:-1:-1;;;51202:61:0;;;;;;;:::i;:::-;51283:16;51291:7;51283;:16::i;:::-;51282:17;51274:58;;;;-1:-1:-1;;;51274:58:0;;;;;;;:::i;:::-;51345:45;51374:1;51378:2;51382:7;51345:20;:45::i;:::-;-1:-1:-1;;;;;51403:17:0;;;;;;:13;:17;;;;;:30;;51425:7;51403:21;:30::i;:::-;-1:-1:-1;51446:29:0;:12;51463:7;51472:2;51446:16;:29::i;:::-;-1:-1:-1;51493:33:0;;51518:7;;-1:-1:-1;;;;;51493:33:0;;;51510:1;;51493:33;;51510:1;;51493:33;51130:404;;:::o;54460:604::-;54581:4;54608:15;:2;-1:-1:-1;;;;;54608:13:0;;:15::i;:::-;54603:60;;-1:-1:-1;54647:4:0;54640:11;;54603:60;54673:23;54699:252;-1:-1:-1;;;54812:12:0;:10;:12::i;:::-;54839:4;54858:7;54880:5;54715:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;54715:181:0;;;;;;;-1:-1:-1;;;;;54715:181:0;;;;;;;;;;;54699:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54699:15:0;;;:252;:15;:252::i;:::-;54673:278;;54962:13;54989:10;54978:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;55029:26:0;-1:-1:-1;;;55029:26:0;;-1:-1:-1;;;54460:604:0;;;;;;:::o;35001:125::-;35072:4;35096:17;;;:12;;;;;:17;;;;;;:22;;;35001:125::o;29611:137::-;29681:4;29705:35;29713:3;29733:5;29705:7;:35::i;29304:131::-;29371:4;29395:32;29400:3;29420:5;29395:4;:32::i;37031:176::-;37120:4;37144:55;37149:3;37169;-1:-1:-1;;;;;37183:14:0;;37144:4;:55::i;17409:422::-;17776:20;17815:8;;;17409:422::o;20327:196::-;20430:12;20462:53;20485:6;20493:4;20499:1;20502:12;20462:22;:53::i;24890:1544::-;24956:4;25095:19;;;:12;;;:19;;;;;;25131:15;;25127:1300;;25566:18;;-1:-1:-1;;25517:14:0;;;;25566:22;;;;25493:21;;25566:3;;:22;;25853;;;;;;;;;;;;;;25833:42;;25999:9;25970:3;:11;;25982:13;25970:26;;;;;;;;;;;;;;;;;;;:38;;;;26076:23;;;26118:1;26076:12;;;:23;;;;;;26102:17;;;26076:43;;26228:17;;26076:3;;26228:17;;;;;;;;;;;;;;;;;;;;;;26323:3;:12;;:19;26336:5;26323:19;;;;;;;;;;;26316:26;;;26366:4;26359:11;;;;;;;;25127:1300;26410:5;26403:12;;;;;24300:414;24363:4;24385:21;24395:3;24400:5;24385:9;:21::i;:::-;24380:327;;-1:-1:-1;24423:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;24606:18;;24584:19;;;:12;;;:19;;;;;;:40;;;;24639:11;;24380:327;-1:-1:-1;24690:5:0;24683:12;;32501:692;32577:4;32712:17;;;:12;;;:17;;;;;;32746:13;32742:444;;-1:-1:-1;;32831:38:0;;;;;;;;;;;;;;;;;;32813:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;33028:19;;33008:17;;;:12;;;:17;;;;;;;:39;33062:11;;32742:444;33142:5;33106:3;:12;;33130:1;33119:8;:12;33106:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;33169:5;33162:12;;;;;21704:979;21834:12;21867:18;21878:6;21867:10;:18::i;:::-;21859:60;;;;-1:-1:-1;;;21859:60:0;;;;;;;:::i;:::-;21993:12;22007:23;22034:6;-1:-1:-1;;;;;22034:11:0;22054:8;22065:4;22034:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21992:78;;;;22085:7;22081:595;;;22116:10;-1:-1:-1;22109:17:0;;-1:-1:-1;22109:17:0;22081:595;22230:17;;:21;22226:439;;22493:10;22487:17;22554:15;22541:10;22537:2;22533:19;22526:44;22441:148;22636:12;22629:20;;-1:-1:-1;;;22629:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321:731;;446:3;439:4;431:6;427:17;423:27;413:2;;-1:-1;;454:12;413:2;501:6;488:20;523:88;538:72;603:6;538:72;:::i;:::-;523:88;:::i;:::-;639:21;;;514:97;-1:-1;683:4;696:14;;;;671:17;;;785;;;776:27;;;;773:36;-1:-1;770:2;;;822:1;;812:12;770:2;847:1;832:214;857:6;854:1;851:13;832:214;;;230:6;217:20;242:41;277:5;242:41;:::i;:::-;925:58;;997:14;;;;1025;;;;879:1;872:9;832:214;;;836:14;;;;;406:646;;;;:::o;1080:379::-;;;1237:3;1230:4;1222:6;1218:17;1214:27;1204:2;;-1:-1;;1245:12;1204:2;-1:-1;1275:20;;1315:18;1304:30;;1301:2;;;-1:-1;;1337:12;1301:2;1381:4;1373:6;1369:17;1357:29;;1432:3;1381:4;;1416:6;1412:17;1373:6;1398:32;;1395:41;1392:2;;;1449:1;;1439:12;1863:707;;1980:3;1973:4;1965:6;1961:17;1957:27;1947:2;;-1:-1;;1988:12;1947:2;2035:6;2022:20;2057:80;2072:64;2129:6;2072:64;:::i;2057:80::-;2165:21;;;2048:89;-1:-1;2209:4;2222:14;;;;2197:17;;;2311;;;2302:27;;;;2299:36;-1:-1;2296:2;;;2348:1;;2338:12;2296:2;2373:1;2358:206;2383:6;2380:1;2377:13;2358:206;;;4087:20;;2451:50;;2515:14;;;;2543;;;;2405:1;2398:9;2358:206;;2984:440;;3085:3;3078:4;3070:6;3066:17;3062:27;3052:2;;-1:-1;;3093:12;3052:2;3140:6;3127:20;60190:18;60182:6;60179:30;60176:2;;;-1:-1;;60212:12;60176:2;3162:64;60285:9;60266:17;;-1:-1;;60262:33;60353:4;60343:15;3162:64;:::i;:::-;3153:73;;3246:6;3239:5;3232:21;3350:3;60353:4;3341:6;3274;3332:16;;3329:25;3326:2;;;3367:1;;3357:12;3326:2;65069:6;60353:4;3274:6;3270:17;60353:4;3308:5;3304:16;65046:30;65125:1;65107:16;;;60353:4;65107:16;65100:27;3308:5;3045:379;-1:-1;;3045:379::o;3883:130::-;3950:20;;-1:-1;;;;;63525:46;;66086:35;;66076:2;;66135:1;;66125:12;4157:241;;4261:2;4249:9;4240:7;4236:23;4232:32;4229:2;;;-1:-1;;4267:12;4229:2;85:6;72:20;97:33;124:5;97:33;:::i;4669:366::-;;;4790:2;4778:9;4769:7;4765:23;4761:32;4758:2;;;-1:-1;;4796:12;4758:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4848:63;-1:-1;4948:2;4987:22;;72:20;97:33;72:20;97:33;:::i;:::-;4956:63;;;;4752:283;;;;;:::o;5042:491::-;;;;5180:2;5168:9;5159:7;5155:23;5151:32;5148:2;;;-1:-1;;5186:12;5148:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5238:63;-1:-1;5338:2;5377:22;;72:20;97:33;72:20;97:33;:::i;:::-;5142:391;;5346:63;;-1:-1;;;5446:2;5485:22;;;;4087:20;;5142:391::o;5540:721::-;;;;;5704:3;5692:9;5683:7;5679:23;5675:33;5672:2;;;-1:-1;;5711:12;5672:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5763:63;-1:-1;5863:2;5902:22;;72:20;97:33;72:20;97:33;:::i;:::-;5871:63;-1:-1;5971:2;6010:22;;4087:20;;-1:-1;6107:2;6092:18;;6079:32;6131:18;6120:30;;6117:2;;;-1:-1;;6153:12;6117:2;6183:62;6237:7;6228:6;6217:9;6213:22;6183:62;:::i;:::-;6173:72;;;5666:595;;;;;;;:::o;6268:360::-;;;6386:2;6374:9;6365:7;6361:23;6357:32;6354:2;;;-1:-1;;6392:12;6354:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;6444:63;-1:-1;6544:2;6580:22;;2642:20;63286:13;;63279:21;65843:32;;65833:2;;-1:-1;;65879:12;6635:366;;;6756:2;6744:9;6735:7;6731:23;6727:32;6724:2;;;-1:-1;;6762:12;6724:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;6814:63;6914:2;6953:22;;;;4087:20;;-1:-1;;;6718:283::o;7008:239::-;;7111:2;7099:9;7090:7;7086:23;7082:32;7079:2;;;-1:-1;;7117:12;7079:2;2788:6;2775:20;2800:32;2826:5;2800:32;:::i;7254:261::-;;7368:2;7356:9;7347:7;7343:23;7339:32;7336:2;;;-1:-1;;7374:12;7336:2;2927:6;2921:13;2939:32;2965:5;2939:32;:::i;7522:347::-;;7636:2;7624:9;7615:7;7611:23;7607:32;7604:2;;;-1:-1;;7642:12;7604:2;7700:17;7687:31;7738:18;7730:6;7727:30;7724:2;;;-1:-1;;7760:12;7724:2;7790:63;7845:7;7836:6;7825:9;7821:22;7790:63;:::i;7876:2319::-;;;;;;;;;;;;8259:3;8247:9;8238:7;8234:23;8230:33;8227:2;;;-1:-1;;8266:12;8227:2;8328:53;8373:7;8349:22;8328:53;:::i;:::-;8318:63;;8436:53;8481:7;8418:2;8461:9;8457:22;8436:53;:::i;:::-;8426:63;;8544:53;8589:7;8526:2;8569:9;8565:22;8544:53;:::i;:::-;8534:63;;8634:2;8677:9;8673:22;4087:20;8642:63;;8795:18;;8770:3;8759:9;8755:19;8742:33;8784:30;8781:2;;;-1:-1;;8817:12;8781:2;8847:86;8925:7;8770:3;8759:9;8755:19;8742:33;8905:9;8901:22;8847:86;:::i;:::-;8837:96;;8795:18;8998:3;8987:9;8983:19;8970:33;9012:30;9009:2;;;-1:-1;;9045:12;9009:2;9075:78;9145:7;8998:3;8987:9;8983:19;8970:33;9125:9;9121:22;9075:78;:::i;:::-;9065:88;;8795:18;9218:3;9207:9;9203:19;9190:33;9232:30;9229:2;;;-1:-1;;9265:12;9229:2;9295:63;9350:7;9218:3;9207:9;9203:19;9190:33;9330:9;9326:22;9295:63;:::i;:::-;9285:73;;8795:18;9423:3;9412:9;9408:19;9395:33;9437:30;9434:2;;;-1:-1;;9470:12;9434:2;9500:63;9555:7;9423:3;9412:9;9408:19;9395:33;9535:9;9531:22;9500:63;:::i;:::-;9490:73;;8795:18;9628:3;9617:9;9613:19;9600:33;9642:30;9639:2;;;-1:-1;;9675:12;9639:2;9705:63;9760:7;9628:3;9617:9;9613:19;9600:33;9740:9;9736:22;9705:63;:::i;:::-;9695:73;;8795:18;9833:3;9822:9;9818:19;9805:33;9847:30;9844:2;;;-1:-1;;9880:12;9844:2;9910:63;9965:7;9833:3;9822:9;9818:19;9805:33;9945:9;9941:22;9910:63;:::i;:::-;9900:73;;8795:18;10038:3;10027:9;10023:19;10010:33;10052:30;10049:2;;;-1:-1;;10085:12;10049:2;;10116:63;10171:7;10038:3;10027:9;10023:19;10010:33;10151:9;10147:22;10116:63;:::i;:::-;10105:74;;8221:1974;;;;;;;;;;;;;;:::o;10202:241::-;;10306:2;10294:9;10285:7;10281:23;10277:32;10274:2;;;-1:-1;;10312:12;10274:2;-1:-1;4087:20;;10268:175;-1:-1;10268:175::o;10450:382::-;;;10579:2;10567:9;10558:7;10554:23;10550:32;10547:2;;;-1:-1;;10585:12;10547:2;4100:6;4087:20;10637:63;;10737:2;10788:9;10784:22;217:20;242:41;277:5;242:41;:::i;10839:507::-;;;;10985:2;10973:9;10964:7;10960:23;10956:32;10953:2;;;-1:-1;;10991:12;10953:2;4100:6;4087:20;11043:63;;11143:2;11194:9;11190:22;217:20;242:41;277:5;242:41;:::i;11353:857::-;;;;;;11588:2;11576:9;11567:7;11563:23;11559:32;11556:2;;;-1:-1;;11594:12;11556:2;4100:6;4087:20;11646:63;;11774:2;11763:9;11759:18;11746:32;11798:18;;11790:6;11787:30;11784:2;;;-1:-1;;11820:12;11784:2;11858:107;11957:7;11948:6;11937:9;11933:22;11858:107;:::i;:::-;11840:125;;-1:-1;11840:125;-1:-1;12030:2;12015:18;;12002:32;;-1:-1;12043:30;;;12040:2;;;-1:-1;;12076:12;12040:2;;12114:80;12186:7;12177:6;12166:9;12162:22;12114:80;:::i;:::-;11550:660;;;;-1:-1;11550:660;;-1:-1;12096:98;;;11550:660;-1:-1;;;11550:660::o;12217:360::-;;;12335:2;12323:9;12314:7;12310:23;12306:32;12303:2;;;-1:-1;;12341:12;12303:2;4100:6;4087:20;12393:63;;12493:2;12533:9;12529:22;2642:20;65868:5;63286:13;63279:21;65846:5;65843:32;65833:2;;-1:-1;;65879:12;12584:366;;;12705:2;12693:9;12684:7;12680:23;12676:32;12673:2;;;-1:-1;;12711:12;12673:2;12794:22;4087:20;12763:63;;12881:53;12926:7;12863:2;12906:9;12902:22;12881:53;:::i;:::-;12871:63;;12667:283;;;;;:::o;12957:366::-;;;13078:2;13066:9;13057:7;13053:23;13049:32;13046:2;;;-1:-1;;13084:12;13046:2;-1:-1;;4087:20;;;13236:2;13275:22;;;4087:20;;-1:-1;13040:283::o;15922:343::-;;16064:5;61304:12;62123:6;62118:3;62111:19;16157:52;16202:6;62160:4;62155:3;62151:14;62160:4;16183:5;16179:16;16157:52;:::i;:::-;60285:9;65486:14;-1:-1;;65482:28;16221:39;;;;62160:4;16221:39;;16012:253;-1:-1;;16012:253::o;32716:113::-;-1:-1;;;;;63525:46;32787:37;;32781:48::o;33313:271::-;;16432:5;61304:12;16543:52;16588:6;16583:3;16576:4;16569:5;16565:16;16543:52;:::i;:::-;16607:16;;;;;33447:137;-1:-1;;33447:137::o;33591:430::-;;-1:-1;17870:5;17864:12;17904:1;;17893:9;17889:17;17917:1;17912:268;;;;18191:1;18186:425;;;;17882:729;;17912:268;-1:-1;;18117:25;;18105:38;;17986:1;17971:17;;17990:4;17967:28;18157:16;;;-1:-1;17912:268;;18186:425;18255:1;18244:9;18240:17;61133:3;-1:-1;61123:14;61165:4;;-1:-1;61152:18;-1:-1;18444:130;18458:6;18455:1;18452:13;18444:130;;;18517:14;;18504:11;;;18497:35;18551:15;;;;18473:12;;18444:130;;;-1:-1;;;18588:16;;;-1:-1;17882:729;;;;16432:5;61304:12;16543:52;16588:6;16583:3;16576:4;16569:5;16565:16;16543:52;:::i;:::-;16607:16;;33772:249;-1:-1;;;;33772:249::o;34028:222::-;-1:-1;;;;;63645:54;;;;13952:45;;34155:2;34140:18;;34126:124::o;34518:672::-;-1:-1;;;;;63645:54;;;13952:45;;63645:54;;34944:2;34929:18;;13952:45;35027:2;35012:18;;33030:37;;;34763:3;35064:2;35049:18;;35042:48;;;34518:672;;35104:76;;34748:19;;35166:6;35104:76;:::i;:::-;35096:84;34734:456;-1:-1;;;;;;34734:456::o;35197:460::-;-1:-1;;;;;63645:54;;;;13805:58;;35560:2;35545:18;;33030:37;;;;-1:-1;;;;;63525:46;35643:2;35628:18;;32907:50;35388:2;35373:18;;35359:298::o;35664:460::-;-1:-1;;;;;63645:54;;;;13805:58;;36027:2;36012:18;;33030:37;;;;36110:2;36095:18;;33030:37;35855:2;35840:18;;35826:298::o;36131:402::-;36324:2;36338:47;;;61304:12;;36309:18;;;62111:19;;;36131:402;;36324:2;60827:14;;;;62151;;;;36131:402;14768:284;14793:6;14790:1;14787:13;14768:284;;;14854:13;;-1:-1;;;;;63645:54;13952:45;;61843:14;;;;13516;;;;1315:18;14808:9;14768:284;;;-1:-1;36391:132;;36295:238;-1:-1;;;;;;36295:238::o;36540:370::-;36717:2;36731:47;;;61304:12;;36702:18;;;62111:19;;;36540:370;;36717:2;60827:14;;;;62151;;;;36540:370;15521:260;15546:6;15543:1;15540:13;15521:260;;;15607:13;;33030:37;;61843:14;;;;13698;;;;15568:1;15561:9;15521:260;;36917:210;63286:13;;63279:21;15876:34;;37038:2;37023:18;;37009:118::o;37678:310::-;;37825:2;37846:17;37839:47;37900:78;37825:2;37814:9;37810:18;37964:6;37900:78;:::i;37995:416::-;38195:2;38209:47;;;18850:2;38180:18;;;62111:19;18886:34;62151:14;;;18866:55;-1:-1;;;18941:12;;;18934:26;18979:12;;;38166:245::o;38418:416::-;38618:2;38632:47;;;19230:2;38603:18;;;62111:19;19266:34;62151:14;;;19246:55;-1:-1;;;19321:12;;;19314:26;19359:12;;;38589:245::o;38841:416::-;39041:2;39055:47;;;39026:18;;;62111:19;19646:34;62151:14;;;19626:55;19700:12;;;39012:245::o;39264:416::-;39464:2;39478:47;;;19951:2;39449:18;;;62111:19;19987:34;62151:14;;;19967:55;-1:-1;;;20042:12;;;20035:31;20085:12;;;39435:245::o;39687:416::-;39887:2;39901:47;;;20336:2;39872:18;;;62111:19;20372:34;62151:14;;;20352:55;-1:-1;;;20427:12;;;20420:42;20481:12;;;39858:245::o;40110:416::-;40310:2;40324:47;;;20732:2;40295:18;;;62111:19;20768:34;62151:14;;;20748:55;-1:-1;;;20823:12;;;20816:30;20865:12;;;40281:245::o;40533:416::-;40733:2;40747:47;;;21116:2;40718:18;;;62111:19;21152:30;62151:14;;;21132:51;21202:12;;;40704:245::o;40956:416::-;41156:2;41170:47;;;21453:2;41141:18;;;62111:19;-1:-1;;;62151:14;;;21469:39;21527:12;;;41127:245::o;41379:416::-;41579:2;41593:47;;;21778:2;41564:18;;;62111:19;21814:29;62151:14;;;21794:50;21863:12;;;41550:245::o;41802:416::-;42002:2;42016:47;;;22114:2;41987:18;;;62111:19;22150:26;62151:14;;;22130:47;22196:12;;;41973:245::o;42225:416::-;42425:2;42439:47;;;22447:2;42410:18;;;62111:19;-1:-1;;;62151:14;;;22463:43;22525:12;;;42396:245::o;42648:416::-;42848:2;42862:47;;;22776:2;42833:18;;;62111:19;22812:34;62151:14;;;22792:55;-1:-1;;;22867:12;;;22860:25;22904:12;;;42819:245::o;43071:416::-;43271:2;43285:47;;;23155:2;43256:18;;;62111:19;23191:33;62151:14;;;23171:54;23244:12;;;43242:245::o;43494:416::-;43694:2;43708:47;;;23495:2;43679:18;;;62111:19;-1:-1;;;62151:14;;;23511:45;23575:12;;;43665:245::o;43917:416::-;44117:2;44131:47;;;23826:2;44102:18;;;62111:19;23862:34;62151:14;;;23842:55;-1:-1;;;23917:12;;;23910:28;23957:12;;;44088:245::o;44340:416::-;44540:2;44554:47;;;24208:2;44525:18;;;62111:19;24244:27;62151:14;;;24224:48;24291:12;;;44511:245::o;44763:416::-;44963:2;44977:47;;;24542:2;44948:18;;;62111:19;24578:34;62151:14;;;24558:55;-1:-1;;;24633:12;;;24626:36;24681:12;;;44934:245::o;45186:416::-;45386:2;45400:47;;;24932:2;45371:18;;;62111:19;24968:25;62151:14;;;24948:46;25013:12;;;45357:245::o;45609:416::-;45809:2;45823:47;;;25264:2;45794:18;;;62111:19;25300:29;62151:14;;;25280:50;25349:12;;;45780:245::o;46032:416::-;46232:2;46246:47;;;25600:2;46217:18;;;62111:19;25636:29;62151:14;;;25616:50;25685:12;;;46203:245::o;46455:416::-;46655:2;46669:47;;;25936:2;46640:18;;;62111:19;25972:34;62151:14;;;25952:55;26041:26;26027:12;;;26020:48;26087:12;;;46626:245::o;46878:416::-;47078:2;47092:47;;;26338:2;47063:18;;;62111:19;26374:34;62151:14;;;26354:55;-1:-1;;;26429:12;;;26422:34;26475:12;;;47049:245::o;47301:416::-;47501:2;47515:47;;;47486:18;;;62111:19;26762:34;62151:14;;;26742:55;26816:12;;;47472:245::o;47724:416::-;47924:2;47938:47;;;27067:2;47909:18;;;62111:19;27103:29;62151:14;;;27083:50;27152:12;;;47895:245::o;48147:416::-;48347:2;48361:47;;;27403:2;48332:18;;;62111:19;27439:34;62151:14;;;27419:55;-1:-1;;;27494:12;;;27487:26;27532:12;;;48318:245::o;48570:416::-;48770:2;48784:47;;;48755:18;;;62111:19;27819:34;62151:14;;;27799:55;27873:12;;;48741:245::o;48993:416::-;49193:2;49207:47;;;28124:2;49178:18;;;62111:19;28160:31;62151:14;;;28140:52;28211:12;;;49164:245::o;49416:416::-;49616:2;49630:47;;;28462:2;49601:18;;;62111:19;28498:34;62151:14;;;28478:55;-1:-1;;;28553:12;;;28546:25;28590:12;;;49587:245::o;49839:416::-;50039:2;50053:47;;;28841:2;50024:18;;;62111:19;28877:34;62151:14;;;28857:55;-1:-1;;;28932:12;;;28925:36;28980:12;;;50010:245::o;50262:416::-;50462:2;50476:47;;;50447:18;;;62111:19;29267:34;62151:14;;;29247:55;29321:12;;;50433:245::o;50685:416::-;50885:2;50899:47;;;29572:2;50870:18;;;62111:19;-1:-1;;;62151:14;;;29588:37;29644:12;;;50856:245::o;51108:416::-;51308:2;51322:47;;;29895:2;51293:18;;;62111:19;29931:34;62151:14;;;29911:55;-1:-1;;;29986:12;;;29979:33;30031:12;;;51279:245::o;51531:416::-;51731:2;51745:47;;;30282:2;51716:18;;;62111:19;30318:34;62151:14;;;30298:55;-1:-1;;;30373:12;;;30366:39;30424:12;;;51702:245::o;51954:416::-;52154:2;52168:47;;;30675:2;52139:18;;;62111:19;30711:34;62151:14;;;30691:55;-1:-1;;;30766:12;;;30759:25;30803:12;;;52125:245::o;52377:416::-;52577:2;52591:47;;;31054:2;52562:18;;;62111:19;31090:34;62151:14;;;31070:55;-1:-1;;;31145:12;;;31138:28;31185:12;;;52548:245::o;52800:416::-;53000:2;53014:47;;;31436:2;52985:18;;;62111:19;31472:34;62151:14;;;31452:55;-1:-1;;;31527:12;;;31520:41;31580:12;;;52971:245::o;53223:416::-;53423:2;53437:47;;;31831:2;53408:18;;;62111:19;31867:31;62151:14;;;31847:52;31918:12;;;53394:245::o;53646:416::-;53846:2;53860:47;;;32169:2;53831:18;;;62111:19;32205:34;62151:14;;;32185:55;-1:-1;;;32260:12;;;32253:26;32298:12;;;53817:245::o;54069:416::-;54269:2;54283:47;;;32549:2;54254:18;;;62111:19;32585:34;62151:14;;;32565:55;-1:-1;;;32640:12;;;32633:38;32690:12;;;54240:245::o;54492:222::-;33030:37;;;54619:2;54604:18;;54590:124::o;54721:333::-;33030:37;;;-1:-1;;;;;63645:54;55040:2;55025:18;;13952:45;54876:2;54861:18;;54847:207::o;55061:333::-;33030:37;;;55380:2;55365:18;;33030:37;55216:2;55201:18;;55187:207::o;55401:1444::-;;55824:3;33060:5;33037:3;33030:37;33060:5;55989:2;55978:9;55974:18;33030:37;-1:-1;;;;;32817:5;63525:46;56072:2;56061:9;56057:18;32787:37;55824:3;56109:2;56098:9;56094:18;56087:48;56149:78;55824:3;55813:9;55809:19;56213:6;56149:78;:::i;:::-;56141:86;;56276:9;56270:4;56266:20;56260:3;56249:9;56245:19;56238:49;56301:78;56374:4;56365:6;56301:78;:::i;:::-;56293:86;;56428:9;56422:4;56418:20;56412:3;56401:9;56397:19;56390:49;56453:78;56526:4;56517:6;56453:78;:::i;:::-;56445:86;;56580:9;56574:4;56570:20;56564:3;56553:9;56549:19;56542:49;56605:78;56678:4;56669:6;56605:78;:::i;:::-;56597:86;;56732:9;56726:4;56722:20;56716:3;56705:9;56701:19;56694:49;56757:78;56830:4;56821:6;56757:78;:::i;:::-;56749:86;55795:1050;-1:-1;;;;;;;;;;;55795:1050::o;56852:1766::-;;57352:3;63861:4;33294:5;63850:16;33273:3;33266:35;63861:4;33294:5;63850:16;57509:2;57498:9;57494:18;33266:35;-1:-1;;;;;32817:5;63525:46;57592:2;57581:9;57577:18;32787:37;57607:72;57675:2;57664:9;57660:18;57651:6;57607:72;:::i;:::-;57690:73;57758:3;57747:9;57743:19;57734:6;57690:73;:::i;:::-;33060:5;57842:3;57831:9;57827:19;33030:37;57352:3;57880;57869:9;57865:19;57858:49;57921:78;57352:3;57341:9;57337:19;57985:6;57921:78;:::i;:::-;57913:86;;58048:9;58042:4;58038:20;58032:3;58021:9;58017:19;58010:49;58073:78;58146:4;58137:6;58073:78;:::i;:::-;58065:86;;58200:9;58194:4;58190:20;58184:3;58173:9;58169:19;58162:49;58225:78;58298:4;58289:6;58225:78;:::i;:::-;58217:86;;58352:9;58346:4;58342:20;58336:3;58325:9;58321:19;58314:49;58377:78;58450:4;58441:6;58377:78;:::i;:::-;58369:86;;58504:9;58498:4;58494:20;58488:3;58477:9;58473:19;58466:49;58529:79;58603:4;58593:7;58529:79;:::i;:::-;58521:87;57323:1295;-1:-1;;;;;;;;;;;;;;57323:1295::o;58625:522::-;;;58776:11;58763:25;58827:48;;58851:8;58835:14;58831:29;58827:48;58807:18;58803:73;58793:2;;-1:-1;;58880:12;58793:2;58907:33;;58961:18;;;-1:-1;58999:18;58988:30;;58985:2;;;-1:-1;;59021:12;58985:2;58866:4;59049:13;;;;-1:-1;59101:17;;58835:14;59081:38;59071:49;;59068:2;;;59133:1;;59123:12;59154:256;59216:2;59210:9;59242:17;;;59317:18;59302:34;;59338:22;;;59299:62;59296:2;;;59374:1;;59364:12;59296:2;59216;59383:22;59194:216;;-1:-1;59194:216::o;59417:312::-;;59584:18;59576:6;59573:30;59570:2;;;-1:-1;;59606:12;59570:2;-1:-1;59651:4;59639:17;;;59704:15;;59507:222::o;65142:268::-;65207:1;65214:101;65228:6;65225:1;65222:13;65214:101;;;65295:11;;;65289:18;65276:11;;;65269:39;65250:2;65243:10;65214:101;;;65330:6;65327:1;65324:13;65321:2;;;-1:-1;;65207:1;65377:16;;65370:27;65191:219::o;65523:117::-;-1:-1;;;;;63645:54;;65582:35;;65572:2;;65631:1;;65621:12;65905:115;-1:-1;;;;;;63373:78;;65963:34;;65953:2;;66011:1;;66001:12
Swarm Source
ipfs://7144684dcf7292176db6e28790f99078b3a2a6f490b8c51310026dea6f06b20d
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.