Polygon Sponsored slots available. Book your slot here!
ERC-1155
Overview
Max Total Supply
0 OWNLY
Holders
177
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
OwnlyRewards
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155PresetMinterPauser.sol"; import "./Ownable.sol"; contract OwnlyRewards is ERC1155PresetMinterPauser, Ownable { string private _name; string private _symbol; constructor() ERC1155PresetMinterPauser("https://ownly.io/nft/rewards/api/") { _name = "Ownly Rewards"; _symbol = "OWNLY"; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view returns (string memory) { return string(abi.encodePacked(uri(tokenId), uint2str(tokenId))); } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./AccessControl.sol"; import "./EnumerableSet.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./IERC1155MetadataURI.sol"; import "./Address.sol"; import "./Context.sol"; import "./ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `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 memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - 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[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155.sol"; import "./Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155.sol"; import "./ERC1155Burnable.sol"; import "./ERC1155Pausable.sol"; import "./AccessControlEnumerable.sol"; import "./Context.sol"; /** * @dev {ERC1155} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC1155PresetMinterPauser is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that * deploys the contract. */ constructor(string memory uri) ERC1155(uri) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mint(to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}. */ function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mintBatch(to, ids, amounts, data); } /** * @dev Pauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause"); _unpause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC1155) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Pausable) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180606001604052806021815260200162005bb360219139806200003e81620001c360201b60201c565b506000600560006101000a81548160ff0219169083151502179055506200007e6000801b62000072620001df60201b60201c565b620001e760201b60201c565b620000bf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000b3620001df60201b60201c565b620001e760201b60201c565b620001007f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620000f4620001df60201b60201c565b620001e760201b60201c565b506200012162000115620001df60201b60201c565b6200022f60201b60201c565b6040518060400160405280600d81526020017f4f776e6c79205265776172647300000000000000000000000000000000000000815250600690805190602001906200016e9291906200053b565b506040518060400160405280600581526020017f4f574e4c5900000000000000000000000000000000000000000000000000000081525060079080519060200190620001bc9291906200053b565b5062000650565b8060049080519060200190620001db9291906200053b565b5050565b600033905090565b620001fe8282620002f560201b6200147e1760201c565b6200022a81600160008581526020019081526020016000206200030b60201b6200148c1790919060201c565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030782826200034360201b60201c565b5050565b60006200033b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200043460201b60201c565b905092915050565b620003558282620004ae60201b60201c565b6200043057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003d5620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200044883836200051860201b60201c565b620004a3578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620004a8565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200054990620005eb565b90600052602060002090601f0160209004810192826200056d5760008555620005b9565b82601f106200058857805160ff1916838001178555620005b9565b82800160010185558215620005b9579182015b82811115620005b85782518255916020019190600101906200059b565b5b509050620005c89190620005cc565b5090565b5b80821115620005e7576000816000905550600101620005cd565b5090565b600060028204905060018216806200060457607f821691505b602082108114156200061b576200061a62000621565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61555380620006606000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c80638456cb591161010f578063ca15c873116100a2578063e985e9c511610071578063e985e9c514610569578063f242432a14610599578063f2fde38b146105b5578063f5298aca146105d1576101e4565b8063ca15c873146104e1578063d539139314610511578063d547741f1461052f578063e63ab1e91461054b576101e4565b806395d89b41116100de57806395d89b4114610459578063a217fddf14610477578063a22cb46514610495578063c87b56dd146104b1576101e4565b80638456cb59146103d15780638da5cb5b146103db5780639010d07c146103f957806391d1485414610429576101e4565b80632f2ff15d116101875780635c975abb116101565780635c975abb146103715780636b20c4541461038f578063715018a6146103ab578063731133e9146103b5576101e4565b80632f2ff15d146102ff57806336568abe1461031b5780633f4ba83a146103375780634e1273f414610341576101e4565b80630e89341c116101c35780630e89341c146102675780631f7fdffa14610297578063248a9ca3146102b35780632eb2c2d6146102e3576101e4565b8062fdd58e146101e957806301ffc9a71461021957806306fdde0314610249575b600080fd5b61020360048036038101906101fe9190613d13565b6105ed565b6040516102109190614ee3565b60405180910390f35b610233600480360381019061022e9190613f26565b6106b7565b6040516102409190614bab565b60405180910390f35b6102516106c9565b60405161025e9190614be1565b60405180910390f35b610281600480360381019061027c9190613f78565b61075b565b60405161028e9190614be1565b60405180910390f35b6102b160048036038101906102ac9190613c2c565b6107ef565b005b6102cd60048036038101906102c89190613e85565b610871565b6040516102da9190614bc6565b60405180910390f35b6102fd60048036038101906102f89190613a5f565b610890565b005b61031960048036038101906103149190613eae565b610931565b005b61033560048036038101906103309190613eae565b610965565b005b61033f610999565b005b61035b60048036038101906103569190613e19565b610a13565b6040516103689190614b52565b60405180910390f35b610379610bc4565b6040516103869190614bab565b60405180910390f35b6103a960048036038101906103a49190613bad565b610bdb565b005b6103b3610c78565b005b6103cf60048036038101906103ca9190613d9e565b610d00565b005b6103d9610d82565b005b6103e3610dfc565b6040516103f09190614a75565b60405180910390f35b610413600480360381019061040e9190613eea565b610e26565b6040516104209190614a75565b60405180910390f35b610443600480360381019061043e9190613eae565b610e55565b6040516104509190614bab565b60405180910390f35b610461610ebf565b60405161046e9190614be1565b60405180910390f35b61047f610f51565b60405161048c9190614bc6565b60405180910390f35b6104af60048036038101906104aa9190613cd7565b610f58565b005b6104cb60048036038101906104c69190613f78565b6110d9565b6040516104d89190614be1565b60405180910390f35b6104fb60048036038101906104f69190613e85565b611114565b6040516105089190614ee3565b60405180910390f35b610519611138565b6040516105269190614bc6565b60405180910390f35b61054960048036038101906105449190613eae565b61115c565b005b610553611190565b6040516105609190614bc6565b60405180910390f35b610583600480360381019061057e9190613a23565b6111b4565b6040516105909190614bab565b60405180910390f35b6105b360048036038101906105ae9190613b1e565b611248565b005b6105cf60048036038101906105ca91906139fa565b6112e9565b005b6105eb60048036038101906105e69190613d4f565b6113e1565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065590614c83565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106c2826114bc565b9050919050565b6060600680546106d89061529f565b80601f01602080910402602001604051908101604052809291908181526020018280546107049061529f565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b60606004805461076a9061529f565b80601f01602080910402602001604051908101604052809291908181526020018280546107969061529f565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b50505050509050919050565b6108207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081b61159e565b610e55565b61085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690614da3565b60405180910390fd5b61086b848484846115a6565b50505050565b6000806000838152602001908152602001600020600101549050919050565b61089861159e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108de57506108dd856108d861159e565b6111b4565b5b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490614d63565b60405180910390fd5b61092a8585858585611811565b5050505050565b61093b8282611b74565b610960816001600085815260200190815260200160002061148c90919063ffffffff16565b505050565b61096f8282611b9d565b6109948160016000858152602001908152602001600020611c2090919063ffffffff16565b505050565b6109ca7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109c561159e565b610e55565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090614e03565b60405180910390fd5b610a11611c50565b565b60608151835114610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090614e63565b60405180910390fd5b6000835167ffffffffffffffff811115610a9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610aca5781602001602082028036833780820191505090505b50905060005b8451811015610bb957610b63858281518110610b15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610b56577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105ed565b828281518110610b9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610bb2906152d1565b9050610ad0565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610be361159e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c295750610c2883610c2361159e565b6111b4565b5b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90614d03565b60405180910390fd5b610c73838383611cf2565b505050565b610c8061159e565b73ffffffffffffffffffffffffffffffffffffffff16610c9e610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90614de3565b60405180910390fd5b610cfe6000611ff1565b565b610d317f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d2c61159e565b610e55565b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614da3565b60405180910390fd5b610d7c848484846120b7565b50505050565b610db37f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610dae61159e565b610e55565b610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990614e23565b60405180910390fd5b610dfa61224e565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e4d82600160008681526020019081526020016000206122f190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060078054610ece9061529f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061529f565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610f7761159e565b73ffffffffffffffffffffffffffffffffffffffff161415610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590614e43565b60405180910390fd5b8060036000610fdb61159e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108861159e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110cd9190614bab565b60405180910390a35050565b60606110e48261075b565b6110ed8361230b565b6040516020016110fe929190614a17565b6040516020818303038152906040529050919050565b6000611131600160008481526020019081526020016000206124e0565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61116682826124f5565b61118b8160016000858152602001908152602001600020611c2090919063ffffffff16565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125061159e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061129657506112958561129061159e565b6111b4565b5b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90614d03565b60405180910390fd5b6112e2858585858561251e565b5050505050565b6112f161159e565b73ffffffffffffffffffffffffffffffffffffffff1661130f610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90614de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90614ca3565b60405180910390fd5b6113de81611ff1565b50565b6113e961159e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142f575061142e8361142961159e565b6111b4565b5b61146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614d03565b60405180910390fd5b6114798383836127a3565b505050565b61148882826129c2565b5050565b60006114b4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612aa2565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061158757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611597575061159682612b12565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90614ea3565b60405180910390fd5b815183511461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614e83565b60405180910390fd5b600061166461159e565b905061167581600087878787612b8c565b60005b845181101561177b578381815181106116ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600260008784815181106116ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611761919061505c565b925050819055508080611773906152d1565b915050611678565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117f3929190614b74565b60405180910390a461180a81600087878787612ba2565b5050505050565b8151835114611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614d43565b60405180910390fd5b60006118cf61159e565b90506118df818787878787612b8c565b60005b8451811015611adf576000858281518110611926577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061196b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614dc3565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac4919061505c565b9250508190555050505080611ad8906152d1565b90506118e2565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b56929190614b74565b60405180910390a4611b6c818787878787612ba2565b505050505050565b611b7d82610871565b611b8e81611b8961159e565b612d72565b611b9883836129c2565b505050565b611ba561159e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0990614ec3565b60405180910390fd5b611c1c8282612e0f565b5050565b6000611c48836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612ef0565b905092915050565b611c58610bc4565b611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90614c63565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cdb61159e565b604051611ce89190614a75565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990614d83565b60405180910390fd5b8051825114611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90614e83565b60405180910390fd5b6000611db061159e565b9050611dd081856000868660405180602001604052806000815250612b8c565b60005b8351811015611f6b576000848281518110611e17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110611e5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614cc3565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611f63906152d1565b915050611dd3565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611fe3929190614b74565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90614ea3565b60405180910390fd5b600061213161159e565b90506121528160008761214388613076565b61214c88613076565b87612b8c565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b2919061505c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612230929190614efe565b60405180910390a46122478160008787878761313c565b5050505050565b612256610bc4565b15612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d90614d23565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122da61159e565b6040516122e79190614a75565b60405180910390a1565b6000612300836000018361330c565b60001c905092915050565b60606000821415612353576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124db565b600082905060005b6000821461238557808061236e906152d1565b915050600a8261237e91906150e9565b915061235b565b60008167ffffffffffffffff8111156123c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123f95781602001600182028036833780820191505090505b50905060008290505b600086146124d3576001816124179190615174565b90506000600a808861242991906150e9565b612433919061511a565b8761243e9190615174565b603061244a91906150b2565b905060008160f81b90508084848151811061248e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886124ca91906150e9565b97505050612402565b819450505050505b919050565b60006124ee8260000161335d565b9050919050565b6124fe82610871565b61250f8161250a61159e565b612d72565b6125198383612e0f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614d43565b60405180910390fd5b600061259861159e565b90506125b88187876125a988613076565b6125b288613076565b87612b8c565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790614dc3565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612707919061505c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612784929190614efe565b60405180910390a461279a82888888888861313c565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614d83565b60405180910390fd5b600061281d61159e565b905061284d8185600061282f87613076565b61283887613076565b60405180602001604052806000815250612b8c565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc90614cc3565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516129b3929190614efe565b60405180910390a45050505050565b6129cc8282610e55565b612a9e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612a4361159e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612aae838361336e565b612b07578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612b0c565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b855750612b8482613391565b5b9050919050565b612b9a86868686868661340b565b505050505050565b612bc18473ffffffffffffffffffffffffffffffffffffffff16613469565b15612d6a578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612c07959493929190614a90565b602060405180830381600087803b158015612c2157600080fd5b505af1925050508015612c5257506040513d601f19601f82011682018060405250810190612c4f9190613f4f565b60015b612ce157612c5e6153f4565b80612c695750612ca6565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9d9190614be1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd890614c03565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90614c43565b60405180910390fd5b505b505050505050565b612d7c8282610e55565b612e0b57612da18173ffffffffffffffffffffffffffffffffffffffff16601461347c565b612daf8360001c602061347c565b604051602001612dc0929190614a3b565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e029190614be1565b60405180910390fd5b5050565b612e198282610e55565b15612eec57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612e9161159e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461306a576000600182612f229190615174565b9050600060018660000180549050612f3a9190615174565b9050818114612ff5576000866000018281548110612f81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061302f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613070565b60009150505b92915050565b60606000600167ffffffffffffffff8111156130bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156130e95781602001602082028036833780820191505090505b5090508281600081518110613127577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61315b8473ffffffffffffffffffffffffffffffffffffffff16613469565b15613304578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131a1959493929190614af8565b602060405180830381600087803b1580156131bb57600080fd5b505af19250505080156131ec57506040513d601f19601f820116820180604052508101906131e99190613f4f565b60015b61327b576131f86153f4565b806132035750613240565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132379190614be1565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327290614c03565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614c43565b60405180910390fd5b505b505050505050565b600082600001828154811061334a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613404575061340382613776565b5b9050919050565b6134198686868686866137e0565b613421610bc4565b15613461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345890614ce3565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b60606000600283600261348f919061511a565b613499919061505c565b67ffffffffffffffff8111156134d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561350a5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613568577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613632919061511a565b61363c919061505c565b90505b6001811115613728577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106136a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106136e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061372190615275565b905061363f565b506000841461376c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376390614c23565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b60006137fb6137f684614f58565b614f27565b9050808382526020820190508285602086028201111561381a57600080fd5b60005b8581101561384a578161383088826138fe565b84526020840193506020830192505060018101905061381d565b5050509392505050565b600061386761386284614f84565b614f27565b9050808382526020820190508285602086028201111561388657600080fd5b60005b858110156138b6578161389c88826139e5565b845260208401935060208301925050600181019050613889565b5050509392505050565b60006138d36138ce84614fb0565b614f27565b9050828152602081018484840111156138eb57600080fd5b6138f6848285615233565b509392505050565b60008135905061390d816154aa565b92915050565b600082601f83011261392457600080fd5b81356139348482602086016137e8565b91505092915050565b600082601f83011261394e57600080fd5b813561395e848260208601613854565b91505092915050565b600081359050613976816154c1565b92915050565b60008135905061398b816154d8565b92915050565b6000813590506139a0816154ef565b92915050565b6000815190506139b5816154ef565b92915050565b600082601f8301126139cc57600080fd5b81356139dc8482602086016138c0565b91505092915050565b6000813590506139f481615506565b92915050565b600060208284031215613a0c57600080fd5b6000613a1a848285016138fe565b91505092915050565b60008060408385031215613a3657600080fd5b6000613a44858286016138fe565b9250506020613a55858286016138fe565b9150509250929050565b600080600080600060a08688031215613a7757600080fd5b6000613a85888289016138fe565b9550506020613a96888289016138fe565b945050604086013567ffffffffffffffff811115613ab357600080fd5b613abf8882890161393d565b935050606086013567ffffffffffffffff811115613adc57600080fd5b613ae88882890161393d565b925050608086013567ffffffffffffffff811115613b0557600080fd5b613b11888289016139bb565b9150509295509295909350565b600080600080600060a08688031215613b3657600080fd5b6000613b44888289016138fe565b9550506020613b55888289016138fe565b9450506040613b66888289016139e5565b9350506060613b77888289016139e5565b925050608086013567ffffffffffffffff811115613b9457600080fd5b613ba0888289016139bb565b9150509295509295909350565b600080600060608486031215613bc257600080fd5b6000613bd0868287016138fe565b935050602084013567ffffffffffffffff811115613bed57600080fd5b613bf98682870161393d565b925050604084013567ffffffffffffffff811115613c1657600080fd5b613c228682870161393d565b9150509250925092565b60008060008060808587031215613c4257600080fd5b6000613c50878288016138fe565b945050602085013567ffffffffffffffff811115613c6d57600080fd5b613c798782880161393d565b935050604085013567ffffffffffffffff811115613c9657600080fd5b613ca28782880161393d565b925050606085013567ffffffffffffffff811115613cbf57600080fd5b613ccb878288016139bb565b91505092959194509250565b60008060408385031215613cea57600080fd5b6000613cf8858286016138fe565b9250506020613d0985828601613967565b9150509250929050565b60008060408385031215613d2657600080fd5b6000613d34858286016138fe565b9250506020613d45858286016139e5565b9150509250929050565b600080600060608486031215613d6457600080fd5b6000613d72868287016138fe565b9350506020613d83868287016139e5565b9250506040613d94868287016139e5565b9150509250925092565b60008060008060808587031215613db457600080fd5b6000613dc2878288016138fe565b9450506020613dd3878288016139e5565b9350506040613de4878288016139e5565b925050606085013567ffffffffffffffff811115613e0157600080fd5b613e0d878288016139bb565b91505092959194509250565b60008060408385031215613e2c57600080fd5b600083013567ffffffffffffffff811115613e4657600080fd5b613e5285828601613913565b925050602083013567ffffffffffffffff811115613e6f57600080fd5b613e7b8582860161393d565b9150509250929050565b600060208284031215613e9757600080fd5b6000613ea58482850161397c565b91505092915050565b60008060408385031215613ec157600080fd5b6000613ecf8582860161397c565b9250506020613ee0858286016138fe565b9150509250929050565b60008060408385031215613efd57600080fd5b6000613f0b8582860161397c565b9250506020613f1c858286016139e5565b9150509250929050565b600060208284031215613f3857600080fd5b6000613f4684828501613991565b91505092915050565b600060208284031215613f6157600080fd5b6000613f6f848285016139a6565b91505092915050565b600060208284031215613f8a57600080fd5b6000613f98848285016139e5565b91505092915050565b6000613fad83836149f9565b60208301905092915050565b613fc2816151a8565b82525050565b6000613fd382614ff0565b613fdd818561501e565b9350613fe883614fe0565b8060005b838110156140195781516140008882613fa1565b975061400b83615011565b925050600181019050613fec565b5085935050505092915050565b61402f816151ba565b82525050565b61403e816151c6565b82525050565b600061404f82614ffb565b614059818561502f565b9350614069818560208601615242565b614072816153d6565b840191505092915050565b600061408882615006565b6140928185615040565b93506140a2818560208601615242565b6140ab816153d6565b840191505092915050565b60006140c182615006565b6140cb8185615051565b93506140db818560208601615242565b80840191505092915050565b60006140f4603483615040565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b600061415a602083615040565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061419a602883615040565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614200601483615040565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614240602b83615040565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006142a6602683615040565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430c602483615040565b91507f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614372602c83615040565b91507f455243313135355061757361626c653a20746f6b656e207472616e736665722060008301527f7768696c652070617573656400000000000000000000000000000000000000006020830152604082019050919050565b60006143d8602983615040565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b600061443e601083615040565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061447e602583615040565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144e4603283615040565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061454a602383615040565b91507f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145b0603883615040565b91507f455243313135355072657365744d696e7465725061757365723a206d7573742060008301527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006020830152604082019050919050565b6000614616602a83615040565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b600061467c602083615040565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006146bc603b83615040565b91507f455243313135355072657365744d696e7465725061757365723a206d7573742060008301527f686176652070617573657220726f6c6520746f20756e706175736500000000006020830152604082019050919050565b6000614722603983615040565b91507f455243313135355072657365744d696e7465725061757365723a206d7573742060008301527f686176652070617573657220726f6c6520746f207061757365000000000000006020830152604082019050919050565b6000614788601783615051565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006147c8602983615040565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b600061482e602983615040565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000614894602883615040565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148fa602183615040565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614960601183615051565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006149a0602f83615040565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b614a028161521c565b82525050565b614a118161521c565b82525050565b6000614a2382856140b6565b9150614a2f82846140b6565b91508190509392505050565b6000614a468261477b565b9150614a5282856140b6565b9150614a5d82614953565b9150614a6982846140b6565b91508190509392505050565b6000602082019050614a8a6000830184613fb9565b92915050565b600060a082019050614aa56000830188613fb9565b614ab26020830187613fb9565b8181036040830152614ac48186613fc8565b90508181036060830152614ad88185613fc8565b90508181036080830152614aec8184614044565b90509695505050505050565b600060a082019050614b0d6000830188613fb9565b614b1a6020830187613fb9565b614b276040830186614a08565b614b346060830185614a08565b8181036080830152614b468184614044565b90509695505050505050565b60006020820190508181036000830152614b6c8184613fc8565b905092915050565b60006040820190508181036000830152614b8e8185613fc8565b90508181036020830152614ba28184613fc8565b90509392505050565b6000602082019050614bc06000830184614026565b92915050565b6000602082019050614bdb6000830184614035565b92915050565b60006020820190508181036000830152614bfb818461407d565b905092915050565b60006020820190508181036000830152614c1c816140e7565b9050919050565b60006020820190508181036000830152614c3c8161414d565b9050919050565b60006020820190508181036000830152614c5c8161418d565b9050919050565b60006020820190508181036000830152614c7c816141f3565b9050919050565b60006020820190508181036000830152614c9c81614233565b9050919050565b60006020820190508181036000830152614cbc81614299565b9050919050565b60006020820190508181036000830152614cdc816142ff565b9050919050565b60006020820190508181036000830152614cfc81614365565b9050919050565b60006020820190508181036000830152614d1c816143cb565b9050919050565b60006020820190508181036000830152614d3c81614431565b9050919050565b60006020820190508181036000830152614d5c81614471565b9050919050565b60006020820190508181036000830152614d7c816144d7565b9050919050565b60006020820190508181036000830152614d9c8161453d565b9050919050565b60006020820190508181036000830152614dbc816145a3565b9050919050565b60006020820190508181036000830152614ddc81614609565b9050919050565b60006020820190508181036000830152614dfc8161466f565b9050919050565b60006020820190508181036000830152614e1c816146af565b9050919050565b60006020820190508181036000830152614e3c81614715565b9050919050565b60006020820190508181036000830152614e5c816147bb565b9050919050565b60006020820190508181036000830152614e7c81614821565b9050919050565b60006020820190508181036000830152614e9c81614887565b9050919050565b60006020820190508181036000830152614ebc816148ed565b9050919050565b60006020820190508181036000830152614edc81614993565b9050919050565b6000602082019050614ef86000830184614a08565b92915050565b6000604082019050614f136000830185614a08565b614f206020830184614a08565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715614f4e57614f4d6153a7565b5b8060405250919050565b600067ffffffffffffffff821115614f7357614f726153a7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f9f57614f9e6153a7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614fcb57614fca6153a7565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150678261521c565b91506150728361521c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150a7576150a661531a565b5b828201905092915050565b60006150bd82615226565b91506150c883615226565b92508260ff038211156150de576150dd61531a565b5b828201905092915050565b60006150f48261521c565b91506150ff8361521c565b92508261510f5761510e615349565b5b828204905092915050565b60006151258261521c565b91506151308361521c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151695761516861531a565b5b828202905092915050565b600061517f8261521c565b915061518a8361521c565b92508282101561519d5761519c61531a565b5b828203905092915050565b60006151b3826151fc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615260578082015181840152602081019050615245565b8381111561526f576000848401525b50505050565b60006152808261521c565b915060008214156152945761529361531a565b5b600182039050919050565b600060028204905060018216806152b757607f821691505b602082108114156152cb576152ca615378565b5b50919050565b60006152dc8261521c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561530f5761530e61531a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015615404576154a7565b60046000803e6154156000516153e7565b6308c379a0811461542657506154a7565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715615452575050506154a7565b808201805167ffffffffffffffff8111156154715750505050506154a7565b8060208301013d850181111561548c575050505050506154a7565b615495826153d6565b60208401016040528296505050505050505b90565b6154b3816151a8565b81146154be57600080fd5b50565b6154ca816151ba565b81146154d557600080fd5b50565b6154e1816151c6565b81146154ec57600080fd5b50565b6154f8816151d0565b811461550357600080fd5b50565b61550f8161521c565b811461551a57600080fd5b5056fea2646970667358221220834835254cc6ce570c666608ddde20c5e4540a3161c78f91ddca249b0394949c64736f6c6343000800003368747470733a2f2f6f776e6c792e696f2f6e66742f726577617264732f6170692f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e45760003560e01c80638456cb591161010f578063ca15c873116100a2578063e985e9c511610071578063e985e9c514610569578063f242432a14610599578063f2fde38b146105b5578063f5298aca146105d1576101e4565b8063ca15c873146104e1578063d539139314610511578063d547741f1461052f578063e63ab1e91461054b576101e4565b806395d89b41116100de57806395d89b4114610459578063a217fddf14610477578063a22cb46514610495578063c87b56dd146104b1576101e4565b80638456cb59146103d15780638da5cb5b146103db5780639010d07c146103f957806391d1485414610429576101e4565b80632f2ff15d116101875780635c975abb116101565780635c975abb146103715780636b20c4541461038f578063715018a6146103ab578063731133e9146103b5576101e4565b80632f2ff15d146102ff57806336568abe1461031b5780633f4ba83a146103375780634e1273f414610341576101e4565b80630e89341c116101c35780630e89341c146102675780631f7fdffa14610297578063248a9ca3146102b35780632eb2c2d6146102e3576101e4565b8062fdd58e146101e957806301ffc9a71461021957806306fdde0314610249575b600080fd5b61020360048036038101906101fe9190613d13565b6105ed565b6040516102109190614ee3565b60405180910390f35b610233600480360381019061022e9190613f26565b6106b7565b6040516102409190614bab565b60405180910390f35b6102516106c9565b60405161025e9190614be1565b60405180910390f35b610281600480360381019061027c9190613f78565b61075b565b60405161028e9190614be1565b60405180910390f35b6102b160048036038101906102ac9190613c2c565b6107ef565b005b6102cd60048036038101906102c89190613e85565b610871565b6040516102da9190614bc6565b60405180910390f35b6102fd60048036038101906102f89190613a5f565b610890565b005b61031960048036038101906103149190613eae565b610931565b005b61033560048036038101906103309190613eae565b610965565b005b61033f610999565b005b61035b60048036038101906103569190613e19565b610a13565b6040516103689190614b52565b60405180910390f35b610379610bc4565b6040516103869190614bab565b60405180910390f35b6103a960048036038101906103a49190613bad565b610bdb565b005b6103b3610c78565b005b6103cf60048036038101906103ca9190613d9e565b610d00565b005b6103d9610d82565b005b6103e3610dfc565b6040516103f09190614a75565b60405180910390f35b610413600480360381019061040e9190613eea565b610e26565b6040516104209190614a75565b60405180910390f35b610443600480360381019061043e9190613eae565b610e55565b6040516104509190614bab565b60405180910390f35b610461610ebf565b60405161046e9190614be1565b60405180910390f35b61047f610f51565b60405161048c9190614bc6565b60405180910390f35b6104af60048036038101906104aa9190613cd7565b610f58565b005b6104cb60048036038101906104c69190613f78565b6110d9565b6040516104d89190614be1565b60405180910390f35b6104fb60048036038101906104f69190613e85565b611114565b6040516105089190614ee3565b60405180910390f35b610519611138565b6040516105269190614bc6565b60405180910390f35b61054960048036038101906105449190613eae565b61115c565b005b610553611190565b6040516105609190614bc6565b60405180910390f35b610583600480360381019061057e9190613a23565b6111b4565b6040516105909190614bab565b60405180910390f35b6105b360048036038101906105ae9190613b1e565b611248565b005b6105cf60048036038101906105ca91906139fa565b6112e9565b005b6105eb60048036038101906105e69190613d4f565b6113e1565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065590614c83565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106c2826114bc565b9050919050565b6060600680546106d89061529f565b80601f01602080910402602001604051908101604052809291908181526020018280546107049061529f565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b60606004805461076a9061529f565b80601f01602080910402602001604051908101604052809291908181526020018280546107969061529f565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b50505050509050919050565b6108207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081b61159e565b610e55565b61085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690614da3565b60405180910390fd5b61086b848484846115a6565b50505050565b6000806000838152602001908152602001600020600101549050919050565b61089861159e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108de57506108dd856108d861159e565b6111b4565b5b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490614d63565b60405180910390fd5b61092a8585858585611811565b5050505050565b61093b8282611b74565b610960816001600085815260200190815260200160002061148c90919063ffffffff16565b505050565b61096f8282611b9d565b6109948160016000858152602001908152602001600020611c2090919063ffffffff16565b505050565b6109ca7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109c561159e565b610e55565b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090614e03565b60405180910390fd5b610a11611c50565b565b60608151835114610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090614e63565b60405180910390fd5b6000835167ffffffffffffffff811115610a9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610aca5781602001602082028036833780820191505090505b50905060005b8451811015610bb957610b63858281518110610b15577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610b56577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105ed565b828281518110610b9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610bb2906152d1565b9050610ad0565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610be361159e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c295750610c2883610c2361159e565b6111b4565b5b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90614d03565b60405180910390fd5b610c73838383611cf2565b505050565b610c8061159e565b73ffffffffffffffffffffffffffffffffffffffff16610c9e610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90614de3565b60405180910390fd5b610cfe6000611ff1565b565b610d317f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d2c61159e565b610e55565b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614da3565b60405180910390fd5b610d7c848484846120b7565b50505050565b610db37f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610dae61159e565b610e55565b610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990614e23565b60405180910390fd5b610dfa61224e565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e4d82600160008681526020019081526020016000206122f190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060078054610ece9061529f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa9061529f565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610f7761159e565b73ffffffffffffffffffffffffffffffffffffffff161415610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590614e43565b60405180910390fd5b8060036000610fdb61159e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108861159e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110cd9190614bab565b60405180910390a35050565b60606110e48261075b565b6110ed8361230b565b6040516020016110fe929190614a17565b6040516020818303038152906040529050919050565b6000611131600160008481526020019081526020016000206124e0565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61116682826124f5565b61118b8160016000858152602001908152602001600020611c2090919063ffffffff16565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125061159e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061129657506112958561129061159e565b6111b4565b5b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90614d03565b60405180910390fd5b6112e2858585858561251e565b5050505050565b6112f161159e565b73ffffffffffffffffffffffffffffffffffffffff1661130f610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90614de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90614ca3565b60405180910390fd5b6113de81611ff1565b50565b6113e961159e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142f575061142e8361142961159e565b6111b4565b5b61146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614d03565b60405180910390fd5b6114798383836127a3565b505050565b61148882826129c2565b5050565b60006114b4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612aa2565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061158757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611597575061159682612b12565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90614ea3565b60405180910390fd5b815183511461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614e83565b60405180910390fd5b600061166461159e565b905061167581600087878787612b8c565b60005b845181101561177b578381815181106116ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600260008784815181106116ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611761919061505c565b925050819055508080611773906152d1565b915050611678565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117f3929190614b74565b60405180910390a461180a81600087878787612ba2565b5050505050565b8151835114611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614d43565b60405180910390fd5b60006118cf61159e565b90506118df818787878787612b8c565b60005b8451811015611adf576000858281518110611926577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061196b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614dc3565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac4919061505c565b9250508190555050505080611ad8906152d1565b90506118e2565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b56929190614b74565b60405180910390a4611b6c818787878787612ba2565b505050505050565b611b7d82610871565b611b8e81611b8961159e565b612d72565b611b9883836129c2565b505050565b611ba561159e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0990614ec3565b60405180910390fd5b611c1c8282612e0f565b5050565b6000611c48836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612ef0565b905092915050565b611c58610bc4565b611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90614c63565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cdb61159e565b604051611ce89190614a75565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990614d83565b60405180910390fd5b8051825114611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90614e83565b60405180910390fd5b6000611db061159e565b9050611dd081856000868660405180602001604052806000815250612b8c565b60005b8351811015611f6b576000848281518110611e17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110611e5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614cc3565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611f63906152d1565b915050611dd3565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611fe3929190614b74565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90614ea3565b60405180910390fd5b600061213161159e565b90506121528160008761214388613076565b61214c88613076565b87612b8c565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b2919061505c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612230929190614efe565b60405180910390a46122478160008787878761313c565b5050505050565b612256610bc4565b15612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d90614d23565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122da61159e565b6040516122e79190614a75565b60405180910390a1565b6000612300836000018361330c565b60001c905092915050565b60606000821415612353576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124db565b600082905060005b6000821461238557808061236e906152d1565b915050600a8261237e91906150e9565b915061235b565b60008167ffffffffffffffff8111156123c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123f95781602001600182028036833780820191505090505b50905060008290505b600086146124d3576001816124179190615174565b90506000600a808861242991906150e9565b612433919061511a565b8761243e9190615174565b603061244a91906150b2565b905060008160f81b90508084848151811061248e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886124ca91906150e9565b97505050612402565b819450505050505b919050565b60006124ee8260000161335d565b9050919050565b6124fe82610871565b61250f8161250a61159e565b612d72565b6125198383612e0f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614d43565b60405180910390fd5b600061259861159e565b90506125b88187876125a988613076565b6125b288613076565b87612b8c565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790614dc3565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612707919061505c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612784929190614efe565b60405180910390a461279a82888888888861313c565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614d83565b60405180910390fd5b600061281d61159e565b905061284d8185600061282f87613076565b61283887613076565b60405180602001604052806000815250612b8c565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc90614cc3565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516129b3929190614efe565b60405180910390a45050505050565b6129cc8282610e55565b612a9e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612a4361159e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612aae838361336e565b612b07578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612b0c565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b855750612b8482613391565b5b9050919050565b612b9a86868686868661340b565b505050505050565b612bc18473ffffffffffffffffffffffffffffffffffffffff16613469565b15612d6a578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612c07959493929190614a90565b602060405180830381600087803b158015612c2157600080fd5b505af1925050508015612c5257506040513d601f19601f82011682018060405250810190612c4f9190613f4f565b60015b612ce157612c5e6153f4565b80612c695750612ca6565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9d9190614be1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd890614c03565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90614c43565b60405180910390fd5b505b505050505050565b612d7c8282610e55565b612e0b57612da18173ffffffffffffffffffffffffffffffffffffffff16601461347c565b612daf8360001c602061347c565b604051602001612dc0929190614a3b565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e029190614be1565b60405180910390fd5b5050565b612e198282610e55565b15612eec57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612e9161159e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461306a576000600182612f229190615174565b9050600060018660000180549050612f3a9190615174565b9050818114612ff5576000866000018281548110612f81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061302f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613070565b60009150505b92915050565b60606000600167ffffffffffffffff8111156130bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156130e95781602001602082028036833780820191505090505b5090508281600081518110613127577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61315b8473ffffffffffffffffffffffffffffffffffffffff16613469565b15613304578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131a1959493929190614af8565b602060405180830381600087803b1580156131bb57600080fd5b505af19250505080156131ec57506040513d601f19601f820116820180604052508101906131e99190613f4f565b60015b61327b576131f86153f4565b806132035750613240565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132379190614be1565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327290614c03565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614c43565b60405180910390fd5b505b505050505050565b600082600001828154811061334a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613404575061340382613776565b5b9050919050565b6134198686868686866137e0565b613421610bc4565b15613461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345890614ce3565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b60606000600283600261348f919061511a565b613499919061505c565b67ffffffffffffffff8111156134d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561350a5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613568577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613632919061511a565b61363c919061505c565b90505b6001811115613728577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106136a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106136e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061372190615275565b905061363f565b506000841461376c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376390614c23565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b60006137fb6137f684614f58565b614f27565b9050808382526020820190508285602086028201111561381a57600080fd5b60005b8581101561384a578161383088826138fe565b84526020840193506020830192505060018101905061381d565b5050509392505050565b600061386761386284614f84565b614f27565b9050808382526020820190508285602086028201111561388657600080fd5b60005b858110156138b6578161389c88826139e5565b845260208401935060208301925050600181019050613889565b5050509392505050565b60006138d36138ce84614fb0565b614f27565b9050828152602081018484840111156138eb57600080fd5b6138f6848285615233565b509392505050565b60008135905061390d816154aa565b92915050565b600082601f83011261392457600080fd5b81356139348482602086016137e8565b91505092915050565b600082601f83011261394e57600080fd5b813561395e848260208601613854565b91505092915050565b600081359050613976816154c1565b92915050565b60008135905061398b816154d8565b92915050565b6000813590506139a0816154ef565b92915050565b6000815190506139b5816154ef565b92915050565b600082601f8301126139cc57600080fd5b81356139dc8482602086016138c0565b91505092915050565b6000813590506139f481615506565b92915050565b600060208284031215613a0c57600080fd5b6000613a1a848285016138fe565b91505092915050565b60008060408385031215613a3657600080fd5b6000613a44858286016138fe565b9250506020613a55858286016138fe565b9150509250929050565b600080600080600060a08688031215613a7757600080fd5b6000613a85888289016138fe565b9550506020613a96888289016138fe565b945050604086013567ffffffffffffffff811115613ab357600080fd5b613abf8882890161393d565b935050606086013567ffffffffffffffff811115613adc57600080fd5b613ae88882890161393d565b925050608086013567ffffffffffffffff811115613b0557600080fd5b613b11888289016139bb565b9150509295509295909350565b600080600080600060a08688031215613b3657600080fd5b6000613b44888289016138fe565b9550506020613b55888289016138fe565b9450506040613b66888289016139e5565b9350506060613b77888289016139e5565b925050608086013567ffffffffffffffff811115613b9457600080fd5b613ba0888289016139bb565b9150509295509295909350565b600080600060608486031215613bc257600080fd5b6000613bd0868287016138fe565b935050602084013567ffffffffffffffff811115613bed57600080fd5b613bf98682870161393d565b925050604084013567ffffffffffffffff811115613c1657600080fd5b613c228682870161393d565b9150509250925092565b60008060008060808587031215613c4257600080fd5b6000613c50878288016138fe565b945050602085013567ffffffffffffffff811115613c6d57600080fd5b613c798782880161393d565b935050604085013567ffffffffffffffff811115613c9657600080fd5b613ca28782880161393d565b925050606085013567ffffffffffffffff811115613cbf57600080fd5b613ccb878288016139bb565b91505092959194509250565b60008060408385031215613cea57600080fd5b6000613cf8858286016138fe565b9250506020613d0985828601613967565b9150509250929050565b60008060408385031215613d2657600080fd5b6000613d34858286016138fe565b9250506020613d45858286016139e5565b9150509250929050565b600080600060608486031215613d6457600080fd5b6000613d72868287016138fe565b9350506020613d83868287016139e5565b9250506040613d94868287016139e5565b9150509250925092565b60008060008060808587031215613db457600080fd5b6000613dc2878288016138fe565b9450506020613dd3878288016139e5565b9350506040613de4878288016139e5565b925050606085013567ffffffffffffffff811115613e0157600080fd5b613e0d878288016139bb565b91505092959194509250565b60008060408385031215613e2c57600080fd5b600083013567ffffffffffffffff811115613e4657600080fd5b613e5285828601613913565b925050602083013567ffffffffffffffff811115613e6f57600080fd5b613e7b8582860161393d565b9150509250929050565b600060208284031215613e9757600080fd5b6000613ea58482850161397c565b91505092915050565b60008060408385031215613ec157600080fd5b6000613ecf8582860161397c565b9250506020613ee0858286016138fe565b9150509250929050565b60008060408385031215613efd57600080fd5b6000613f0b8582860161397c565b9250506020613f1c858286016139e5565b9150509250929050565b600060208284031215613f3857600080fd5b6000613f4684828501613991565b91505092915050565b600060208284031215613f6157600080fd5b6000613f6f848285016139a6565b91505092915050565b600060208284031215613f8a57600080fd5b6000613f98848285016139e5565b91505092915050565b6000613fad83836149f9565b60208301905092915050565b613fc2816151a8565b82525050565b6000613fd382614ff0565b613fdd818561501e565b9350613fe883614fe0565b8060005b838110156140195781516140008882613fa1565b975061400b83615011565b925050600181019050613fec565b5085935050505092915050565b61402f816151ba565b82525050565b61403e816151c6565b82525050565b600061404f82614ffb565b614059818561502f565b9350614069818560208601615242565b614072816153d6565b840191505092915050565b600061408882615006565b6140928185615040565b93506140a2818560208601615242565b6140ab816153d6565b840191505092915050565b60006140c182615006565b6140cb8185615051565b93506140db818560208601615242565b80840191505092915050565b60006140f4603483615040565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b600061415a602083615040565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061419a602883615040565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614200601483615040565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614240602b83615040565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006142a6602683615040565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430c602483615040565b91507f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614372602c83615040565b91507f455243313135355061757361626c653a20746f6b656e207472616e736665722060008301527f7768696c652070617573656400000000000000000000000000000000000000006020830152604082019050919050565b60006143d8602983615040565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b600061443e601083615040565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061447e602583615040565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144e4603283615040565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061454a602383615040565b91507f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145b0603883615040565b91507f455243313135355072657365744d696e7465725061757365723a206d7573742060008301527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006020830152604082019050919050565b6000614616602a83615040565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b600061467c602083615040565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006146bc603b83615040565b91507f455243313135355072657365744d696e7465725061757365723a206d7573742060008301527f686176652070617573657220726f6c6520746f20756e706175736500000000006020830152604082019050919050565b6000614722603983615040565b91507f455243313135355072657365744d696e7465725061757365723a206d7573742060008301527f686176652070617573657220726f6c6520746f207061757365000000000000006020830152604082019050919050565b6000614788601783615051565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006147c8602983615040565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b600061482e602983615040565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000614894602883615040565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148fa602183615040565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614960601183615051565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006149a0602f83615040565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b614a028161521c565b82525050565b614a118161521c565b82525050565b6000614a2382856140b6565b9150614a2f82846140b6565b91508190509392505050565b6000614a468261477b565b9150614a5282856140b6565b9150614a5d82614953565b9150614a6982846140b6565b91508190509392505050565b6000602082019050614a8a6000830184613fb9565b92915050565b600060a082019050614aa56000830188613fb9565b614ab26020830187613fb9565b8181036040830152614ac48186613fc8565b90508181036060830152614ad88185613fc8565b90508181036080830152614aec8184614044565b90509695505050505050565b600060a082019050614b0d6000830188613fb9565b614b1a6020830187613fb9565b614b276040830186614a08565b614b346060830185614a08565b8181036080830152614b468184614044565b90509695505050505050565b60006020820190508181036000830152614b6c8184613fc8565b905092915050565b60006040820190508181036000830152614b8e8185613fc8565b90508181036020830152614ba28184613fc8565b90509392505050565b6000602082019050614bc06000830184614026565b92915050565b6000602082019050614bdb6000830184614035565b92915050565b60006020820190508181036000830152614bfb818461407d565b905092915050565b60006020820190508181036000830152614c1c816140e7565b9050919050565b60006020820190508181036000830152614c3c8161414d565b9050919050565b60006020820190508181036000830152614c5c8161418d565b9050919050565b60006020820190508181036000830152614c7c816141f3565b9050919050565b60006020820190508181036000830152614c9c81614233565b9050919050565b60006020820190508181036000830152614cbc81614299565b9050919050565b60006020820190508181036000830152614cdc816142ff565b9050919050565b60006020820190508181036000830152614cfc81614365565b9050919050565b60006020820190508181036000830152614d1c816143cb565b9050919050565b60006020820190508181036000830152614d3c81614431565b9050919050565b60006020820190508181036000830152614d5c81614471565b9050919050565b60006020820190508181036000830152614d7c816144d7565b9050919050565b60006020820190508181036000830152614d9c8161453d565b9050919050565b60006020820190508181036000830152614dbc816145a3565b9050919050565b60006020820190508181036000830152614ddc81614609565b9050919050565b60006020820190508181036000830152614dfc8161466f565b9050919050565b60006020820190508181036000830152614e1c816146af565b9050919050565b60006020820190508181036000830152614e3c81614715565b9050919050565b60006020820190508181036000830152614e5c816147bb565b9050919050565b60006020820190508181036000830152614e7c81614821565b9050919050565b60006020820190508181036000830152614e9c81614887565b9050919050565b60006020820190508181036000830152614ebc816148ed565b9050919050565b60006020820190508181036000830152614edc81614993565b9050919050565b6000602082019050614ef86000830184614a08565b92915050565b6000604082019050614f136000830185614a08565b614f206020830184614a08565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715614f4e57614f4d6153a7565b5b8060405250919050565b600067ffffffffffffffff821115614f7357614f726153a7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f9f57614f9e6153a7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614fcb57614fca6153a7565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150678261521c565b91506150728361521c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150a7576150a661531a565b5b828201905092915050565b60006150bd82615226565b91506150c883615226565b92508260ff038211156150de576150dd61531a565b5b828201905092915050565b60006150f48261521c565b91506150ff8361521c565b92508261510f5761510e615349565b5b828204905092915050565b60006151258261521c565b91506151308361521c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151695761516861531a565b5b828202905092915050565b600061517f8261521c565b915061518a8361521c565b92508282101561519d5761519c61531a565b5b828203905092915050565b60006151b3826151fc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615260578082015181840152602081019050615245565b8381111561526f576000848401525b50505050565b60006152808261521c565b915060008214156152945761529361531a565b5b600182039050919050565b600060028204905060018216806152b757607f821691505b602082108114156152cb576152ca615378565b5b50919050565b60006152dc8261521c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561530f5761530e61531a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015615404576154a7565b60046000803e6154156000516153e7565b6308c379a0811461542657506154a7565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715615452575050506154a7565b808201805167ffffffffffffffff8111156154715750505050506154a7565b8060208301013d850181111561548c575050505050506154a7565b615495826153d6565b60208401016040528296505050505050505b90565b6154b3816151a8565b81146154be57600080fd5b50565b6154ca816151ba565b81146154d557600080fd5b50565b6154e1816151c6565b81146154ec57600080fd5b50565b6154f8816151d0565b811461550357600080fd5b50565b61550f8161521c565b811461551a57600080fd5b5056fea2646970667358221220834835254cc6ce570c666608ddde20c5e4540a3161c78f91ddca249b0394949c64736f6c63430008000033
Deployed Bytecode Sourcemap
132:1204:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2110:231:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3213:217:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;412:83:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1854:105:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2026:325:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5412:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4185:442:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2129:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2636:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2961:180:7;;;:::i;:::-;;2507:504:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1034:84:16;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;628:342:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1650:94:14;;;:::i;:::-;;1626:293:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2567:174;;;:::i;:::-;;999:87:14;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1599:143:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4329:137:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;503:87:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2361:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3084:311:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;598:154:15;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1910:132:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;916:62:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2379:167:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;985:62:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:168:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3707:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1899:192:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;312:310:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2110:231:4;2196:7;2243:1;2224:21;;:7;:21;;;;2216:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2311:9;:13;2321:2;2311:13;;;;;;;;;;;:22;2325:7;2311:22;;;;;;;;;;;;;;;;2304:29;;2110:231;;;;:::o;3213:217:7:-;3357:4;3386:36;3410:11;3386:23;:36::i;:::-;3379:43;;3213:217;;;:::o;412:83:15:-;449:13;482:5;475:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412:83;:::o;1854:105:4:-;1914:13;1947:4;1940:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1854:105;;;:::o;2026:325:7:-;2201:34;954:24;2222:12;:10;:12::i;:::-;2201:7;:34::i;:::-;2193:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;2309:34;2320:2;2324:3;2329:7;2338:4;2309:10;:34::i;:::-;2026:325;;;;:::o;5412:121:0:-;5478:7;5504:6;:12;5511:4;5504:12;;;;;;;;;;;:22;;;5497:29;;5412:121;;;:::o;4185:442:4:-;4426:12;:10;:12::i;:::-;4418:20;;:4;:20;;;:60;;;;4442:36;4459:4;4465:12;:10;:12::i;:::-;4442:16;:36::i;:::-;4418:60;4396:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;4567:52;4590:4;4596:2;4600:3;4605:7;4614:4;4567:22;:52::i;:::-;4185:442;;;;;:::o;2129:162:1:-;2213:30;2229:4;2235:7;2213:15;:30::i;:::-;2253:31;2276:7;2253:12;:18;2266:4;2253:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;2129:162;;:::o;2636:171::-;2723:33;2742:4;2748:7;2723:18;:33::i;:::-;2766:34;2792:7;2766:12;:18;2779:4;2766:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2636:171;;:::o;2961:180:7:-;3014:34;1023:24;3035:12;:10;:12::i;:::-;3014:7;:34::i;:::-;3006:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;3123:10;:8;:10::i;:::-;2961:180::o;2507:504:4:-;2643:16;2704:3;:10;2685:8;:15;:29;2677:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2773:30;2820:8;:15;2806:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2773:63;;2854:9;2849:122;2873:8;:15;2869:1;:19;2849:122;;;2929:30;2939:8;2948:1;2939:11;;;;;;;;;;;;;;;;;;;;;;2952:3;2956:1;2952:6;;;;;;;;;;;;;;;;;;;;;;2929:9;:30::i;:::-;2910:13;2924:1;2910:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;2890:3;;;;:::i;:::-;;;2849:122;;;;2990:13;2983:20;;;2507:504;;;;:::o;1034:84:16:-;1081:4;1104:7;;;;;;;;;;;1097:14;;1034:84;:::o;628:342:5:-;798:12;:10;:12::i;:::-;787:23;;:7;:23;;;:66;;;;814:39;831:7;840:12;:10;:12::i;:::-;814:16;:39::i;:::-;787:66;766:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;931:32;942:7;951:3;956:6;931:10;:32::i;:::-;628:342;;;:::o;1650:94:14:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1626:293:7:-;1776:34;954:24;1797:12;:10;:12::i;:::-;1776:7;:34::i;:::-;1768:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;1884:27;1890:2;1894;1898:6;1906:4;1884:5;:27::i;:::-;1626:293;;;;:::o;2567:174::-;2618:34;1023:24;2639:12;:10;:12::i;:::-;2618:7;:34::i;:::-;2610:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;2725:8;:6;:8::i;:::-;2567:174::o;999:87:14:-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;1599:143:1:-;1681:7;1707:28;1729:5;1707:12;:18;1720:4;1707:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1700:35;;1599:143;;;;:::o;4329:137:0:-;4407:4;4430:6;:12;4437:4;4430:12;;;;;;;;;;;:20;;:29;4451:7;4430:29;;;;;;;;;;;;;;;;;;;;;;;;;4423:36;;4329:137;;;;:::o;503:87:15:-;542:13;575:7;568:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503:87;:::o;2361:49:0:-;2406:4;2361:49;;;:::o;3084:311:4:-;3203:8;3187:24;;:12;:10;:12::i;:::-;:24;;;;3179:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3315:8;3270:18;:32;3289:12;:10;:12::i;:::-;3270:32;;;;;;;;;;;;;;;:42;3303:8;3270:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;3368:8;3339:48;;3354:12;:10;:12::i;:::-;3339:48;;;3378:8;3339:48;;;;;;:::i;:::-;;;;;;;;3084:311;;:::o;598:154:15:-;654:13;711:12;715:7;711:3;:12::i;:::-;725:17;734:7;725:8;:17::i;:::-;694:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;680:64;;598:154;;;:::o;1910:132:1:-;1982:7;2008:27;:12;:18;2021:4;2008:18;;;;;;;;;;;:25;:27::i;:::-;2001:34;;1910:132;;;:::o;916:62:7:-;954:24;916:62;:::o;2379:167:1:-;2464:31;2481:4;2487:7;2464:16;:31::i;:::-;2505:34;2531:7;2505:12;:18;2518:4;2505:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2379:167;;:::o;985:62:7:-;1023:24;985:62;:::o;3467:168:4:-;3566:4;3590:18;:27;3609:7;3590:27;;;;;;;;;;;;;;;:37;3618:8;3590:37;;;;;;;;;;;;;;;;;;;;;;;;;3583:44;;3467:168;;;;:::o;3707:401::-;3923:12;:10;:12::i;:::-;3915:20;;:4;:20;;;:60;;;;3939:36;3956:4;3962:12;:10;:12::i;:::-;3939:16;:36::i;:::-;3915:60;3893:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;4055:45;4073:4;4079:2;4083;4087:6;4095:4;4055:17;:45::i;:::-;3707:401;;;;;:::o;1899:192:14:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;312:310:5:-;457:12;:10;:12::i;:::-;446:23;;:7;:23;;;:66;;;;473:39;490:7;499:12;:10;:12::i;:::-;473:16;:39::i;:::-;446:66;425:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;590:25;596:7;605:2;609:5;590;:25::i;:::-;312:310;;;:::o;7579:110:0:-;7657:25;7668:4;7674:7;7657:10;:25::i;:::-;7579:110;;:::o;7545:150:9:-;7615:4;7638:50;7643:3;:10;;7679:5;7663:23;;7655:32;;7638:4;:50::i;:::-;7631:57;;7545:150;;;;:::o;1145:298:4:-;1247:4;1295:26;1280:41;;;:11;:41;;;;:106;;;;1349:37;1334:52;;;:11;:52;;;;1280:106;:155;;;;1399:36;1423:11;1399:23;:36::i;:::-;1280:155;1264:171;;1145:298;;;:::o;602:98:3:-;655:7;682:10;675:17;;602:98;:::o;9607:735:4:-;9799:1;9785:16;;:2;:16;;;;9777:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;9872:7;:14;9858:3;:10;:28;9850:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;9944:16;9963:12;:10;:12::i;:::-;9944:31;;9988:66;10009:8;10027:1;10031:2;10035:3;10040:7;10049:4;9988:20;:66::i;:::-;10072:9;10067:103;10091:3;:10;10087:1;:14;10067:103;;;10148:7;10156:1;10148:10;;;;;;;;;;;;;;;;;;;;;;10123:9;:17;10133:3;10137:1;10133:6;;;;;;;;;;;;;;;;;;;;;;10123:17;;;;;;;;;;;:21;10141:2;10123:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;10103:3;;;;;:::i;:::-;;;;10067:103;;;;10223:2;10187:53;;10219:1;10187:53;;10201:8;10187:53;;;10227:3;10232:7;10187:53;;;;;;;:::i;:::-;;;;;;;;10253:81;10289:8;10307:1;10311:2;10315:3;10320:7;10329:4;10253:35;:81::i;:::-;9607:735;;;;;:::o;6257:1062::-;6484:7;:14;6470:3;:10;:28;6462:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;6576:1;6562:16;;:2;:16;;;;6554:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6633:16;6652:12;:10;:12::i;:::-;6633:31;;6677:60;6698:8;6708:4;6714:2;6718:3;6723:7;6732:4;6677:20;:60::i;:::-;6755:9;6750:409;6774:3;:10;6770:1;:14;6750:409;;;6806:10;6819:3;6823:1;6819:6;;;;;;;;;;;;;;;;;;;;;;6806:19;;6840:14;6857:7;6865:1;6857:10;;;;;;;;;;;;;;;;;;;;;;6840:27;;6884:19;6906:9;:13;6916:2;6906:13;;;;;;;;;;;:19;6920:4;6906:19;;;;;;;;;;;;;;;;6884:41;;6963:6;6948:11;:21;;6940:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;7088:6;7074:11;:20;7052:9;:13;7062:2;7052:13;;;;;;;;;;;:19;7066:4;7052:19;;;;;;;;;;;;;;;:42;;;;7141:6;7120:9;:13;7130:2;7120:13;;;;;;;;;;;:17;7134:2;7120:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;6750:409;;;6786:3;;;;:::i;:::-;;;6750:409;;;;7206:2;7176:47;;7200:4;7176:47;;7190:8;7176:47;;;7210:3;7215:7;7176:47;;;;;;;:::i;:::-;;;;;;;;7236:75;7272:8;7282:4;7288:2;7292:3;7297:7;7306:4;7236:35;:75::i;:::-;6257:1062;;;;;;:::o;5783:145:0:-;5866:18;5879:4;5866:12;:18::i;:::-;3925:30;3936:4;3942:12;:10;:12::i;:::-;3925:10;:30::i;:::-;5896:25:::1;5907:4;5913:7;5896:10;:25::i;:::-;5783:145:::0;;;:::o;6800:214::-;6906:12;:10;:12::i;:::-;6895:23;;:7;:23;;;6887:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;6981:26;6993:4;6999:7;6981:11;:26::i;:::-;6800:214;;:::o;7863:156:9:-;7936:4;7959:53;7967:3;:10;;8003:5;7987:23;;7979:32;;7959:7;:53::i;:::-;7952:60;;7863:156;;;;:::o;2046:117:16:-;1613:8;:6;:8::i;:::-;1605:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2114:5:::1;2104:7;;:15;;;;;;;;;;;;;;;;;;2134:22;2143:12;:10;:12::i;:::-;2134:22;;;;;;:::i;:::-;;;;;;;;2046:117::o:0;11467:906:4:-;11641:1;11622:21;;:7;:21;;;;11614:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;11716:7;:14;11702:3;:10;:28;11694:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11788:16;11807:12;:10;:12::i;:::-;11788:31;;11832:69;11853:8;11863:7;11880:1;11884:3;11889:7;11832:69;;;;;;;;;;;;:20;:69::i;:::-;11919:9;11914:376;11938:3;:10;11934:1;:14;11914:376;;;11970:10;11983:3;11987:1;11983:6;;;;;;;;;;;;;;;;;;;;;;11970:19;;12004:14;12021:7;12029:1;12021:10;;;;;;;;;;;;;;;;;;;;;;12004:27;;12048:22;12073:9;:13;12083:2;12073:13;;;;;;;;;;;:22;12087:7;12073:22;;;;;;;;;;;;;;;;12048:47;;12136:6;12118:14;:24;;12110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12261:6;12244:14;:23;12219:9;:13;12229:2;12219:13;;;;;;;;;;;:22;12233:7;12219:22;;;;;;;;;;;;;;;:48;;;;11914:376;;;11950:3;;;;;:::i;:::-;;;;11914:376;;;;12348:1;12307:58;;12331:7;12307:58;;12321:8;12307:58;;;12352:3;12357:7;12307:58;;;;;;;:::i;:::-;;;;;;;;11467:906;;;;:::o;2099:173:14:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2099:173;;:::o;8652:599:4:-;8829:1;8810:21;;:7;:21;;;;8802:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8882:16;8901:12;:10;:12::i;:::-;8882:31;;8926:107;8947:8;8965:1;8969:7;8978:21;8996:2;8978:17;:21::i;:::-;9001:25;9019:6;9001:17;:25::i;:::-;9028:4;8926:20;:107::i;:::-;9072:6;9046:9;:13;9056:2;9046:13;;;;;;;;;;;:22;9060:7;9046:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;9131:7;9094:57;;9127:1;9094:57;;9109:8;9094:57;;;9140:2;9144:6;9094:57;;;;;;;:::i;:::-;;;;;;;;9164:79;9195:8;9213:1;9217:7;9226:2;9230:6;9238:4;9164:30;:79::i;:::-;8652:599;;;;;:::o;1799:115:16:-;1348:8;:6;:8::i;:::-;1347:9;1339:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1868:4:::1;1858:7;;:14;;;;;;;;;;;;;;;;;;1887:20;1894:12;:10;:12::i;:::-;1887:20;;;;;;:::i;:::-;;;;;;;;1799:115::o:0;8803:156:9:-;8877:7;8927:22;8931:3;:10;;8943:5;8927:3;:22::i;:::-;8919:31;;8896:56;;8803:156;;;;:::o;760:573:15:-;810:27;860:1;854:2;:7;850:50;;;878:10;;;;;;;;;;;;;;;;;;;;;850:50;910:6;919:2;910:11;;932:8;951:69;963:1;958;:6;951:69;;981:5;;;;;:::i;:::-;;;;1006:2;1001:7;;;;;:::i;:::-;;;951:69;;;1030:17;1060:3;1050:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030:34;;1075:6;1084:3;1075:12;;1098:198;1111:1;1105:2;:7;1098:198;;1135:1;1133;:3;;;;:::i;:::-;1129:7;;1151:10;1191:2;1186;1181;:7;;;;:::i;:::-;:12;;;;:::i;:::-;1176:2;:17;;;;:::i;:::-;1165:2;:29;;;;:::i;:::-;1151:44;;1210:9;1229:4;1222:12;;1210:24;;1259:2;1249:4;1254:1;1249:7;;;;;;;;;;;;;;;;;;;:12;;;;;;;;;;;1282:2;1276:8;;;;;:::i;:::-;;;1098:198;;;;;1320:4;1306:19;;;;;;760:573;;;;:::o;8346:115:9:-;8409:7;8435:19;8443:3;:10;;8435:7;:19::i;:::-;8428:26;;8346:115;;;:::o;6162:147:0:-;6246:18;6259:4;6246:12;:18::i;:::-;3925:30;3936:4;3942:12;:10;:12::i;:::-;3925:10;:30::i;:::-;6276:26:::1;6288:4;6294:7;6276:11;:26::i;:::-;6162:147:::0;;;:::o;5091:808:4:-;5293:1;5279:16;;:2;:16;;;;5271:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5350:16;5369:12;:10;:12::i;:::-;5350:31;;5394:96;5415:8;5425:4;5431:2;5435:21;5453:2;5435:17;:21::i;:::-;5458:25;5476:6;5458:17;:25::i;:::-;5485:4;5394:20;:96::i;:::-;5503:19;5525:9;:13;5535:2;5525:13;;;;;;;;;;;:19;5539:4;5525:19;;;;;;;;;;;;;;;;5503:41;;5578:6;5563:11;:21;;5555:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5695:6;5681:11;:20;5659:9;:13;5669:2;5659:13;;;;;;;;;;;:19;5673:4;5659:19;;;;;;;;;;;;;;;:42;;;;5740:6;5719:9;:13;5729:2;5719:13;;;;;;;;;;;:17;5733:2;5719:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;5795:2;5764:46;;5789:4;5764:46;;5779:8;5764:46;;;5799:2;5803:6;5764:46;;;;;;;:::i;:::-;;;;;;;;5823:68;5854:8;5864:4;5870:2;5874;5878:6;5886:4;5823:30;:68::i;:::-;5091:808;;;;;;;:::o;10601:663::-;10750:1;10731:21;;:7;:21;;;;10723:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;10805:16;10824:12;:10;:12::i;:::-;10805:31;;10849:105;10870:8;10880:7;10897:1;10901:21;10919:2;10901:17;:21::i;:::-;10924:25;10942:6;10924:17;:25::i;:::-;10849:105;;;;;;;;;;;;:20;:105::i;:::-;10967:22;10992:9;:13;11002:2;10992:13;;;;;;;;;;;:22;11006:7;10992:22;;;;;;;;;;;;;;;;10967:47;;11051:6;11033:14;:24;;11025:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11168:6;11151:14;:23;11126:9;:13;11136:2;11126:13;;;;;;;;;;;:22;11140:7;11126:22;;;;;;;;;;;;;;;:48;;;;11241:1;11199:57;;11224:7;11199:57;;11214:8;11199:57;;;11245:2;11249:6;11199:57;;;;;;;:::i;:::-;;;;;;;;10601:663;;;;;:::o;8067:224:0:-;8141:22;8149:4;8155:7;8141;:22::i;:::-;8136:149;;8211:4;8179:6;:12;8186:4;8179:12;;;;;;;;;;;:20;;:29;8200:7;8179:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;8261:12;:10;:12::i;:::-;8234:40;;8252:7;8234:40;;8246:4;8234:40;;;;;;;;;;8136:149;8067:224;;:::o;1630:404:9:-;1693:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:319;;1751:3;:11;;1768:5;1751:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1931:3;:11;;:18;;;;1909:3;:12;;:19;1922:5;1909:19;;;;;;;;;;;:40;;;;1970:4;1963:11;;;;1709:319;2012:5;2005:12;;1630:404;;;;;:::o;802:212:1:-;887:4;925:42;910:57;;;:11;:57;;;;:97;;;;971:36;995:11;971:23;:36::i;:::-;910:97;903:104;;802:212;;;:::o;3438:339:7:-;3703:66;3730:8;3740:4;3746:2;3750:3;3755:7;3764:4;3703:26;:66::i;:::-;3438:339;;;;;;:::o;14310:813:4:-;14550:15;:2;:13;;;:15::i;:::-;14546:570;;;14603:2;14586:43;;;14630:8;14640:4;14646:3;14651:7;14660:4;14586:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14582:523;;;;:::i;:::-;;;;;;;;14978:6;14971:14;;;;;;;;;;;:::i;:::-;;;;;;;;14582:523;15027:62;;;;;;;;;;:::i;:::-;;;;;;;;14582:523;14759:48;;;14747:60;;;:8;:60;;;;14743:159;;14832:50;;;;;;;;;;:::i;:::-;;;;;;;;14743:159;14666:251;14546:570;14310:813;;;;;;:::o;4747:484:0:-;4827:22;4835:4;4841:7;4827;:22::i;:::-;4822:403;;5010:41;5038:7;5010:41;;5048:2;5010:19;:41::i;:::-;5122:38;5150:4;5142:13;;5157:2;5122:19;:38::i;:::-;4917:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4865:349;;;;;;;;;;;:::i;:::-;;;;;;;;4822:403;4747:484;;:::o;8297:225::-;8371:22;8379:4;8385:7;8371;:22::i;:::-;8367:149;;;8441:5;8409:6;:12;8416:4;8409:12;;;;;;;;;;;:20;;:29;8430:7;8409:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8492:12;:10;:12::i;:::-;8465:40;;8483:7;8465:40;;8477:4;8465:40;;;;;;;;;;8367:149;8297:225;;:::o;2202:1388:9:-;2268:4;2384:18;2405:3;:12;;:19;2418:5;2405:19;;;;;;;;;;;;2384:40;;2453:1;2439:10;:15;2435:1149;;2808:21;2845:1;2832:10;:14;;;;:::i;:::-;2808:38;;2860:17;2901:1;2880:3;:11;;:18;;;;:22;;;;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;;;;;;;;;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3247:10;3221:3;:12;;:23;3234:9;3221:23;;;;;;;;;;;:36;;;;2917:398;;3393:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;2202:1388;;;;;:::o;15131:198:4:-;15197:16;15226:22;15265:1;15251:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15226:41;;15289:7;15278:5;15284:1;15278:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;15316:5;15309:12;;;15131:198;;;:::o;13558:744::-;13773:15;:2;:13;;;:15::i;:::-;13769:526;;;13826:2;13809:38;;;13848:8;13858:4;13864:2;13868:6;13876:4;13809:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;13805:479;;;;:::i;:::-;;;;;;;;14157:6;14150:14;;;;;;;;;;;:::i;:::-;;;;;;;;13805:479;14206:62;;;;;;;;;;:::i;:::-;;;;;;;;13805:479;13943:43;;;13931:55;;;:8;:55;;;;13927:154;;14011:50;;;;;;;;;;:::i;:::-;;;;;;;;13927:154;13882:214;13769:526;13558:744;;;;;;:::o;4328:118:9:-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;;;;;;;;;;;;;;;;;4414:25;;4328:118;;;;:::o;3879:107::-;3935:7;3961:3;:11;;:18;;;;3954:25;;3879:107;;;:::o;3671:127::-;3744:4;3790:1;3767:3;:12;;:19;3780:5;3767:19;;;;;;;;;;;;:24;;3760:31;;3671:127;;;;:::o;4040:202:0:-;4125:4;4163:32;4148:47;;;:11;:47;;;;:87;;;;4199:36;4223:11;4199:23;:36::i;:::-;4148:87;4141:94;;4040:202;;;:::o;612:381:6:-;843:66;870:8;880:4;886:2;890:3;895:7;904:4;843:26;:66::i;:::-;929:8;:6;:8::i;:::-;928:9;920:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;612:381;;;;;;:::o;718:377:2:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;1535:441:17:-;1610:13;1635:19;1680:1;1671:6;1667:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1657:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635:47;;1692:15;:6;1699:1;1692:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1717;:6;1724:1;1717:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1747:9;1772:1;1763:6;1759:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;1813:12;1834:3;1826:5;:11;1813:25;;;;;;;;;;;;;;;;;;1801:6;1808:1;1801:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;1862:1;1852:11;;;;;1782:3;;;;:::i;:::-;;;1742:132;;;;1900:1;1891:5;:10;1883:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1962:6;1948:21;;;1535:441;;;;:::o;763:155:8:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;13329:221:4:-;;;;;;;:::o;24:622:18:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;669:622::-;;790:80;805:64;862:6;805:64;:::i;:::-;790:80;:::i;:::-;781:89;;890:5;918:6;911:5;904:21;944:4;937:5;933:16;926:23;;969:6;1019:3;1011:4;1003:6;999:17;994:3;990:27;987:36;984:2;;;1036:1;1033;1026:12;984:2;1064:1;1049:236;1074:6;1071:1;1068:13;1049:236;;;1141:3;1169:37;1202:3;1190:10;1169:37;:::i;:::-;1164:3;1157:50;1236:4;1231:3;1227:14;1220:21;;1270:4;1265:3;1261:14;1254:21;;1109:176;1096:1;1093;1089:9;1084:14;;1049:236;;;1053:14;771:520;;;;;;;:::o;1297:342::-;;1399:64;1414:48;1455:6;1414:48;:::i;:::-;1399:64;:::i;:::-;1390:73;;1486:6;1479:5;1472:21;1524:4;1517:5;1513:16;1562:3;1553:6;1548:3;1544:16;1541:25;1538:2;;;1579:1;1576;1569:12;1538:2;1592:41;1626:6;1621:3;1616;1592:41;:::i;:::-;1380:259;;;;;;:::o;1645:139::-;;1729:6;1716:20;1707:29;;1745:33;1772:5;1745:33;:::i;:::-;1697:87;;;;:::o;1807:303::-;;1927:3;1920:4;1912:6;1908:17;1904:27;1894:2;;1945:1;1942;1935:12;1894:2;1985:6;1972:20;2010:94;2100:3;2092:6;2085:4;2077:6;2073:17;2010:94;:::i;:::-;2001:103;;1884:226;;;;;:::o;2133:303::-;;2253:3;2246:4;2238:6;2234:17;2230:27;2220:2;;2271:1;2268;2261:12;2220:2;2311:6;2298:20;2336:94;2426:3;2418:6;2411:4;2403:6;2399:17;2336:94;:::i;:::-;2327:103;;2210:226;;;;;:::o;2442:133::-;;2523:6;2510:20;2501:29;;2539:30;2563:5;2539:30;:::i;:::-;2491:84;;;;:::o;2581:139::-;;2665:6;2652:20;2643:29;;2681:33;2708:5;2681:33;:::i;:::-;2633:87;;;;:::o;2726:137::-;;2809:6;2796:20;2787:29;;2825:32;2851:5;2825:32;:::i;:::-;2777:86;;;;:::o;2869:141::-;;2956:6;2950:13;2941:22;;2972:32;2998:5;2972:32;:::i;:::-;2931:79;;;;:::o;3029:271::-;;3133:3;3126:4;3118:6;3114:17;3110:27;3100:2;;3151:1;3148;3141:12;3100:2;3191:6;3178:20;3216:78;3290:3;3282:6;3275:4;3267:6;3263:17;3216:78;:::i;:::-;3207:87;;3090:210;;;;;:::o;3306:139::-;;3390:6;3377:20;3368:29;;3406:33;3433:5;3406:33;:::i;:::-;3358:87;;;;:::o;3451:262::-;;3559:2;3547:9;3538:7;3534:23;3530:32;3527:2;;;3575:1;3572;3565:12;3527:2;3618:1;3643:53;3688:7;3679:6;3668:9;3664:22;3643:53;:::i;:::-;3633:63;;3589:117;3517:196;;;;:::o;3719:407::-;;;3844:2;3832:9;3823:7;3819:23;3815:32;3812:2;;;3860:1;3857;3850:12;3812:2;3903:1;3928:53;3973:7;3964:6;3953:9;3949:22;3928:53;:::i;:::-;3918:63;;3874:117;4030:2;4056:53;4101:7;4092:6;4081:9;4077:22;4056:53;:::i;:::-;4046:63;;4001:118;3802:324;;;;;:::o;4132:1241::-;;;;;;4367:3;4355:9;4346:7;4342:23;4338:33;4335:2;;;4384:1;4381;4374:12;4335:2;4427:1;4452:53;4497:7;4488:6;4477:9;4473:22;4452:53;:::i;:::-;4442:63;;4398:117;4554:2;4580:53;4625:7;4616:6;4605:9;4601:22;4580:53;:::i;:::-;4570:63;;4525:118;4710:2;4699:9;4695:18;4682:32;4741:18;4733:6;4730:30;4727:2;;;4773:1;4770;4763:12;4727:2;4801:78;4871:7;4862:6;4851:9;4847:22;4801:78;:::i;:::-;4791:88;;4653:236;4956:2;4945:9;4941:18;4928:32;4987:18;4979:6;4976:30;4973:2;;;5019:1;5016;5009:12;4973:2;5047:78;5117:7;5108:6;5097:9;5093:22;5047:78;:::i;:::-;5037:88;;4899:236;5202:3;5191:9;5187:19;5174:33;5234:18;5226:6;5223:30;5220:2;;;5266:1;5263;5256:12;5220:2;5294:62;5348:7;5339:6;5328:9;5324:22;5294:62;:::i;:::-;5284:72;;5145:221;4325:1048;;;;;;;;:::o;5379:955::-;;;;;;5564:3;5552:9;5543:7;5539:23;5535:33;5532:2;;;5581:1;5578;5571:12;5532:2;5624:1;5649:53;5694:7;5685:6;5674:9;5670:22;5649:53;:::i;:::-;5639:63;;5595:117;5751:2;5777:53;5822:7;5813:6;5802:9;5798:22;5777:53;:::i;:::-;5767:63;;5722:118;5879:2;5905:53;5950:7;5941:6;5930:9;5926:22;5905:53;:::i;:::-;5895:63;;5850:118;6007:2;6033:53;6078:7;6069:6;6058:9;6054:22;6033:53;:::i;:::-;6023:63;;5978:118;6163:3;6152:9;6148:19;6135:33;6195:18;6187:6;6184:30;6181:2;;;6227:1;6224;6217:12;6181:2;6255:62;6309:7;6300:6;6289:9;6285:22;6255:62;:::i;:::-;6245:72;;6106:221;5522:812;;;;;;;;:::o;6340:838::-;;;;6532:2;6520:9;6511:7;6507:23;6503:32;6500:2;;;6548:1;6545;6538:12;6500:2;6591:1;6616:53;6661:7;6652:6;6641:9;6637:22;6616:53;:::i;:::-;6606:63;;6562:117;6746:2;6735:9;6731:18;6718:32;6777:18;6769:6;6766:30;6763:2;;;6809:1;6806;6799:12;6763:2;6837:78;6907:7;6898:6;6887:9;6883:22;6837:78;:::i;:::-;6827:88;;6689:236;6992:2;6981:9;6977:18;6964:32;7023:18;7015:6;7012:30;7009:2;;;7055:1;7052;7045:12;7009:2;7083:78;7153:7;7144:6;7133:9;7129:22;7083:78;:::i;:::-;7073:88;;6935:236;6490:688;;;;;:::o;7184:1095::-;;;;;7402:3;7390:9;7381:7;7377:23;7373:33;7370:2;;;7419:1;7416;7409:12;7370:2;7462:1;7487:53;7532:7;7523:6;7512:9;7508:22;7487:53;:::i;:::-;7477:63;;7433:117;7617:2;7606:9;7602:18;7589:32;7648:18;7640:6;7637:30;7634:2;;;7680:1;7677;7670:12;7634:2;7708:78;7778:7;7769:6;7758:9;7754:22;7708:78;:::i;:::-;7698:88;;7560:236;7863:2;7852:9;7848:18;7835:32;7894:18;7886:6;7883:30;7880:2;;;7926:1;7923;7916:12;7880:2;7954:78;8024:7;8015:6;8004:9;8000:22;7954:78;:::i;:::-;7944:88;;7806:236;8109:2;8098:9;8094:18;8081:32;8140:18;8132:6;8129:30;8126:2;;;8172:1;8169;8162:12;8126:2;8200:62;8254:7;8245:6;8234:9;8230:22;8200:62;:::i;:::-;8190:72;;8052:220;7360:919;;;;;;;:::o;8285:401::-;;;8407:2;8395:9;8386:7;8382:23;8378:32;8375:2;;;8423:1;8420;8413:12;8375:2;8466:1;8491:53;8536:7;8527:6;8516:9;8512:22;8491:53;:::i;:::-;8481:63;;8437:117;8593:2;8619:50;8661:7;8652:6;8641:9;8637:22;8619:50;:::i;:::-;8609:60;;8564:115;8365:321;;;;;:::o;8692:407::-;;;8817:2;8805:9;8796:7;8792:23;8788:32;8785:2;;;8833:1;8830;8823:12;8785:2;8876:1;8901:53;8946:7;8937:6;8926:9;8922:22;8901:53;:::i;:::-;8891:63;;8847:117;9003:2;9029:53;9074:7;9065:6;9054:9;9050:22;9029:53;:::i;:::-;9019:63;;8974:118;8775:324;;;;;:::o;9105:552::-;;;;9247:2;9235:9;9226:7;9222:23;9218:32;9215:2;;;9263:1;9260;9253:12;9215:2;9306:1;9331:53;9376:7;9367:6;9356:9;9352:22;9331:53;:::i;:::-;9321:63;;9277:117;9433:2;9459:53;9504:7;9495:6;9484:9;9480:22;9459:53;:::i;:::-;9449:63;;9404:118;9561:2;9587:53;9632:7;9623:6;9612:9;9608:22;9587:53;:::i;:::-;9577:63;;9532:118;9205:452;;;;;:::o;9663:809::-;;;;;9831:3;9819:9;9810:7;9806:23;9802:33;9799:2;;;9848:1;9845;9838:12;9799:2;9891:1;9916:53;9961:7;9952:6;9941:9;9937:22;9916:53;:::i;:::-;9906:63;;9862:117;10018:2;10044:53;10089:7;10080:6;10069:9;10065:22;10044:53;:::i;:::-;10034:63;;9989:118;10146:2;10172:53;10217:7;10208:6;10197:9;10193:22;10172:53;:::i;:::-;10162:63;;10117:118;10302:2;10291:9;10287:18;10274:32;10333:18;10325:6;10322:30;10319:2;;;10365:1;10362;10355:12;10319:2;10393:62;10447:7;10438:6;10427:9;10423:22;10393:62;:::i;:::-;10383:72;;10245:220;9789:683;;;;;;;:::o;10478:693::-;;;10653:2;10641:9;10632:7;10628:23;10624:32;10621:2;;;10669:1;10666;10659:12;10621:2;10740:1;10729:9;10725:17;10712:31;10770:18;10762:6;10759:30;10756:2;;;10802:1;10799;10792:12;10756:2;10830:78;10900:7;10891:6;10880:9;10876:22;10830:78;:::i;:::-;10820:88;;10683:235;10985:2;10974:9;10970:18;10957:32;11016:18;11008:6;11005:30;11002:2;;;11048:1;11045;11038:12;11002:2;11076:78;11146:7;11137:6;11126:9;11122:22;11076:78;:::i;:::-;11066:88;;10928:236;10611:560;;;;;:::o;11177:262::-;;11285:2;11273:9;11264:7;11260:23;11256:32;11253:2;;;11301:1;11298;11291:12;11253:2;11344:1;11369:53;11414:7;11405:6;11394:9;11390:22;11369:53;:::i;:::-;11359:63;;11315:117;11243:196;;;;:::o;11445:407::-;;;11570:2;11558:9;11549:7;11545:23;11541:32;11538:2;;;11586:1;11583;11576:12;11538:2;11629:1;11654:53;11699:7;11690:6;11679:9;11675:22;11654:53;:::i;:::-;11644:63;;11600:117;11756:2;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11727:118;11528:324;;;;;:::o;11858:407::-;;;11983:2;11971:9;11962:7;11958:23;11954:32;11951:2;;;11999:1;11996;11989:12;11951:2;12042:1;12067:53;12112:7;12103:6;12092:9;12088:22;12067:53;:::i;:::-;12057:63;;12013:117;12169:2;12195:53;12240:7;12231:6;12220:9;12216:22;12195:53;:::i;:::-;12185:63;;12140:118;11941:324;;;;;:::o;12271:260::-;;12378:2;12366:9;12357:7;12353:23;12349:32;12346:2;;;12394:1;12391;12384:12;12346:2;12437:1;12462:52;12506:7;12497:6;12486:9;12482:22;12462:52;:::i;:::-;12452:62;;12408:116;12336:195;;;;:::o;12537:282::-;;12655:2;12643:9;12634:7;12630:23;12626:32;12623:2;;;12671:1;12668;12661:12;12623:2;12714:1;12739:63;12794:7;12785:6;12774:9;12770:22;12739:63;:::i;:::-;12729:73;;12685:127;12613:206;;;;:::o;12825:262::-;;12933:2;12921:9;12912:7;12908:23;12904:32;12901:2;;;12949:1;12946;12939:12;12901:2;12992:1;13017:53;13062:7;13053:6;13042:9;13038:22;13017:53;:::i;:::-;13007:63;;12963:117;12891:196;;;;:::o;13093:179::-;;13183:46;13225:3;13217:6;13183:46;:::i;:::-;13261:4;13256:3;13252:14;13238:28;;13173:99;;;;:::o;13278:118::-;13365:24;13383:5;13365:24;:::i;:::-;13360:3;13353:37;13343:53;;:::o;13432:732::-;;13580:54;13628:5;13580:54;:::i;:::-;13650:86;13729:6;13724:3;13650:86;:::i;:::-;13643:93;;13760:56;13810:5;13760:56;:::i;:::-;13839:7;13870:1;13855:284;13880:6;13877:1;13874:13;13855:284;;;13956:6;13950:13;13983:63;14042:3;14027:13;13983:63;:::i;:::-;13976:70;;14069:60;14122:6;14069:60;:::i;:::-;14059:70;;13915:224;13902:1;13899;13895:9;13890:14;;13855:284;;;13859:14;14155:3;14148:10;;13556:608;;;;;;;:::o;14170:109::-;14251:21;14266:5;14251:21;:::i;:::-;14246:3;14239:34;14229:50;;:::o;14285:118::-;14372:24;14390:5;14372:24;:::i;:::-;14367:3;14360:37;14350:53;;:::o;14409:360::-;;14523:38;14555:5;14523:38;:::i;:::-;14577:70;14640:6;14635:3;14577:70;:::i;:::-;14570:77;;14656:52;14701:6;14696:3;14689:4;14682:5;14678:16;14656:52;:::i;:::-;14733:29;14755:6;14733:29;:::i;:::-;14728:3;14724:39;14717:46;;14499:270;;;;;:::o;14775:364::-;;14891:39;14924:5;14891:39;:::i;:::-;14946:71;15010:6;15005:3;14946:71;:::i;:::-;14939:78;;15026:52;15071:6;15066:3;15059:4;15052:5;15048:16;15026:52;:::i;:::-;15103:29;15125:6;15103:29;:::i;:::-;15098:3;15094:39;15087:46;;14867:272;;;;;:::o;15145:377::-;;15279:39;15312:5;15279:39;:::i;:::-;15334:89;15416:6;15411:3;15334:89;:::i;:::-;15327:96;;15432:52;15477:6;15472:3;15465:4;15458:5;15454:16;15432:52;:::i;:::-;15509:6;15504:3;15500:16;15493:23;;15255:267;;;;;:::o;15528:384::-;;15691:67;15755:2;15750:3;15691:67;:::i;:::-;15684:74;;15788:34;15784:1;15779:3;15775:11;15768:55;15854:22;15849:2;15844:3;15840:12;15833:44;15903:2;15898:3;15894:12;15887:19;;15674:238;;;:::o;15918:330::-;;16081:67;16145:2;16140:3;16081:67;:::i;:::-;16074:74;;16178:34;16174:1;16169:3;16165:11;16158:55;16239:2;16234:3;16230:12;16223:19;;16064:184;;;:::o;16254:372::-;;16417:67;16481:2;16476:3;16417:67;:::i;:::-;16410:74;;16514:34;16510:1;16505:3;16501:11;16494:55;16580:10;16575:2;16570:3;16566:12;16559:32;16617:2;16612:3;16608:12;16601:19;;16400:226;;;:::o;16632:318::-;;16795:67;16859:2;16854:3;16795:67;:::i;:::-;16788:74;;16892:22;16888:1;16883:3;16879:11;16872:43;16941:2;16936:3;16932:12;16925:19;;16778:172;;;:::o;16956:375::-;;17119:67;17183:2;17178:3;17119:67;:::i;:::-;17112:74;;17216:34;17212:1;17207:3;17203:11;17196:55;17282:13;17277:2;17272:3;17268:12;17261:35;17322:2;17317:3;17313:12;17306:19;;17102:229;;;:::o;17337:370::-;;17500:67;17564:2;17559:3;17500:67;:::i;:::-;17493:74;;17597:34;17593:1;17588:3;17584:11;17577:55;17663:8;17658:2;17653:3;17649:12;17642:30;17698:2;17693:3;17689:12;17682:19;;17483:224;;;:::o;17713:368::-;;17876:67;17940:2;17935:3;17876:67;:::i;:::-;17869:74;;17973:34;17969:1;17964:3;17960:11;17953:55;18039:6;18034:2;18029:3;18025:12;18018:28;18072:2;18067:3;18063:12;18056:19;;17859:222;;;:::o;18087:376::-;;18250:67;18314:2;18309:3;18250:67;:::i;:::-;18243:74;;18347:34;18343:1;18338:3;18334:11;18327:55;18413:14;18408:2;18403:3;18399:12;18392:36;18454:2;18449:3;18445:12;18438:19;;18233:230;;;:::o;18469:373::-;;18632:67;18696:2;18691:3;18632:67;:::i;:::-;18625:74;;18729:34;18725:1;18720:3;18716:11;18709:55;18795:11;18790:2;18785:3;18781:12;18774:33;18833:2;18828:3;18824:12;18817:19;;18615:227;;;:::o;18848:314::-;;19011:67;19075:2;19070:3;19011:67;:::i;:::-;19004:74;;19108:18;19104:1;19099:3;19095:11;19088:39;19153:2;19148:3;19144:12;19137:19;;18994:168;;;:::o;19168:369::-;;19331:67;19395:2;19390:3;19331:67;:::i;:::-;19324:74;;19428:34;19424:1;19419:3;19415:11;19408:55;19494:7;19489:2;19484:3;19480:12;19473:29;19528:2;19523:3;19519:12;19512:19;;19314:223;;;:::o;19543:382::-;;19706:67;19770:2;19765:3;19706:67;:::i;:::-;19699:74;;19803:34;19799:1;19794:3;19790:11;19783:55;19869:20;19864:2;19859:3;19855:12;19848:42;19916:2;19911:3;19907:12;19900:19;;19689:236;;;:::o;19931:367::-;;20094:67;20158:2;20153:3;20094:67;:::i;:::-;20087:74;;20191:34;20187:1;20182:3;20178:11;20171:55;20257:5;20252:2;20247:3;20243:12;20236:27;20289:2;20284:3;20280:12;20273:19;;20077:221;;;:::o;20304:388::-;;20467:67;20531:2;20526:3;20467:67;:::i;:::-;20460:74;;20564:34;20560:1;20555:3;20551:11;20544:55;20630:26;20625:2;20620:3;20616:12;20609:48;20683:2;20678:3;20674:12;20667:19;;20450:242;;;:::o;20698:374::-;;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20958:34;20954:1;20949:3;20945:11;20938:55;21024:12;21019:2;21014:3;21010:12;21003:34;21063:2;21058:3;21054:12;21047:19;;20844:228;;;:::o;21078:330::-;;21241:67;21305:2;21300:3;21241:67;:::i;:::-;21234:74;;21338:34;21334:1;21329:3;21325:11;21318:55;21399:2;21394:3;21390:12;21383:19;;21224:184;;;:::o;21414:391::-;;21577:67;21641:2;21636:3;21577:67;:::i;:::-;21570:74;;21674:34;21670:1;21665:3;21661:11;21654:55;21740:29;21735:2;21730:3;21726:12;21719:51;21796:2;21791:3;21787:12;21780:19;;21560:245;;;:::o;21811:389::-;;21974:67;22038:2;22033:3;21974:67;:::i;:::-;21967:74;;22071:34;22067:1;22062:3;22058:11;22051:55;22137:27;22132:2;22127:3;22123:12;22116:49;22191:2;22186:3;22182:12;22175:19;;21957:243;;;:::o;22206:357::-;;22387:85;22469:2;22464:3;22387:85;:::i;:::-;22380:92;;22502:25;22498:1;22493:3;22489:11;22482:46;22554:2;22549:3;22545:12;22538:19;;22370:193;;;:::o;22569:373::-;;22732:67;22796:2;22791:3;22732:67;:::i;:::-;22725:74;;22829:34;22825:1;22820:3;22816:11;22809:55;22895:11;22890:2;22885:3;22881:12;22874:33;22933:2;22928:3;22924:12;22917:19;;22715:227;;;:::o;22948:373::-;;23111:67;23175:2;23170:3;23111:67;:::i;:::-;23104:74;;23208:34;23204:1;23199:3;23195:11;23188:55;23274:11;23269:2;23264:3;23260:12;23253:33;23312:2;23307:3;23303:12;23296:19;;23094:227;;;:::o;23327:372::-;;23490:67;23554:2;23549:3;23490:67;:::i;:::-;23483:74;;23587:34;23583:1;23578:3;23574:11;23567:55;23653:10;23648:2;23643:3;23639:12;23632:32;23690:2;23685:3;23681:12;23674:19;;23473:226;;;:::o;23705:365::-;;23868:67;23932:2;23927:3;23868:67;:::i;:::-;23861:74;;23965:34;23961:1;23956:3;23952:11;23945:55;24031:3;24026:2;24021:3;24017:12;24010:25;24061:2;24056:3;24052:12;24045:19;;23851:219;;;:::o;24076:351::-;;24257:85;24339:2;24334:3;24257:85;:::i;:::-;24250:92;;24372:19;24368:1;24363:3;24359:11;24352:40;24418:2;24413:3;24409:12;24402:19;;24240:187;;;:::o;24433:379::-;;24596:67;24660:2;24655:3;24596:67;:::i;:::-;24589:74;;24693:34;24689:1;24684:3;24680:11;24673:55;24759:17;24754:2;24749:3;24745:12;24738:39;24803:2;24798:3;24794:12;24787:19;;24579:233;;;:::o;24818:108::-;24895:24;24913:5;24895:24;:::i;:::-;24890:3;24883:37;24873:53;;:::o;24932:118::-;25019:24;25037:5;25019:24;:::i;:::-;25014:3;25007:37;24997:53;;:::o;25056:435::-;;25258:95;25349:3;25340:6;25258:95;:::i;:::-;25251:102;;25370:95;25461:3;25452:6;25370:95;:::i;:::-;25363:102;;25482:3;25475:10;;25240:251;;;;;:::o;25497:967::-;;25901:148;26045:3;25901:148;:::i;:::-;25894:155;;26066:95;26157:3;26148:6;26066:95;:::i;:::-;26059:102;;26178:148;26322:3;26178:148;:::i;:::-;26171:155;;26343:95;26434:3;26425:6;26343:95;:::i;:::-;26336:102;;26455:3;26448:10;;25883:581;;;;;:::o;26470:222::-;;26601:2;26590:9;26586:18;26578:26;;26614:71;26682:1;26671:9;26667:17;26658:6;26614:71;:::i;:::-;26568:124;;;;:::o;26698:1053::-;;27059:3;27048:9;27044:19;27036:27;;27073:71;27141:1;27130:9;27126:17;27117:6;27073:71;:::i;:::-;27154:72;27222:2;27211:9;27207:18;27198:6;27154:72;:::i;:::-;27273:9;27267:4;27263:20;27258:2;27247:9;27243:18;27236:48;27301:108;27404:4;27395:6;27301:108;:::i;:::-;27293:116;;27456:9;27450:4;27446:20;27441:2;27430:9;27426:18;27419:48;27484:108;27587:4;27578:6;27484:108;:::i;:::-;27476:116;;27640:9;27634:4;27630:20;27624:3;27613:9;27609:19;27602:49;27668:76;27739:4;27730:6;27668:76;:::i;:::-;27660:84;;27026:725;;;;;;;;:::o;27757:751::-;;28018:3;28007:9;28003:19;27995:27;;28032:71;28100:1;28089:9;28085:17;28076:6;28032:71;:::i;:::-;28113:72;28181:2;28170:9;28166:18;28157:6;28113:72;:::i;:::-;28195;28263:2;28252:9;28248:18;28239:6;28195:72;:::i;:::-;28277;28345:2;28334:9;28330:18;28321:6;28277:72;:::i;:::-;28397:9;28391:4;28387:20;28381:3;28370:9;28366:19;28359:49;28425:76;28496:4;28487:6;28425:76;:::i;:::-;28417:84;;27985:523;;;;;;;;:::o;28514:373::-;;28695:2;28684:9;28680:18;28672:26;;28744:9;28738:4;28734:20;28730:1;28719:9;28715:17;28708:47;28772:108;28875:4;28866:6;28772:108;:::i;:::-;28764:116;;28662:225;;;;:::o;28893:634::-;;29152:2;29141:9;29137:18;29129:26;;29201:9;29195:4;29191:20;29187:1;29176:9;29172:17;29165:47;29229:108;29332:4;29323:6;29229:108;:::i;:::-;29221:116;;29384:9;29378:4;29374:20;29369:2;29358:9;29354:18;29347:48;29412:108;29515:4;29506:6;29412:108;:::i;:::-;29404:116;;29119:408;;;;;:::o;29533:210::-;;29658:2;29647:9;29643:18;29635:26;;29671:65;29733:1;29722:9;29718:17;29709:6;29671:65;:::i;:::-;29625:118;;;;:::o;29749:222::-;;29880:2;29869:9;29865:18;29857:26;;29893:71;29961:1;29950:9;29946:17;29937:6;29893:71;:::i;:::-;29847:124;;;;:::o;29977:313::-;;30128:2;30117:9;30113:18;30105:26;;30177:9;30171:4;30167:20;30163:1;30152:9;30148:17;30141:47;30205:78;30278:4;30269:6;30205:78;:::i;:::-;30197:86;;30095:195;;;;:::o;30296:419::-;;30500:2;30489:9;30485:18;30477:26;;30549:9;30543:4;30539:20;30535:1;30524:9;30520:17;30513:47;30577:131;30703:4;30577:131;:::i;:::-;30569:139;;30467:248;;;:::o;30721:419::-;;30925:2;30914:9;30910:18;30902:26;;30974:9;30968:4;30964:20;30960:1;30949:9;30945:17;30938:47;31002:131;31128:4;31002:131;:::i;:::-;30994:139;;30892:248;;;:::o;31146:419::-;;31350:2;31339:9;31335:18;31327:26;;31399:9;31393:4;31389:20;31385:1;31374:9;31370:17;31363:47;31427:131;31553:4;31427:131;:::i;:::-;31419:139;;31317:248;;;:::o;31571:419::-;;31775:2;31764:9;31760:18;31752:26;;31824:9;31818:4;31814:20;31810:1;31799:9;31795:17;31788:47;31852:131;31978:4;31852:131;:::i;:::-;31844:139;;31742:248;;;:::o;31996:419::-;;32200:2;32189:9;32185:18;32177:26;;32249:9;32243:4;32239:20;32235:1;32224:9;32220:17;32213:47;32277:131;32403:4;32277:131;:::i;:::-;32269:139;;32167:248;;;:::o;32421:419::-;;32625:2;32614:9;32610:18;32602:26;;32674:9;32668:4;32664:20;32660:1;32649:9;32645:17;32638:47;32702:131;32828:4;32702:131;:::i;:::-;32694:139;;32592:248;;;:::o;32846:419::-;;33050:2;33039:9;33035:18;33027:26;;33099:9;33093:4;33089:20;33085:1;33074:9;33070:17;33063:47;33127:131;33253:4;33127:131;:::i;:::-;33119:139;;33017:248;;;:::o;33271:419::-;;33475:2;33464:9;33460:18;33452:26;;33524:9;33518:4;33514:20;33510:1;33499:9;33495:17;33488:47;33552:131;33678:4;33552:131;:::i;:::-;33544:139;;33442:248;;;:::o;33696:419::-;;33900:2;33889:9;33885:18;33877:26;;33949:9;33943:4;33939:20;33935:1;33924:9;33920:17;33913:47;33977:131;34103:4;33977:131;:::i;:::-;33969:139;;33867:248;;;:::o;34121:419::-;;34325:2;34314:9;34310:18;34302:26;;34374:9;34368:4;34364:20;34360:1;34349:9;34345:17;34338:47;34402:131;34528:4;34402:131;:::i;:::-;34394:139;;34292:248;;;:::o;34546:419::-;;34750:2;34739:9;34735:18;34727:26;;34799:9;34793:4;34789:20;34785:1;34774:9;34770:17;34763:47;34827:131;34953:4;34827:131;:::i;:::-;34819:139;;34717:248;;;:::o;34971:419::-;;35175:2;35164:9;35160:18;35152:26;;35224:9;35218:4;35214:20;35210:1;35199:9;35195:17;35188:47;35252:131;35378:4;35252:131;:::i;:::-;35244:139;;35142:248;;;:::o;35396:419::-;;35600:2;35589:9;35585:18;35577:26;;35649:9;35643:4;35639:20;35635:1;35624:9;35620:17;35613:47;35677:131;35803:4;35677:131;:::i;:::-;35669:139;;35567:248;;;:::o;35821:419::-;;36025:2;36014:9;36010:18;36002:26;;36074:9;36068:4;36064:20;36060:1;36049:9;36045:17;36038:47;36102:131;36228:4;36102:131;:::i;:::-;36094:139;;35992:248;;;:::o;36246:419::-;;36450:2;36439:9;36435:18;36427:26;;36499:9;36493:4;36489:20;36485:1;36474:9;36470:17;36463:47;36527:131;36653:4;36527:131;:::i;:::-;36519:139;;36417:248;;;:::o;36671:419::-;;36875:2;36864:9;36860:18;36852:26;;36924:9;36918:4;36914:20;36910:1;36899:9;36895:17;36888:47;36952:131;37078:4;36952:131;:::i;:::-;36944:139;;36842:248;;;:::o;37096:419::-;;37300:2;37289:9;37285:18;37277:26;;37349:9;37343:4;37339:20;37335:1;37324:9;37320:17;37313:47;37377:131;37503:4;37377:131;:::i;:::-;37369:139;;37267:248;;;:::o;37521:419::-;;37725:2;37714:9;37710:18;37702:26;;37774:9;37768:4;37764:20;37760:1;37749:9;37745:17;37738:47;37802:131;37928:4;37802:131;:::i;:::-;37794:139;;37692:248;;;:::o;37946:419::-;;38150:2;38139:9;38135:18;38127:26;;38199:9;38193:4;38189:20;38185:1;38174:9;38170:17;38163:47;38227:131;38353:4;38227:131;:::i;:::-;38219:139;;38117:248;;;:::o;38371:419::-;;38575:2;38564:9;38560:18;38552:26;;38624:9;38618:4;38614:20;38610:1;38599:9;38595:17;38588:47;38652:131;38778:4;38652:131;:::i;:::-;38644:139;;38542:248;;;:::o;38796:419::-;;39000:2;38989:9;38985:18;38977:26;;39049:9;39043:4;39039:20;39035:1;39024:9;39020:17;39013:47;39077:131;39203:4;39077:131;:::i;:::-;39069:139;;38967:248;;;:::o;39221:419::-;;39425:2;39414:9;39410:18;39402:26;;39474:9;39468:4;39464:20;39460:1;39449:9;39445:17;39438:47;39502:131;39628:4;39502:131;:::i;:::-;39494:139;;39392:248;;;:::o;39646:419::-;;39850:2;39839:9;39835:18;39827:26;;39899:9;39893:4;39889:20;39885:1;39874:9;39870:17;39863:47;39927:131;40053:4;39927:131;:::i;:::-;39919:139;;39817:248;;;:::o;40071:222::-;;40202:2;40191:9;40187:18;40179:26;;40215:71;40283:1;40272:9;40268:17;40259:6;40215:71;:::i;:::-;40169:124;;;;:::o;40299:332::-;;40458:2;40447:9;40443:18;40435:26;;40471:71;40539:1;40528:9;40524:17;40515:6;40471:71;:::i;:::-;40552:72;40620:2;40609:9;40605:18;40596:6;40552:72;:::i;:::-;40425:206;;;;;:::o;40637:283::-;;40703:2;40697:9;40687:19;;40745:4;40737:6;40733:17;40852:6;40840:10;40837:22;40816:18;40804:10;40801:34;40798:62;40795:2;;;40863:18;;:::i;:::-;40795:2;40903:10;40899:2;40892:22;40677:243;;;;:::o;40926:311::-;;41093:18;41085:6;41082:30;41079:2;;;41115:18;;:::i;:::-;41079:2;41165:4;41157:6;41153:17;41145:25;;41225:4;41219;41215:15;41207:23;;41008:229;;;:::o;41243:311::-;;41410:18;41402:6;41399:30;41396:2;;;41432:18;;:::i;:::-;41396:2;41482:4;41474:6;41470:17;41462:25;;41542:4;41536;41532:15;41524:23;;41325:229;;;:::o;41560:331::-;;41711:18;41703:6;41700:30;41697:2;;;41733:18;;:::i;:::-;41697:2;41818:4;41814:9;41807:4;41799:6;41795:17;41791:33;41783:41;;41879:4;41873;41869:15;41861:23;;41626:265;;;:::o;41897:132::-;;41987:3;41979:11;;42017:4;42012:3;42008:14;42000:22;;41969:60;;;:::o;42035:114::-;;42136:5;42130:12;42120:22;;42109:40;;;:::o;42155:98::-;;42240:5;42234:12;42224:22;;42213:40;;;:::o;42259:99::-;;42345:5;42339:12;42329:22;;42318:40;;;:::o;42364:113::-;;42466:4;42461:3;42457:14;42449:22;;42439:38;;;:::o;42483:184::-;;42616:6;42611:3;42604:19;42656:4;42651:3;42647:14;42632:29;;42594:73;;;;:::o;42673:168::-;;42790:6;42785:3;42778:19;42830:4;42825:3;42821:14;42806:29;;42768:73;;;;:::o;42847:169::-;;42965:6;42960:3;42953:19;43005:4;43000:3;42996:14;42981:29;;42943:73;;;;:::o;43022:148::-;;43161:3;43146:18;;43136:34;;;;:::o;43176:305::-;;43235:20;43253:1;43235:20;:::i;:::-;43230:25;;43269:20;43287:1;43269:20;:::i;:::-;43264:25;;43423:1;43355:66;43351:74;43348:1;43345:81;43342:2;;;43429:18;;:::i;:::-;43342:2;43473:1;43470;43466:9;43459:16;;43220:261;;;;:::o;43487:237::-;;43544:18;43560:1;43544:18;:::i;:::-;43539:23;;43576:18;43592:1;43576:18;:::i;:::-;43571:23;;43666:1;43660:4;43656:12;43653:1;43650:19;43647:2;;;43672:18;;:::i;:::-;43647:2;43716:1;43713;43709:9;43702:16;;43529:195;;;;:::o;43730:185::-;;43787:20;43805:1;43787:20;:::i;:::-;43782:25;;43821:20;43839:1;43821:20;:::i;:::-;43816:25;;43860:1;43850:2;;43865:18;;:::i;:::-;43850:2;43907:1;43904;43900:9;43895:14;;43772:143;;;;:::o;43921:348::-;;43984:20;44002:1;43984:20;:::i;:::-;43979:25;;44018:20;44036:1;44018:20;:::i;:::-;44013:25;;44206:1;44138:66;44134:74;44131:1;44128:81;44123:1;44116:9;44109:17;44105:105;44102:2;;;44213:18;;:::i;:::-;44102:2;44261:1;44258;44254:9;44243:20;;43969:300;;;;:::o;44275:191::-;;44335:20;44353:1;44335:20;:::i;:::-;44330:25;;44369:20;44387:1;44369:20;:::i;:::-;44364:25;;44408:1;44405;44402:8;44399:2;;;44413:18;;:::i;:::-;44399:2;44458:1;44455;44451:9;44443:17;;44320:146;;;;:::o;44472:96::-;;44538:24;44556:5;44538:24;:::i;:::-;44527:35;;44517:51;;;:::o;44574:90::-;;44651:5;44644:13;44637:21;44626:32;;44616:48;;;:::o;44670:77::-;;44736:5;44725:16;;44715:32;;;:::o;44753:149::-;;44829:66;44822:5;44818:78;44807:89;;44797:105;;;:::o;44908:126::-;;44985:42;44978:5;44974:54;44963:65;;44953:81;;;:::o;45040:77::-;;45106:5;45095:16;;45085:32;;;:::o;45123:86::-;;45198:4;45191:5;45187:16;45176:27;;45166:43;;;:::o;45215:154::-;45299:6;45294:3;45289;45276:30;45361:1;45352:6;45347:3;45343:16;45336:27;45266:103;;;:::o;45375:307::-;45443:1;45453:113;45467:6;45464:1;45461:13;45453:113;;;45552:1;45547:3;45543:11;45537:18;45533:1;45528:3;45524:11;45517:39;45489:2;45486:1;45482:10;45477:15;;45453:113;;;45584:6;45581:1;45578:13;45575:2;;;45664:1;45655:6;45650:3;45646:16;45639:27;45575:2;45424:258;;;;:::o;45688:171::-;;45750:24;45768:5;45750:24;:::i;:::-;45741:33;;45796:4;45789:5;45786:15;45783:2;;;45804:18;;:::i;:::-;45783:2;45851:1;45844:5;45840:13;45833:20;;45731:128;;;:::o;45865:320::-;;45946:1;45940:4;45936:12;45926:22;;45993:1;45987:4;45983:12;46014:18;46004:2;;46070:4;46062:6;46058:17;46048:27;;46004:2;46132;46124:6;46121:14;46101:18;46098:38;46095:2;;;46151:18;;:::i;:::-;46095:2;45916:269;;;;:::o;46191:233::-;;46253:24;46271:5;46253:24;:::i;:::-;46244:33;;46299:66;46292:5;46289:77;46286:2;;;46369:18;;:::i;:::-;46286:2;46416:1;46409:5;46405:13;46398:20;;46234:190;;;:::o;46430:180::-;46478:77;46475:1;46468:88;46575:4;46572:1;46565:15;46599:4;46596:1;46589:15;46616:180;46664:77;46661:1;46654:88;46761:4;46758:1;46751:15;46785:4;46782:1;46775:15;46802:180;46850:77;46847:1;46840:88;46947:4;46944:1;46937:15;46971:4;46968:1;46961:15;46988:180;47036:77;47033:1;47026:88;47133:4;47130:1;47123:15;47157:4;47154:1;47147:15;47174:102;;47266:2;47262:7;47257:2;47250:5;47246:14;47242:28;47232:38;;47222:54;;;:::o;47282:106::-;;47375:5;47370:3;47366:15;47345:36;;47335:53;;;:::o;47394:833::-;;47471:4;47453:16;47450:26;47447:2;;;47479:5;;47447:2;47517:1;47514;47511;47496:23;47539:34;47570:1;47564:8;47539:34;:::i;:::-;47600:10;47595:3;47592:19;47582:2;;47615:5;;;47582:2;47650;47644:9;47708:1;47690:16;47686:24;47683:1;47677:4;47662:49;47741:4;47735:11;47840:16;47833:4;47825:6;47821:17;47818:39;47785:18;47777:6;47774:30;47758:113;47755:2;;;47886:5;;;;;47755:2;47932:6;47926:4;47922:17;47968:3;47962:10;47995:18;47987:6;47984:30;47981:2;;;48017:5;;;;;;;47981:2;48065:6;48058:4;48053:3;48049:14;48045:27;48102:16;48096:4;48092:27;48087:3;48084:36;48081:2;;;48123:5;;;;;;;;48081:2;48171:29;48193:6;48171:29;:::i;:::-;48164:4;48159:3;48155:14;48151:50;48147:2;48140:62;48218:3;48211:10;;47437:790;;;;;;;;:::o;48233:122::-;48306:24;48324:5;48306:24;:::i;:::-;48299:5;48296:35;48286:2;;48345:1;48342;48335:12;48286:2;48276:79;:::o;48361:116::-;48431:21;48446:5;48431:21;:::i;:::-;48424:5;48421:32;48411:2;;48467:1;48464;48457:12;48411:2;48401:76;:::o;48483:122::-;48556:24;48574:5;48556:24;:::i;:::-;48549:5;48546:35;48536:2;;48595:1;48592;48585:12;48536:2;48526:79;:::o;48611:120::-;48683:23;48700:5;48683:23;:::i;:::-;48676:5;48673:34;48663:2;;48721:1;48718;48711:12;48663:2;48653:78;:::o;48737:122::-;48810:24;48828:5;48810:24;:::i;:::-;48803:5;48800:35;48790:2;;48849:1;48846;48839:12;48790:2;48780:79;:::o
Swarm Source
ipfs://834835254cc6ce570c666608ddde20c5e4540a3161c78f91ddca249b0394949c
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.