Contract Overview
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xaa5eee2ce148d0d041d7c585496ef785fdc55150
Contract Name:
NiftyBaseMerkleAirdrop
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-12-07 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) 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); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/finance/PaymentSplitter.sol // OpenZeppelin Contracts v4.4.0 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: TS/nbmerklediakon.sol pragma solidity ^0.8.0; contract NiftyBaseMerkleAirdrop is ERC721Enumerable, PaymentSplitter, Ownable { using SafeMath for uint256; using SafeMath for uint8; // Token Data uint256 public constant TOKEN_PRICE = 0; uint256 public constant RESERVED_TOKENS = 100; uint256 public constant MAX_TOKENS = 3100; uint256 public MAX_MINTS; // White List Token Data uint256 public MAX_PRE_MINTS; uint256 public MAX_OG_MINTS; // Contract Data string public PROVENANCE; string private _contractURI; string public _baseTokenURI; // Sale Switches bool public mainSaleActive = false; bool public ogSaleActive = false; bool public preSaleActive = false; // White List Token Counters mapping(address => uint8) private _preSaleList; mapping(address => uint8) private _ogSaleList; // Merkle Roots bytes32 public preSaleRoot; bytes32 public ogSaleRoot; constructor( string memory name, string memory symbol, string memory contractURI_, string memory baseURI, uint256 maxMints, uint256 maxPreMints, uint256 maxOGMints, address[] memory payees, uint256[] memory shares, bytes32 preSaleRoot_, bytes32 ogSaleRoot_ ) ERC721(name, symbol) PaymentSplitter(payees, shares) { setContractURI(contractURI_); setBaseURI(baseURI); preSaleRoot = preSaleRoot_; ogSaleRoot = ogSaleRoot_; MAX_MINTS = maxMints; MAX_PRE_MINTS = maxPreMints; MAX_OG_MINTS = maxOGMints; } /* Reserves */ function reserveTokens() public onlyOwner { uint supply = totalSupply(); for (uint i = 0; i < RESERVED_TOKENS; i++) { _safeMint(msg.sender, supply + i); } } /* Setters */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { PROVENANCE = provenanceHash; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setContractURI(string memory contractURI_) public onlyOwner { _contractURI = contractURI_; } function setMaxMints(uint256 maxMints_) public onlyOwner { MAX_MINTS = maxMints_; } function setMaxPreMints(uint256 maxPreMints_) public onlyOwner { MAX_PRE_MINTS = maxPreMints_; } function setMaxOGMints(uint256 maxOGMints_) public onlyOwner { MAX_OG_MINTS = maxOGMints_; } function setPreSaleRoot(bytes32 _preSaleRoot) public onlyOwner { preSaleRoot = _preSaleRoot; } function setOGSaleRoot(bytes32 _ogSaleRoot) public onlyOwner { ogSaleRoot = _ogSaleRoot; } /* Getters */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function contractURI() public view returns (string memory) { return _contractURI; } /* Sale Switches */ function flipPreSaleState() public onlyOwner { preSaleActive = !preSaleActive; } function flipOGSaleState() public onlyOwner { ogSaleActive = !ogSaleActive; } function flipMainSaleState() public onlyOwner { mainSaleActive = !mainSaleActive; } /* Pre Sale */ function mintPreSaleTokens(uint8 numberOfTokens, bytes32[] calldata _merkleProof) external payable { require(preSaleActive, "Pre mint is not active"); require(_preSaleList[msg.sender].add(numberOfTokens) <= MAX_PRE_MINTS, "Exceeded max available to purchase"); require(numberOfTokens > 0, "Must mint more than 0 tokens"); require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens"); require(TOKEN_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); // check proof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, preSaleRoot, leaf), "Invalid MerkleProof"); _preSaleList[msg.sender] = _preSaleList[msg.sender] + numberOfTokens; for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { _safeMint(msg.sender, mintIndex); } } } function numPreSaleMinted(address addr) external view returns (uint8) { return _preSaleList[addr]; } /* Og Sale */ function mintOGSaleTokens(uint8 numberOfTokens, bytes32[] calldata _merkleProof) external payable { require(ogSaleActive, "OG mint is not active"); require(_ogSaleList[msg.sender].add(numberOfTokens) <= MAX_OG_MINTS, "Exceeded max available to purchase"); require(numberOfTokens > 0, "Must mint more than 0 tokens"); require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens"); require(TOKEN_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); // check proof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, ogSaleRoot, leaf), "Invalid MerkleProof"); _ogSaleList[msg.sender] = _ogSaleList[msg.sender] + numberOfTokens; for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { _safeMint(msg.sender, mintIndex); } } } function numOGSaleMinted(address addr) external view returns (uint8) { return _ogSaleList[addr]; } /* Main Sale */ function mintTokens(uint numberOfTokens) public payable { require(mainSaleActive, "Sale must be active to mint token"); require(numberOfTokens <= MAX_MINTS, "Can only mint max purchase of tokens at a time"); require(numberOfTokens > 0, "Must mint more than 0 tokens"); require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens"); require(TOKEN_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { _safeMint(msg.sender, mintIndex); } } } /* Utility Functions */ function walletOfOwner(address _owner) external view returns(uint256[] memory) { uint tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint i = 0; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxMints","type":"uint256"},{"internalType":"uint256","name":"maxPreMints","type":"uint256"},{"internalType":"uint256","name":"maxOGMints","type":"uint256"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"internalType":"bytes32","name":"preSaleRoot_","type":"bytes32"},{"internalType":"bytes32","name":"ogSaleRoot_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipOGSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintOGSaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPreSaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numOGSaleMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numPreSaleMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMints_","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxOGMints_","type":"uint256"}],"name":"setMaxOGMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPreMints_","type":"uint256"}],"name":"setMaxPreMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogSaleRoot","type":"bytes32"}],"name":"setOGSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_preSaleRoot","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526018805462ffffff191690553480156200001d57600080fd5b506040516200457938038062004579833981016040819052620000409162000611565b83838c8c81600090805190602001906200005c929190620003f0565b50805162000072906001906020840190620003f0565b5050508051825114620000a25760405162461bcd60e51b8152600401620000999062000803565b60405180910390fd5b6000825111620000c65760405162461bcd60e51b81526004016200009990620008a0565b60005b82518110156200014a5762000135838281518110620000f857634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200012157634e487b7160e01b600052603260045260246000fd5b60200260200101516200019f60201b60201c565b806200014181620009b8565b915050620000c9565b5050506200016762000161620002d160201b60201c565b620002d5565b620001728962000327565b6200017d8862000386565b601b91909155601c5550506012929092556013556014555062000a0292505050565b6001600160a01b038216620001c85760405162461bcd60e51b8152600401620000999062000782565b60008111620001eb5760405162461bcd60e51b81526004016200009990620008d7565b6001600160a01b0382166000908152600c602052604090205415620002245760405162461bcd60e51b8152600401620000999062000855565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a546200028e90829062000960565b600a556040517f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac90620002c5908490849062000769565b60405180910390a15050565b3390565b601180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000331620002d1565b6001600160a01b031662000344620003e1565b6001600160a01b0316146200036d5760405162461bcd60e51b81526004016200009990620007ce565b805162000382906016906020840190620003f0565b5050565b62000390620002d1565b6001600160a01b0316620003a3620003e1565b6001600160a01b031614620003cc5760405162461bcd60e51b81526004016200009990620007ce565b805162000382906017906020840190620003f0565b6011546001600160a01b031690565b828054620003fe906200097b565b90600052602060002090601f0160209004810192826200042257600085556200046d565b82601f106200043d57805160ff19168380011785556200046d565b828001600101855582156200046d579182015b828111156200046d57825182559160200191906001019062000450565b506200047b9291506200047f565b5090565b5b808211156200047b576000815560010162000480565b600082601f830112620004a7578081fd5b81516020620004c0620004ba836200093a565b6200090e565b8281528181019085830183850287018401881015620004dd578586fd5b855b85811015620005125781516001600160a01b0381168114620004ff578788fd5b84529284019290840190600101620004df565b5090979650505050505050565b600082601f83011262000530578081fd5b8151602062000543620004ba836200093a565b828152818101908583018385028701840188101562000560578586fd5b855b85811015620005125781518452928401929084019060010162000562565b600082601f83011262000591578081fd5b81516001600160401b03811115620005ad57620005ad620009ec565b6020620005c3601f8301601f191682016200090e565b8281528582848701011115620005d7578384fd5b835b83811015620005f6578581018301518282018401528201620005d9565b838111156200060757848385840101525b5095945050505050565b60008060008060008060008060008060006101608c8e03121562000633578687fd5b8b516001600160401b0381111562000649578788fd5b620006578e828f0162000580565b60208e0151909c5090506001600160401b0381111562000675578788fd5b620006838e828f0162000580565b60408e0151909b5090506001600160401b03811115620006a1578788fd5b620006af8e828f0162000580565b60608e0151909a5090506001600160401b03811115620006cd578788fd5b620006db8e828f0162000580565b98505060808c0151965060a08c0151955060c08c0151945060e08c015160018060401b038111156200070b578485fd5b620007198e828f0162000496565b6101008e015190955090506001600160401b0381111562000738578384fd5b620007468e828f016200051f565b9350506101208c015191506101408c015190509295989b509295989b9093969950565b6001600160a01b03929092168252602082015260400190565b6020808252602c908201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726040820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960408201526a206861732073686172657360a81b606082015260800190565b6020808252601a908201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604082015260600190565b6020808252601d908201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604082015260600190565b6040518181016001600160401b0381118282101715620009325762000932620009ec565b604052919050565b60006001600160401b03821115620009565762000956620009ec565b5060209081020190565b60008219821115620009765762000976620009d6565b500190565b6002810460018216806200099057607f821691505b60208210811415620009b257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620009cf57620009cf620009d6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613b678062000a126000396000f3fe60806040526004361061039b5760003560e01c806380185705116101dc578063ce7c2ac211610102578063e8a3d485116100a0578063f2fde38b1161006f578063f2fde38b14610a1e578063f47c84c514610a3e578063f4b28f3514610a53578063fe042d4914610a66576103e2565b8063e8a3d485146109b4578063e985e9c5146109c9578063eeb30c23146109e9578063f032554914610a09576103e2565b8063d2d8cb67116100dc578063d2d8cb6714610957578063d79779b21461096c578063e33b7de31461098c578063e7661c78146109a1576103e2565b8063ce7c2ac21461090d578063cfc86f7b1461092d578063d1f86ba914610942576103e2565b806397304ced1161017a578063aa4193d611610149578063aa4193d614610898578063b88d4fde146108b8578063c87b56dd146108d8578063cce132d1146108f8576103e2565b806397304ced146108305780639791e8e1146108435780639852595c14610858578063a22cb46514610878576103e2565b80638b83209b116101b65780638b83209b146107c65780638da5cb5b146107e6578063938e3d7b146107fb57806395d89b411461081b576103e2565b8063801857051461077c57806382f96f1a1461079157806384494708146107b1576103e2565b80633154b9c2116102c15780634f6ccce71161025f57806368fc68c71161022e57806368fc68c71461071257806370a0823114610727578063715018a61461074757806379c9cb7b1461075c576103e2565b80634f6ccce71461069d57806355f804b3146106bd5780636352211e146106dd5780636373a6b1146106fd576103e2565b806342842e0e1161029b57806342842e0e14610603578063438b6300146106235780634721284d1461065057806348b750441461067d576103e2565b80633154b9c2146105b95780633a98ef39146105ce578063406072a9146105e3576103e2565b80631eacd3021161033957806327ac36c41161030857806327ac36c41461054f5780632aea3d23146105645780632f2ec183146105795780632f745c5914610599576103e2565b80631eacd302146104f057806323b872dd1461050557806323c8d4d21461052557806325e892831461053a576103e2565b8063095ea7b311610375578063095ea7b31461046c578063109695231461048e57806318160ddd146104ae57806319165587146104d0576103e2565b806301ffc9a7146103e757806306fdde031461041d578063081812fc1461043f576103e2565b366103e2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706103c9610a86565b346040516103d8929190612fcc565b60405180910390a1005b600080fd5b3480156103f357600080fd5b50610407610402366004612de4565b610a8a565b6040516104149190613066565b60405180910390f35b34801561042957600080fd5b50610432610ab7565b604051610414919061307a565b34801561044b57600080fd5b5061045f61045a366004612dcc565b610b49565b6040516104149190612fb8565b34801561047857600080fd5b5061048c610487366004612d85565b610b95565b005b34801561049a57600080fd5b5061048c6104a9366004612e2e565b610c2d565b3480156104ba57600080fd5b506104c3610c83565b6040516104149190613071565b3480156104dc57600080fd5b5061048c6104eb366004612c47565b610c89565b3480156104fc57600080fd5b5061048c610d97565b34801561051157600080fd5b5061048c610520366004612c9b565b610df3565b34801561053157600080fd5b50610407610e2b565b34801561054657600080fd5b50610407610e39565b34801561055b57600080fd5b5061048c610e42565b34801561057057600080fd5b5061048c610ebe565b34801561058557600080fd5b5061048c610594366004612dcc565b610f11565b3480156105a557600080fd5b506104c36105b4366004612d85565b610f55565b3480156105c557600080fd5b506104c3610fa7565b3480156105da57600080fd5b506104c3610fad565b3480156105ef57600080fd5b506104c36105fe366004612e1c565b610fb3565b34801561060f57600080fd5b5061048c61061e366004612c9b565b610fde565b34801561062f57600080fd5b5061064361063e366004612c47565b610ff9565b6040516104149190613022565b34801561065c57600080fd5b5061067061066b366004612c47565b6110b7565b604051610414919061398b565b34801561068957600080fd5b5061048c610698366004612e1c565b6110d5565b3480156106a957600080fd5b506104c36106b8366004612dcc565b61128b565b3480156106c957600080fd5b5061048c6106d8366004612e2e565b6112e6565b3480156106e957600080fd5b5061045f6106f8366004612dcc565b611338565b34801561070957600080fd5b5061043261136d565b34801561071e57600080fd5b506104c36113fb565b34801561073357600080fd5b506104c3610742366004612c47565b611400565b34801561075357600080fd5b5061048c611444565b34801561076857600080fd5b5061048c610777366004612dcc565b61148f565b34801561078857600080fd5b506104c36114d3565b34801561079d57600080fd5b506106706107ac366004612c47565b6114d9565b3480156107bd57600080fd5b506104076114f7565b3480156107d257600080fd5b5061045f6107e1366004612dcc565b611506565b3480156107f257600080fd5b5061045f611544565b34801561080757600080fd5b5061048c610816366004612e2e565b611553565b34801561082757600080fd5b506104326115a5565b61048c61083e366004612dcc565b6115b4565b34801561084f57600080fd5b506104c36116ba565b34801561086457600080fd5b506104c3610873366004612c47565b6116c0565b34801561088457600080fd5b5061048c610893366004612d58565b6116db565b3480156108a457600080fd5b5061048c6108b3366004612dcc565b6116ed565b3480156108c457600080fd5b5061048c6108d3366004612cdb565b611731565b3480156108e457600080fd5b506104326108f3366004612dcc565b611770565b34801561090457600080fd5b506104c36117f3565b34801561091957600080fd5b506104c3610928366004612c47565b6117f9565b34801561093957600080fd5b50610432611814565b34801561094e57600080fd5b506104c3611821565b34801561096357600080fd5b506104c3611827565b34801561097857600080fd5b506104c3610987366004612c47565b61182c565b34801561099857600080fd5b506104c3611847565b61048c6109af366004612e8c565b61184d565b3480156109c057600080fd5b50610432611a4c565b3480156109d557600080fd5b506104076109e4366004612c63565b611a5b565b3480156109f557600080fd5b5061048c610a04366004612dcc565b611a89565b348015610a1557600080fd5b5061048c611acd565b348015610a2a57600080fd5b5061048c610a39366004612c47565b611b2b565b348015610a4a57600080fd5b506104c3611b9c565b61048c610a61366004612e8c565b611ba2565b348015610a7257600080fd5b5061048c610a81366004612dcc565b611d99565b3390565b60006001600160e01b0319821663780e9d6360e01b1480610aaf5750610aaf82611ddd565b90505b919050565b606060008054610ac690613a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290613a4c565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b5482611e1d565b610b795760405162461bcd60e51b8152600401610b7090613672565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610ba082611338565b9050806001600160a01b0316836001600160a01b03161415610bd45760405162461bcd60e51b8152600401610b709061378b565b806001600160a01b0316610be6610a86565b6001600160a01b03161480610c025750610c02816109e4610a86565b610c1e5760405162461bcd60e51b8152600401610b7090613516565b610c288383611e3a565b505050565b610c35610a86565b6001600160a01b0316610c46611544565b6001600160a01b031614610c6c5760405162461bcd60e51b8152600401610b70906136be565b8051610c7f906015906020840190612b3e565b5050565b60085490565b6001600160a01b0381166000908152600c6020526040902054610cbe5760405162461bcd60e51b8152600401610b7090613280565b6000610cc8611847565b610cd29047613999565b90506000610ce98383610ce4866116c0565b611ea8565b905080610d085760405162461bcd60e51b8152600401610b709061349e565b6001600160a01b0383166000908152600d602052604081208054839290610d30908490613999565b9250508190555080600b6000828254610d499190613999565b90915550610d5990508382611eee565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610d8a929190612fcc565b60405180910390a1505050565b610d9f610a86565b6001600160a01b0316610db0611544565b6001600160a01b031614610dd65760405162461bcd60e51b8152600401610b70906136be565b6018805461ff001981166101009182900460ff1615909102179055565b610e04610dfe610a86565b82611f8a565b610e205760405162461bcd60e51b8152600401610b709061383d565b610c28838383612007565b601854610100900460ff1681565b60185460ff1681565b610e4a610a86565b6001600160a01b0316610e5b611544565b6001600160a01b031614610e815760405162461bcd60e51b8152600401610b70906136be565b6000610e8b610c83565b905060005b6064811015610c7f57610eac33610ea78385613999565b612134565b80610eb681613a87565b915050610e90565b610ec6610a86565b6001600160a01b0316610ed7611544565b6001600160a01b031614610efd5760405162461bcd60e51b8152600401610b70906136be565b6018805460ff19811660ff90911615179055565b610f19610a86565b6001600160a01b0316610f2a611544565b6001600160a01b031614610f505760405162461bcd60e51b8152600401610b70906136be565b601c55565b6000610f6083611400565b8210610f7e5760405162461bcd60e51b8152600401610b709061311c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601b5481565b600a5490565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b610c2883838360405180602001604052806000815250611731565b6060600061100683611400565b905060008167ffffffffffffffff81111561103157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561105a578160200160208202803683370190505b50905060005b828110156110af576110728582610f55565b82828151811061109257634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806110a781613a87565b915050611060565b509392505050565b6001600160a01b03166000908152601a602052604090205460ff1690565b6001600160a01b0381166000908152600c602052604090205461110a5760405162461bcd60e51b8152600401610b7090613280565b60006111158361182c565b6040516370a0823160e01b81526001600160a01b038516906370a0823190611141903090600401612fb8565b60206040518083038186803b15801561115957600080fd5b505afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190612e74565b61119b9190613999565b905060006111ae8383610ce48787610fb3565b9050806111cd5760405162461bcd60e51b8152600401610b709061349e565b6001600160a01b03808516600090815260106020908152604080832093871683529290529081208054839290611204908490613999565b90915550506001600160a01b0384166000908152600f602052604081208054839290611231908490613999565b90915550611242905084848361214e565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a848360405161127d929190612fcc565b60405180910390a250505050565b6000611295610c83565b82106112b35760405162461bcd60e51b8152600401610b70906138c5565b600882815481106112d457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6112ee610a86565b6001600160a01b03166112ff611544565b6001600160a01b0316146113255760405162461bcd60e51b8152600401610b70906136be565b8051610c7f906017906020840190612b3e565b6000818152600260205260408120546001600160a01b031680610aaf5760405162461bcd60e51b8152600401610b70906135bd565b6015805461137a90613a4c565b80601f01602080910402602001604051908101604052809291908181526020018280546113a690613a4c565b80156113f35780601f106113c8576101008083540402835291602001916113f3565b820191906000526020600020905b8154815290600101906020018083116113d657829003601f168201915b505050505081565b606481565b60006001600160a01b0382166114285760405162461bcd60e51b8152600401610b7090613573565b506001600160a01b031660009081526003602052604090205490565b61144c610a86565b6001600160a01b031661145d611544565b6001600160a01b0316146114835760405162461bcd60e51b8152600401610b70906136be565b61148d60006121a4565b565b611497610a86565b6001600160a01b03166114a8611544565b6001600160a01b0316146114ce5760405162461bcd60e51b8152600401610b70906136be565b601255565b60145481565b6001600160a01b031660009081526019602052604090205460ff1690565b60185462010000900460ff1681565b6000600e828154811061152957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6011546001600160a01b031690565b61155b610a86565b6001600160a01b031661156c611544565b6001600160a01b0316146115925760405162461bcd60e51b8152600401610b70906136be565b8051610c7f906016906020840190612b3e565b606060018054610ac690613a4c565b60185460ff166115d65760405162461bcd60e51b8152600401610b70906130db565b6012548111156115f85760405162461bcd60e51b8152600401610b709061308d565b600081116116185760405162461bcd60e51b8152600401610b7090613606565b610c1c61162d82611627610c83565b906121f6565b111561164b5760405162461bcd60e51b8152600401610b7090613236565b34611657600083612202565b11156116755760405162461bcd60e51b8152600401610b7090613341565b60005b81811015610c7f57600061168a610c83565b9050610c1c611697610c83565b10156116a7576116a73382612134565b50806116b281613a87565b915050611678565b601c5481565b6001600160a01b03166000908152600d602052604090205490565b610c7f6116e6610a86565b838361220e565b6116f5610a86565b6001600160a01b0316611706611544565b6001600160a01b03161461172c5760405162461bcd60e51b8152600401610b70906136be565b601355565b61174261173c610a86565b83611f8a565b61175e5760405162461bcd60e51b8152600401610b709061383d565b61176a848484846122b1565b50505050565b606061177b82611e1d565b6117975760405162461bcd60e51b8152600401610b709061373c565b60006117a16122e4565b905060008151116117c157604051806020016040528060008152506117ec565b806117cb846122f3565b6040516020016117dc929190612f86565b6040516020818303038152906040525b9392505050565b60125481565b6001600160a01b03166000908152600c602052604090205490565b6017805461137a90613a4c565b60135481565b600081565b6001600160a01b03166000908152600f602052604090205490565b600b5490565b60185462010000900460ff166118755760405162461bcd60e51b8152600401610b709061395b565b601354336000908152601960205260409020546118999060ff9081169086166121f6565b11156118b75760405162461bcd60e51b8152600401610b70906137cc565b60008360ff16116118da5760405162461bcd60e51b8152600401610b7090613606565b610c1c6118ec8460ff16611627610c83565b111561190a5760405162461bcd60e51b8152600401610b7090613236565b34611919600060ff8616612202565b11156119375760405162461bcd60e51b8152600401610b7090613341565b60003360405160200161194a9190612f3f565b6040516020818303038152906040528051906020012090506119a383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b54915084905061240e565b6119bf5760405162461bcd60e51b8152600401610b70906134e9565b336000908152601960205260409020546119dd90859060ff166139b1565b336000908152601960205260408120805460ff191660ff93909316929092179091555b8460ff16811015611a45576000611a15610c83565b9050610c1c611a22610c83565b1015611a3257611a323382612134565b5080611a3d81613a87565b915050611a00565b5050505050565b606060168054610ac690613a4c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611a91610a86565b6001600160a01b0316611aa2611544565b6001600160a01b031614611ac85760405162461bcd60e51b8152600401610b70906136be565b601455565b611ad5610a86565b6001600160a01b0316611ae6611544565b6001600160a01b031614611b0c5760405162461bcd60e51b8152600401610b70906136be565b6018805462ff0000198116620100009182900460ff1615909102179055565b611b33610a86565b6001600160a01b0316611b44611544565b6001600160a01b031614611b6a5760405162461bcd60e51b8152600401610b70906136be565b6001600160a01b038116611b905760405162461bcd60e51b8152600401610b70906131b9565b611b99816121a4565b50565b610c1c81565b601854610100900460ff16611bc95760405162461bcd60e51b8152600401610b709061380e565b601454336000908152601a6020526040902054611bed9060ff9081169086166121f6565b1115611c0b5760405162461bcd60e51b8152600401610b70906137cc565b60008360ff1611611c2e5760405162461bcd60e51b8152600401610b7090613606565b610c1c611c408460ff16611627610c83565b1115611c5e5760405162461bcd60e51b8152600401610b7090613236565b34611c6d600060ff8616612202565b1115611c8b5760405162461bcd60e51b8152600401610b7090613341565b600033604051602001611c9e9190612f3f565b604051602081830303815290604052805190602001209050611cf783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601c54915084905061240e565b611d135760405162461bcd60e51b8152600401610b70906134e9565b336000908152601a6020526040902054611d3190859060ff166139b1565b336000908152601a60205260408120805460ff191660ff93909316929092179091555b8460ff16811015611a45576000611d69610c83565b9050610c1c611d76610c83565b1015611d8657611d863382612134565b5080611d9181613a87565b915050611d54565b611da1610a86565b6001600160a01b0316611db2611544565b6001600160a01b031614611dd85760405162461bcd60e51b8152600401610b70906136be565b601b55565b60006001600160e01b031982166380ac58cd60e01b1480611e0e57506001600160e01b03198216635b5e139f60e01b145b80610aaf5750610aaf82612424565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e6f82611338565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b0384166000908152600c602052604081205490918391611ed290866139ea565b611edc91906139d6565b611ee69190613a09565b949350505050565b80471015611f0e5760405162461bcd60e51b8152600401610b70906133d5565b6000826001600160a01b031682604051611f2790612fb5565b60006040518083038185875af1925050503d8060008114611f64576040519150601f19603f3d011682016040523d82523d6000602084013e611f69565b606091505b5050905080610c285760405162461bcd60e51b8152600401610b7090613378565b6000611f9582611e1d565b611fb15760405162461bcd60e51b8152600401610b7090613452565b6000611fbc83611338565b9050806001600160a01b0316846001600160a01b03161480611ff75750836001600160a01b0316611fec84610b49565b6001600160a01b0316145b80611ee65750611ee68185611a5b565b826001600160a01b031661201a82611338565b6001600160a01b0316146120405760405162461bcd60e51b8152600401610b70906136f3565b6001600160a01b0382166120665760405162461bcd60e51b8152600401610b70906132c6565b61207183838361243d565b61207c600082611e3a565b6001600160a01b03831660009081526003602052604081208054600192906120a5908490613a09565b90915550506001600160a01b03821660009081526003602052604081208054600192906120d3908490613999565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c7f8282604051806020016040528060008152506124c6565b610c288363a9059cbb60e01b848460405160240161216d929190612fcc565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526124f9565b601180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006117ec8284613999565b60006117ec82846139ea565b816001600160a01b0316836001600160a01b031614156122405760405162461bcd60e51b8152600401610b709061330a565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906122a4908590613066565b60405180910390a3505050565b6122bc848484612007565b6122c884848484612588565b61176a5760405162461bcd60e51b8152600401610b7090613167565b606060178054610ac690613a4c565b60608161231857506040805180820190915260018152600360fc1b6020820152610ab2565b8160005b8115612342578061232c81613a87565b915061233b9050600a836139d6565b915061231c565b60008167ffffffffffffffff81111561236b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612395576020820181803683370190505b5090505b8415611ee6576123aa600183613a09565b91506123b7600a86613aa2565b6123c2906030613999565b60f81b8183815181106123e557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612407600a866139d6565b9450612399565b60008261241b85846126a3565b14949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b612448838383610c28565b6001600160a01b0383166124645761245f81612753565b612487565b816001600160a01b0316836001600160a01b031614612487576124878382612797565b6001600160a01b0382166124a35761249e81612834565b610c28565b826001600160a01b0316826001600160a01b031614610c2857610c28828261290d565b6124d08383612951565b6124dd6000848484612588565b610c285760405162461bcd60e51b8152600401610b7090613167565b600061254e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a309092919063ffffffff16565b805190915015610c28578080602001905181019061256c9190612db0565b610c285760405162461bcd60e51b8152600401610b7090613911565b600061259c846001600160a01b0316612a3f565b1561269857836001600160a01b031663150b7a026125b8610a86565b8786866040518563ffffffff1660e01b81526004016125da9493929190612fe5565b602060405180830381600087803b1580156125f457600080fd5b505af1925050508015612624575060408051601f3d908101601f1916820190925261262191810190612e00565b60015b61267e573d808015612652576040519150601f19603f3d011682016040523d82523d6000602084013e612657565b606091505b5080516126765760405162461bcd60e51b8152600401610b7090613167565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ee6565b506001949350505050565b600081815b84518110156110af5760008582815181106126d357634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116127145782816040516020016126f7929190612f5c565b604051602081830303815290604052805190602001209250612740565b8083604051602001612727929190612f5c565b6040516020818303038152906040528051906020012092505b508061274b81613a87565b9150506126a8565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016127a484611400565b6127ae9190613a09565b600083815260076020526040902054909150808214612801576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061284690600190613a09565b6000838152600960205260408120546008805493945090928490811061287c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106128ab57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128f157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061291883611400565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129775760405162461bcd60e51b8152600401610b709061363d565b61298081611e1d565b1561299d5760405162461bcd60e51b8152600401610b70906131ff565b6129a96000838361243d565b6001600160a01b03821660009081526003602052604081208054600192906129d2908490613999565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611ee68484600085612a45565b3b151590565b606082471015612a675760405162461bcd60e51b8152600401610b709061340c565b612a7085612a3f565b612a8c5760405162461bcd60e51b8152600401610b709061388e565b600080866001600160a01b03168587604051612aa89190612f6a565b60006040518083038185875af1925050503d8060008114612ae5576040519150601f19603f3d011682016040523d82523d6000602084013e612aea565b606091505b5091509150612afa828286612b05565b979650505050505050565b60608315612b145750816117ec565b825115612b245782518084602001fd5b8160405162461bcd60e51b8152600401610b70919061307a565b828054612b4a90613a4c565b90600052602060002090601f016020900481019282612b6c5760008555612bb2565b82601f10612b8557805160ff1916838001178555612bb2565b82800160010185558215612bb2579182015b82811115612bb2578251825591602001919060010190612b97565b50612bbe929150612bc2565b5090565b5b80821115612bbe5760008155600101612bc3565b600067ffffffffffffffff80841115612bf257612bf2613ae2565b604051601f8501601f191681016020018281118282101715612c1657612c16613ae2565b604052848152915081838501861015612c2e57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215612c58578081fd5b81356117ec81613af8565b60008060408385031215612c75578081fd5b8235612c8081613af8565b91506020830135612c9081613af8565b809150509250929050565b600080600060608486031215612caf578081fd5b8335612cba81613af8565b92506020840135612cca81613af8565b929592945050506040919091013590565b60008060008060808587031215612cf0578081fd5b8435612cfb81613af8565b93506020850135612d0b81613af8565b925060408501359150606085013567ffffffffffffffff811115612d2d578182fd5b8501601f81018713612d3d578182fd5b612d4c87823560208401612bd7565b91505092959194509250565b60008060408385031215612d6a578182fd5b8235612d7581613af8565b91506020830135612c9081613b0d565b60008060408385031215612d97578182fd5b8235612da281613af8565b946020939093013593505050565b600060208284031215612dc1578081fd5b81516117ec81613b0d565b600060208284031215612ddd578081fd5b5035919050565b600060208284031215612df5578081fd5b81356117ec81613b1b565b600060208284031215612e11578081fd5b81516117ec81613b1b565b60008060408385031215612c75578182fd5b600060208284031215612e3f578081fd5b813567ffffffffffffffff811115612e55578182fd5b8201601f81018413612e65578182fd5b611ee684823560208401612bd7565b600060208284031215612e85578081fd5b5051919050565b600080600060408486031215612ea0578081fd5b833560ff81168114612eb0578182fd5b9250602084013567ffffffffffffffff80821115612ecc578283fd5b818601915086601f830112612edf578283fd5b813581811115612eed578384fd5b8760208083028501011115612f00578384fd5b6020830194508093505050509250925092565b60008151808452612f2b816020860160208601613a20565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008251612f7c818460208701613a20565b9190910192915050565b60008351612f98818460208801613a20565b835190830190612fac818360208801613a20565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061301890830184612f13565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561305a5783518352928401929184019160010161303e565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526117ec6020830184612f13565b6020808252602e908201527f43616e206f6e6c79206d696e74206d6178207075726368617365206f6620746f60408201526d6b656e7320617420612074696d6560901b606082015260800190565b60208082526021908201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656040820152603760f91b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620546f6b656e7360b01b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526013908201527224b73b30b634b21026b2b935b632a83937b7b360691b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601c908201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e7300000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526022908201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604082015261736560f01b606082015260800190565b6020808252601590820152744f47206d696e74206973206e6f742061637469766560581b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b602080825260169082015275507265206d696e74206973206e6f742061637469766560501b604082015260600190565b60ff91909116815260200190565b600082198211156139ac576139ac613ab6565b500190565b600060ff821660ff84168060ff038211156139ce576139ce613ab6565b019392505050565b6000826139e5576139e5613acc565b500490565b6000816000190483118215151615613a0457613a04613ab6565b500290565b600082821015613a1b57613a1b613ab6565b500390565b60005b83811015613a3b578181015183820152602001613a23565b8381111561176a5750506000910152565b600281046001821680613a6057607f821691505b60208210811415613a8157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a9b57613a9b613ab6565b5060010190565b600082613ab157613ab1613acc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611b9957600080fd5b8015158114611b9957600080fd5b6001600160e01b031981168114611b9957600080fdfea264697066735822122081308d93db2bceb6f6b0414f08d97cf3902551240c80ad9e10a605ff1e0bfcf664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000032021b9d679c61e5860d899754bfc515b95eb8e381271e5462c7454e02fc06d9f112677f5bf9361d0c82cb257c56532948a922d4a012be88c377d3b15e44736245100000000000000000000000000000000000000000000000000000000000000134d7973746963204461696b6f6e2046616972790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044849444500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6e69667479626173652e6d7970696e6174612e636c6f75642f697066732f516d646874454565545253474343597a4c554c674c6a6f734c586769576b7a63636b6e786a766b71533232593544000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f6e69667479626173652e6d7970696e6174612e636c6f75642f697066732f516d503772796a596b3679704d41644b554379346d33554c6f7333684544516674646d544e64477774564477694d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000002f7ca67930e114abee7ef16ae6529feb6f802de400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064
Deployed ByteCode Sourcemap
67988:6996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32967:40;32983:12;:10;:12::i;:::-;32997:9;32967:40;;;;;;;:::i;:::-;;;;;;;;67988:6996;;;;;61765:224;;;;;;;;;;-1:-1:-1;61765:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49259:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50818:221::-;;;;;;;;;;-1:-1:-1;50818:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50341:411::-;;;;;;;;;;-1:-1:-1;50341:411:0;;;;;:::i;:::-;;:::i;:::-;;69900:120;;;;;;;;;;-1:-1:-1;69900:120:0;;;;;:::i;:::-;;:::i;62405:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34753:566::-;;;;;;;;;;-1:-1:-1;34753:566:0;;;;;:::i;:::-;;:::i;71207:91::-;;;;;;;;;;;;;:::i;51568:339::-;;;;;;;;;;-1:-1:-1;51568:339:0;;;;;:::i;:::-;;:::i;68634:32::-;;;;;;;;;;;;;:::i;68593:34::-;;;;;;;;;;;;;:::i;69664:209::-;;;;;;;;;;;;;:::i;71306:97::-;;;;;;;;;;;;;:::i;70714:104::-;;;;;;;;;;-1:-1:-1;70714:104:0;;;;;:::i;:::-;;:::i;62073:256::-;;;;;;;;;;-1:-1:-1;62073:256:0;;;;;:::i;:::-;;:::i;68877:26::-;;;;;;;;;;;;;:::i;33098:91::-;;;;;;;;;;;;;:::i;34227:135::-;;;;;;;;;;-1:-1:-1;34227:135:0;;;;;:::i;:::-;;:::i;51978:185::-;;;;;;;;;;-1:-1:-1;51978:185:0;;;;;:::i;:::-;;:::i;74641:340::-;;;;;;;;;;-1:-1:-1;74641:340:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73713:113::-;;;;;;;;;;-1:-1:-1;73713:113:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35587:641::-;;;;;;;;;;-1:-1:-1;35587:641:0;;;;;:::i;:::-;;:::i;62595:233::-;;;;;;;;;;-1:-1:-1;62595:233:0;;;;;:::i;:::-;;:::i;70028:102::-;;;;;;;;;;-1:-1:-1;70028:102:0;;;;;:::i;:::-;;:::i;48953:239::-;;;;;;;;;;-1:-1:-1;48953:239:0;;;;;:::i;:::-;;:::i;68470:24::-;;;;;;;;;;;;;:::i;68204:45::-;;;;;;;;;;;;;:::i;48683:208::-;;;;;;;;;;-1:-1:-1;48683:208:0;;;;;:::i;:::-;;:::i;16762:103::-;;;;;;;;;;;;;:::i;70261:97::-;;;;;;;;;;-1:-1:-1;70261:97:0;;;;;:::i;:::-;;:::i;68408:27::-;;;;;;;;;;;;;:::i;72507:115::-;;;;;;;;;;-1:-1:-1;72507:115:0;;;;;:::i;:::-;;:::i;68673:33::-;;;;;;;;;;;;;:::i;34453:100::-;;;;;;;;;;-1:-1:-1;34453:100:0;;;;;:::i;:::-;;:::i;16111:87::-;;;;;;;;;;;;;:::i;70138:115::-;;;;;;;;;;-1:-1:-1;70138:115:0;;;;;:::i;:::-;;:::i;49428:104::-;;;;;;;;;;;;;:::i;73859:745::-;;;;;;:::i;:::-;;:::i;68910:25::-;;;;;;;;;;;;;:::i;33949:109::-;;;;;;;;;;-1:-1:-1;33949:109:0;;;;;:::i;:::-;;:::i;51111:155::-;;;;;;;;;;-1:-1:-1;51111:155:0;;;;;:::i;:::-;;:::i;70366:110::-;;;;;;;;;;-1:-1:-1;70366:110:0;;;;;:::i;:::-;;:::i;52234:328::-;;;;;;;;;;-1:-1:-1;52234:328:0;;;;;:::i;:::-;;:::i;49603:334::-;;;;;;;;;;-1:-1:-1;49603:334:0;;;;;:::i;:::-;;:::i;68310:24::-;;;;;;;;;;;;;:::i;33745:105::-;;;;;;;;;;-1:-1:-1;33745:105:0;;;;;:::i;:::-;;:::i;68535:27::-;;;;;;;;;;;;;:::i;68373:28::-;;;;;;;;;;;;;:::i;68158:39::-;;;;;;;;;;;;;:::i;33535:119::-;;;;;;;;;;-1:-1:-1;33535:119:0;;;;;:::i;:::-;;:::i;33283:95::-;;;;;;;;;;;;;:::i;71435:1064::-;;;;;;:::i;:::-;;:::i;70971:97::-;;;;;;;;;;;;;:::i;51337:164::-;;;;;;;;;;-1:-1:-1;51337:164:0;;;;;:::i;:::-;;:::i;70484:106::-;;;;;;;;;;-1:-1:-1;70484:106:0;;;;;:::i;:::-;;:::i;71105:94::-;;;;;;;;;;;;;:::i;17020:201::-;;;;;;;;;;-1:-1:-1;17020:201:0;;;;;:::i;:::-;;:::i;68256:41::-;;;;;;;;;;;;;:::i;72649:1056::-;;;;;;:::i;:::-;;:::i;70598:108::-;;;;;;;;;;-1:-1:-1;70598:108:0;;;;;:::i;:::-;;:::i;14835:98::-;14915:10;14835:98;:::o;61765:224::-;61867:4;-1:-1:-1;;;;;;61891:50:0;;-1:-1:-1;;;61891:50:0;;:90;;;61945:36;61969:11;61945:23;:36::i;:::-;61884:97;;61765:224;;;;:::o;49259:100::-;49313:13;49346:5;49339:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49259:100;:::o;50818:221::-;50894:7;50922:16;50930:7;50922;:16::i;:::-;50914:73;;;;-1:-1:-1;;;50914:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;51007:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;51007:24:0;;50818:221::o;50341:411::-;50422:13;50438:23;50453:7;50438:14;:23::i;:::-;50422:39;;50486:5;-1:-1:-1;;;;;50480:11:0;:2;-1:-1:-1;;;;;50480:11:0;;;50472:57;;;;-1:-1:-1;;;50472:57:0;;;;;;;:::i;:::-;50580:5;-1:-1:-1;;;;;50564:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;50564:21:0;;:62;;;;50589:37;50606:5;50613:12;:10;:12::i;50589:37::-;50542:168;;;;-1:-1:-1;;;50542:168:0;;;;;;;:::i;:::-;50723:21;50732:2;50736:7;50723:8;:21::i;:::-;50341:411;;;:::o;69900:120::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;69985:27;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69900:120:::0;:::o;62405:113::-;62493:10;:17;62405:113;:::o;34753:566::-;-1:-1:-1;;;;;34829:16:0;;34848:1;34829:16;;;:7;:16;;;;;;34821:71;;;;-1:-1:-1;;;34821:71:0;;;;;;;:::i;:::-;34905:21;34953:15;:13;:15::i;:::-;34929:39;;:21;:39;:::i;:::-;34905:63;;34979:15;34997:58;35013:7;35022:13;35037:17;35046:7;35037:8;:17::i;:::-;34997:15;:58::i;:::-;34979:76;-1:-1:-1;35076:12:0;35068:68;;;;-1:-1:-1;;;35068:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35149:18:0;;;;;;:9;:18;;;;;:29;;35171:7;;35149:18;:29;;35171:7;;35149:29;:::i;:::-;;;;;;;;35207:7;35189:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;35227:35:0;;-1:-1:-1;35245:7:0;35254;35227:17;:35::i;:::-;35278:33;35294:7;35303;35278:33;;;;;;;:::i;:::-;;;;;;;;34753:566;;;:::o;71207:91::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;71278:12:::1;::::0;;-1:-1:-1;;71262:28:0;::::1;71278:12;::::0;;;::::1;;;71277:13;71262:28:::0;;::::1;;::::0;;71207:91::o;51568:339::-;51763:41;51782:12;:10;:12::i;:::-;51796:7;51763:18;:41::i;:::-;51755:103;;;;-1:-1:-1;;;51755:103:0;;;;;;;:::i;:::-;51871:28;51881:4;51887:2;51891:7;51871:9;:28::i;68634:32::-;;;;;;;;;:::o;68593:34::-;;;;;;:::o;69664:209::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;69725:11:::1;69739:13;:11;:13::i;:::-;69725:27;;69768:6;69763:103;68246:3;69780:1;:19;69763:103;;;69821:33;69831:10;69843;69852:1:::0;69843:6;:10:::1;:::i;:::-;69821:9;:33::i;:::-;69801:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69763:103;;71306:97:::0;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;71381:14:::1;::::0;;-1:-1:-1;;71363:32:0;::::1;71381:14;::::0;;::::1;71380:15;71363:32;::::0;;71306:97::o;70714:104::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70786:10:::1;:24:::0;70714:104::o;62073:256::-;62170:7;62206:23;62223:5;62206:16;:23::i;:::-;62198:5;:31;62190:87;;;;-1:-1:-1;;;62190:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;62295:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62073:256::o;68877:26::-;;;;:::o;33098:91::-;33169:12;;33098:91;:::o;34227:135::-;-1:-1:-1;;;;;34324:21:0;;;34297:7;34324:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;34227:135::o;51978:185::-;52116:39;52133:4;52139:2;52143:7;52116:39;;;;;;;;;;;;:16;:39::i;74641:340::-;74702:16;74731:15;74749:17;74759:6;74749:9;:17::i;:::-;74731:35;;74777:25;74819:10;74805:25;;;;;;-1:-1:-1;;;74805:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74805:25:0;;74777:53;;74845:6;74841:107;74861:10;74857:1;:14;74841:107;;;74906:30;74926:6;74934:1;74906:19;:30::i;:::-;74892:8;74901:1;74892:11;;;;;;-1:-1:-1;;;74892:11:0;;;;;;;;;;;;;;;;;;:44;74873:3;;;;:::i;:::-;;;;74841:107;;;-1:-1:-1;74965:8:0;74641:340;-1:-1:-1;;;74641:340:0:o;73713:113::-;-1:-1:-1;;;;;73800:17:0;73775:5;73800:17;;;:11;:17;;;;;;;;;73713:113::o;35587:641::-;-1:-1:-1;;;;;35669:16:0;;35688:1;35669:16;;;:7;:16;;;;;;35661:71;;;;-1:-1:-1;;;35661:71:0;;;;;;;:::i;:::-;35745:21;35802:20;35816:5;35802:13;:20::i;:::-;35769:30;;-1:-1:-1;;;35769:30:0;;-1:-1:-1;;;;;35769:15:0;;;;;:30;;35793:4;;35769:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;35745:77;;35833:15;35851:65;35867:7;35876:13;35891:24;35900:5;35907:7;35891:8;:24::i;35851:65::-;35833:83;-1:-1:-1;35937:12:0;35929:68;;;;-1:-1:-1;;;35929:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36010:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;36044:7;;36010:21;:41;;36044:7;;36010:41;:::i;:::-;;;;-1:-1:-1;;;;;;;36062:26:0;;;;;;:19;:26;;;;;:37;;36092:7;;36062:26;:37;;36092:7;;36062:37;:::i;:::-;;;;-1:-1:-1;36112:47:0;;-1:-1:-1;36135:5:0;36142:7;36151;36112:22;:47::i;:::-;36196:5;-1:-1:-1;;;;;36175:45:0;;36203:7;36212;36175:45;;;;;;;:::i;:::-;;;;;;;;35587:641;;;;:::o;62595:233::-;62670:7;62706:30;:28;:30::i;:::-;62698:5;:38;62690:95;;;;-1:-1:-1;;;62690:95:0;;;;;;;:::i;:::-;62803:10;62814:5;62803:17;;;;;;-1:-1:-1;;;62803:17:0;;;;;;;;;;;;;;;;;62796:24;;62595:233;;;:::o;70028:102::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70099:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48953:239::-:0;49025:7;49061:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49061:16:0;49096:19;49088:73;;;;-1:-1:-1;;;49088:73:0;;;;;;;:::i;68470:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68204:45::-;68246:3;68204:45;:::o;48683:208::-;48755:7;-1:-1:-1;;;;;48783:19:0;;48775:74;;;;-1:-1:-1;;;48775:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48867:16:0;;;;;:9;:16;;;;;;;48683:208::o;16762:103::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;16827:30:::1;16854:1;16827:18;:30::i;:::-;16762:103::o:0;70261:97::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70329:9:::1;:21:::0;70261:97::o;68408:27::-;;;;:::o;72507:115::-;-1:-1:-1;;;;;72595:18:0;72570:5;72595:18;;;:12;:18;;;;;;;;;72507:115::o;68673:33::-;;;;;;;;;:::o;34453:100::-;34504:7;34531;34539:5;34531:14;;;;;;-1:-1:-1;;;34531:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34531:14:0;;34453:100;-1:-1:-1;;34453:100:0:o;16111:87::-;16184:6;;-1:-1:-1;;;;;16184:6:0;16111:87;:::o;70138:115::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70218:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;49428:104::-:0;49484:13;49517:7;49510:14;;;;;:::i;73859:745::-;73934:14;;;;73926:60;;;;-1:-1:-1;;;73926:60:0;;;;;;;:::i;:::-;74023:9;;74005:14;:27;;73997:86;;;;-1:-1:-1;;;73997:86:0;;;;;;;:::i;:::-;74119:1;74102:14;:18;74094:59;;;;-1:-1:-1;;;74094:59:0;;;;;;;:::i;:::-;68293:4;74172:33;74190:14;74172:13;:11;:13::i;:::-;:17;;:33::i;:::-;:47;;74164:102;;;;-1:-1:-1;;;74164:102:0;;;;;;;:::i;:::-;74320:9;74285:31;68196:1;74301:14;74285:15;:31::i;:::-;:44;;74277:88;;;;-1:-1:-1;;;74277:88:0;;;;;;;:::i;:::-;74390:6;74386:211;74406:14;74402:1;:18;74386:211;;;74442:14;74459:13;:11;:13::i;:::-;74442:30;;68293:4;74491:13;:11;:13::i;:::-;:26;74487:99;;;74538:32;74548:10;74560:9;74538;:32::i;:::-;-1:-1:-1;74422:3:0;;;;:::i;:::-;;;;74386:211;;68910:25;;;;:::o;33949:109::-;-1:-1:-1;;;;;34032:18:0;34005:7;34032:18;;;:9;:18;;;;;;;33949:109::o;51111:155::-;51206:52;51225:12;:10;:12::i;:::-;51239:8;51249;51206:18;:52::i;70366:110::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70440:13:::1;:28:::0;70366:110::o;52234:328::-;52409:41;52428:12;:10;:12::i;:::-;52442:7;52409:18;:41::i;:::-;52401:103;;;;-1:-1:-1;;;52401:103:0;;;;;;;:::i;:::-;52515:39;52529:4;52535:2;52539:7;52548:5;52515:13;:39::i;:::-;52234:328;;;;:::o;49603:334::-;49676:13;49710:16;49718:7;49710;:16::i;:::-;49702:76;;;;-1:-1:-1;;;49702:76:0;;;;;;;:::i;:::-;49791:21;49815:10;:8;:10::i;:::-;49791:34;;49867:1;49849:7;49843:21;:25;:86;;;;;;;;;;;;;;;;;49895:7;49904:18;:7;:16;:18::i;:::-;49878:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49843:86;49836:93;49603:334;-1:-1:-1;;;49603:334:0:o;68310:24::-;;;;:::o;33745:105::-;-1:-1:-1;;;;;33826:16:0;33799:7;33826:16;;;:7;:16;;;;;;;33745:105::o;68535:27::-;;;;;;;:::i;68373:28::-;;;;:::o;68158:39::-;68196:1;68158:39;:::o;33535:119::-;-1:-1:-1;;;;;33620:26:0;33593:7;33620:26;;;:19;:26;;;;;;;33535:119::o;33283:95::-;33356:14;;33283:95;:::o;71435:1064::-;71553:13;;;;;;;71545:48;;;;-1:-1:-1;;;71545:48:0;;;;;;;:::i;:::-;71660:13;;71625:10;71612:24;;;;:12;:24;;;;;;:44;;;:24;;;;:44;;:28;:44::i;:::-;:61;;71604:108;;;;-1:-1:-1;;;71604:108:0;;;;;;;:::i;:::-;71748:1;71731:14;:18;;;71723:59;;;;-1:-1:-1;;;71723:59:0;;;;;;;:::i;:::-;68293:4;71801:33;71819:14;71801:33;;:13;:11;:13::i;:33::-;:47;;71793:102;;;;-1:-1:-1;;;71793:102:0;;;;;;;:::i;:::-;71949:9;71914:31;68196:1;71914:31;;;:15;:31::i;:::-;:44;;71906:88;;;;-1:-1:-1;;;71906:88:0;;;;;;;:::i;:::-;72031:12;72073:10;72056:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72046:39;;;;;;72031:54;;72104:51;72123:12;;72104:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;72137:11:0;;;-1:-1:-1;72150:4:0;;-1:-1:-1;72104:18:0;:51::i;:::-;72096:83;;;;-1:-1:-1;;;72096:83:0;;;;;;;:::i;:::-;72240:10;72227:24;;;;:12;:24;;;;;;:41;;72254:14;;72227:24;;:41;:::i;:::-;72213:10;72200:24;;;;:12;:24;;;;;:68;;-1:-1:-1;;72200:68:0;;;;;;;;;;;;;72281:211;72301:14;72297:18;;:1;:18;72281:211;;;72337:14;72354:13;:11;:13::i;:::-;72337:30;;68293:4;72386:13;:11;:13::i;:::-;:26;72382:99;;;72433:32;72443:10;72455:9;72433;:32::i;:::-;-1:-1:-1;72317:3:0;;;;:::i;:::-;;;;72281:211;;;;71435:1064;;;;:::o;70971:97::-;71015:13;71048:12;71041:19;;;;;:::i;51337:164::-;-1:-1:-1;;;;;51458:25:0;;;51434:4;51458:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51337:164::o;70484:106::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70556:12:::1;:26:::0;70484:106::o;71105:94::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;71178:13:::1;::::0;;-1:-1:-1;;71161:30:0;::::1;71178:13:::0;;;;::::1;;;71177:14;71161:30:::0;;::::1;;::::0;;71105:94::o;17020:201::-;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17109:22:0;::::1;17101:73;;;;-1:-1:-1::0;;;17101:73:0::1;;;;;;;:::i;:::-;17185:28;17204:8;17185:18;:28::i;:::-;17020:201:::0;:::o;68256:41::-;68293:4;68256:41;:::o;72649:1056::-;72766:12;;;;;;;72758:46;;;;-1:-1:-1;;;72758:46:0;;;;;;;:::i;:::-;72870:12;;72835:10;72823:23;;;;:11;:23;;;;;;:43;;;:23;;;;:43;;:27;:43::i;:::-;:59;;72815:106;;;;-1:-1:-1;;;72815:106:0;;;;;;;:::i;:::-;72957:1;72940:14;:18;;;72932:59;;;;-1:-1:-1;;;72932:59:0;;;;;;;:::i;:::-;68293:4;73010:33;73028:14;73010:33;;:13;:11;:13::i;:33::-;:47;;73002:102;;;;-1:-1:-1;;;73002:102:0;;;;;;;:::i;:::-;73158:9;73123:31;68196:1;73123:31;;;:15;:31::i;:::-;:44;;73115:88;;;;-1:-1:-1;;;73115:88:0;;;;;;;:::i;:::-;73240:12;73282:10;73265:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;73255:39;;;;;;73240:54;;73313:50;73332:12;;73313:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;73346:10:0;;;-1:-1:-1;73358:4:0;;-1:-1:-1;73313:18:0;:50::i;:::-;73305:82;;;;-1:-1:-1;;;73305:82:0;;;;;;;:::i;:::-;73446:10;73434:23;;;;:11;:23;;;;;;:40;;73460:14;;73434:23;;:40;:::i;:::-;73420:10;73408:23;;;;:11;:23;;;;;:66;;-1:-1:-1;;73408:66:0;;;;;;;;;;;;;73487:211;73507:14;73503:18;;:1;:18;73487:211;;;73543:14;73560:13;:11;:13::i;:::-;73543:30;;68293:4;73592:13;:11;:13::i;:::-;:26;73588:99;;;73639:32;73649:10;73661:9;73639;:32::i;:::-;-1:-1:-1;73523:3:0;;;;:::i;:::-;;;;73487:211;;70598:108;16342:12;:10;:12::i;:::-;-1:-1:-1;;;;;16331:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16331:23:0;;16323:68;;;;-1:-1:-1;;;16323:68:0;;;;;;;:::i;:::-;70672:11:::1;:26:::0;70598:108::o;48314:305::-;48416:4;-1:-1:-1;;;;;;48453:40:0;;-1:-1:-1;;;48453:40:0;;:105;;-1:-1:-1;;;;;;;48510:48:0;;-1:-1:-1;;;48510:48:0;48453:105;:158;;;;48575:36;48599:11;48575:23;:36::i;54072:127::-;54137:4;54161:16;;;:7;:16;;;;;;-1:-1:-1;;;;;54161:16:0;:30;;;54072:127::o;58054:174::-;58129:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;58129:29:0;-1:-1:-1;;;;;58129:29:0;;;;;;;;:24;;58183:23;58129:24;58183:14;:23::i;:::-;-1:-1:-1;;;;;58174:46:0;;;;;;;;;;;58054:174;;:::o;36406:248::-;36616:12;;-1:-1:-1;;;;;36596:16:0;;36552:7;36596:16;;;:7;:16;;;;;;36552:7;;36631:15;;36580:32;;:13;:32;:::i;:::-;36579:49;;;;:::i;:::-;:67;;;;:::i;:::-;36572:74;36406:248;-1:-1:-1;;;;36406:248:0:o;19721:317::-;19836:6;19811:21;:31;;19803:73;;;;-1:-1:-1;;;19803:73:0;;;;;;;:::i;:::-;19890:12;19908:9;-1:-1:-1;;;;;19908:14:0;19930:6;19908:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19889:52;;;19960:7;19952:78;;;;-1:-1:-1;;;19952:78:0;;;;;;;:::i;54366:348::-;54459:4;54484:16;54492:7;54484;:16::i;:::-;54476:73;;;;-1:-1:-1;;;54476:73:0;;;;;;;:::i;:::-;54560:13;54576:23;54591:7;54576:14;:23::i;:::-;54560:39;;54629:5;-1:-1:-1;;;;;54618:16:0;:7;-1:-1:-1;;;;;54618:16:0;;:51;;;;54662:7;-1:-1:-1;;;;;54638:31:0;:20;54650:7;54638:11;:20::i;:::-;-1:-1:-1;;;;;54638:31:0;;54618:51;:87;;;;54673:32;54690:5;54697:7;54673:16;:32::i;57358:578::-;57517:4;-1:-1:-1;;;;;57490:31:0;:23;57505:7;57490:14;:23::i;:::-;-1:-1:-1;;;;;57490:31:0;;57482:85;;;;-1:-1:-1;;;57482:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57586:16:0;;57578:65;;;;-1:-1:-1;;;57578:65:0;;;;;;;:::i;:::-;57656:39;57677:4;57683:2;57687:7;57656:20;:39::i;:::-;57760:29;57777:1;57781:7;57760:8;:29::i;:::-;-1:-1:-1;;;;;57802:15:0;;;;;;:9;:15;;;;;:20;;57821:1;;57802:15;:20;;57821:1;;57802:20;:::i;:::-;;;;-1:-1:-1;;;;;;;57833:13:0;;;;;;:9;:13;;;;;:18;;57850:1;;57833:13;:18;;57850:1;;57833:18;:::i;:::-;;;;-1:-1:-1;;57862:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;57862:21:0;-1:-1:-1;;;;;57862:21:0;;;;;;;;;57901:27;;57862:16;;57901:27;;;;;;;57358:578;;;:::o;55056:110::-;55132:26;55142:2;55146:7;55132:26;;;;;;;;;;;;:9;:26::i;26427:211::-;26544:86;26564:5;26594:23;;;26619:2;26623:5;26571:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26571:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;26571:58:0;-1:-1:-1;;;;;;26571:58:0;;;;;;;;;;26544:19;:86::i;17381:191::-;17474:6;;;-1:-1:-1;;;;;17491:17:0;;;-1:-1:-1;;;;;;17491:17:0;;;;;;;17524:40;;17474:6;;;17491:17;17474:6;;17524:40;;17455:16;;17524:40;17381:191;;:::o;5030:98::-;5088:7;5115:5;5119:1;5115;:5;:::i;5768:98::-;5826:7;5853:5;5857:1;5853;:5;:::i;58370:315::-;58525:8;-1:-1:-1;;;;;58516:17:0;:5;-1:-1:-1;;;;;58516:17:0;;;58508:55;;;;-1:-1:-1;;;58508:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58574:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;58574:46:0;;;;;;;58636:41;;;;;58574:46;;58636:41;:::i;:::-;;;;;;;;58370:315;;;:::o;53444:::-;53601:28;53611:4;53617:2;53621:7;53601:9;:28::i;:::-;53648:48;53671:4;53677:2;53681:7;53690:5;53648:22;:48::i;:::-;53640:111;;;;-1:-1:-1;;;53640:111:0;;;;;;;:::i;70845:114::-;70905:13;70938;70931:20;;;;;:::i;12397:723::-;12453:13;12674:10;12670:53;;-1:-1:-1;12701:10:0;;;;;;;;;;;;-1:-1:-1;;;12701:10:0;;;;;;12670:53;12748:5;12733:12;12789:78;12796:9;;12789:78;;12822:8;;;;:::i;:::-;;-1:-1:-1;12845:10:0;;-1:-1:-1;12853:2:0;12845:10;;:::i;:::-;;;12789:78;;;12877:19;12909:6;12899:17;;;;;;-1:-1:-1;;;12899:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12899:17:0;;12877:39;;12927:154;12934:10;;12927:154;;12961:11;12971:1;12961:11;;:::i;:::-;;-1:-1:-1;13030:10:0;13038:2;13030:5;:10;:::i;:::-;13017:24;;:2;:24;:::i;:::-;13004:39;;12987:6;12994;12987:14;;;;;;-1:-1:-1;;;12987:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;12987:56:0;;;;;;;;-1:-1:-1;13058:11:0;13067:2;13058:11;;:::i;:::-;;;12927:154;;908:190;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;40071:157::-;-1:-1:-1;;;;;;40180:40:0;;-1:-1:-1;;;40180:40:0;40071:157;;;:::o;63441:589::-;63585:45;63612:4;63618:2;63622:7;63585:26;:45::i;:::-;-1:-1:-1;;;;;63647:18:0;;63643:187;;63682:40;63714:7;63682:31;:40::i;:::-;63643:187;;;63752:2;-1:-1:-1;;;;;63744:10:0;:4;-1:-1:-1;;;;;63744:10:0;;63740:90;;63771:47;63804:4;63810:7;63771:32;:47::i;:::-;-1:-1:-1;;;;;63844:16:0;;63840:183;;63877:45;63914:7;63877:36;:45::i;:::-;63840:183;;;63950:4;-1:-1:-1;;;;;63944:10:0;:2;-1:-1:-1;;;;;63944:10:0;;63940:83;;63971:40;63999:2;64003:7;63971:27;:40::i;55393:321::-;55523:18;55529:2;55533:7;55523:5;:18::i;:::-;55574:54;55605:1;55609:2;55613:7;55622:5;55574:22;:54::i;:::-;55552:154;;;;-1:-1:-1;;;55552:154:0;;;;;;;:::i;29000:716::-;29424:23;29450:69;29478:4;29450:69;;;;;;;;;;;;;;;;;29458:5;-1:-1:-1;;;;;29450:27:0;;;:69;;;;;:::i;:::-;29534:17;;29424:95;;-1:-1:-1;29534:21:0;29530:179;;29631:10;29620:30;;;;;;;;;;;;:::i;:::-;29612:85;;;;-1:-1:-1;;;29612:85:0;;;;;;;:::i;59250:799::-;59405:4;59426:15;:2;-1:-1:-1;;;;;59426:13:0;;:15::i;:::-;59422:620;;;59478:2;-1:-1:-1;;;;;59462:36:0;;59499:12;:10;:12::i;:::-;59513:4;59519:7;59528:5;59462:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59462:72:0;;;;;;;;-1:-1:-1;;59462:72:0;;;;;;;;;;;;:::i;:::-;;;59458:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59704:13:0;;59700:272;;59747:60;;-1:-1:-1;;;59747:60:0;;;;;;;:::i;59700:272::-;59922:6;59916:13;59907:6;59903:2;59899:15;59892:38;59458:529;-1:-1:-1;;;;;;59585:51:0;-1:-1:-1;;;59585:51:0;;-1:-1:-1;59578:58:0;;59422:620;-1:-1:-1;60026:4:0;59250:799;;;;;;:::o;1460:701::-;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;-1:-1:-1;;;1682:8:0;;;;;;;;;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1879:12;1893;1862:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2069:12;2083;2052:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;64753:164;64857:10;:17;;64830:24;;;;:15;:24;;;;;:44;;;64885:24;;;;;;;;;;;;64753:164::o;65544:988::-;65810:22;65860:1;65835:22;65852:4;65835:16;:22::i;:::-;:26;;;;:::i;:::-;65872:18;65893:26;;;:17;:26;;;;;;65810:51;;-1:-1:-1;66026:28:0;;;66022:328;;-1:-1:-1;;;;;66093:18:0;;66071:19;66093:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66144:30;;;;;;:44;;;66261:30;;:17;:30;;;;;:43;;;66022:328;-1:-1:-1;66446:26:0;;;;:17;:26;;;;;;;;66439:33;;;-1:-1:-1;;;;;66490:18:0;;;;;:12;:18;;;;;:34;;;;;;;66483:41;65544:988::o;66827:1079::-;67105:10;:17;67080:22;;67105:21;;67125:1;;67105:21;:::i;:::-;67137:18;67158:24;;;:15;:24;;;;;;67531:10;:26;;67080:46;;-1:-1:-1;67158:24:0;;67080:46;;67531:26;;;;-1:-1:-1;;;67531:26:0;;;;;;;;;;;;;;;;;67509:48;;67595:11;67570:10;67581;67570:22;;;;;;-1:-1:-1;;;67570:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;67675:28;;;:15;:28;;;;;;;:41;;;67847:24;;;;;67840:31;67882:10;:16;;;;;-1:-1:-1;;;67882:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;66827:1079;;;;:::o;64331:221::-;64416:14;64433:20;64450:2;64433:16;:20::i;:::-;-1:-1:-1;;;;;64464:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64509:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64331:221:0:o;56050:382::-;-1:-1:-1;;;;;56130:16:0;;56122:61;;;;-1:-1:-1;;;56122:61:0;;;;;;;:::i;:::-;56203:16;56211:7;56203;:16::i;:::-;56202:17;56194:58;;;;-1:-1:-1;;;56194:58:0;;;;;;;:::i;:::-;56265:45;56294:1;56298:2;56302:7;56265:20;:45::i;:::-;-1:-1:-1;;;;;56323:13:0;;;;;;:9;:13;;;;;:18;;56340:1;;56323:13;:18;;56340:1;;56323:18;:::i;:::-;;;;-1:-1:-1;;56352:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;56352:21:0;-1:-1:-1;;;;;56352:21:0;;;;;;;;56391:33;;56352:16;;;56391:33;;56352:16;;56391:33;56050:382;;:::o;21205:229::-;21342:12;21374:52;21396:6;21404:4;21410:1;21413:12;21374:21;:52::i;18399:387::-;18722:20;18770:8;;;18399:387::o;22325:510::-;22495:12;22553:5;22528:21;:30;;22520:81;;;;-1:-1:-1;;;22520:81:0;;;;;;;:::i;:::-;22620:18;22631:6;22620:10;:18::i;:::-;22612:60;;;;-1:-1:-1;;;22612:60:0;;;;;;;:::i;:::-;22686:12;22700:23;22727:6;-1:-1:-1;;;;;22727:11:0;22746:5;22753:4;22727:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22685:73;;;;22776:51;22793:7;22802:10;22814:12;22776:16;:51::i;:::-;22769:58;22325:510;-1:-1:-1;;;;;;;22325:510:0:o;25011:712::-;25161:12;25190:7;25186:530;;;-1:-1:-1;25221:10:0;25214:17;;25186:530;25335:17;;:21;25331:374;;25533:10;25527:17;25594:15;25581:10;25577:2;25573:19;25566:44;25481:148;25676:12;25669:20;;-1:-1:-1;;;25669:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;1162:402::-;;;1291:2;1279:9;1270:7;1266:23;1262:32;1259:2;;;1312:6;1304;1297:22;1259:2;1356:9;1343:23;1375:33;1402:5;1375:33;:::i;:::-;1427:5;-1:-1:-1;1484:2:1;1469:18;;1456:32;1497:35;1456:32;1497:35;:::i;:::-;1551:7;1541:17;;;1249:315;;;;;:::o;1569:470::-;;;;1715:2;1703:9;1694:7;1690:23;1686:32;1683:2;;;1736:6;1728;1721:22;1683:2;1780:9;1767:23;1799:33;1826:5;1799:33;:::i;:::-;1851:5;-1:-1:-1;1908:2:1;1893:18;;1880:32;1921:35;1880:32;1921:35;:::i;:::-;1673:366;;1975:7;;-1:-1:-1;;;2029:2:1;2014:18;;;;2001:32;;1673:366::o;2044:830::-;;;;;2216:3;2204:9;2195:7;2191:23;2187:33;2184:2;;;2238:6;2230;2223:22;2184:2;2282:9;2269:23;2301:33;2328:5;2301:33;:::i;:::-;2353:5;-1:-1:-1;2410:2:1;2395:18;;2382:32;2423:35;2382:32;2423:35;:::i;:::-;2477:7;-1:-1:-1;2531:2:1;2516:18;;2503:32;;-1:-1:-1;2586:2:1;2571:18;;2558:32;2613:18;2602:30;;2599:2;;;2650:6;2642;2635:22;2599:2;2678:22;;2731:4;2723:13;;2719:27;-1:-1:-1;2709:2:1;;2765:6;2757;2750:22;2709:2;2793:75;2860:7;2855:2;2842:16;2837:2;2833;2829:11;2793:75;:::i;:::-;2783:85;;;2174:700;;;;;;;:::o;2879:396::-;;;3005:2;2993:9;2984:7;2980:23;2976:32;2973:2;;;3026:6;3018;3011:22;2973:2;3070:9;3057:23;3089:33;3116:5;3089:33;:::i;:::-;3141:5;-1:-1:-1;3198:2:1;3183:18;;3170:32;3211;3170;3211;:::i;3280:327::-;;;3409:2;3397:9;3388:7;3384:23;3380:32;3377:2;;;3430:6;3422;3415:22;3377:2;3474:9;3461:23;3493:33;3520:5;3493:33;:::i;:::-;3545:5;3597:2;3582:18;;;;3569:32;;-1:-1:-1;;;3367:240:1:o;3612:257::-;;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3753:6;3745;3738:22;3700:2;3790:9;3784:16;3809:30;3833:5;3809:30;:::i;3874:190::-;;3986:2;3974:9;3965:7;3961:23;3957:32;3954:2;;;4007:6;3999;3992:22;3954:2;-1:-1:-1;4035:23:1;;3944:120;-1:-1:-1;3944:120:1:o;4069:257::-;;4180:2;4168:9;4159:7;4155:23;4151:32;4148:2;;;4201:6;4193;4186:22;4148:2;4245:9;4232:23;4264:32;4290:5;4264:32;:::i;4331:261::-;;4453:2;4441:9;4432:7;4428:23;4424:32;4421:2;;;4474:6;4466;4459:22;4421:2;4511:9;4505:16;4530:32;4556:5;4530:32;:::i;4875:416::-;;;5018:2;5006:9;4997:7;4993:23;4989:32;4986:2;;;5039:6;5031;5024:22;5296:482;;5418:2;5406:9;5397:7;5393:23;5389:32;5386:2;;;5439:6;5431;5424:22;5386:2;5484:9;5471:23;5517:18;5509:6;5506:30;5503:2;;;5554:6;5546;5539:22;5503:2;5582:22;;5635:4;5627:13;;5623:27;-1:-1:-1;5613:2:1;;5669:6;5661;5654:22;5613:2;5697:75;5764:7;5759:2;5746:16;5741:2;5737;5733:11;5697:75;:::i;5978:194::-;;6101:2;6089:9;6080:7;6076:23;6072:32;6069:2;;;6122:6;6114;6107:22;6069:2;-1:-1:-1;6150:16:1;;6059:113;-1:-1:-1;6059:113:1:o;6177:833::-;;;;6339:2;6327:9;6318:7;6314:23;6310:32;6307:2;;;6360:6;6352;6345:22;6307:2;6404:9;6391:23;6454:4;6447:5;6443:16;6436:5;6433:27;6423:2;;6479:6;6471;6464:22;6423:2;6507:5;-1:-1:-1;6563:2:1;6548:18;;6535:32;6586:18;6616:14;;;6613:2;;;6648:6;6640;6633:22;6613:2;6691:6;6680:9;6676:22;6666:32;;6736:7;6729:4;6725:2;6721:13;6717:27;6707:2;;6763:6;6755;6748:22;6707:2;6808;6795:16;6834:2;6826:6;6823:14;6820:2;;;6855:6;6847;6840:22;6820:2;6914:7;6909:2;6903;6895:6;6891:15;6887:2;6883:24;6879:33;6876:46;6873:2;;;6940:6;6932;6925:22;6873:2;6976;6972;6968:11;6958:21;;6998:6;6988:16;;;;;6297:713;;;;;:::o;7015:259::-;;7096:5;7090:12;7123:6;7118:3;7111:19;7139:63;7195:6;7188:4;7183:3;7179:14;7172:4;7165:5;7161:16;7139:63;:::i;:::-;7256:2;7235:15;-1:-1:-1;;7231:29:1;7222:39;;;;7263:4;7218:50;;7066:208;-1:-1:-1;;7066:208:1:o;7279:229::-;7428:2;7424:15;;;;-1:-1:-1;;7420:53:1;7408:66;;7499:2;7490:12;;7398:110::o;7513:247::-;7670:19;;;7714:2;7705:12;;7698:28;7751:2;7742:12;;7660:100::o;7765:274::-;;7932:6;7926:13;7948:53;7994:6;7989:3;7982:4;7974:6;7970:17;7948:53;:::i;:::-;8017:16;;;;;7902:137;-1:-1:-1;;7902:137:1:o;8044:470::-;;8261:6;8255:13;8277:53;8323:6;8318:3;8311:4;8303:6;8299:17;8277:53;:::i;:::-;8393:13;;8352:16;;;;8415:57;8393:13;8352:16;8449:4;8437:17;;8415:57;:::i;:::-;8488:20;;8231:283;-1:-1:-1;;;;8231:283:1:o;8519:205::-;8719:3;8710:14::o;8729:203::-;-1:-1:-1;;;;;8893:32:1;;;;8875:51;;8863:2;8848:18;;8830:102::o;8937:282::-;-1:-1:-1;;;;;9137:32:1;;;;9119:51;;9201:2;9186:18;;9179:34;9107:2;9092:18;;9074:145::o;9224:490::-;-1:-1:-1;;;;;9493:15:1;;;9475:34;;9545:15;;9540:2;9525:18;;9518:43;9592:2;9577:18;;9570:34;;;9640:3;9635:2;9620:18;;9613:31;;;9224:490;;9661:47;;9688:19;;9680:6;9661:47;:::i;:::-;9653:55;9427:287;-1:-1:-1;;;;;;9427:287:1:o;9998:635::-;10169:2;10221:21;;;10291:13;;10194:18;;;10313:22;;;9998:635;;10169:2;10392:15;;;;10366:2;10351:18;;;9998:635;10438:169;10452:6;10449:1;10446:13;10438:169;;;10513:13;;10501:26;;10582:15;;;;10547:12;;;;10474:1;10467:9;10438:169;;;-1:-1:-1;10624:3:1;;10149:484;-1:-1:-1;;;;;;10149:484:1:o;10638:187::-;10803:14;;10796:22;10778:41;;10766:2;10751:18;;10733:92::o;10830:177::-;10976:25;;;10964:2;10949:18;;10931:76::o;11012:221::-;;11161:2;11150:9;11143:21;11181:46;11223:2;11212:9;11208:18;11200:6;11181:46;:::i;11238:410::-;11440:2;11422:21;;;11479:2;11459:18;;;11452:30;11518:34;11513:2;11498:18;;11491:62;-1:-1:-1;;;11584:2:1;11569:18;;11562:44;11638:3;11623:19;;11412:236::o;11653:397::-;11855:2;11837:21;;;11894:2;11874:18;;;11867:30;11933:34;11928:2;11913:18;;11906:62;-1:-1:-1;;;11999:2:1;11984:18;;11977:31;12040:3;12025:19;;11827:223::o;12055:407::-;12257:2;12239:21;;;12296:2;12276:18;;;12269:30;12335:34;12330:2;12315:18;;12308:62;-1:-1:-1;;;12401:2:1;12386:18;;12379:41;12452:3;12437:19;;12229:233::o;12467:414::-;12669:2;12651:21;;;12708:2;12688:18;;;12681:30;12747:34;12742:2;12727:18;;12720:62;-1:-1:-1;;;12813:2:1;12798:18;;12791:48;12871:3;12856:19;;12641:240::o;12886:402::-;13088:2;13070:21;;;13127:2;13107:18;;;13100:30;13166:34;13161:2;13146:18;;13139:62;-1:-1:-1;;;13232:2:1;13217:18;;13210:36;13278:3;13263:19;;13060:228::o;13293:352::-;13495:2;13477:21;;;13534:2;13514:18;;;13507:30;13573;13568:2;13553:18;;13546:58;13636:2;13621:18;;13467:178::o;13650:406::-;13852:2;13834:21;;;13891:2;13871:18;;;13864:30;13930:34;13925:2;13910:18;;13903:62;-1:-1:-1;;;13996:2:1;13981:18;;13974:40;14046:3;14031:19;;13824:232::o;14061:402::-;14263:2;14245:21;;;14302:2;14282:18;;;14275:30;14341:34;14336:2;14321:18;;14314:62;-1:-1:-1;;;14407:2:1;14392:18;;14385:36;14453:3;14438:19;;14235:228::o;14468:400::-;14670:2;14652:21;;;14709:2;14689:18;;;14682:30;14748:34;14743:2;14728:18;;14721:62;-1:-1:-1;;;14814:2:1;14799:18;;14792:34;14858:3;14843:19;;14642:226::o;14873:349::-;15075:2;15057:21;;;15114:2;15094:18;;;15087:30;15153:27;15148:2;15133:18;;15126:55;15213:2;15198:18;;15047:175::o;15227:355::-;15429:2;15411:21;;;15468:2;15448:18;;;15441:30;15507:33;15502:2;15487:18;;15480:61;15573:2;15558:18;;15401:181::o;15587:422::-;15789:2;15771:21;;;15828:2;15808:18;;;15801:30;15867:34;15862:2;15847:18;;15840:62;15938:28;15933:2;15918:18;;15911:56;15999:3;15984:19;;15761:248::o;16014:353::-;16216:2;16198:21;;;16255:2;16235:18;;;16228:30;16294:31;16289:2;16274:18;;16267:59;16358:2;16343:18;;16188:179::o;16372:402::-;16574:2;16556:21;;;16613:2;16593:18;;;16586:30;16652:34;16647:2;16632:18;;16625:62;-1:-1:-1;;;16718:2:1;16703:18;;16696:36;16764:3;16749:19;;16546:228::o;16779:408::-;16981:2;16963:21;;;17020:2;17000:18;;;16993:30;17059:34;17054:2;17039:18;;17032:62;-1:-1:-1;;;17125:2:1;17110:18;;17103:42;17177:3;17162:19;;16953:234::o;17192:407::-;17394:2;17376:21;;;17433:2;17413:18;;;17406:30;17472:34;17467:2;17452:18;;17445:62;-1:-1:-1;;;17538:2:1;17523:18;;17516:41;17589:3;17574:19;;17366:233::o;17604:343::-;17806:2;17788:21;;;17845:2;17825:18;;;17818:30;-1:-1:-1;;;17879:2:1;17864:18;;17857:49;17938:2;17923:18;;17778:169::o;17952:420::-;18154:2;18136:21;;;18193:2;18173:18;;;18166:30;18232:34;18227:2;18212:18;;18205:62;18303:26;18298:2;18283:18;;18276:54;18362:3;18347:19;;18126:246::o;18377:406::-;18579:2;18561:21;;;18618:2;18598:18;;;18591:30;18657:34;18652:2;18637:18;;18630:62;-1:-1:-1;;;18723:2:1;18708:18;;18701:40;18773:3;18758:19;;18551:232::o;18788:405::-;18990:2;18972:21;;;19029:2;19009:18;;;19002:30;19068:34;19063:2;19048:18;;19041:62;-1:-1:-1;;;19134:2:1;19119:18;;19112:39;19183:3;19168:19;;18962:231::o;19198:352::-;19400:2;19382:21;;;19439:2;19419:18;;;19412:30;19478;19473:2;19458:18;;19451:58;19541:2;19526:18;;19372:178::o;19555:356::-;19757:2;19739:21;;;19776:18;;;19769:30;19835:34;19830:2;19815:18;;19808:62;19902:2;19887:18;;19729:182::o;19916:408::-;20118:2;20100:21;;;20157:2;20137:18;;;20130:30;20196:34;20191:2;20176:18;;20169:62;-1:-1:-1;;;20262:2:1;20247:18;;20240:42;20314:3;20299:19;;20090:234::o;20329:356::-;20531:2;20513:21;;;20550:18;;;20543:30;20609:34;20604:2;20589:18;;20582:62;20676:2;20661:18;;20503:182::o;20690:405::-;20892:2;20874:21;;;20931:2;20911:18;;;20904:30;20970:34;20965:2;20950:18;;20943:62;-1:-1:-1;;;21036:2:1;21021:18;;21014:39;21085:3;21070:19;;20864:231::o;21100:411::-;21302:2;21284:21;;;21341:2;21321:18;;;21314:30;21380:34;21375:2;21360:18;;21353:62;-1:-1:-1;;;21446:2:1;21431:18;;21424:45;21501:3;21486:19;;21274:237::o;21516:397::-;21718:2;21700:21;;;21757:2;21737:18;;;21730:30;21796:34;21791:2;21776:18;;21769:62;-1:-1:-1;;;21862:2:1;21847:18;;21840:31;21903:3;21888:19;;21690:223::o;21918:398::-;22120:2;22102:21;;;22159:2;22139:18;;;22132:30;22198:34;22193:2;22178:18;;22171:62;-1:-1:-1;;;22264:2:1;22249:18;;22242:32;22306:3;22291:19;;22092:224::o;22321:345::-;22523:2;22505:21;;;22562:2;22542:18;;;22535:30;-1:-1:-1;;;22596:2:1;22581:18;;22574:51;22657:2;22642:18;;22495:171::o;22671:413::-;22873:2;22855:21;;;22912:2;22892:18;;;22885:30;22951:34;22946:2;22931:18;;22924:62;-1:-1:-1;;;23017:2:1;23002:18;;22995:47;23074:3;23059:19;;22845:239::o;23089:353::-;23291:2;23273:21;;;23330:2;23310:18;;;23303:30;23369:31;23364:2;23349:18;;23342:59;23433:2;23418:18;;23263:179::o;23447:408::-;23649:2;23631:21;;;23688:2;23668:18;;;23661:30;23727:34;23722:2;23707:18;;23700:62;-1:-1:-1;;;23793:2:1;23778:18;;23771:42;23845:3;23830:19;;23621:234::o;23860:406::-;24062:2;24044:21;;;24101:2;24081:18;;;24074:30;24140:34;24135:2;24120:18;;24113:62;-1:-1:-1;;;24206:2:1;24191:18;;24184:40;24256:3;24241:19;;24034:232::o;24271:346::-;24473:2;24455:21;;;24512:2;24492:18;;;24485:30;-1:-1:-1;;;24546:2:1;24531:18;;24524:52;24608:2;24593:18;;24445:172::o;24804:184::-;24976:4;24964:17;;;;24946:36;;24934:2;24919:18;;24901:87::o;24993:128::-;;25064:1;25060:6;25057:1;25054:13;25051:2;;;25070:18;;:::i;:::-;-1:-1:-1;25106:9:1;;25041:80::o;25126:204::-;;25200:4;25197:1;25193:12;25232:4;25229:1;25225:12;25267:3;25261:4;25257:14;25252:3;25249:23;25246:2;;;25275:18;;:::i;:::-;25311:13;;25172:158;-1:-1:-1;;;25172:158:1:o;25335:120::-;;25401:1;25391:2;;25406:18;;:::i;:::-;-1:-1:-1;25440:9:1;;25381:74::o;25460:168::-;;25566:1;25562;25558:6;25554:14;25551:1;25548:21;25543:1;25536:9;25529:17;25525:45;25522:2;;;25573:18;;:::i;:::-;-1:-1:-1;25613:9:1;;25512:116::o;25633:125::-;;25701:1;25698;25695:8;25692:2;;;25706:18;;:::i;:::-;-1:-1:-1;25743:9:1;;25682:76::o;25763:258::-;25835:1;25845:113;25859:6;25856:1;25853:13;25845:113;;;25935:11;;;25929:18;25916:11;;;25909:39;25881:2;25874:10;25845:113;;;25976:6;25973:1;25970:13;25967:2;;;-1:-1:-1;;26011:1:1;25993:16;;25986:27;25816:205::o;26026:380::-;26111:1;26101:12;;26158:1;26148:12;;;26169:2;;26223:4;26215:6;26211:17;26201:27;;26169:2;26276;26268:6;26265:14;26245:18;26242:38;26239:2;;;26322:10;26317:3;26313:20;26310:1;26303:31;26357:4;26354:1;26347:15;26385:4;26382:1;26375:15;26239:2;;26081:325;;;:::o;26411:135::-;;-1:-1:-1;;26471:17:1;;26468:2;;;26491:18;;:::i;:::-;-1:-1:-1;26538:1:1;26527:13;;26458:88::o;26551:112::-;;26609:1;26599:2;;26614:18;;:::i;:::-;-1:-1:-1;26648:9:1;;26589:74::o;26668:127::-;26729:10;26724:3;26720:20;26717:1;26710:31;26760:4;26757:1;26750:15;26784:4;26781:1;26774:15;26800:127;26861:10;26856:3;26852:20;26849:1;26842:31;26892:4;26889:1;26882:15;26916:4;26913:1;26906:15;26932:127;26993:10;26988:3;26984:20;26981:1;26974:31;27024:4;27021:1;27014:15;27048:4;27045:1;27038:15;27064:133;-1:-1:-1;;;;;27141:31:1;;27131:42;;27121:2;;27187:1;27184;27177:12;27202:120;27290:5;27283:13;27276:21;27269:5;27266:32;27256:2;;27312:1;27309;27302:12;27327:133;-1:-1:-1;;;;;;27403:32:1;;27393:43;;27383:2;;27450:1;27447;27440:12
Swarm Source
ipfs://81308d93db2bceb6f6b0414f08d97cf3902551240c80ad9e10a605ff1e0bfcf6
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.