ETH Price: $3,485.88 (+1.96%)
Gas: 12 Gwei

Token

Launch Codes (LCD)
 

Overview

Max Total Supply

64 LCD

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
directivecreator.eth
Balance
1 LCD
0xc6dc654b5aa7969a24c7e4442a52e61fb8b24827
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LaunchCodes

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-01
*/

// File: contracts/ILaunchCodeErrors.sol


pragma solidity ^0.8.21;

contract ILaunchCodeErrors {
    // General errors
    error LCDMismatchedArrayLengths();
    error LCDQuantityMustBeGreaterThanZero();
    error LCDQueryForZeroAddress();

    // Token errors
    error LCDCannotUpdateLocksOnUnlockedOrStakedTokens();
    error LCDCanOnlyStakeUnlockedTokens();
    error LCDCanOnlyUnstakeStakedTokens();
    error LCDLockedToken();
    error LCDNotTokenOwnerOrApproved();
    error LCDNotTokenOwner();
    error LCDTokenNotFound();

    // Minting errors
    error LCDGlobalMintingLimitMet();
    error LCDIndividualMintingLimitMet();

    // Approval and transfer errors
    error LCDApproveCallerNotOwnerNorApproved();
    error LCDApproveToCaller();
    error LCDApproveToCurrentOwner();
    error LCDFundsTransferFailed();
    error LCDNoFundsToTransfer();
    error LCDTransferToNonERC721Receiver();

    // Class specific errors
    error LCDClassAlreadyArchived();
    error LCDClassAlreadyExists();
    error LCDClassNotFound();
    error LCDClassStillBackstopped();

    // Other errors
    error LCDBackstopEndInTheFuture();
    error LCDCannotAssignStakingLocks();
    error LCDInvalidPaidPrice();
}
// File: solidity-bits/contracts/Popcount.sol


/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;

library Popcount {
    uint256 private constant m1 = 0x5555555555555555555555555555555555555555555555555555555555555555;
    uint256 private constant m2 = 0x3333333333333333333333333333333333333333333333333333333333333333;
    uint256 private constant m4 = 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f;
    uint256 private constant h01 = 0x0101010101010101010101010101010101010101010101010101010101010101;

    function popcount256A(uint256 x) internal pure returns (uint256 count) {
        unchecked{
            for (count=0; x!=0; count++)
                x &= x - 1;
        }
    }

    function popcount256B(uint256 x) internal pure returns (uint256) {
        if (x == type(uint256).max) {
            return 256;
        }
        unchecked {
            x -= (x >> 1) & m1;             //put count of each 2 bits into those 2 bits
            x = (x & m2) + ((x >> 2) & m2); //put count of each 4 bits into those 4 bits 
            x = (x + (x >> 4)) & m4;        //put count of each 8 bits into those 8 bits 
            x = (x * h01) >> 248;  //returns left 8 bits of x + (x<<8) + (x<<16) + (x<<24) + ... 
        }
        return x;
    }
}
// File: solidity-bits/contracts/BitScan.sol


/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;


library BitScan {
    uint256 constant private DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff;
    bytes constant private LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8";

    /**
        @dev Isolate the least significant set bit.
     */ 
    function isolateLS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            return bb & (0 - bb);
        }
    } 

    /**
        @dev Isolate the most significant set bit.
     */ 
    function isolateMS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            bb |= bb >> 128;
            bb |= bb >> 64;
            bb |= bb >> 32;
            bb |= bb >> 16;
            bb |= bb >> 8;
            bb |= bb >> 4;
            bb |= bb >> 2;
            bb |= bb >> 1;
            
            return (bb >> 1) + 1;
        }
    } 

    /**
        @dev Find the index of the lest significant set bit. (trailing zero count)
     */ 
    function bitScanForward256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248]);
        }   
    }

    /**
        @dev Find the index of the most significant set bit.
     */ 
    function bitScanReverse256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return 255 - uint8(LOOKUP_TABLE_256[((isolateMS1B256(bb) * DEBRUIJN_256) >> 248)]);
        }   
    }

    function log2(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248]);
        } 
    }
}

// File: solidity-bits/contracts/BitMaps.sol


/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */
pragma solidity ^0.8.0;



/**
 * @dev This Library is a modified version of Openzeppelin's BitMaps library with extra features.
 *
 * 1. Functions of finding the index of the closest set bit from a given index are added.
 *    The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB.
 *    The modification of indexing makes finding the closest previous set bit more efficient in gas usage.
 * 2. Setting and unsetting the bitmap consecutively.
 * 3. Accounting number of set bits within a given range.   
 *
*/

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */

library BitMaps {
    using BitScan for uint256;
    uint256 private constant MASK_INDEX_ZERO = (1 << 255);
    uint256 private constant MASK_FULL = type(uint256).max;

    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(
        BitMap storage bitmap,
        uint256 index,
        bool value
    ) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }


    /**
     * @dev Consecutively sets `amount` of bits starting from the bit at `startIndex`.
     */    
    function setBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                bitmap._data[bucket] |= MASK_FULL << (256 - amount) >> bucketStartIndex;
            } else {
                bitmap._data[bucket] |= MASK_FULL >> bucketStartIndex;
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    bitmap._data[bucket] = MASK_FULL;
                    amount -= 256;
                    bucket++;
                }

                bitmap._data[bucket] |= MASK_FULL << (256 - amount);
            }
        }
    }


    /**
     * @dev Consecutively unsets `amount` of bits starting from the bit at `startIndex`.
     */    
    function unsetBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount) >> bucketStartIndex);
            } else {
                bitmap._data[bucket] &= ~(MASK_FULL >> bucketStartIndex);
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    bitmap._data[bucket] = 0;
                    amount -= 256;
                    bucket++;
                }

                bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount));
            }
        }
    }

    /**
     * @dev Returns number of set bits within a range.
     */
    function popcountA(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                count +=  Popcount.popcount256A(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount) >> bucketStartIndex)
                );
            } else {
                count += Popcount.popcount256A(
                    bitmap._data[bucket] & (MASK_FULL >> bucketStartIndex)
                );
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    count += Popcount.popcount256A(bitmap._data[bucket]);
                    amount -= 256;
                    bucket++;
                }
                count += Popcount.popcount256A(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount))
                );
            }
        }
    }

    /**
     * @dev Returns number of set bits within a range.
     */
    function popcountB(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                count +=  Popcount.popcount256B(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount) >> bucketStartIndex)
                );
            } else {
                count += Popcount.popcount256B(
                    bitmap._data[bucket] & (MASK_FULL >> bucketStartIndex)
                );
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    count += Popcount.popcount256B(bitmap._data[bucket]);
                    amount -= 256;
                    bucket++;
                }
                count += Popcount.popcount256B(
                    bitmap._data[bucket] & (MASK_FULL << (256 - amount))
                );
            }
        }
    }


    /**
     * @dev Find the closest index of the set bit before `index`.
     */
    function scanForward(BitMap storage bitmap, uint256 index) internal view returns (uint256 setBitIndex) {
        uint256 bucket = index >> 8;

        // index within the bucket
        uint256 bucketIndex = (index & 0xff);

        // load a bitboard from the bitmap.
        uint256 bb = bitmap._data[bucket];

        // offset the bitboard to scan from `bucketIndex`.
        bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex)
        
        if(bb > 0) {
            unchecked {
                setBitIndex = (bucket << 8) | (bucketIndex -  bb.bitScanForward256());    
            }
        } else {
            while(true) {
                require(bucket > 0, "BitMaps: The set bit before the index doesn't exist.");
                unchecked {
                    bucket--;
                }
                // No offset. Always scan from the least significiant bit now.
                bb = bitmap._data[bucket];
                
                if(bb > 0) {
                    unchecked {
                        setBitIndex = (bucket << 8) | (255 -  bb.bitScanForward256());
                        break;
                    }
                } 
            }
        }
    }

    function getBucket(BitMap storage bitmap, uint256 bucket) internal view returns (uint256) {
        return bitmap._data[bucket];
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: contracts/Administrable.sol


pragma solidity ^0.8.21;



contract Administrable is Pausable, Ownable {
    error AdministrableCallerMustBeAdmin();
    error AdministrableAlreadyAnAdmin();
    error AdministrableNotAnAdmin();

    mapping(address => bool) private _admins;

    constructor(address[] memory _initialAdmins) {
        for (uint256 i = 0; i < _initialAdmins.length; i++) {
            _admins[_initialAdmins[i]] = true;
        }
    }

    function addAdminRights(address _newAdmin) external onlyOwner {
        if (_isAdmin(_newAdmin)) revert AdministrableAlreadyAnAdmin();
        _admins[_newAdmin] = true;
    }

    function revokeAdminRights(address _admin) external onlyOwner {
        if (!_isAdmin(_admin)) revert AdministrableNotAnAdmin();
        delete _admins[_admin];
    }

    function pause() public onlyAdmin {
        _pause();
    }

    function unpause() public onlyAdmin {
        _unpause();
    }

    function _isAdmin(address _user) internal view returns (bool){
        return _admins[_user];
    }

    modifier onlyAdmin(){
        if (!_admins[_msgSender()]) revert AdministrableCallerMustBeAdmin();
        _;
    }
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.9.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev 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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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: contracts/TokenDataBasedERC721Psi.sol

//SPDX-License-Identifier: MIT

/*
The MIT License (MIT)

Copyright (2023) ctor.xyz

ERC721Psi is an ERC721 compliant implementation designed for scalable and gas-efficient
on-chain application with built-in randomized metadata generation.

Inspired by AzukiZen's awesome ERC721A, ERC721Psi also provides batch minting at a fixed
gas cost. However, ERC721Psi manages to solve the scaling issue of token transfer through
the mathematical power of the de Bruijn sequence.

This software is provided under the MIT License and is free to use. For commercial
support/service regarding ERC721Psi, contact ctor.xyz.

Modifications to the ERC721Psi made by EAL-13 (contracted by the Launch Codes NFT creators):
- Enhanced custom control over on-chain token data.
- Introduced new token classes for better categorization and management.

For the original code:
- github: https://github.com/estarriolvetch/ERC721Psi
- npm: https://www.npmjs.com/package/erc721psi
*/

pragma solidity ^0.8.21;










contract TokenDataBasedERC721Psi is Context, ERC165, IERC721, IERC721Metadata, ILaunchCodeErrors {
    uint8 public constant NO_LOCK = 0;
    uint8 public constant PENDING_LOCK = 1;
    uint8 public constant STAKING_LOCK = 2;
    uint8 public constant FIRST_ADMIN_LOCK = 3;

    using Address for address;
    using Strings for uint256;
    using BitMaps for BitMaps.BitMap;

    BitMaps.BitMap private _batchHead;
    BitMaps.BitMap private _burnedToken;

    string private _name;
    string private _symbol;
    string private _metadataBaseURI;
    uint256 public totalMinted;
    uint256 public totalBurned;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    mapping(uint256 => uint8) private _lockedTokens;
    mapping(uint256 => TokenData) private _tokenData;
    mapping(uint8 => Class) public classes;
    mapping(address => BalanceCounts) public individualCounts;

    struct Class {
        bool active;
        bool archived;
        uint32 mintedCount;
        uint32 mintingLimit;
        uint256 price;
        uint256 totalUnstakedHeldAssets;
        uint256 totalUnstakedHeldFunding;
        uint256 backstopEnd;
    }

    struct TokenData {
        uint8 classId;
        address owner;
        uint256 heldAssets;
        uint256 heldFunding;
    }

    struct BalanceCounts {
        uint256 balance;
        uint256 mintedCount;
    }

    constructor(string memory name_, string memory symbol_, string memory baseURI_) {
        _name = name_;
        _symbol = symbol_;
        _metadataBaseURI = baseURI_;
    }

    function _baseURI() internal view virtual returns (string memory) {
        return _metadataBaseURI;
    }

    function _setBaseURI(string memory baseURI) internal {
        _metadataBaseURI = baseURI;
    }

    function _nextTokenId() internal view virtual returns (uint256) {
        return totalMinted;
    }

    function _setTokenDataOf(uint256 tokenId, uint8 classId, uint256 heldAssets, uint256 heldFunding) internal virtual {
        _tokenData[tokenId].classId = classId;
        _tokenData[tokenId].heldAssets = heldAssets;
        _tokenData[tokenId].heldFunding = heldFunding;
    }

    function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
    {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    function tokenDataOf(uint256 tokenId) public view returns (TokenData memory) {
        TokenData memory data = _unfilteredTokenDataOf(tokenId);
        if (_isClassBackstopExpired(data.classId)) {
            return TokenData(data.classId, data.owner, 0, 0);
        }
        return data;
    }

    function _unfilteredTokenDataOf(uint256 tokenId) internal view virtual returns (TokenData memory) {
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        (, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(tokenId);
        return _tokenData[tokenIdBatchHead];
    }


    function balanceOf(address owner)
    public
    view
    virtual
    override
    returns (uint)
    {
        if (owner == address(0)) revert LCDQueryForZeroAddress();
        return individualCounts[owner].balance;
    }

    function ownerOf(uint256 tokenId)
    public
    view
    virtual
    override
    returns (address)
    {
        (address owner,) = _ownerAndBatchHeadOf(tokenId);
        return owner;
    }

    function _ownerAndBatchHeadOf(uint256 tokenId) internal view returns (address owner, uint256 tokenIdBatchHead){
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        tokenIdBatchHead = _getBatchHead(tokenId);
        owner = _tokenData[tokenIdBatchHead].owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        return string(abi.encodePacked(_baseURI(), tokenId.toString()));
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        if (to == owner) revert LCDApproveToCurrentOwner();
        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender()))
            revert LCDApproveCallerNotOwnerNorApproved();
        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId)
    public
    view
    virtual
    override
    returns (address)
    {
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved)
    public
    virtual
    override
    {
        if (operator == _msgSender()) revert LCDApproveToCaller();
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        if (!_isApprovedOrOwner(_msgSender(), tokenId)) revert LCDNotTokenOwnerOrApproved();
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        if (!_isApprovedOrOwner(_msgSender(), tokenId)) revert LCDNotTokenOwnerOrApproved();
        _safeTransfer(from, to, tokenId, _data);
    }

    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, 1, _data)) revert LCDTransferToNonERC721Receiver();
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _nextTokenId() && 0 <= tokenId && !_burnedToken.get(tokenId);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
    internal
    view
    virtual
    returns (bool)
    {
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        address owner = ownerOf(tokenId);
        return (spender == owner ||
        getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, "");
    }


    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        uint256 nextTokenId = _nextTokenId();
        _mint(to, quantity);
        if (!_checkOnERC721Received(address(0), to, nextTokenId, quantity, _data)) revert LCDTransferToNonERC721Receiver();
    }

    function _mint(
        address to,
        uint256 quantity
    ) internal virtual {
        uint256 nextTokenId = _nextTokenId();

        if (quantity == 0) revert LCDQuantityMustBeGreaterThanZero();
        if (to == address(0)) revert LCDQueryForZeroAddress();

        _beforeTokenTransfers(address(0), to, nextTokenId, quantity);
        totalMinted += quantity;
        individualCounts[to].balance += quantity;
        individualCounts[to].mintedCount += quantity;
        _tokenData[nextTokenId] = TokenData(0, to, 0, 0);
        _batchHead.set(nextTokenId);

        for (uint256 tokenId = nextTokenId; tokenId < nextTokenId + quantity; tokenId++) {
            emit Transfer(address(0), to, tokenId);
        }
    }

    function _burn(uint256 tokenId) internal virtual {
        address from = ownerOf(tokenId);
        _beforeTokenTransfers(from, address(0), tokenId, 1);

        _burnedToken.set(tokenId);
        individualCounts[from].balance -= 1;
        totalBurned += 1;

        _afterTokenTransfers(from, address(0), tokenId, 1);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(tokenId);

        if (owner != from) revert LCDNotTokenOwner();
        if (to == address(0)) revert LCDQueryForZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        uint256 subsequentTokenId = tokenId + 1;

        if (!_batchHead.get(subsequentTokenId) &&
        subsequentTokenId < _nextTokenId()
        ) {
            _tokenData[subsequentTokenId].owner = from;
            _batchHead.set(subsequentTokenId);
        }

        _lockedTokens[tokenId] = PENDING_LOCK;
        _tokenData[tokenId].owner = to;
        if (tokenId != tokenIdBatchHead) {
            _batchHead.set(tokenId);
        }

        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity,
        bytes memory _data
    ) private returns (bool r) {
        if (to.isContract()) {
            r = true;
            for (uint256 tokenId = startTokenId; tokenId < startTokenId + quantity; tokenId++) {
                try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                    r = r && retval == IERC721Receiver.onERC721Received.selector;
                } catch (bytes memory reason) {
                    if (reason.length == 0) {
                        revert LCDTransferToNonERC721Receiver();
                    } else {
                        assembly {
                            revert(add(32, reason), mload(reason))
                        }
                    }
                }
            }
            return r;
        } else {
            return true;
        }
    }

    function _getBatchHead(uint256 tokenId) internal view returns (uint256 tokenIdBatchHead) {
        tokenIdBatchHead = _batchHead.scanForward(tokenId);
    }

    function getBatchHeadTest(uint256 tokenId) public virtual view returns (uint256) {
        return _getBatchHead(tokenId);
    }

    function totalSupply() public virtual view returns (uint256) {
        return totalMinted - totalBurned;
    }

    function tokensOfOwner(address owner) external view virtual returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            for (uint256 i = 0; tokenIdsIdx != tokenIdsLength; ++i) {
                if (_exists(i)) {
                    if (ownerOf(i) == owner) {
                        tokenIds[tokenIdsIdx++] = i;
                    }
                }
            }
            return tokenIds;
        }
    }

    function tokenLockOf(uint256 tokenId) public view returns (uint8){
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        return _lockedTokens[tokenId];
    }

    function _setTokenLock(uint256 tokenId, uint8 lockType) internal virtual {
        _lockedTokens[tokenId] = lockType;
    }

    function _isClassBackstopExpired(uint8 classId) internal view virtual returns (bool) {
        return classes[classId].backstopEnd < block.timestamp;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    modifier unlocked(uint256 tokenId){
        if (_lockedTokens[tokenId] > PENDING_LOCK) revert LCDLockedToken();
        _;
    }
}
// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// File: contracts/LaunchCodes.sol


pragma solidity ^0.8.21;




contract LaunchCodes is TokenDataBasedERC721Psi, IERC2981, Administrable {
    uint8 public mintFundingPercentage = 10;
    uint8 public burnFundingPercentage = 0;
    uint8 public mintedClassId = 5;
    uint32 public individualMintingLimit;
    address public fundingDistributionAddress;
    address public stakingDistributionAddress;
    uint256 public frozenAssets;
    uint256 public fundsPool;

    event AdminParametersUpdated(uint8 mintFundingPercentage, uint8 burnFundingPercentage, uint8 mintedClassId, uint32 individualMintingLimit,
        address fundingDistributionAddress, address stakingDistributionAddress);
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
    event ClassArchivedAndFundsReleased(uint256 classId, uint256 heldAssets, uint256 heldFunding);
    event FundsTransfers(uint256 amount, address to);
    event Locked(uint256 tokenId);
    event LockUpdatedByAdmins(uint256 tokenId, uint8 lockId);
    event TokenBurned(address owner, uint8 classId, uint256 tokenId);
    event TokenMinted(address initiater, address receipent, uint8 classId, uint256 firstTokenId, uint256 lastTokenId);
    event TokenStaked(uint256 tokenId, uint256 stakedFunds);
    event TokenUnstaked(uint256 tokenId);
    event Unlocked(uint256 tokenId);

    constructor(
        string memory _baseURI,
        address _fundingDistributionAddress,
        address _stakingDistributionAddress,
        address[] memory _initialAdmins,
        address[] memory _founderAddresses,
        uint32[] memory _initialFounderTokenAmounts,
        uint32 _individualLimit,
        uint32 _communityClassGlobalLimit
    ) TokenDataBasedERC721Psi("Launch Codes", "LCD", _baseURI) Administrable(_initialAdmins) {
        if (_founderAddresses.length != _initialFounderTokenAmounts.length) revert LCDMismatchedArrayLengths();

        fundingDistributionAddress = _fundingDistributionAddress;
        stakingDistributionAddress = _stakingDistributionAddress;
        individualMintingLimit = _individualLimit;

        uint8 founderClassId = 254;
        classes[mintedClassId] = Class(true, false, 0, _communityClassGlobalLimit, 0.1 ether, 0, 0, block.timestamp + 730 days);
        classes[founderClassId] = Class(true, false, 0, type(uint32).max, 0, 0, 0, type(uint32).max);

        for (uint i = 0; i < _founderAddresses.length; i++) {
            _processMint(_founderAddresses[i], founderClassId, _initialFounderTokenAmounts[i], 0);
        }
    }

    function royaltyInfo(uint tokenId, uint salePrice) public view override returns (address, uint256) {
        if (!_exists(tokenId)) revert LCDTokenNotFound();
        return (fundingDistributionAddress, salePrice * (mintFundingPercentage + burnFundingPercentage) / 100);
    }

    function mint(uint32 _amount) external payable classNotArchived(mintedClassId) correctMintingPrice(msg.value, mintedClassId, _amount) globalLimitNotMet(mintedClassId, _amount) {
        if (individualCounts[_msgSender()].mintedCount + _amount > individualMintingLimit) revert LCDIndividualMintingLimitMet();
        _processMint(_msgSender(), mintedClassId, _amount, msg.value);
    }

    function adminMint(address _to, uint8 _classId, uint32 _amount) external payable onlyAdmin classNotArchived(_classId) globalLimitNotMet(_classId, _amount)
    classExists(_classId) correctMintingPrice(msg.value, _classId, _amount) {
        _processMint(_to, _classId, _amount, msg.value);
    }

    function burn(uint256[] calldata _tokenIds) external {
        if (_tokenIds.length == 0) revert LCDQuantityMustBeGreaterThanZero();
        uint256 refundAmount = 0;
        for (uint i = 0; i < _tokenIds.length; i++) {
            refundAmount += _processBurn(_tokenIds[i]);
        }
        _sendFundsTo(_msgSender(), refundAmount);
    }

    function transferFundsPool() public whenNotPaused {
        if (fundsPool == 0) revert LCDNoFundsToTransfer();
        emit FundsTransfers(fundsPool, fundingDistributionAddress);

        uint256 transferredAmount = fundsPool;
        fundsPool = 0;
        _sendFundsTo(fundingDistributionAddress, transferredAmount);
    }

    function registerClass(uint8 _id, uint32 _globalLimit, uint256 _price, uint256 _backstopEnd) external onlyAdmin {
        if (classes[_id].active) revert LCDClassAlreadyExists();
        if (block.timestamp >= _backstopEnd) revert LCDBackstopEndInTheFuture();
        classes[_id] = Class(true, false, 0, _globalLimit, _price, 0, 0, _backstopEnd);
    }

    function updateAdminParameters(uint8 _mintFundingPercentage, uint8 _burnFundingPercentage, uint8 _mintedClassId, uint32 _individualMintingLimit,
        address _fundingDistributionAddress, address _stakingDistributionAddress) external onlyAdmin classExists(_mintedClassId) {
        fundingDistributionAddress = _fundingDistributionAddress;
        stakingDistributionAddress = _stakingDistributionAddress;
        mintedClassId = _mintedClassId;
        individualMintingLimit = _individualMintingLimit;
        mintFundingPercentage = _mintFundingPercentage;
        burnFundingPercentage = _burnFundingPercentage;
        emit AdminParametersUpdated(_mintFundingPercentage, _burnFundingPercentage, _mintedClassId, _individualMintingLimit,
            _fundingDistributionAddress, _stakingDistributionAddress);
    }

    function setBaseURI(string memory _metadataBaseURI) external onlyAdmin {
        _setBaseURI(_metadataBaseURI);
        emit BatchMetadataUpdate(0, _nextTokenId() - 1);
    }

    function updateLocks(uint256[] calldata _tokenIds, uint8 _newLockType) external onlyAdmin {
        uint256 currentTokenId;
        uint8 currentTokenLockType;
        for (uint256 i = 0; i < _tokenIds.length; ++i) {
            currentTokenId = _tokenIds[i];
            currentTokenLockType = tokenLockOf(currentTokenId);
            if (currentTokenLockType == NO_LOCK || currentTokenLockType == STAKING_LOCK) revert LCDCannotUpdateLocksOnUnlockedOrStakedTokens();
            if (_newLockType == STAKING_LOCK) revert LCDCannotAssignStakingLocks();
            _setTokenLock(currentTokenId, _newLockType);

            emit LockUpdatedByAdmins(currentTokenId, _newLockType);
            if (_newLockType <= PENDING_LOCK) {
                emit Unlocked(currentTokenId);
            } else {
                emit Locked(currentTokenId);
            }
        }
    }

    function stakeTokens(uint256[] calldata _tokenIds) external {
        uint256 transferFunds;
        uint256 currentTokenId;
        TokenData memory currentTokenData;
        for (uint256 i = 0; i < _tokenIds.length; ++i) {
            currentTokenId = _tokenIds[i];
            if (!_isApprovedOrOwner(_msgSender(), currentTokenId)) revert LCDNotTokenOwnerOrApproved();
            if (tokenLockOf(currentTokenId) > PENDING_LOCK) revert LCDCanOnlyStakeUnlockedTokens();
            _setTokenLock(currentTokenId, STAKING_LOCK);

            currentTokenData = _unfilteredTokenDataOf(currentTokenId);
            if (!_isClassBackstopExpired(currentTokenData.classId)) {
                transferFunds += currentTokenData.heldAssets;
                classes[currentTokenData.classId].totalUnstakedHeldAssets -= currentTokenData.heldAssets;
                emit TokenStaked(currentTokenId, currentTokenData.heldAssets);
            } else {
                emit TokenStaked(currentTokenId, 0);
            }
            emit Locked(currentTokenId);
        }
        if (transferFunds > 0) {
            frozenAssets -= transferFunds;
            _sendFundsTo(stakingDistributionAddress, transferFunds);
        }
    }

    function unstakeTokens(uint256[] calldata _tokenIds) external payable {
        uint256 neededFunds;
        uint8 lockType;
        uint256 currentTokenId;
        TokenData memory currentTokenData;
        for (uint256 i = 0; i < _tokenIds.length; ++i) {
            currentTokenId = _tokenIds[i];
            if (!_isApprovedOrOwner(_msgSender(), currentTokenId)) revert LCDNotTokenOwnerOrApproved();

            lockType = tokenLockOf(currentTokenId);
            if (tokenLockOf(currentTokenId) != STAKING_LOCK) revert LCDCanOnlyUnstakeStakedTokens();

            currentTokenData = _unfilteredTokenDataOf(currentTokenId);
            if (!_isClassBackstopExpired(currentTokenData.classId)) {
                neededFunds += currentTokenData.heldAssets;
                classes[currentTokenData.classId].totalUnstakedHeldAssets += currentTokenData.heldAssets;
            }
            _setTokenLock(currentTokenId, NO_LOCK);
            emit TokenUnstaked(currentTokenId);
            emit Unlocked(currentTokenId);
        }
        if (neededFunds != msg.value) revert LCDInvalidPaidPrice();
        frozenAssets += msg.value;
    }

    function archiveClassAndReleaseFunds(uint8[] calldata _classIds) external onlyAdmin {
        uint256 totalUnstakedHeldAssets = 0;
        uint256 totalUnstakedHeldFunding = 0;

        for (uint i = 0; i < _classIds.length; ++i) {
            Class storage currentClass = classes[_classIds[i]];
            if (!currentClass.active) revert LCDClassNotFound();
            if (!_isClassBackstopExpired(_classIds[i])) revert LCDClassStillBackstopped();
            if (currentClass.archived) revert LCDClassAlreadyArchived();

            totalUnstakedHeldAssets += currentClass.totalUnstakedHeldAssets;
            totalUnstakedHeldFunding += currentClass.totalUnstakedHeldFunding;
            emit ClassArchivedAndFundsReleased(_classIds[i], currentClass.totalUnstakedHeldAssets, currentClass.totalUnstakedHeldFunding);

            currentClass.totalUnstakedHeldAssets = 0;
            currentClass.totalUnstakedHeldFunding = 0;
            currentClass.archived = true;
        }

        frozenAssets -= totalUnstakedHeldAssets;
        fundsPool += totalUnstakedHeldAssets + totalUnstakedHeldFunding;
    }

    function _processMint(address _to, uint8 _classId, uint32 _amount, uint256 _pricePaid) internal {
        if (_amount == 0) revert LCDQuantityMustBeGreaterThanZero();
        classes[_classId].mintedCount += _amount;

        uint256 heldAssets;
        (uint256 mintFunding, uint256 burnFunding) = _getFundingAmounts(_amount, _classId);
        if (mintFunding + burnFunding > 0) {
            uint256 asset = _pricePaid - mintFunding - burnFunding;
            fundsPool += mintFunding;
            frozenAssets += asset;
            heldAssets = asset / _amount;

            classes[_classId].totalUnstakedHeldAssets += asset;
            classes[_classId].totalUnstakedHeldFunding += burnFunding;
        }

        uint256 fistMintedTokenId = _nextTokenId();
        _safeMint(_to, _amount);
        _setTokenDataOf(fistMintedTokenId, _classId, heldAssets, burnFunding / _amount);

        emit TokenMinted(_msgSender(), _to, _classId, fistMintedTokenId, _nextTokenId() - 1);
    }

    function _processBurn(uint256 _tokenId) internal unlocked(_tokenId) returns (uint256){
        if (!_isApprovedOrOwner(_msgSender(), _tokenId)) revert LCDNotTokenOwnerOrApproved();
        TokenData memory currentTokenData = tokenDataOf(_tokenId);

        _burn(_tokenId);
        emit TokenBurned(_msgSender(), currentTokenData.classId, _tokenId);

        if (!_isClassBackstopExpired(currentTokenData.classId)) {
            frozenAssets -= currentTokenData.heldAssets;
            fundsPool += currentTokenData.heldFunding;

            classes[currentTokenData.classId].totalUnstakedHeldAssets -= currentTokenData.heldAssets;
            classes[currentTokenData.classId].totalUnstakedHeldFunding -= currentTokenData.heldFunding;

            return currentTokenData.heldAssets;
        }
        return 0;
    }

    function _getFundingAmounts(uint256 _amount, uint8 _classId) internal view returns (uint256, uint256){
        uint256 price = _amount * classes[_classId].price;
        return (price * mintFundingPercentage / 100, price * burnFundingPercentage / 100);
    }

    function _sendFundsTo(address _to, uint256 _amount) internal {
        (bool sent,) = payable(_to).call{value: _amount}("");
        if (!sent) revert LCDFundsTransferFailed();
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override whenNotPaused unlocked(startTokenId) {}

    modifier classExists(uint8 _classId){
        if (!classes[_classId].active) revert LCDClassNotFound();
        _;
    }

    modifier correctMintingPrice(uint256 _paidAmount, uint8 _classId, uint32 _amountOfTokens){
        if (_paidAmount != classes[_classId].price * _amountOfTokens) revert LCDInvalidPaidPrice();
        _;
    }

    modifier classNotArchived(uint8 _classId){
        if (classes[_classId].archived) revert LCDClassAlreadyArchived();
        _;
    }

    modifier globalLimitNotMet(uint8 _classId, uint32 _amount){
        if (classes[_classId].mintedCount + _amount > classes[_classId].mintingLimit) revert LCDGlobalMintingLimitMet();
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_fundingDistributionAddress","type":"address"},{"internalType":"address","name":"_stakingDistributionAddress","type":"address"},{"internalType":"address[]","name":"_initialAdmins","type":"address[]"},{"internalType":"address[]","name":"_founderAddresses","type":"address[]"},{"internalType":"uint32[]","name":"_initialFounderTokenAmounts","type":"uint32[]"},{"internalType":"uint32","name":"_individualLimit","type":"uint32"},{"internalType":"uint32","name":"_communityClassGlobalLimit","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AdministrableAlreadyAnAdmin","type":"error"},{"inputs":[],"name":"AdministrableCallerMustBeAdmin","type":"error"},{"inputs":[],"name":"AdministrableNotAnAdmin","type":"error"},{"inputs":[],"name":"LCDApproveCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"LCDApproveToCaller","type":"error"},{"inputs":[],"name":"LCDApproveToCurrentOwner","type":"error"},{"inputs":[],"name":"LCDBackstopEndInTheFuture","type":"error"},{"inputs":[],"name":"LCDCanOnlyStakeUnlockedTokens","type":"error"},{"inputs":[],"name":"LCDCanOnlyUnstakeStakedTokens","type":"error"},{"inputs":[],"name":"LCDCannotAssignStakingLocks","type":"error"},{"inputs":[],"name":"LCDCannotUpdateLocksOnUnlockedOrStakedTokens","type":"error"},{"inputs":[],"name":"LCDClassAlreadyArchived","type":"error"},{"inputs":[],"name":"LCDClassAlreadyExists","type":"error"},{"inputs":[],"name":"LCDClassNotFound","type":"error"},{"inputs":[],"name":"LCDClassStillBackstopped","type":"error"},{"inputs":[],"name":"LCDFundsTransferFailed","type":"error"},{"inputs":[],"name":"LCDGlobalMintingLimitMet","type":"error"},{"inputs":[],"name":"LCDIndividualMintingLimitMet","type":"error"},{"inputs":[],"name":"LCDInvalidPaidPrice","type":"error"},{"inputs":[],"name":"LCDLockedToken","type":"error"},{"inputs":[],"name":"LCDMismatchedArrayLengths","type":"error"},{"inputs":[],"name":"LCDNoFundsToTransfer","type":"error"},{"inputs":[],"name":"LCDNotTokenOwner","type":"error"},{"inputs":[],"name":"LCDNotTokenOwnerOrApproved","type":"error"},{"inputs":[],"name":"LCDQuantityMustBeGreaterThanZero","type":"error"},{"inputs":[],"name":"LCDQueryForZeroAddress","type":"error"},{"inputs":[],"name":"LCDTokenNotFound","type":"error"},{"inputs":[],"name":"LCDTransferToNonERC721Receiver","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"mintFundingPercentage","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"burnFundingPercentage","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"mintedClassId","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"individualMintingLimit","type":"uint32"},{"indexed":false,"internalType":"address","name":"fundingDistributionAddress","type":"address"},{"indexed":false,"internalType":"address","name":"stakingDistributionAddress","type":"address"}],"name":"AdminParametersUpdated","type":"event"},{"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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"classId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"heldAssets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"heldFunding","type":"uint256"}],"name":"ClassArchivedAndFundsReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"FundsTransfers","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"lockId","type":"uint8"}],"name":"LockUpdatedByAdmins","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint8","name":"classId","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"initiater","type":"address"},{"indexed":false,"internalType":"address","name":"receipent","type":"address"},{"indexed":false,"internalType":"uint8","name":"classId","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"firstTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastTokenId","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakedFunds","type":"uint256"}],"name":"TokenStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenUnstaked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"FIRST_ADMIN_LOCK","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_LOCK","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PENDING_LOCK","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_LOCK","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"}],"name":"addAdminRights","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint8","name":"_classId","type":"uint8"},{"internalType":"uint32","name":"_amount","type":"uint32"}],"name":"adminMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"_classIds","type":"uint8[]"}],"name":"archiveClassAndReleaseFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnFundingPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"classes","outputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"bool","name":"archived","type":"bool"},{"internalType":"uint32","name":"mintedCount","type":"uint32"},{"internalType":"uint32","name":"mintingLimit","type":"uint32"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"totalUnstakedHeldAssets","type":"uint256"},{"internalType":"uint256","name":"totalUnstakedHeldFunding","type":"uint256"},{"internalType":"uint256","name":"backstopEnd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frozenAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundingDistributionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBatchHeadTest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"individualCounts","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"mintedCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"individualMintingLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFundingPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedClassId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_id","type":"uint8"},{"internalType":"uint32","name":"_globalLimit","type":"uint32"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_backstopEnd","type":"uint256"}],"name":"registerClass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"revokeAdminRights","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"stakeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingDistributionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"name":"tokenDataOf","outputs":[{"components":[{"internalType":"uint8","name":"classId","type":"uint8"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"heldAssets","type":"uint256"},{"internalType":"uint256","name":"heldFunding","type":"uint256"}],"internalType":"struct TokenDataBasedERC721Psi.TokenData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenLockOf","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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":[],"name":"transferFundsPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"unstakeTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintFundingPercentage","type":"uint8"},{"internalType":"uint8","name":"_burnFundingPercentage","type":"uint8"},{"internalType":"uint8","name":"_mintedClassId","type":"uint8"},{"internalType":"uint32","name":"_individualMintingLimit","type":"uint32"},{"internalType":"address","name":"_fundingDistributionAddress","type":"address"},{"internalType":"address","name":"_stakingDistributionAddress","type":"address"}],"name":"updateAdminParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint8","name":"_newLockType","type":"uint8"}],"name":"updateLocks","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f805462ffffff19166205000a17905534801562000021575f80fd5b5060405162004ca738038062004ca7833981016040819052620000449162000dea565b846040518060400160405280600c81526020016b4c61756e636820436f64657360a01b815250604051806040016040528060038152602001621310d160ea1b8152508a826002908162000098919062000f71565b506003620000a7838262000f71565b506004620000b6828262000f71565b5050600d805460ff1916905550620000d090503362000490565b5f5b81518110156200013c576001600e5f848481518110620000f657620000f662001039565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580620001338162001061565b915050620000d2565b5050825184511462000161576040516370dbaf2960e01b815260040160405180910390fd5b600f8054601080546001600160a01b038a81166001600160a01b03199092169190911790915563ffffffff80861663010000000266ffffffff00000019928c1667010000000000000002929092166301000000600160d81b031990931692909217179091556040805161010081018252600181525f60208201819052918101829052918316606083015267016345785d8a0000608083015260a0820181905260c082015260fe9060e081016200021c426303c267006200107c565b815250600b5f600f60029054906101000a900460ff1660ff1660ff1681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055506040820151815f0160026101000a81548163ffffffff021916908363ffffffff1602179055506060820151815f0160066101000a81548163ffffffff021916908363ffffffff1602179055506080820151816001015560a0820151816002015560c0820151816003015560e082015181600401559050506040518061010001604052806001151581526020015f151581526020015f63ffffffff16815260200163ffffffff801681526020015f81526020015f81526020015f815260200163ffffffff8016815250600b5f8360ff1660ff1681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055506040820151815f0160026101000a81548163ffffffff021916908363ffffffff1602179055506060820151815f0160066101000a81548163ffffffff021916908363ffffffff1602179055506080820151816001015560a0820151816002015560c0820151816003015560e082015181600401559050505f5b855181101562000480576200046b86828151811062000438576200043862001039565b60200260200101518387848151811062000456576200045662001039565b60200260200101515f620004e960201b60201c565b80620004778162001061565b91505062000415565b5050505050505050505062001194565b600d80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b8163ffffffff165f036200051057604051631e01eb5f60e01b815260040160405180910390fd5b60ff83165f908152600b6020526040902080548391906002906200054290849062010000900463ffffffff1662001098565b92506101000a81548163ffffffff021916908363ffffffff1602179055505f805f6200057b8563ffffffff16876200073560201b60201c565b90925090505f6200058d82846200107c565b111562000652575f81620005a28487620010bf565b620005ae9190620010bf565b90508260125f828254620005c391906200107c565b925050819055508060115f828254620005dd91906200107c565b90915550620005f5905063ffffffff871682620010d5565b60ff88165f908152600b6020526040812060020180549296508392909190620006209084906200107c565b909155505060ff87165f908152600b6020526040812060030180548492906200064b9084906200107c565b9091555050505b5f6200065d60055490565b9050620006718863ffffffff8816620007b0565b620006b58188866200068a63ffffffff8b1687620010d5565b5f938452600a6020526040909320805460ff191660ff93909316929092178255600182015560020155565b7f8802239f1b8d12cb4087e1cf3214ace0a981ec7d42f39ad50b6358d2b856a614338989846001620006e660055490565b620006f29190620010bf565b604080516001600160a01b03968716815294909516602085015260ff92909216838501526060830152608082015290519081900360a00190a15050505050505050565b60ff81165f908152600b6020526040812060010154819081906200075a9086620010f5565b600f54909150606490620007729060ff1683620010f5565b6200077e9190620010d5565b600f546064906200079890610100900460ff1684620010f5565b620007a49190620010d5565b92509250509250929050565b620007d1828260405180602001604052805f815250620007d560201b60201c565b5050565b5f620007e060055490565b9050620007ee848462000821565b620007fd5f85838686620009fd565b6200081b57604051632e14322560e01b815260040160405180910390fd5b50505050565b5f6200082c60055490565b9050815f036200084f57604051631e01eb5f60e01b815260040160405180910390fd5b6001600160a01b038316620008775760405163e5b62e3f60e01b815260040160405180910390fd5b620008855f84838562000b43565b8160055f8282546200089891906200107c565b90915550506001600160a01b0383165f908152600c602052604081208054849290620008c69084906200107c565b90915550506001600160a01b0383165f908152600c602052604081206001018054849290620008f79084906200107c565b9091555050604080516080810182525f8082526001600160a01b03808716602080850191825284860184815260608601858152888652600a909252958420945185549251909316610100026001600160a81b031990921660ff93909316929092171783559251600183015591516002909101556200099b9082600881901c5f90815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b805b620009a983836200107c565b8110156200081b5760405181906001600160a01b038616905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480620009f48162001061565b9150506200099d565b5f6001600160a01b0385163b1562000b3657506001835b62000a2084866200107c565b81101562000b2f57604051630a85bd0160e11b81526001600160a01b0387169063150b7a029062000a5c9033908b90869089906004016200110f565b6020604051808303815f875af192505050801562000a99575060408051601f3d908101601f1916820190925262000a969181019062001164565b60015b62000af9573d80801562000ac9576040519150601f19603f3d011682016040523d82523d5f602084013e62000ace565b606091505b5080515f0362000af157604051632e14322560e01b815260040160405180910390fd5b805181602001fd5b82801562000b1757506001600160e01b03198116630a85bd0160e11b145b9250508062000b268162001061565b91505062000a14565b5062000b3a565b5060015b95945050505050565b62000b4d62000b8b565b5f828152600960205260409020548290600160ff909116111562000b845760405163a16d087d60e01b815260040160405180910390fd5b5050505050565b600d5460ff161562000bd65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171562000c175762000c1762000bd8565b604052919050565b5f5b8381101562000c3b57818101518382015260200162000c21565b50505f910152565b5f82601f83011262000c53575f80fd5b81516001600160401b0381111562000c6f5762000c6f62000bd8565b62000c84601f8201601f191660200162000bec565b81815284602083860101111562000c99575f80fd5b62000cac82602083016020870162000c1f565b949350505050565b80516001600160a01b038116811462000ccb575f80fd5b919050565b5f6001600160401b0382111562000ceb5762000ceb62000bd8565b5060051b60200190565b5f82601f83011262000d05575f80fd5b8151602062000d1e62000d188362000cd0565b62000bec565b82815260059290921b8401810191818101908684111562000d3d575f80fd5b8286015b8481101562000d635762000d558162000cb4565b835291830191830162000d41565b509695505050505050565b805163ffffffff8116811462000ccb575f80fd5b5f82601f83011262000d92575f80fd5b8151602062000da562000d188362000cd0565b82815260059290921b8401810191818101908684111562000dc4575f80fd5b8286015b8481101562000d635762000ddc8162000d6e565b835291830191830162000dc8565b5f805f805f805f80610100898b03121562000e03575f80fd5b88516001600160401b038082111562000e1a575f80fd5b62000e288c838d0162000c43565b995062000e3860208c0162000cb4565b985062000e4860408c0162000cb4565b975060608b015191508082111562000e5e575f80fd5b62000e6c8c838d0162000cf5565b965060808b015191508082111562000e82575f80fd5b62000e908c838d0162000cf5565b955060a08b015191508082111562000ea6575f80fd5b5062000eb58b828c0162000d82565b93505062000ec660c08a0162000d6e565b915062000ed660e08a0162000d6e565b90509295985092959890939650565b600181811c9082168062000efa57607f821691505b60208210810362000f1957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000f6c575f81815260208120601f850160051c8101602086101562000f475750805b601f850160051c820191505b8181101562000f685782815560010162000f53565b5050505b505050565b81516001600160401b0381111562000f8d5762000f8d62000bd8565b62000fa58162000f9e845462000ee5565b8462000f1f565b602080601f83116001811462000fdb575f841562000fc35750858301515b5f19600386901b1c1916600185901b17855562000f68565b5f85815260208120601f198616915b828110156200100b5788860151825594840194600190910190840162000fea565b50858210156200102957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016200107557620010756200104d565b5060010190565b808201808211156200109257620010926200104d565b92915050565b63ffffffff818116838216019080821115620010b857620010b86200104d565b5092915050565b818103818111156200109257620010926200104d565b5f82620010f057634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176200109257620010926200104d565b5f60018060a01b0380871683528086166020840152508360408301526080606083015282518060808401526200114d8160a085016020870162000c1f565b601f01601f19169190910160a00195945050505050565b5f6020828403121562001175575f80fd5b81516001600160e01b0319811681146200118d575f80fd5b9392505050565b613b0580620011a25f395ff3fe608060405260043610610327575f3560e01c80638456cb59116101a3578063a71bbebe116100f2578063c87b56dd11610092578063e100ec1c1161006d578063e100ec1c14610a0a578063e977a3ec14610a29578063e985e9c514610a48578063f2fde38b14610a67575f80fd5b8063c87b56dd146109c3578063d789a531146109e2578063d89135cd146109f5575f80fd5b8063bcec7986116100cd578063bcec79861461092a578063c0da9bcd1461093e578063c1a709e81461099c578063c782311c146109b0575f80fd5b8063a71bbebe146108d9578063b80f55c9146108ec578063b88d4fde1461090b575f80fd5b806391f01f561161015d57806395d89b411161013857806395d89b4114610872578063a22cb46514610886578063a2309ff8146108a5578063a6a08fc2146108ba575f80fd5b806391f01f561461082b578063925ee51e1461083f57806392a8397c14610853575f80fd5b80638456cb59146107885780638462151c1461079c5780638a90d601146107c85780638da5cb5b146107dd5780638e7627c9146107ff57806391ef29cd14610818575f80fd5b806342842e0e116102795780636352211e1161021957806370a08231116101f457806370a082311461068357806370ea028f146106a2578063715018a6146106c157806379839309146106d5575f80fd5b80636352211e146106265780636815210b146106455780636f83df8814610664575f80fd5b806355f804b31161025457806355f804b314610594578063583e567b146105b357806359236582146105c85780635c975abb1461060f575f80fd5b806342842e0e146105315780634bf609ce146105505780635581b45114610576575f80fd5b80630da87d86116102e457806327405725116102bf578063274057251461048f5780632a55205a146104c057806331090797146104fe5780633f4ba83a1461051d575f80fd5b80630da87d861461042f57806318160ddd1461044e57806323b872dd14610470575f80fd5b806301ffc9a71461032b5780630501c5e61461035f57806305d52d091461039757806306fdde03146103b8578063081812fc146103d9578063095ea7b314610410575b5f80fd5b348015610336575f80fd5b5061034a6103453660046131f6565b610a86565b60405190151581526020015b60405180910390f35b34801561036a575f80fd5b50600f54610382906301000000900463ffffffff1681565b60405163ffffffff9091168152602001610356565b3480156103a2575f80fd5b506103b66103b1366004613233565b610ad7565b005b3480156103c3575f80fd5b506103cc610b37565b6040516103569190613299565b3480156103e4575f80fd5b506103f86103f33660046132ab565b610bc7565b6040516001600160a01b039091168152602001610356565b34801561041b575f80fd5b506103b661042a3660046132c2565b610c09565b34801561043a575f80fd5b506103b661044936600461330d565b610c93565b348015610459575f80fd5b50610462610dee565b604051908152602001610356565b34801561047b575f80fd5b506103b661048a36600461334c565b610e04565b34801561049a575f80fd5b50600f546104ae9062010000900460ff1681565b60405160ff9091168152602001610356565b3480156104cb575f80fd5b506104df6104da366004613385565b610e36565b604080516001600160a01b039093168352602083019190915201610356565b348015610509575f80fd5b506010546103f8906001600160a01b031681565b348015610528575f80fd5b506103b6610eac565b34801561053c575f80fd5b506103b661054b36600461334c565b610ee5565b34801561055b575f80fd5b50600f546103f890600160381b90046001600160a01b031681565b348015610581575f80fd5b50600f546104ae90610100900460ff1681565b34801561059f575f80fd5b506103b66105ae36600461342c565b610eff565b3480156105be575f80fd5b5061046260115481565b3480156105d3575f80fd5b506105fa6105e2366004613233565b600c6020525f90815260409020805460019091015482565b60408051928352602083019190915201610356565b34801561061a575f80fd5b50600d5460ff1661034a565b348015610631575f80fd5b506103f86106403660046132ab565b610f89565b348015610650575f80fd5b506103b661065f366004613233565b610f9c565b34801561066f575f80fd5b506103b661067e3660046134b2565b611000565b34801561068e575f80fd5b5061046261069d366004613233565b61118b565b3480156106ad575f80fd5b506103b66106bc366004613502565b6111ce565b3480156106cc575f80fd5b506103b66113c6565b3480156106e0575f80fd5b506107426106ef366004613541565b600b6020525f90815260409020805460018201546002830154600384015460049094015460ff8085169561010086049091169463ffffffff620100008204811695600160301b9092041693909290919088565b604080519815158952961515602089015263ffffffff95861696880196909652939092166060860152608085015260a084015260c083015260e082015261010001610356565b348015610793575f80fd5b506103b66113d7565b3480156107a7575f80fd5b506107bb6107b6366004613233565b61140e565b604051610356919061355a565b3480156107d3575f80fd5b5061046260125481565b3480156107e8575f80fd5b50600d5461010090046001600160a01b03166103f8565b34801561080a575f80fd5b50600f546104ae9060ff1681565b6103b661082636600461359d565b6114d2565b348015610836575f80fd5b506104ae600281565b34801561084a575f80fd5b506104ae600181565b34801561085e575f80fd5b506104ae61086d3660046132ab565b61162d565b34801561087d575f80fd5b506103cc611669565b348015610891575f80fd5b506103b66108a03660046135d4565b611678565b3480156108b0575f80fd5b5061046260055481565b3480156108c5575f80fd5b506103b66108d436600461360d565b61170c565b6103b66108e736600461367d565b611857565b3480156108f7575f80fd5b506103b6610906366004613502565b6119c0565b348015610916575f80fd5b506103b6610925366004613696565b611a36565b348015610935575f80fd5b506103b6611a6f565b348015610949575f80fd5b5061095d6109583660046132ab565b611b0f565b6040516103569190815160ff1681526020808301516001600160a01b031690820152604080830151908201526060918201519181019190915260800190565b3480156109a7575f80fd5b506104ae600381565b6103b66109be366004613502565b611b7d565b3480156109ce575f80fd5b506103cc6109dd3660046132ab565b611d36565b3480156109ed575f80fd5b506104ae5f81565b348015610a00575f80fd5b5061046260065481565b348015610a15575f80fd5b506103b6610a24366004613502565b611d96565b348015610a34575f80fd5b50610462610a433660046132ab565b611fb9565b348015610a53575f80fd5b5061034a610a6236600461370d565b611fc3565b348015610a72575f80fd5b506103b6610a81366004613233565b611ff0565b5f6001600160e01b031982166380ac58cd60e01b1480610ab657506001600160e01b03198216635b5e139f60e01b145b80610ad157506301ffc9a760e01b6001600160e01b03198316145b92915050565b610adf61206b565b6001600160a01b0381165f908152600e602052604090205460ff16610b175760405163b6f74fad60e01b815260040160405180910390fd5b6001600160a01b03165f908152600e60205260409020805460ff19169055565b606060028054610b469061373e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b729061373e565b8015610bbd5780601f10610b9457610100808354040283529160200191610bbd565b820191905f5260205f20905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b5f610bd1826120cb565b610bee576040516327ec263360e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f610c1382610f89565b9050806001600160a01b0316836001600160a01b031603610c475760405163e8ccaa5360e01b815260040160405180910390fd5b336001600160a01b03821614801590610c675750610c658133611fc3565b155b15610c84576040516208c73160eb1b815260040160405180910390fd5b610c8e838361210f565b505050565b335f908152600e602052604090205460ff16610cc257604051639dc0aa7d60e01b815260040160405180910390fd5b60ff8085165f908152600b60205260409020541615610cf457604051631d6e03a760e11b815260040160405180910390fd5b804210610d145760405163d667a1e160e01b815260040160405180910390fd5b60408051610100808201835260018083525f602080850182815285870183815263ffffffff9a8b1660608801908152608088019a8b5260a0880185815260c0890186815260e08a019b8c5260ff909e168652600b90945297909320955186549151935197518b16600160301b0269ffffffff0000000000001998909b1662010000029790971669ffffffffffffffff00001993151590950261ff00199715159790971661ffff1990911617959095171691909117959095178155925193830193909355915160028201559151600383015551600490910155565b5f600654600554610dff9190613784565b905090565b610e0e338261217c565b610e2b5760405163ca5c602360e01b815260040160405180910390fd5b610c8e838383612200565b5f80610e41846120cb565b610e5e576040516327ec263360e21b815260040160405180910390fd5b600f546001600160a01b03600160381b82041690606490610e899060ff610100820481169116613797565b610e969060ff16866137b0565b610ea091906137c7565b915091505b9250929050565b335f908152600e602052604090205460ff16610edb57604051639dc0aa7d60e01b815260040160405180910390fd5b610ee361238d565b565b610c8e83838360405180602001604052805f815250611a36565b335f908152600e602052604090205460ff16610f2e57604051639dc0aa7d60e01b815260040160405180910390fd5b610f37816123df565b7f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c5f6001610f6460055490565b610f6e9190613784565b6040805192835260208301919091520160405180910390a150565b5f80610f94836123ef565b509392505050565b610fa461206b565b6001600160a01b0381165f908152600e602052604090205460ff1615610fdd57604051632b079e2f60e21b815260040160405180910390fd5b6001600160a01b03165f908152600e60205260409020805460ff19166001179055565b335f908152600e602052604090205460ff1661102f57604051639dc0aa7d60e01b815260040160405180910390fd5b5f805f5b848110156111835785858281811061104d5761104d6137e6565b90506020020135925061105f8361162d565b915060ff82161580611074575060ff82166002145b156110925760405163a47caf5160e01b815260040160405180910390fd5b60011960ff8516016110b75760405163022cf18b60e21b815260040160405180910390fd5b6110c18385612445565b6040805184815260ff861660208201527f6dfe83a1cc38852e70d0dea58de51d15ced42b40923a55563dafb203f53bbf1c910160405180910390a1600160ff85161161113f576040518381527ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18429060200160405180910390a1611173565b6040518381527f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a16119060200160405180910390a15b61117c816137fa565b9050611033565b505050505050565b5f6001600160a01b0382166111b35760405163e5b62e3f60e01b815260040160405180910390fd5b506001600160a01b03165f908152600c602052604090205490565b5f806111d86131b1565b5f5b8481101561138c578585828181106111f4576111f46137e6565b90506020020135925061120d6112073390565b8461217c565b61122a5760405163ca5c602360e01b815260040160405180910390fd5b60016112358461162d565b60ff16111561125757604051638b28cedb60e01b815260040160405180910390fd5b611262836002612445565b61126b83612466565b805160ff165f908152600b602052604090206004015490925042116113105760408201516112999085613812565b604080840151845160ff165f908152600b602052918220600201805493975090929091906112c8908490613784565b9091555050604080830151815185815260208101919091527f60441c7d2351c890886bc18d8f3259504757ac63bd45acf87405b9bdc06e9ee6910160405180910390a1611349565b604080518481525f60208201527f60441c7d2351c890886bc18d8f3259504757ac63bd45acf87405b9bdc06e9ee6910160405180910390a15b6040518381527f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a16119060200160405180910390a1611385816137fa565b90506111da565b5082156113bf578260115f8282546113a49190613784565b90915550506010546113bf906001600160a01b0316846124f3565b5050505050565b6113ce61206b565b610ee35f612563565b335f908152600e602052604090205460ff1661140657604051639dc0aa7d60e01b815260040160405180910390fd5b610ee36125bc565b60605f8061141b8461118b565b90505f8167ffffffffffffffff811115611437576114376133a5565b604051908082528060200260200182016040528015611460578160200160208202803683370190505b5090505f5b8284146114c957611475816120cb565b156114c157856001600160a01b031661148d82610f89565b6001600160a01b0316036114c157808285806001019650815181106114b4576114b46137e6565b6020026020010181815250505b600101611465565b50949350505050565b335f908152600e602052604090205460ff1661150157604051639dc0aa7d60e01b815260040160405180910390fd5b60ff8083165f908152600b60205260409020548391610100909104161561153b576040516321e7473160e21b815260040160405180910390fd5b60ff83165f908152600b60205260409020548390839063ffffffff600160301b820481169161157291849162010000900416613825565b63ffffffff1611156115975760405163bf519fd560e01b815260040160405180910390fd5b60ff8086165f908152600b60205260409020548691166115ca5760405163e56aa7c960e01b815260040160405180910390fd5b60ff86165f908152600b60205260409020600101543490879087906115f69063ffffffff8316906137b0565b83146116155760405163e385d7ef60e01b815260040160405180910390fd5b6116218a8a8a346125f9565b50505050505050505050565b5f611637826120cb565b611654576040516327ec263360e21b815260040160405180910390fd5b505f9081526009602052604090205460ff1690565b606060038054610b469061373e565b336001600160a01b038316036116a1576040516321256e4160e11b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b335f908152600e602052604090205460ff1661173b57604051639dc0aa7d60e01b815260040160405180910390fd5b60ff8085165f908152600b602052604090205485911661176e5760405163e56aa7c960e01b815260040160405180910390fd5b600f8054601080546001600160a01b0319166001600160a01b0386811691821790925560ff8b811666ffffffff010000600160d81b0319909416600160381b93891693840262ff0000191617620100008b83169081029190911766ffffffff00ffff1916630100000063ffffffff8c1690810261ffff1916919091178617610100938e1693840217909655604080519586526020860192909252908401526060830193909352608082015260a08101919091527f0e95400c1f693ee1f4b5ddf0ff8ccb5e180a8c7d9f314063306f0791dc4374b99060c00160405180910390a150505050505050565b600f5460ff6201000090910481165f818152600b60205260409020549091610100909104161561189a576040516321e7473160e21b815260040160405180910390fd5b600f5462010000900460ff165f818152600b602052604090206001015434919084906118cd9063ffffffff8316906137b0565b83146118ec5760405163e385d7ef60e01b815260040160405180910390fd5b600f5460ff6201000091829004165f818152600b60205260409020549091879163ffffffff600160301b820481169261192a92859291900416613825565b63ffffffff16111561194f5760405163bf519fd560e01b815260040160405180910390fd5b600f54335f908152600c602052604090206001015463ffffffff630100000090920482169161198191908a1690613812565b11156119a057604051637861514b60e01b815260040160405180910390fd5b6119b733600f5462010000900460ff1689346125f9565b50505050505050565b5f8190036119e157604051631e01eb5f60e01b815260040160405180910390fd5b5f805b82811015611a2b57611a0d848483818110611a0157611a016137e6565b90506020020135612820565b611a179083613812565b915080611a23816137fa565b9150506119e4565b50610c8e33826124f3565b611a40338361217c565b611a5d5760405163ca5c602360e01b815260040160405180910390fd5b611a698484848461299b565b50505050565b611a776129d1565b6012545f03611a9957604051636730f53b60e01b815260040160405180910390fd5b601254600f5460408051928352600160381b9091046001600160a01b031660208301527f277a72a3098cf4438d69545e06bfafdc318f0c601b8c387a4fc3fc26dde8eea9910160405180910390a1601280545f909155600f54611b0c90600160381b90046001600160a01b0316826124f3565b50565b611b176131b1565b5f611b2183612466565b805160ff165f908152600b6020526040902060040154909150421115610ad1576040518060800160405280825f015160ff16815260200182602001516001600160a01b031681526020015f81526020015f815250915050919050565b5f805f611b886131b1565b5f5b85811015611cf757868682818110611ba457611ba46137e6565b905060200201359250611bb76112073390565b611bd45760405163ca5c602360e01b815260040160405180910390fd5b611bdd8361162d565b93506002611bea8461162d565b60ff1614611c0b57604051634329810b60e01b815260040160405180910390fd5b611c1483612466565b805160ff165f908152600b60205260409020600401549092504211611c77576040820151611c429086613812565b604080840151845160ff165f908152600b60205291822060020180549398509092909190611c71908490613812565b90915550505b611c81835f612445565b6040518381527f85837b804496fa8a31cf9284d2c34c3276ca3d5369cfe705026f7bad0365c0f29060200160405180910390a16040518381527ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18429060200160405180910390a1611cf0816137fa565b9050611b8a565b50348414611d185760405163e385d7ef60e01b815260040160405180910390fd5b3460115f828254611d299190613812565b9091555050505050505050565b6060611d41826120cb565b611d5e576040516327ec263360e21b815260040160405180910390fd5b611d66612a17565b611d6f83612a26565b604051602001611d80929190613849565b6040516020818303038152906040529050919050565b335f908152600e602052604090205460ff16611dc557604051639dc0aa7d60e01b815260040160405180910390fd5b5f805f5b83811015611f7c575f600b5f878785818110611de757611de76137e6565b9050602002016020810190611dfc9190613541565b60ff908116825260208201929092526040015f20805490925016611e335760405163e56aa7c960e01b815260040160405180910390fd5b611e76868684818110611e4857611e486137e6565b9050602002016020810190611e5d9190613541565b60ff165f908152600b6020526040902060040154421190565b611e93576040516330124bbf60e01b815260040160405180910390fd5b8054610100900460ff1615611ebb576040516321e7473160e21b815260040160405180910390fd5b6002810154611eca9085613812565b9350806003015483611edc9190613812565b92507f324d9548a0fa669caf07f722f2bde7e6791074ec011faf3b96a3ff1bc9c9de27868684818110611f1157611f116137e6565b9050602002016020810190611f269190613541565b600283015460038401546040805160ff909416845260208401929092529082015260600160405180910390a15f600282018190556003820155805461ff001916610100179055611f75816137fa565b9050611dc9565b508160115f828254611f8e9190613784565b90915550611f9e90508183613812565b60125f828254611fae9190613812565b909155505050505050565b5f610ad182612ab6565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b611ff861206b565b6001600160a01b0381166120625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b611b0c81612563565b600d546001600160a01b03610100909104163314610ee35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401612059565b5f6120d560055490565b821080156120e1575060015b8015610ad15750600882901c5f90815260016020526040902054600160ff1b60ff84161c1615151592915050565b5f81815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155819061214382610f89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f612186826120cb565b6121a3576040516327ec263360e21b815260040160405180910390fd5b5f6121ad83610f89565b9050806001600160a01b0316846001600160a01b031614806121e85750836001600160a01b03166121dd84610bc7565b6001600160a01b0316145b806121f857506121f88185611fc3565b949350505050565b5f8061220b836123ef565b91509150846001600160a01b0316826001600160a01b03161461224157604051631c577a5560e21b815260040160405180910390fd5b6001600160a01b0384166122685760405163e5b62e3f60e01b815260040160405180910390fd5b6122758585856001612ac1565b61227f5f8461210f565b5f61228b846001613812565b600881901c5f90815260208190526040902054909150600160ff1b60ff83161c161580156122ba575060055481105b156122f4575f818152600a602052604081208054610100600160a81b0319166101006001600160a01b038a16021790556122f49082612aff565b5f848152600960209081526040808320805460ff19166001179055600a909152902080546001600160a01b03871661010002610100600160a81b0319909116179055818414612347576123475f85612aff565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611183565b612395612b2a565b600d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60046123eb82826138bc565b5050565b5f806123fa836120cb565b612417576040516327ec263360e21b815260040160405180910390fd5b61242083612ab6565b5f818152600a602052604090205461010090046001600160a01b031694909350915050565b5f91825260096020526040909120805460ff191660ff909216919091179055565b61246e6131b1565b612477826120cb565b612494576040516327ec263360e21b815260040160405180910390fd5b5f61249e836123ef565b5f908152600a60209081526040918290208251608081018452815460ff8116825261010090046001600160a01b0316928101929092526001810154928201929092526002909101546060820152949350505050565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811461253c576040519150601f19603f3d011682016040523d82523d5f602084013e612541565b606091505b5050905080610c8e5760405163026e674d60e51b815260040160405180910390fd5b600d80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6125c46129d1565b600d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123c23390565b8163ffffffff165f0361261f57604051631e01eb5f60e01b815260040160405180910390fd5b60ff83165f908152600b60205260409020805483919060029061264f90849062010000900463ffffffff16613825565b92506101000a81548163ffffffff021916908363ffffffff1602179055505f805f6126808563ffffffff1687612b73565b90925090505f6126908284613812565b1115612746575f816126a28487613784565b6126ac9190613784565b90508260125f8282546126bf9190613812565b925050819055508060115f8282546126d79190613812565b909155506126ed905063ffffffff8716826137c7565b60ff88165f908152600b6020526040812060020180549296508392909190612716908490613812565b909155505060ff87165f908152600b60205260408120600301805484929061273f908490613812565b9091555050505b5f61275060055490565b9050612762888763ffffffff16612be4565b6127a381888661277863ffffffff8b16876137c7565b5f938452600a6020526040909320805460ff191660ff93909316929092178255600182015560020155565b7f8802239f1b8d12cb4087e1cf3214ace0a981ec7d42f39ad50b6358d2b856a6143389898460016127d360055490565b6127dd9190613784565b604080516001600160a01b03968716815294909516602085015260ff92909216838501526060830152608082015290519081900360a00190a15050505050505050565b5f818152600960205260408120548290600160ff90911611156128565760405163a16d087d60e01b815260040160405180910390fd5b61285f33611207565b61287c5760405163ca5c602360e01b815260040160405180910390fd5b5f61288684611b0f565b905061289184612bfd565b80516040805133815260ff9092166020830152818101869052517fdb7ac542cae0869013ce807ba51a3025e4a2872f0c9d310e85677176f98410579181900360600190a1805160ff165f908152600b6020526040902060040154421161299057806040015160115f8282546129069190613784565b90915550506060810151601280545f90612921908490613812565b9091555050604080820151825160ff165f908152600b602052918220600201805491929091612951908490613784565b90915550506060810151815160ff165f908152600b602052604081206003018054909190612980908490613784565b9091555050604001519150612995565b5f9250505b50919050565b6129a6848484612200565b6129b4848484600185612c6d565b611a6957604051632e14322560e01b815260040160405180910390fd5b600d5460ff1615610ee35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401612059565b606060048054610b469061373e565b60605f612a3283612da1565b60010190505f8167ffffffffffffffff811115612a5157612a516133a5565b6040519080825280601f01601f191660200182016040528015612a7b576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612a8557509392505050565b5f610ad18183612e78565b612ac96129d1565b5f828152600960205260409020548290600160ff90911611156113bf5760405163a16d087d60e01b815260040160405180910390fd5b600881901c5f90815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b600d5460ff16610ee35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401612059565b60ff81165f908152600b602052604081206001015481908190612b9690866137b0565b600f54909150606490612bac9060ff16836137b0565b612bb691906137c7565b600f54606490612bce90610100900460ff16846137b0565b612bd891906137c7565b92509250509250929050565b6123eb828260405180602001604052805f815250612f6c565b5f612c0782610f89565b9050612c16815f846001612ac1565b612c21600183612aff565b6001600160a01b0381165f908152600c60205260408120805460019290612c49908490613784565b92505081905550600160065f828254612c629190613812565b909155506123eb9050565b5f6001600160a01b0385163b15612d9457506001835b612c8d8486613812565b811015612d8e57604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290612cc69033908b9086908990600401613978565b6020604051808303815f875af1925050508015612d00575060408051601f3d908101601f19168201909252612cfd918101906139b4565b60015b612d5c573d808015612d2d576040519150601f19603f3d011682016040523d82523d5f602084013e612d32565b606091505b5080515f03612d5457604051632e14322560e01b815260040160405180910390fd5b805181602001fd5b828015612d7957506001600160e01b03198116630a85bd0160e11b145b92505080612d86816137fa565b915050612c83565b50612d98565b5060015b95945050505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612ddf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612e0b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612e2957662386f26fc10000830492506010015b6305f5e1008310612e41576305f5e100830492506008015b6127108310612e5557612710830492506004015b60648310612e67576064830492506002015b600a8310610ad15760010192915050565b600881901c5f8181526020849052604081205490919060ff808516919082181c8015612eb957612ea781612f8f565b60ff168203600884901b179350612f63565b5f8311612f255760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b6064820152608401612059565b505f199091015f818152602086905260409020549091908015612f5e57612f4b81612f8f565b60ff0360ff16600884901b179350612f63565b612eb9565b50505092915050565b5f612f7660055490565b9050612f828484612ff8565b6129b45f85838686612c6d565b5f60405180610120016040528061010081526020016139d0610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff612fd78561319c565b02901c81518110612fea57612fea6137e6565b016020015160f81c92915050565b5f61300260055490565b9050815f0361302457604051631e01eb5f60e01b815260040160405180910390fd5b6001600160a01b03831661304b5760405163e5b62e3f60e01b815260040160405180910390fd5b6130575f848385612ac1565b8160055f8282546130689190613812565b90915550506001600160a01b0383165f908152600c602052604081208054849290613094908490613812565b90915550506001600160a01b0383165f908152600c6020526040812060010180548492906130c3908490613812565b9091555050604080516080810182525f8082526001600160a01b03808716602080850191825284860184815260608601858152888652600a909252958420945185549251909316610100026001600160a81b031990921660ff93909316929092171783559251600183015591516002909101556131409082612aff565b805b61314c8383613812565b811015611a695760405181906001600160a01b038616905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480613194816137fa565b915050613142565b5f8082116131a8575f80fd5b505f8190031690565b60405180608001604052805f60ff1681526020015f6001600160a01b031681526020015f81526020015f81525090565b6001600160e01b031981168114611b0c575f80fd5b5f60208284031215613206575f80fd5b8135613211816131e1565b9392505050565b80356001600160a01b038116811461322e575f80fd5b919050565b5f60208284031215613243575f80fd5b61321182613218565b5f5b8381101561326657818101518382015260200161324e565b50505f910152565b5f815180845261328581602086016020860161324c565b601f01601f19169290920160200192915050565b602081525f613211602083018461326e565b5f602082840312156132bb575f80fd5b5035919050565b5f80604083850312156132d3575f80fd5b6132dc83613218565b946020939093013593505050565b803560ff8116811461322e575f80fd5b803563ffffffff8116811461322e575f80fd5b5f805f8060808587031215613320575f80fd5b613329856132ea565b9350613337602086016132fa565b93969395505050506040820135916060013590565b5f805f6060848603121561335e575f80fd5b61336784613218565b925061337560208501613218565b9150604084013590509250925092565b5f8060408385031215613396575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff808411156133d3576133d36133a5565b604051601f8501601f19908116603f011681019082821181831017156133fb576133fb6133a5565b81604052809350858152868686011115613413575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561343c575f80fd5b813567ffffffffffffffff811115613452575f80fd5b8201601f81018413613462575f80fd5b6121f8848235602084016133b9565b5f8083601f840112613481575f80fd5b50813567ffffffffffffffff811115613498575f80fd5b6020830191508360208260051b8501011115610ea5575f80fd5b5f805f604084860312156134c4575f80fd5b833567ffffffffffffffff8111156134da575f80fd5b6134e686828701613471565b90945092506134f99050602085016132ea565b90509250925092565b5f8060208385031215613513575f80fd5b823567ffffffffffffffff811115613529575f80fd5b61353585828601613471565b90969095509350505050565b5f60208284031215613551575f80fd5b613211826132ea565b602080825282518282018190525f9190848201906040850190845b8181101561359157835183529284019291840191600101613575565b50909695505050505050565b5f805f606084860312156135af575f80fd5b6135b884613218565b92506135c6602085016132ea565b91506134f9604085016132fa565b5f80604083850312156135e5575f80fd5b6135ee83613218565b915060208301358015158114613602575f80fd5b809150509250929050565b5f805f805f8060c08789031215613622575f80fd5b61362b876132ea565b9550613639602088016132ea565b9450613647604088016132ea565b9350613655606088016132fa565b925061366360808801613218565b915061367160a08801613218565b90509295509295509295565b5f6020828403121561368d575f80fd5b613211826132fa565b5f805f80608085870312156136a9575f80fd5b6136b285613218565b93506136c060208601613218565b925060408501359150606085013567ffffffffffffffff8111156136e2575f80fd5b8501601f810187136136f2575f80fd5b613701878235602084016133b9565b91505092959194509250565b5f806040838503121561371e575f80fd5b61372783613218565b915061373560208401613218565b90509250929050565b600181811c9082168061375257607f821691505b60208210810361299557634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b81810381811115610ad157610ad1613770565b60ff8181168382160190811115610ad157610ad1613770565b8082028115828204841417610ad157610ad1613770565b5f826137e157634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161380b5761380b613770565b5060010190565b80820180821115610ad157610ad1613770565b63ffffffff81811683821601908082111561384257613842613770565b5092915050565b5f835161385a81846020880161324c565b83519083019061386e81836020880161324c565b01949350505050565b601f821115610c8e575f81815260208120601f850160051c8101602086101561389d5750805b601f850160051c820191505b81811015611183578281556001016138a9565b815167ffffffffffffffff8111156138d6576138d66133a5565b6138ea816138e4845461373e565b84613877565b602080601f83116001811461391d575f84156139065750858301515b5f19600386901b1c1916600185901b178555611183565b5f85815260208120601f198616915b8281101561394b5788860151825594840194600190910190840161392c565b508582101561396857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906139aa9083018461326e565b9695505050505050565b5f602082840312156139c4575f80fd5b8151613211816131e156fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220fe574fc29097c6932cc0c7ffac262a9d68647285be19699b43f342982c94fec064736f6c63430008150033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000063a5e40e6a3ee16d5e254794f6ac504fefc88c350000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff5000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617034666e786679337932626372736c6f34376b6e3364337265763637696b6465613377706a6c71686e6274717a327662696d712f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff500000000000000000000000085e0fdb1260f718fc232d6ad2f7ee2694a1b8f3200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff500000000000000000000000085e0fdb1260f718fc232d6ad2f7ee2694a1b8f32000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x608060405260043610610327575f3560e01c80638456cb59116101a3578063a71bbebe116100f2578063c87b56dd11610092578063e100ec1c1161006d578063e100ec1c14610a0a578063e977a3ec14610a29578063e985e9c514610a48578063f2fde38b14610a67575f80fd5b8063c87b56dd146109c3578063d789a531146109e2578063d89135cd146109f5575f80fd5b8063bcec7986116100cd578063bcec79861461092a578063c0da9bcd1461093e578063c1a709e81461099c578063c782311c146109b0575f80fd5b8063a71bbebe146108d9578063b80f55c9146108ec578063b88d4fde1461090b575f80fd5b806391f01f561161015d57806395d89b411161013857806395d89b4114610872578063a22cb46514610886578063a2309ff8146108a5578063a6a08fc2146108ba575f80fd5b806391f01f561461082b578063925ee51e1461083f57806392a8397c14610853575f80fd5b80638456cb59146107885780638462151c1461079c5780638a90d601146107c85780638da5cb5b146107dd5780638e7627c9146107ff57806391ef29cd14610818575f80fd5b806342842e0e116102795780636352211e1161021957806370a08231116101f457806370a082311461068357806370ea028f146106a2578063715018a6146106c157806379839309146106d5575f80fd5b80636352211e146106265780636815210b146106455780636f83df8814610664575f80fd5b806355f804b31161025457806355f804b314610594578063583e567b146105b357806359236582146105c85780635c975abb1461060f575f80fd5b806342842e0e146105315780634bf609ce146105505780635581b45114610576575f80fd5b80630da87d86116102e457806327405725116102bf578063274057251461048f5780632a55205a146104c057806331090797146104fe5780633f4ba83a1461051d575f80fd5b80630da87d861461042f57806318160ddd1461044e57806323b872dd14610470575f80fd5b806301ffc9a71461032b5780630501c5e61461035f57806305d52d091461039757806306fdde03146103b8578063081812fc146103d9578063095ea7b314610410575b5f80fd5b348015610336575f80fd5b5061034a6103453660046131f6565b610a86565b60405190151581526020015b60405180910390f35b34801561036a575f80fd5b50600f54610382906301000000900463ffffffff1681565b60405163ffffffff9091168152602001610356565b3480156103a2575f80fd5b506103b66103b1366004613233565b610ad7565b005b3480156103c3575f80fd5b506103cc610b37565b6040516103569190613299565b3480156103e4575f80fd5b506103f86103f33660046132ab565b610bc7565b6040516001600160a01b039091168152602001610356565b34801561041b575f80fd5b506103b661042a3660046132c2565b610c09565b34801561043a575f80fd5b506103b661044936600461330d565b610c93565b348015610459575f80fd5b50610462610dee565b604051908152602001610356565b34801561047b575f80fd5b506103b661048a36600461334c565b610e04565b34801561049a575f80fd5b50600f546104ae9062010000900460ff1681565b60405160ff9091168152602001610356565b3480156104cb575f80fd5b506104df6104da366004613385565b610e36565b604080516001600160a01b039093168352602083019190915201610356565b348015610509575f80fd5b506010546103f8906001600160a01b031681565b348015610528575f80fd5b506103b6610eac565b34801561053c575f80fd5b506103b661054b36600461334c565b610ee5565b34801561055b575f80fd5b50600f546103f890600160381b90046001600160a01b031681565b348015610581575f80fd5b50600f546104ae90610100900460ff1681565b34801561059f575f80fd5b506103b66105ae36600461342c565b610eff565b3480156105be575f80fd5b5061046260115481565b3480156105d3575f80fd5b506105fa6105e2366004613233565b600c6020525f90815260409020805460019091015482565b60408051928352602083019190915201610356565b34801561061a575f80fd5b50600d5460ff1661034a565b348015610631575f80fd5b506103f86106403660046132ab565b610f89565b348015610650575f80fd5b506103b661065f366004613233565b610f9c565b34801561066f575f80fd5b506103b661067e3660046134b2565b611000565b34801561068e575f80fd5b5061046261069d366004613233565b61118b565b3480156106ad575f80fd5b506103b66106bc366004613502565b6111ce565b3480156106cc575f80fd5b506103b66113c6565b3480156106e0575f80fd5b506107426106ef366004613541565b600b6020525f90815260409020805460018201546002830154600384015460049094015460ff8085169561010086049091169463ffffffff620100008204811695600160301b9092041693909290919088565b604080519815158952961515602089015263ffffffff95861696880196909652939092166060860152608085015260a084015260c083015260e082015261010001610356565b348015610793575f80fd5b506103b66113d7565b3480156107a7575f80fd5b506107bb6107b6366004613233565b61140e565b604051610356919061355a565b3480156107d3575f80fd5b5061046260125481565b3480156107e8575f80fd5b50600d5461010090046001600160a01b03166103f8565b34801561080a575f80fd5b50600f546104ae9060ff1681565b6103b661082636600461359d565b6114d2565b348015610836575f80fd5b506104ae600281565b34801561084a575f80fd5b506104ae600181565b34801561085e575f80fd5b506104ae61086d3660046132ab565b61162d565b34801561087d575f80fd5b506103cc611669565b348015610891575f80fd5b506103b66108a03660046135d4565b611678565b3480156108b0575f80fd5b5061046260055481565b3480156108c5575f80fd5b506103b66108d436600461360d565b61170c565b6103b66108e736600461367d565b611857565b3480156108f7575f80fd5b506103b6610906366004613502565b6119c0565b348015610916575f80fd5b506103b6610925366004613696565b611a36565b348015610935575f80fd5b506103b6611a6f565b348015610949575f80fd5b5061095d6109583660046132ab565b611b0f565b6040516103569190815160ff1681526020808301516001600160a01b031690820152604080830151908201526060918201519181019190915260800190565b3480156109a7575f80fd5b506104ae600381565b6103b66109be366004613502565b611b7d565b3480156109ce575f80fd5b506103cc6109dd3660046132ab565b611d36565b3480156109ed575f80fd5b506104ae5f81565b348015610a00575f80fd5b5061046260065481565b348015610a15575f80fd5b506103b6610a24366004613502565b611d96565b348015610a34575f80fd5b50610462610a433660046132ab565b611fb9565b348015610a53575f80fd5b5061034a610a6236600461370d565b611fc3565b348015610a72575f80fd5b506103b6610a81366004613233565b611ff0565b5f6001600160e01b031982166380ac58cd60e01b1480610ab657506001600160e01b03198216635b5e139f60e01b145b80610ad157506301ffc9a760e01b6001600160e01b03198316145b92915050565b610adf61206b565b6001600160a01b0381165f908152600e602052604090205460ff16610b175760405163b6f74fad60e01b815260040160405180910390fd5b6001600160a01b03165f908152600e60205260409020805460ff19169055565b606060028054610b469061373e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b729061373e565b8015610bbd5780601f10610b9457610100808354040283529160200191610bbd565b820191905f5260205f20905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b5f610bd1826120cb565b610bee576040516327ec263360e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f610c1382610f89565b9050806001600160a01b0316836001600160a01b031603610c475760405163e8ccaa5360e01b815260040160405180910390fd5b336001600160a01b03821614801590610c675750610c658133611fc3565b155b15610c84576040516208c73160eb1b815260040160405180910390fd5b610c8e838361210f565b505050565b335f908152600e602052604090205460ff16610cc257604051639dc0aa7d60e01b815260040160405180910390fd5b60ff8085165f908152600b60205260409020541615610cf457604051631d6e03a760e11b815260040160405180910390fd5b804210610d145760405163d667a1e160e01b815260040160405180910390fd5b60408051610100808201835260018083525f602080850182815285870183815263ffffffff9a8b1660608801908152608088019a8b5260a0880185815260c0890186815260e08a019b8c5260ff909e168652600b90945297909320955186549151935197518b16600160301b0269ffffffff0000000000001998909b1662010000029790971669ffffffffffffffff00001993151590950261ff00199715159790971661ffff1990911617959095171691909117959095178155925193830193909355915160028201559151600383015551600490910155565b5f600654600554610dff9190613784565b905090565b610e0e338261217c565b610e2b5760405163ca5c602360e01b815260040160405180910390fd5b610c8e838383612200565b5f80610e41846120cb565b610e5e576040516327ec263360e21b815260040160405180910390fd5b600f546001600160a01b03600160381b82041690606490610e899060ff610100820481169116613797565b610e969060ff16866137b0565b610ea091906137c7565b915091505b9250929050565b335f908152600e602052604090205460ff16610edb57604051639dc0aa7d60e01b815260040160405180910390fd5b610ee361238d565b565b610c8e83838360405180602001604052805f815250611a36565b335f908152600e602052604090205460ff16610f2e57604051639dc0aa7d60e01b815260040160405180910390fd5b610f37816123df565b7f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c5f6001610f6460055490565b610f6e9190613784565b6040805192835260208301919091520160405180910390a150565b5f80610f94836123ef565b509392505050565b610fa461206b565b6001600160a01b0381165f908152600e602052604090205460ff1615610fdd57604051632b079e2f60e21b815260040160405180910390fd5b6001600160a01b03165f908152600e60205260409020805460ff19166001179055565b335f908152600e602052604090205460ff1661102f57604051639dc0aa7d60e01b815260040160405180910390fd5b5f805f5b848110156111835785858281811061104d5761104d6137e6565b90506020020135925061105f8361162d565b915060ff82161580611074575060ff82166002145b156110925760405163a47caf5160e01b815260040160405180910390fd5b60011960ff8516016110b75760405163022cf18b60e21b815260040160405180910390fd5b6110c18385612445565b6040805184815260ff861660208201527f6dfe83a1cc38852e70d0dea58de51d15ced42b40923a55563dafb203f53bbf1c910160405180910390a1600160ff85161161113f576040518381527ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18429060200160405180910390a1611173565b6040518381527f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a16119060200160405180910390a15b61117c816137fa565b9050611033565b505050505050565b5f6001600160a01b0382166111b35760405163e5b62e3f60e01b815260040160405180910390fd5b506001600160a01b03165f908152600c602052604090205490565b5f806111d86131b1565b5f5b8481101561138c578585828181106111f4576111f46137e6565b90506020020135925061120d6112073390565b8461217c565b61122a5760405163ca5c602360e01b815260040160405180910390fd5b60016112358461162d565b60ff16111561125757604051638b28cedb60e01b815260040160405180910390fd5b611262836002612445565b61126b83612466565b805160ff165f908152600b602052604090206004015490925042116113105760408201516112999085613812565b604080840151845160ff165f908152600b602052918220600201805493975090929091906112c8908490613784565b9091555050604080830151815185815260208101919091527f60441c7d2351c890886bc18d8f3259504757ac63bd45acf87405b9bdc06e9ee6910160405180910390a1611349565b604080518481525f60208201527f60441c7d2351c890886bc18d8f3259504757ac63bd45acf87405b9bdc06e9ee6910160405180910390a15b6040518381527f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a16119060200160405180910390a1611385816137fa565b90506111da565b5082156113bf578260115f8282546113a49190613784565b90915550506010546113bf906001600160a01b0316846124f3565b5050505050565b6113ce61206b565b610ee35f612563565b335f908152600e602052604090205460ff1661140657604051639dc0aa7d60e01b815260040160405180910390fd5b610ee36125bc565b60605f8061141b8461118b565b90505f8167ffffffffffffffff811115611437576114376133a5565b604051908082528060200260200182016040528015611460578160200160208202803683370190505b5090505f5b8284146114c957611475816120cb565b156114c157856001600160a01b031661148d82610f89565b6001600160a01b0316036114c157808285806001019650815181106114b4576114b46137e6565b6020026020010181815250505b600101611465565b50949350505050565b335f908152600e602052604090205460ff1661150157604051639dc0aa7d60e01b815260040160405180910390fd5b60ff8083165f908152600b60205260409020548391610100909104161561153b576040516321e7473160e21b815260040160405180910390fd5b60ff83165f908152600b60205260409020548390839063ffffffff600160301b820481169161157291849162010000900416613825565b63ffffffff1611156115975760405163bf519fd560e01b815260040160405180910390fd5b60ff8086165f908152600b60205260409020548691166115ca5760405163e56aa7c960e01b815260040160405180910390fd5b60ff86165f908152600b60205260409020600101543490879087906115f69063ffffffff8316906137b0565b83146116155760405163e385d7ef60e01b815260040160405180910390fd5b6116218a8a8a346125f9565b50505050505050505050565b5f611637826120cb565b611654576040516327ec263360e21b815260040160405180910390fd5b505f9081526009602052604090205460ff1690565b606060038054610b469061373e565b336001600160a01b038316036116a1576040516321256e4160e11b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b335f908152600e602052604090205460ff1661173b57604051639dc0aa7d60e01b815260040160405180910390fd5b60ff8085165f908152600b602052604090205485911661176e5760405163e56aa7c960e01b815260040160405180910390fd5b600f8054601080546001600160a01b0319166001600160a01b0386811691821790925560ff8b811666ffffffff010000600160d81b0319909416600160381b93891693840262ff0000191617620100008b83169081029190911766ffffffff00ffff1916630100000063ffffffff8c1690810261ffff1916919091178617610100938e1693840217909655604080519586526020860192909252908401526060830193909352608082015260a08101919091527f0e95400c1f693ee1f4b5ddf0ff8ccb5e180a8c7d9f314063306f0791dc4374b99060c00160405180910390a150505050505050565b600f5460ff6201000090910481165f818152600b60205260409020549091610100909104161561189a576040516321e7473160e21b815260040160405180910390fd5b600f5462010000900460ff165f818152600b602052604090206001015434919084906118cd9063ffffffff8316906137b0565b83146118ec5760405163e385d7ef60e01b815260040160405180910390fd5b600f5460ff6201000091829004165f818152600b60205260409020549091879163ffffffff600160301b820481169261192a92859291900416613825565b63ffffffff16111561194f5760405163bf519fd560e01b815260040160405180910390fd5b600f54335f908152600c602052604090206001015463ffffffff630100000090920482169161198191908a1690613812565b11156119a057604051637861514b60e01b815260040160405180910390fd5b6119b733600f5462010000900460ff1689346125f9565b50505050505050565b5f8190036119e157604051631e01eb5f60e01b815260040160405180910390fd5b5f805b82811015611a2b57611a0d848483818110611a0157611a016137e6565b90506020020135612820565b611a179083613812565b915080611a23816137fa565b9150506119e4565b50610c8e33826124f3565b611a40338361217c565b611a5d5760405163ca5c602360e01b815260040160405180910390fd5b611a698484848461299b565b50505050565b611a776129d1565b6012545f03611a9957604051636730f53b60e01b815260040160405180910390fd5b601254600f5460408051928352600160381b9091046001600160a01b031660208301527f277a72a3098cf4438d69545e06bfafdc318f0c601b8c387a4fc3fc26dde8eea9910160405180910390a1601280545f909155600f54611b0c90600160381b90046001600160a01b0316826124f3565b50565b611b176131b1565b5f611b2183612466565b805160ff165f908152600b6020526040902060040154909150421115610ad1576040518060800160405280825f015160ff16815260200182602001516001600160a01b031681526020015f81526020015f815250915050919050565b5f805f611b886131b1565b5f5b85811015611cf757868682818110611ba457611ba46137e6565b905060200201359250611bb76112073390565b611bd45760405163ca5c602360e01b815260040160405180910390fd5b611bdd8361162d565b93506002611bea8461162d565b60ff1614611c0b57604051634329810b60e01b815260040160405180910390fd5b611c1483612466565b805160ff165f908152600b60205260409020600401549092504211611c77576040820151611c429086613812565b604080840151845160ff165f908152600b60205291822060020180549398509092909190611c71908490613812565b90915550505b611c81835f612445565b6040518381527f85837b804496fa8a31cf9284d2c34c3276ca3d5369cfe705026f7bad0365c0f29060200160405180910390a16040518381527ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18429060200160405180910390a1611cf0816137fa565b9050611b8a565b50348414611d185760405163e385d7ef60e01b815260040160405180910390fd5b3460115f828254611d299190613812565b9091555050505050505050565b6060611d41826120cb565b611d5e576040516327ec263360e21b815260040160405180910390fd5b611d66612a17565b611d6f83612a26565b604051602001611d80929190613849565b6040516020818303038152906040529050919050565b335f908152600e602052604090205460ff16611dc557604051639dc0aa7d60e01b815260040160405180910390fd5b5f805f5b83811015611f7c575f600b5f878785818110611de757611de76137e6565b9050602002016020810190611dfc9190613541565b60ff908116825260208201929092526040015f20805490925016611e335760405163e56aa7c960e01b815260040160405180910390fd5b611e76868684818110611e4857611e486137e6565b9050602002016020810190611e5d9190613541565b60ff165f908152600b6020526040902060040154421190565b611e93576040516330124bbf60e01b815260040160405180910390fd5b8054610100900460ff1615611ebb576040516321e7473160e21b815260040160405180910390fd5b6002810154611eca9085613812565b9350806003015483611edc9190613812565b92507f324d9548a0fa669caf07f722f2bde7e6791074ec011faf3b96a3ff1bc9c9de27868684818110611f1157611f116137e6565b9050602002016020810190611f269190613541565b600283015460038401546040805160ff909416845260208401929092529082015260600160405180910390a15f600282018190556003820155805461ff001916610100179055611f75816137fa565b9050611dc9565b508160115f828254611f8e9190613784565b90915550611f9e90508183613812565b60125f828254611fae9190613812565b909155505050505050565b5f610ad182612ab6565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b611ff861206b565b6001600160a01b0381166120625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b611b0c81612563565b600d546001600160a01b03610100909104163314610ee35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401612059565b5f6120d560055490565b821080156120e1575060015b8015610ad15750600882901c5f90815260016020526040902054600160ff1b60ff84161c1615151592915050565b5f81815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155819061214382610f89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f612186826120cb565b6121a3576040516327ec263360e21b815260040160405180910390fd5b5f6121ad83610f89565b9050806001600160a01b0316846001600160a01b031614806121e85750836001600160a01b03166121dd84610bc7565b6001600160a01b0316145b806121f857506121f88185611fc3565b949350505050565b5f8061220b836123ef565b91509150846001600160a01b0316826001600160a01b03161461224157604051631c577a5560e21b815260040160405180910390fd5b6001600160a01b0384166122685760405163e5b62e3f60e01b815260040160405180910390fd5b6122758585856001612ac1565b61227f5f8461210f565b5f61228b846001613812565b600881901c5f90815260208190526040902054909150600160ff1b60ff83161c161580156122ba575060055481105b156122f4575f818152600a602052604081208054610100600160a81b0319166101006001600160a01b038a16021790556122f49082612aff565b5f848152600960209081526040808320805460ff19166001179055600a909152902080546001600160a01b03871661010002610100600160a81b0319909116179055818414612347576123475f85612aff565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611183565b612395612b2a565b600d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60046123eb82826138bc565b5050565b5f806123fa836120cb565b612417576040516327ec263360e21b815260040160405180910390fd5b61242083612ab6565b5f818152600a602052604090205461010090046001600160a01b031694909350915050565b5f91825260096020526040909120805460ff191660ff909216919091179055565b61246e6131b1565b612477826120cb565b612494576040516327ec263360e21b815260040160405180910390fd5b5f61249e836123ef565b5f908152600a60209081526040918290208251608081018452815460ff8116825261010090046001600160a01b0316928101929092526001810154928201929092526002909101546060820152949350505050565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811461253c576040519150601f19603f3d011682016040523d82523d5f602084013e612541565b606091505b5050905080610c8e5760405163026e674d60e51b815260040160405180910390fd5b600d80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6125c46129d1565b600d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123c23390565b8163ffffffff165f0361261f57604051631e01eb5f60e01b815260040160405180910390fd5b60ff83165f908152600b60205260409020805483919060029061264f90849062010000900463ffffffff16613825565b92506101000a81548163ffffffff021916908363ffffffff1602179055505f805f6126808563ffffffff1687612b73565b90925090505f6126908284613812565b1115612746575f816126a28487613784565b6126ac9190613784565b90508260125f8282546126bf9190613812565b925050819055508060115f8282546126d79190613812565b909155506126ed905063ffffffff8716826137c7565b60ff88165f908152600b6020526040812060020180549296508392909190612716908490613812565b909155505060ff87165f908152600b60205260408120600301805484929061273f908490613812565b9091555050505b5f61275060055490565b9050612762888763ffffffff16612be4565b6127a381888661277863ffffffff8b16876137c7565b5f938452600a6020526040909320805460ff191660ff93909316929092178255600182015560020155565b7f8802239f1b8d12cb4087e1cf3214ace0a981ec7d42f39ad50b6358d2b856a6143389898460016127d360055490565b6127dd9190613784565b604080516001600160a01b03968716815294909516602085015260ff92909216838501526060830152608082015290519081900360a00190a15050505050505050565b5f818152600960205260408120548290600160ff90911611156128565760405163a16d087d60e01b815260040160405180910390fd5b61285f33611207565b61287c5760405163ca5c602360e01b815260040160405180910390fd5b5f61288684611b0f565b905061289184612bfd565b80516040805133815260ff9092166020830152818101869052517fdb7ac542cae0869013ce807ba51a3025e4a2872f0c9d310e85677176f98410579181900360600190a1805160ff165f908152600b6020526040902060040154421161299057806040015160115f8282546129069190613784565b90915550506060810151601280545f90612921908490613812565b9091555050604080820151825160ff165f908152600b602052918220600201805491929091612951908490613784565b90915550506060810151815160ff165f908152600b602052604081206003018054909190612980908490613784565b9091555050604001519150612995565b5f9250505b50919050565b6129a6848484612200565b6129b4848484600185612c6d565b611a6957604051632e14322560e01b815260040160405180910390fd5b600d5460ff1615610ee35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401612059565b606060048054610b469061373e565b60605f612a3283612da1565b60010190505f8167ffffffffffffffff811115612a5157612a516133a5565b6040519080825280601f01601f191660200182016040528015612a7b576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612a8557509392505050565b5f610ad18183612e78565b612ac96129d1565b5f828152600960205260409020548290600160ff90911611156113bf5760405163a16d087d60e01b815260040160405180910390fd5b600881901c5f90815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b600d5460ff16610ee35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401612059565b60ff81165f908152600b602052604081206001015481908190612b9690866137b0565b600f54909150606490612bac9060ff16836137b0565b612bb691906137c7565b600f54606490612bce90610100900460ff16846137b0565b612bd891906137c7565b92509250509250929050565b6123eb828260405180602001604052805f815250612f6c565b5f612c0782610f89565b9050612c16815f846001612ac1565b612c21600183612aff565b6001600160a01b0381165f908152600c60205260408120805460019290612c49908490613784565b92505081905550600160065f828254612c629190613812565b909155506123eb9050565b5f6001600160a01b0385163b15612d9457506001835b612c8d8486613812565b811015612d8e57604051630a85bd0160e11b81526001600160a01b0387169063150b7a0290612cc69033908b9086908990600401613978565b6020604051808303815f875af1925050508015612d00575060408051601f3d908101601f19168201909252612cfd918101906139b4565b60015b612d5c573d808015612d2d576040519150601f19603f3d011682016040523d82523d5f602084013e612d32565b606091505b5080515f03612d5457604051632e14322560e01b815260040160405180910390fd5b805181602001fd5b828015612d7957506001600160e01b03198116630a85bd0160e11b145b92505080612d86816137fa565b915050612c83565b50612d98565b5060015b95945050505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612ddf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612e0b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612e2957662386f26fc10000830492506010015b6305f5e1008310612e41576305f5e100830492506008015b6127108310612e5557612710830492506004015b60648310612e67576064830492506002015b600a8310610ad15760010192915050565b600881901c5f8181526020849052604081205490919060ff808516919082181c8015612eb957612ea781612f8f565b60ff168203600884901b179350612f63565b5f8311612f255760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b6064820152608401612059565b505f199091015f818152602086905260409020549091908015612f5e57612f4b81612f8f565b60ff0360ff16600884901b179350612f63565b612eb9565b50505092915050565b5f612f7660055490565b9050612f828484612ff8565b6129b45f85838686612c6d565b5f60405180610120016040528061010081526020016139d0610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff612fd78561319c565b02901c81518110612fea57612fea6137e6565b016020015160f81c92915050565b5f61300260055490565b9050815f0361302457604051631e01eb5f60e01b815260040160405180910390fd5b6001600160a01b03831661304b5760405163e5b62e3f60e01b815260040160405180910390fd5b6130575f848385612ac1565b8160055f8282546130689190613812565b90915550506001600160a01b0383165f908152600c602052604081208054849290613094908490613812565b90915550506001600160a01b0383165f908152600c6020526040812060010180548492906130c3908490613812565b9091555050604080516080810182525f8082526001600160a01b03808716602080850191825284860184815260608601858152888652600a909252958420945185549251909316610100026001600160a81b031990921660ff93909316929092171783559251600183015591516002909101556131409082612aff565b805b61314c8383613812565b811015611a695760405181906001600160a01b038616905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480613194816137fa565b915050613142565b5f8082116131a8575f80fd5b505f8190031690565b60405180608001604052805f60ff1681526020015f6001600160a01b031681526020015f81526020015f81525090565b6001600160e01b031981168114611b0c575f80fd5b5f60208284031215613206575f80fd5b8135613211816131e1565b9392505050565b80356001600160a01b038116811461322e575f80fd5b919050565b5f60208284031215613243575f80fd5b61321182613218565b5f5b8381101561326657818101518382015260200161324e565b50505f910152565b5f815180845261328581602086016020860161324c565b601f01601f19169290920160200192915050565b602081525f613211602083018461326e565b5f602082840312156132bb575f80fd5b5035919050565b5f80604083850312156132d3575f80fd5b6132dc83613218565b946020939093013593505050565b803560ff8116811461322e575f80fd5b803563ffffffff8116811461322e575f80fd5b5f805f8060808587031215613320575f80fd5b613329856132ea565b9350613337602086016132fa565b93969395505050506040820135916060013590565b5f805f6060848603121561335e575f80fd5b61336784613218565b925061337560208501613218565b9150604084013590509250925092565b5f8060408385031215613396575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff808411156133d3576133d36133a5565b604051601f8501601f19908116603f011681019082821181831017156133fb576133fb6133a5565b81604052809350858152868686011115613413575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561343c575f80fd5b813567ffffffffffffffff811115613452575f80fd5b8201601f81018413613462575f80fd5b6121f8848235602084016133b9565b5f8083601f840112613481575f80fd5b50813567ffffffffffffffff811115613498575f80fd5b6020830191508360208260051b8501011115610ea5575f80fd5b5f805f604084860312156134c4575f80fd5b833567ffffffffffffffff8111156134da575f80fd5b6134e686828701613471565b90945092506134f99050602085016132ea565b90509250925092565b5f8060208385031215613513575f80fd5b823567ffffffffffffffff811115613529575f80fd5b61353585828601613471565b90969095509350505050565b5f60208284031215613551575f80fd5b613211826132ea565b602080825282518282018190525f9190848201906040850190845b8181101561359157835183529284019291840191600101613575565b50909695505050505050565b5f805f606084860312156135af575f80fd5b6135b884613218565b92506135c6602085016132ea565b91506134f9604085016132fa565b5f80604083850312156135e5575f80fd5b6135ee83613218565b915060208301358015158114613602575f80fd5b809150509250929050565b5f805f805f8060c08789031215613622575f80fd5b61362b876132ea565b9550613639602088016132ea565b9450613647604088016132ea565b9350613655606088016132fa565b925061366360808801613218565b915061367160a08801613218565b90509295509295509295565b5f6020828403121561368d575f80fd5b613211826132fa565b5f805f80608085870312156136a9575f80fd5b6136b285613218565b93506136c060208601613218565b925060408501359150606085013567ffffffffffffffff8111156136e2575f80fd5b8501601f810187136136f2575f80fd5b613701878235602084016133b9565b91505092959194509250565b5f806040838503121561371e575f80fd5b61372783613218565b915061373560208401613218565b90509250929050565b600181811c9082168061375257607f821691505b60208210810361299557634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b81810381811115610ad157610ad1613770565b60ff8181168382160190811115610ad157610ad1613770565b8082028115828204841417610ad157610ad1613770565b5f826137e157634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161380b5761380b613770565b5060010190565b80820180821115610ad157610ad1613770565b63ffffffff81811683821601908082111561384257613842613770565b5092915050565b5f835161385a81846020880161324c565b83519083019061386e81836020880161324c565b01949350505050565b601f821115610c8e575f81815260208120601f850160051c8101602086101561389d5750805b601f850160051c820191505b81811015611183578281556001016138a9565b815167ffffffffffffffff8111156138d6576138d66133a5565b6138ea816138e4845461373e565b84613877565b602080601f83116001811461391d575f84156139065750858301515b5f19600386901b1c1916600185901b178555611183565b5f85815260208120601f198616915b8281101561394b5788860151825594840194600190910190840161392c565b508582101561396857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906139aa9083018461326e565b9695505050505050565b5f602082840312156139c4575f80fd5b8151613211816131e156fe0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a2646970667358221220fe574fc29097c6932cc0c7ffac262a9d68647285be19699b43f342982c94fec064736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000010000000000000000000000000063a5e40e6a3ee16d5e254794f6ac504fefc88c350000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff5000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617034666e786679337932626372736c6f34376b6e3364337265763637696b6465613377706a6c71686e6274717a327662696d712f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff500000000000000000000000085e0fdb1260f718fc232d6ad2f7ee2694a1b8f3200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff500000000000000000000000085e0fdb1260f718fc232d6ad2f7ee2694a1b8f32000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://bafybeiap4fnxfy3y2bcrslo47kn3d3rev67ikdea3wpjlqhnbtqz2vbimq/
Arg [1] : _fundingDistributionAddress (address): 0x63A5E40e6A3eE16d5E254794f6Ac504feFc88C35
Arg [2] : _stakingDistributionAddress (address): 0x0D78f3Fc2B19aedA12D21713BbA7E8B3F8A53Ff5
Arg [3] : _initialAdmins (address[]): 0x0D78f3Fc2B19aedA12D21713BbA7E8B3F8A53Ff5,0x85E0FDB1260F718Fc232D6aD2F7ee2694a1b8F32
Arg [4] : _founderAddresses (address[]): 0x0D78f3Fc2B19aedA12D21713BbA7E8B3F8A53Ff5,0x85E0FDB1260F718Fc232D6aD2F7ee2694a1b8F32
Arg [5] : _initialFounderTokenAmounts (uint32[]): 1,1
Arg [6] : _individualLimit (uint32): 10
Arg [7] : _communityClassGlobalLimit (uint32): 50000

-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 00000000000000000000000063a5e40e6a3ee16d5e254794f6ac504fefc88c35
Arg [2] : 0000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff5
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 000000000000000000000000000000000000000000000000000000000000c350
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 697066733a2f2f62616679626569617034666e786679337932626372736c6f34
Arg [10] : 376b6e3364337265763637696b6465613377706a6c71686e6274717a32766269
Arg [11] : 6d712f0000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [13] : 0000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff5
Arg [14] : 00000000000000000000000085e0fdb1260f718fc232d6ad2f7ee2694a1b8f32
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [16] : 0000000000000000000000000d78f3fc2b19aeda12d21713bba7e8b3f8a53ff5
Arg [17] : 00000000000000000000000085e0fdb1260f718fc232d6ad2f7ee2694a1b8f32
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

72515:13266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60906:323;;;;;;;;;;-1:-1:-1;60906:323:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60906:323:0;;;;;;;;72723:36;;;;;;;;;;-1:-1:-1;72723:36:0;;;;;;;;;;;;;;766:10:1;754:23;;;736:42;;724:2;709:18;72723:36:0;592:192:1;49221:169:0;;;;;;;;;;-1:-1:-1;49221:169:0;;;;;:::i;:::-;;:::i;:::-;;62577:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63393:224::-;;;;;;;;;;-1:-1:-1;63393:224:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2263:32:1;;;2245:51;;2233:2;2218:18;63393:224:0;2099:203:1;63034:351:0;;;;;;;;;;-1:-1:-1;63034:351:0;;;;;:::i;:::-;;:::i;76718:357::-;;;;;;;;;;-1:-1:-1;76718:357:0;;;;;:::i;:::-;;:::i;69886:112::-;;;;;;;;;;;;;:::i;:::-;;;3437:25:1;;;3425:2;3410:18;69886:112:0;3291:177:1;64143:264:0;;;;;;;;;;-1:-1:-1;64143:264:0;;;;;:::i;:::-;;:::i;72686:30::-;;;;;;;;;;-1:-1:-1;72686:30:0;;;;;;;;;;;;;;3978:4:1;3966:17;;;3948:36;;3936:2;3921:18;72686:30:0;3806:184:1;75034:279:0;;;;;;;;;;-1:-1:-1;75034:279:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4440:32:1;;;4422:51;;4504:2;4489:18;;4482:34;;;;4395:18;75034:279:0;4248:274:1;72814:41:0;;;;;;;;;;-1:-1:-1;72814:41:0;;;;-1:-1:-1;;;;;72814:41:0;;;49467:65;;;;;;;;;;;;;:::i;64415:185::-;;;;;;;;;;-1:-1:-1;64415:185:0;;;;;:::i;:::-;;:::i;72766:41::-;;;;;;;;;;-1:-1:-1;72766:41:0;;;;-1:-1:-1;;;72766:41:0;;-1:-1:-1;;;;;72766:41:0;;;72641:38;;;;;;;;;;-1:-1:-1;72641:38:0;;;;;;;;;;;77920:177;;;;;;;;;;-1:-1:-1;77920:177:0;;;;;:::i;:::-;;:::i;72862:27::-;;;;;;;;;;;;;;;;59528:57;;;;;;;;;;-1:-1:-1;59528:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;5926:25:1;;;5982:2;5967:18;;5960:34;;;;5899:18;59528:57:0;5752:248:1;47569:86:0;;;;;;;;;;-1:-1:-1;47640:7:0;;;;47569:86;;62078:201;;;;;;;;;;-1:-1:-1;62078:201:0;;;;;:::i;:::-;;:::i;49035:178::-;;;;;;;;;;-1:-1:-1;49035:178:0;;;;;:::i;:::-;;:::i;78105:885::-;;;;;;;;;;-1:-1:-1;78105:885:0;;;;;:::i;:::-;;:::i;61838:232::-;;;;;;;;;;-1:-1:-1;61838:232:0;;;;;:::i;:::-;;:::i;78998:1241::-;;;;;;;;;;-1:-1:-1;78998:1241:0;;;;;:::i;:::-;;:::i;45079:103::-;;;;;;;;;;;;;:::i;59483:38::-;;;;;;;;;;-1:-1:-1;59483:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;59483:38:0;;;;;;;;;;;;;;;;7870:14:1;;7863:22;7845:41;;7929:14;;7922:22;7917:2;7902:18;;7895:50;7964:10;8010:15;;;7990:18;;;7983:43;;;;8062:15;;;;8057:2;8042:18;;8035:43;8109:3;8094:19;;8087:35;8153:3;8138:19;;8131:35;8197:3;8182:19;;8175:35;8241:3;8226:19;;8219:35;7832:3;7817:19;59483:38:0;7518:742:1;49398:61:0;;;;;;;;;;;;;:::i;70006:584::-;;;;;;;;;;-1:-1:-1;70006:584:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72896:24::-;;;;;;;;;;;;;;;;44438:87;;;;;;;;;;-1:-1:-1;44511:6:0;;;;;-1:-1:-1;;;;;44511:6:0;44438:87;;72595:39;;;;;;;;;;-1:-1:-1;72595:39:0;;;;;;;;75716:298;;;;;;:::i;:::-;;:::i;58791:38::-;;;;;;;;;;;;58828:1;58791:38;;58746;;;;;;;;;;;;58783:1;58746:38;;70598:172;;;;;;;;;;-1:-1:-1;70598:172:0;;;;;:::i;:::-;;:::i;62685:104::-;;;;;;;;;;;;;:::i;63625:308::-;;;;;;;;;;-1:-1:-1;63625:308:0;;;;;:::i;:::-;;:::i;59170:26::-;;;;;;;;;;;;;;;;77083:829;;;;;;;;;;-1:-1:-1;77083:829:0;;;;;:::i;:::-;;:::i;75321:387::-;;;;;;:::i;:::-;;:::i;76022:349::-;;;;;;;;;;-1:-1:-1;76022:349:0;;;;;:::i;:::-;;:::i;64608:308::-;;;;;;;;;;-1:-1:-1;64608:308:0;;;;;:::i;:::-;;:::i;76379:331::-;;;;;;;;;;;;;:::i;61237:301::-;;;;;;;;;;-1:-1:-1;61237:301:0;;;;;:::i;:::-;;:::i;:::-;;;;;;11221:13:1;;11236:4;11217:24;11199:43;;11302:4;11290:17;;;11284:24;-1:-1:-1;;;;;11280:50:1;11258:20;;;11251:80;11387:4;11375:17;;;11369:24;11347:20;;;11340:54;11450:4;11438:17;;;11432:24;11410:20;;;11403:54;;;;11186:3;11171:19;;10998:465;58836:42:0;;;;;;;;;;;;58877:1;58836:42;;80247:1164;;;;;;:::i;:::-;;:::i;62797:229::-;;;;;;;;;;-1:-1:-1;62797:229:0;;;;;:::i;:::-;;:::i;58706:33::-;;;;;;;;;;;;58738:1;58706:33;;59203:26;;;;;;;;;;;;;;;;81419:1132;;;;;;;;;;-1:-1:-1;81419:1132:0;;;;;:::i;:::-;;:::i;69749:129::-;;;;;;;;;;-1:-1:-1;69749:129:0;;;;;:::i;:::-;;:::i;63941:194::-;;;;;;;;;;-1:-1:-1;63941:194:0;;;;;:::i;:::-;;:::i;45337:201::-;;;;;;;;;;-1:-1:-1;45337:201:0;;;;;:::i;:::-;;:::i;60906:323::-;61033:4;-1:-1:-1;;;;;;61071:40:0;;-1:-1:-1;;;61071:40:0;;:101;;-1:-1:-1;;;;;;;61124:48:0;;-1:-1:-1;;;61124:48:0;61071:101;:150;;;-1:-1:-1;;;;;;;;;;51663:40:0;;;61185:36;61055:166;60906:323;-1:-1:-1;;60906:323:0:o;49221:169::-;44324:13;:11;:13::i;:::-;-1:-1:-1;;;;;49619:14:0;;49596:4;49619:14;;;:7;:14;;;;;;;;49294:55:::1;;49324:25;;-1:-1:-1::0;;;49324:25:0::1;;;;;;;;;;;49294:55;-1:-1:-1::0;;;;;49367:15:0::1;;::::0;;;:7:::1;:15;::::0;;;;49360:22;;-1:-1:-1;;49360:22:0::1;::::0;;49221:169::o;62577:100::-;62631:13;62664:5;62657:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62577:100;:::o;63393:224::-;63494:7;63524:16;63532:7;63524;:16::i;:::-;63519:48;;63549:18;;-1:-1:-1;;;63549:18:0;;;;;;;;;;;63519:48;-1:-1:-1;63585:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;63585:24:0;;63393:224::o;63034:351::-;63115:13;63131:16;63139:7;63131;:16::i;:::-;63115:32;;63168:5;-1:-1:-1;;;;;63162:11:0;:2;-1:-1:-1;;;;;63162:11:0;;63158:50;;63182:26;;-1:-1:-1;;;63182:26:0;;;;;;;;;;;63158:50;43069:10;-1:-1:-1;;;;;63223:21:0;;;;;;:63;;-1:-1:-1;63249:37:0;63266:5;43069:10;63941:194;:::i;63249:37::-;63248:38;63223:63;63219:126;;;63308:37;;-1:-1:-1;;;63308:37:0;;;;;;;;;;;63219:126;63356:21;63365:2;63369:7;63356:8;:21::i;:::-;63104:281;63034:351;;:::o;76718:357::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;76845:12:::1;::::0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;:19;::::1;76841:55;;;76873:23;;-1:-1:-1::0;;;76873:23:0::1;;;;;;;;;;;76841:55;76930:12;76911:15;:31;76907:71;;76951:27;;-1:-1:-1::0;;;76951:27:0::1;;;;;;;;;;;76907:71;77004:63;::::0;;::::1;::::0;;::::1;::::0;;77010:4:::1;77004:63:::0;;;-1:-1:-1;77004:63:0::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76989:12:::1;::::0;;::::1;::::0;;:7:::1;:12:::0;;;;;;;:78;;;;;;;;;;;::::1;-1:-1:-1::0;;;76989:78:0::1;-1:-1:-1::0;;76989:78:0;;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;76989:78:0;::::1;;::::0;;::::1;-1:-1:-1::0;;76989:78:0;::::1;;::::0;;;;-1:-1:-1;;76989:78:0;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;76718:357::o;69886:112::-;69938:7;69979:11;;69965;;:25;;;;:::i;:::-;69958:32;;69886:112;:::o;64143:264::-;64282:41;43069:10;64315:7;64282:18;:41::i;:::-;64277:83;;64332:28;;-1:-1:-1;;;64332:28:0;;;;;;;;;;;64277:83;64371:28;64381:4;64387:2;64391:7;64371:9;:28::i;75034:279::-;75115:7;75124;75149:16;75157:7;75149;:16::i;:::-;75144:48;;75174:18;;-1:-1:-1;;;75174:18:0;;;;;;;;;;;75144:48;75211:26;;-1:-1:-1;;;;;;;;75211:26:0;;;;75301:3;;75252:45;;75276:21;75211:26;75276:21;;;;;75252;:45;:::i;:::-;75239:59;;;;:9;:59;:::i;:::-;:65;;;;:::i;:::-;75203:102;;;;75034:279;;;;;;:::o;49467:65::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;49514:10:::1;:8;:10::i;:::-;49467:65::o:0;64415:185::-;64553:39;64570:4;64576:2;64580:7;64553:39;;;;;;;;;;;;:16;:39::i;77920:177::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;78002:29:::1;78014:16;78002:11;:29::i;:::-;78047:42;78067:1;78087;78070:14;60590:11:::0;;;60508:101;78070:14:::1;:18;;;;:::i;:::-;78047:42;::::0;;5926:25:1;;;5982:2;5967:18;;5960:34;;;;5899:18;78047:42:0::1;;;;;;;77920:177:::0;:::o;62078:201::-;62175:7;62201:13;62219:29;62240:7;62219:20;:29::i;:::-;-1:-1:-1;62200:48:0;62078:201;-1:-1:-1;;;62078:201:0:o;49035:178::-;44324:13;:11;:13::i;:::-;-1:-1:-1;;;;;49619:14:0;;49596:4;49619:14;;;:7;:14;;;;;;;;49108:61:::1;;;49140:29;;-1:-1:-1::0;;;49140:29:0::1;;;;;;;;;;;49108:61;-1:-1:-1::0;;;;;49180:18:0::1;;::::0;;;:7:::1;:18;::::0;;;;:25;;-1:-1:-1;;49180:25:0::1;49201:4;49180:25;::::0;;49035:178::o;78105:885::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;78206:22:::1;78239:26:::0;78281:9:::1;78276:707;78296:20:::0;;::::1;78276:707;;;78355:9;;78365:1;78355:12;;;;;;;:::i;:::-;;;;;;;78338:29;;78405:27;78417:14;78405:11;:27::i;:::-;78382:50:::0;-1:-1:-1;78451:31:0::1;::::0;::::1;::::0;;:71:::1;;-1:-1:-1::0;78486:36:0::1;::::0;::::1;58828:1;78486:36;78451:71;78447:130;;;78531:46;;-1:-1:-1::0;;;78531:46:0::1;;;;;;;;;;;78447:130;-1:-1:-1::0;;78596:28:0::1;::::0;::::1;::::0;78592:70:::1;;78633:29;;-1:-1:-1::0;;;78633:29:0::1;;;;;;;;;;;78592:70;78677:43;78691:14;78707:12;78677:13;:43::i;:::-;78742:49;::::0;;14066:25:1;;;14139:4;14127:17;;14122:2;14107:18;;14100:45;78742:49:0::1;::::0;14039:18:1;78742:49:0::1;;;;;;;58783:1;78810:28;::::0;::::1;;78806:166;;78864:24;::::0;3437:25:1;;;78864:24:0::1;::::0;3425:2:1;3410:18;78864:24:0::1;;;;;;;78806:166;;;78934:22;::::0;3437:25:1;;;78934:22:0::1;::::0;3425:2:1;3410:18;78934:22:0::1;;;;;;;78806:166;78318:3;::::0;::::1;:::i;:::-;;;78276:707;;;;78195:795;;78105:885:::0;;;:::o;61838:232::-;61935:4;-1:-1:-1;;;;;61961:19:0;;61957:56;;61989:24;;-1:-1:-1;;;61989:24:0;;;;;;;;;;;61957:56;-1:-1:-1;;;;;;62031:23:0;;;;;:16;:23;;;;;:31;;61838:232::o;78998:1241::-;79069:21;79101:22;79134:33;;:::i;:::-;79183:9;79178:895;79198:20;;;79178:895;;;79257:9;;79267:1;79257:12;;;;;;;:::i;:::-;;;;;;;79240:29;;79289:48;79308:12;43069:10;;42989:98;79308:12;79322:14;79289:18;:48::i;:::-;79284:90;;79346:28;;-1:-1:-1;;;79346:28:0;;;;;;;;;;;79284:90;58783:1;79393:27;79405:14;79393:11;:27::i;:::-;:42;;;79389:86;;;79444:31;;-1:-1:-1;;;79444:31:0;;;;;;;;;;;79389:86;79490:43;79504:14;58828:1;79490:13;:43::i;:::-;79569:38;79592:14;79569:22;:38::i;:::-;79651:24;;71014:16;;79651:24;71014:16;;;:7;:16;;;;;:28;;;79550:57;;-1:-1:-1;71045:15:0;-1:-1:-1;79622:398:0;;79714:27;;;;79697:44;;;;:::i;:::-;79821:27;;;;;79768:24;;79760:33;;;;;;:7;:33;;;;;:57;;:88;;79697:44;;-1:-1:-1;79821:27:0;;79760:57;;:33;:88;;79821:27;;79760:88;:::i;:::-;;;;-1:-1:-1;;79900:27:0;;;;;79872:56;;5926:25:1;;;5982:2;5967:18;;5960:34;;;;79872:56:0;;5899:18:1;79872:56:0;;;;;;;79622:398;;;79974:30;;;5926:25:1;;;80002:1:0;5982:2:1;5967:18;;5960:34;79974:30:0;;5899:18:1;79974:30:0;;;;;;;79622:398;80039:22;;3437:25:1;;;80039:22:0;;3425:2:1;3410:18;80039:22:0;;;;;;;79220:3;;;:::i;:::-;;;79178:895;;;-1:-1:-1;80087:17:0;;80083:149;;80137:13;80121:12;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;80178:26:0;;80165:55;;-1:-1:-1;;;;;80178:26:0;80206:13;80165:12;:55::i;:::-;79058:1181;;;78998:1241;;:::o;45079:103::-;44324:13;:11;:13::i;:::-;45144:30:::1;45171:1;45144:18;:30::i;49398:61::-:0;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;49443:8:::1;:6;:8::i;70006:584::-:0;70075:16;70129:19;70163:22;70188:16;70198:5;70188:9;:16::i;:::-;70163:41;;70219:25;70261:14;70247:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70247:29:0;;70219:57;;70296:9;70291:251;70326:14;70311:11;:29;70291:251;;70370:10;70378:1;70370:7;:10::i;:::-;70366:161;;;70423:5;-1:-1:-1;;;;;70409:19:0;:10;70417:1;70409:7;:10::i;:::-;-1:-1:-1;;;;;70409:19:0;;70405:103;;70483:1;70457:8;70466:13;;;;;;70457:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;70405:103;70342:3;;70291:251;;;-1:-1:-1;70563:8:0;70006:584;-1:-1:-1;;;;70006:584:0:o;75716:298::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;85490:17:::1;::::0;;::::1;;::::0;;;:7:::1;:17;::::0;;;;:26;75824:8;;85490:26:::1;::::0;;::::1;;85486:64;;;85525:25;;-1:-1:-1::0;;;85525:25:0::1;;;;;;;;;;;85486:64;85693:17:::2;::::0;::::2;;::::0;;;:7:::2;:17;::::0;;;;:30;75852:8;;75862:7;;85693:30:::2;-1:-1:-1::0;;;85693:30:0;::::2;::::0;::::2;::::0;85651:39:::2;::::0;75862:7;;85651:29;;::::2;;:39;:::i;:::-;:72;;;85647:111;;;85732:26;;-1:-1:-1::0;;;85732:26:0::2;;;;;;;;;;;85647:111;85137:17:::3;::::0;;::::3;;::::0;;;:7:::3;:17;::::0;;;;:24;75888:8;;85137:24:::3;85132:56;;85170:18;;-1:-1:-1::0;;;85170:18:0::3;;;;;;;;;;;85132:56;85335:17:::4;::::0;::::4;;::::0;;;:7:::4;:17;::::0;;;;:23:::4;;::::0;75918:9:::4;::::0;75929:8;;75939:7;;85335:41:::4;::::0;::::4;::::0;::::4;::::0;::::4;:::i;:::-;85320:11;:56;85316:90;;85385:21;;-1:-1:-1::0;;;85385:21:0::4;;;;;;;;;;;85316:90;75959:47:::5;75972:3;75977:8;75987:7;75996:9;75959:12;:47::i;:::-;85199:1:::4;;;85769::::3;85561::::2;;49758::::1;75716:298:::0;;;:::o;70598:172::-;70657:5;70679:16;70687:7;70679;:16::i;:::-;70674:48;;70704:18;;-1:-1:-1;;;70704:18:0;;;;;;;;;;;70674:48;-1:-1:-1;70740:22:0;;;;:13;:22;;;;;;;;;70598:172::o;62685:104::-;62741:13;62774:7;62767:14;;;;;:::i;63625:308::-;43069:10;-1:-1:-1;;;;;63744:24:0;;;63740:57;;63777:20;;-1:-1:-1;;;63777:20:0;;;;;;;;;;;63740:57;43069:10;63808:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;63808:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;63808:53:0;;;;;;;;;;63877:48;;540:41:1;;;63808:42:0;;43069:10;63877:48;;513:18:1;63877:48:0;;;;;;;63625:308;;:::o;77083:829::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;85137:17:::1;::::0;;::::1;;::::0;;;:7:::1;:17;::::0;;;;:24;77342:14;;85137:24:::1;85132:56;;85170:18;;-1:-1:-1::0;;;85170:18:0::1;;;;;;;;;;;85132:56;77369:26:::2;:56:::0;;77436:26:::2;:56:::0;;-1:-1:-1;;;;;;77436:56:0::2;-1:-1:-1::0;;;;;77436:56:0;;::::2;::::0;;::::2;::::0;;;77503:30:::2;77603:46:::0;;::::2;-1:-1:-1::0;;;;;;77503:30:0;;;-1:-1:-1;;;77369:56:0;;::::2;::::0;;::::2;-1:-1:-1::0;;77503:30:0;;;;;::::2;::::0;;::::2;::::0;;;::::2;-1:-1:-1::0;;77660:46:0;77544:48;::::2;::::0;::::2;::::0;;::::2;-1:-1:-1::0;;77660:46:0;;;;;;;77369:56:::2;77660:46:::0;;::::2;::::0;;::::2;;::::0;;;77722:182:::2;::::0;;15137:36:1;;;15204:2;15189:18;;15182:45;;;;15243:18;;;15236:45;15312:2;15297:18;;15290:51;;;;15410:3;15395:19;;15388:44;15368:3;15448:19;;15441:44;;;;77722:182:0::2;::::0;15124:3:1;15109:19;77722:182:0::2;;;;;;;49758:1:::1;77083:829:::0;;;;;;:::o;75321:387::-;75385:13;;;;;;;;;85490:17;;;;:7;:17;;;;;:26;75385:13;;;85490:26;;;;85486:64;;;85525:25;;-1:-1:-1;;;85525:25:0;;;;;;;;;;;85486:64;75431:13:::1;::::0;;;::::1;;;85335:17;::::0;;;:7:::1;:17;::::0;;;;:23:::1;;::::0;75420:9:::1;::::0;75431:13;75446:7;;85335:41:::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;85320:11;:56;85316:90;;85385:21;;-1:-1:-1::0;;;85385:21:0::1;;;;;;;;;;;85316:90;75473:13:::2;::::0;::::2;::::0;;;;::::2;;85693:17;::::0;;;:7:::2;:17;::::0;;;;:30;75473:13;;75488:7;;85693:30:::2;-1:-1:-1::0;;;85693:30:0;::::2;::::0;::::2;::::0;85651:39:::2;::::0;75488:7;;85651:29;;::::2;;:39;:::i;:::-;:72;;;85647:111;;;85732:26;;-1:-1:-1::0;;;85732:26:0::2;;;;;;;;;;;85647:111;75567:22:::3;::::0;43069:10;75512:30:::3;::::0;;;:16:::3;:30;::::0;;;;:42:::3;;::::0;75567:22:::3;::::0;;;::::3;::::0;::::3;::::0;75512:52:::3;::::0;;;::::3;::::0;::::3;:::i;:::-;:77;75508:120;;;75598:30;;-1:-1:-1::0;;;75598:30:0::3;;;;;;;;;;;75508:120;75639:61;43069:10:::0;75666:13:::3;::::0;;;::::3;;;75681:7:::0;75690:9:::3;75639:12;:61::i;:::-;85417:1:::2;;85561::::1;;;75321:387:::0;;:::o;76022:349::-;76110:1;76090:21;;;76086:68;;76120:34;;-1:-1:-1;;;76120:34:0;;;;;;;;;;;76086:68;76165:20;76205:6;76200:113;76217:20;;;76200:113;;;76275:26;76288:9;;76298:1;76288:12;;;;;;;:::i;:::-;;;;;;;76275;:26::i;:::-;76259:42;;;;:::i;:::-;;-1:-1:-1;76239:3:0;;;;:::i;:::-;;;;76200:113;;;-1:-1:-1;76323:40:0;43069:10;76350:12;76323;:40::i;64608:308::-;64780:41;43069:10;64813:7;64780:18;:41::i;:::-;64775:83;;64830:28;;-1:-1:-1;;;64830:28:0;;;;;;;;;;;64775:83;64869:39;64883:4;64889:2;64893:7;64902:5;64869:13;:39::i;:::-;64608:308;;;;:::o;76379:331::-;47174:19;:17;:19::i;:::-;76444:9:::1;;76457:1;76444:14:::0;76440:49:::1;;76467:22;;-1:-1:-1::0;;;76467:22:0::1;;;;;;;;;;;76440:49;76520:9;::::0;76531:26:::1;::::0;76505:53:::1;::::0;;15670:25:1;;;-1:-1:-1;;;76531:26:0;;::::1;-1:-1:-1::0;;;;;76531:26:0::1;15726:2:1::0;15711:18;;15704:60;76505:53:0::1;::::0;15643:18:1;76505:53:0::1;;;;;;;76599:9;::::0;;76571:25:::1;76619:13:::0;;;76656:26:::1;::::0;76643:59:::1;::::0;-1:-1:-1;;;76656:26:0;::::1;-1:-1:-1::0;;;;;76656:26:0::1;76599:9:::0;76643:12:::1;:59::i;:::-;76429:281;76379:331::o:0;61237:301::-;61296:16;;:::i;:::-;61325:21;61349:31;61372:7;61349:22;:31::i;:::-;61419:12;;71014:16;;61419:12;71014:16;;;:7;:16;;;;;:28;;;61325:55;;-1:-1:-1;71045:15:0;-1:-1:-1;61391:118:0;;;61456:41;;;;;;;;61466:4;:12;;;61456:41;;;;;;61480:4;:10;;;-1:-1:-1;;;;;61456:41:0;;;;;61492:1;61456:41;;;;61495:1;61456:41;;;61449:48;;;61237:301;;;:::o;80247:1164::-;80328:19;80358:14;80383:22;80416:33;;:::i;:::-;80465:9;80460:839;80480:20;;;80460:839;;;80539:9;;80549:1;80539:12;;;;;;;:::i;:::-;;;;;;;80522:29;;80571:48;80590:12;43069:10;;42989:98;80571:48;80566:90;;80628:28;;-1:-1:-1;;;80628:28:0;;;;;;;;;;;80566:90;80684:27;80696:14;80684:11;:27::i;:::-;80673:38;-1:-1:-1;58828:1:0;80730:27;80742:14;80730:11;:27::i;:::-;:43;;;80726:87;;80782:31;;-1:-1:-1;;;80782:31:0;;;;;;;;;;;80726:87;80849:38;80872:14;80849:22;:38::i;:::-;80931:24;;71014:16;;80931:24;71014:16;;;:7;:16;;;;;:28;;;80830:57;;-1:-1:-1;71045:15:0;-1:-1:-1;80902:240:0;;80992:27;;;;80977:42;;;;:::i;:::-;81099:27;;;;;81046:24;;81038:33;;;;;;:7;:33;;;;;:57;;:88;;80977:42;;-1:-1:-1;81099:27:0;;81038:57;;:33;:88;;81099:27;;81038:88;:::i;:::-;;;;-1:-1:-1;;80902:240:0;81156:38;81170:14;58738:1;81156:13;:38::i;:::-;81214:29;;3437:25:1;;;81214:29:0;;3425:2:1;3410:18;81214:29:0;;;;;;;81263:24;;3437:25:1;;;81263:24:0;;3425:2:1;3410:18;81263:24:0;;;;;;;80502:3;;;:::i;:::-;;;80460:839;;;;81328:9;81313:11;:24;81309:58;;81346:21;;-1:-1:-1;;;81346:21:0;;;;;;;;;;;81309:58;81394:9;81378:12;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;;80247:1164:0:o;62797:229::-;62870:13;62901:16;62909:7;62901;:16::i;:::-;62896:48;;62926:18;;-1:-1:-1;;;62926:18:0;;;;;;;;;;;62896:48;62986:10;:8;:10::i;:::-;62998:18;:7;:16;:18::i;:::-;62969:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62955:63;;62797:229;;;:::o;81419:1132::-;43069:10;49685:21;;;;:7;:21;;;;;;;;49680:67;;49715:32;;-1:-1:-1;;;49715:32:0;;;;;;;;;;;49680:67;81514:31:::1;81560:32:::0;81614:6:::1;81609:809;81626:20:::0;;::::1;81609:809;;;81668:26;81697:7;:21;81705:9;;81715:1;81705:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;81697:21;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;81697:21:0;81738:19;;81697:21;;-1:-1:-1;81738:19:0::1;81733:51;;81766:18;;-1:-1:-1::0;;;81766:18:0::1;;;;;;;;;;;81733:51;81804:37;81828:9;;81838:1;81828:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;71014:16:::0;;70990:4;71014:16;;;:7;:16;;;;;:28;;;71045:15;-1:-1:-1;71014:46:0;70911:157;81804:37:::1;81799:77;;81850:26;;-1:-1:-1::0;;;81850:26:0::1;;;;;;;;;;;81799:77;81895:21:::0;;::::1;::::0;::::1;;;81891:59;;;81925:25;;-1:-1:-1::0;;;81925:25:0::1;;;;;;;;;;;81891:59;81994:36;::::0;::::1;::::0;81967:63:::1;::::0;;::::1;:::i;:::-;;;82073:12;:37;;;82045:65;;;;;:::i;:::-;;;82130:120;82160:9;;82170:1;82160:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;82174:36;::::0;::::1;::::0;82212:37:::1;::::0;::::1;::::0;82130:120:::1;::::0;;16506:4:1;16494:17;;;16476:36;;16543:2;16528:18;;16521:34;;;;16571:18;;;16564:34;16464:2;16449:18;82130:120:0::1;;;;;;;82306:1;82267:36;::::0;::::1;:40:::0;;;82322:37:::1;::::0;::::1;:41:::0;82378:28;;-1:-1:-1;;82378:28:0::1;;;::::0;;81648:3:::1;::::0;::::1;:::i;:::-;;;81609:809;;;;82446:23;82430:12;;:39;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;82493:50:0::1;::::0;-1:-1:-1;82519:24:0;82493:23;:50:::1;:::i;:::-;82480:9;;:63;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;81419:1132:0:o;69749:129::-;69821:7;69848:22;69862:7;69848:13;:22::i;63941:194::-;-1:-1:-1;;;;;64092:25:0;;;64063:4;64092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;63941:194::o;45337:201::-;44324:13;:11;:13::i;:::-;-1:-1:-1;;;;;45426:22:0;::::1;45418:73;;;::::0;-1:-1:-1;;;45418:73:0;;16811:2:1;45418:73:0::1;::::0;::::1;16793:21:1::0;16850:2;16830:18;;;16823:30;16889:34;16869:18;;;16862:62;-1:-1:-1;;;16940:18:1;;;16933:36;16986:19;;45418:73:0::1;;;;;;;;;45502:28;45521:8;45502:18;:28::i;44603:132::-:0;44511:6;;-1:-1:-1;;;;;44511:6:0;;;;;43069:10;44667:23;44659:68;;;;-1:-1:-1;;;44659:68:0;;17218:2:1;44659:68:0;;;17200:21:1;;;17237:18;;;17230:30;17296:34;17276:18;;;17269:62;17348:18;;44659:68:0;17016:356:1;65233:167:0;65298:4;65332:14;60590:11;;;60508:101;65332:14;65322:7;:24;:40;;;;-1:-1:-1;65350:12:0;65322:40;:70;;;;-1:-1:-1;7641:1:0;7632:10;;;7598:4;7719:20;;;65367:12;7719:20;;;;;;-1:-1:-1;;;7696:4:0;7688:12;;7668:33;7719:27;:32;;65366:26;65315:77;65233:167;-1:-1:-1;;65233:167:0:o;68383:::-;68458:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;68458:29:0;-1:-1:-1;;;;;68458:29:0;;;;;;;;:24;;68512:16;68458:24;68512:7;:16::i;:::-;-1:-1:-1;;;;;68503:39:0;;;;;;;;;;;68383:167;;:::o;65408:363::-;65521:4;65548:16;65556:7;65548;:16::i;:::-;65543:48;;65573:18;;-1:-1:-1;;;65573:18:0;;;;;;;;;;;65543:48;65602:13;65618:16;65626:7;65618;:16::i;:::-;65602:32;;65664:5;-1:-1:-1;;;;;65653:16:0;:7;-1:-1:-1;;;;;65653:16:0;;:60;;;;65706:7;-1:-1:-1;;;;;65682:31:0;:20;65694:7;65682:11;:20::i;:::-;-1:-1:-1;;;;;65682:31:0;;65653:60;:109;;;;65730:32;65747:5;65754:7;65730:16;:32::i;:::-;65645:118;65408:363;-1:-1:-1;;;;65408:363:0:o;67337:1038::-;67462:13;67477:24;67505:29;67526:7;67505:20;:29::i;:::-;67461:73;;;;67560:4;-1:-1:-1;;;;;67551:13:0;:5;-1:-1:-1;;;;;67551:13:0;;67547:44;;67573:18;;-1:-1:-1;;;67573:18:0;;;;;;;;;;;67547:44;-1:-1:-1;;;;;67606:16:0;;67602:53;;67631:24;;-1:-1:-1;;;67631:24:0;;;;;;;;;;;67602:53;67668:43;67690:4;67696:2;67700:7;67709:1;67668:21;:43::i;:::-;67776:29;67793:1;67797:7;67776:8;:29::i;:::-;67818:25;67846:11;:7;67856:1;67846:11;:::i;:::-;7641:1;7632:10;;;67875;7719:20;;;;;;;;;;;7632:10;;-1:-1:-1;;;;7696:4:0;7688:12;;7668:33;7719:27;:32;;;67874:81;;-1:-1:-1;60590:11:0;;67921:17;:34;67874:81;67870:214;;;67982:29;;;;:10;:29;;;;;:42;;-1:-1:-1;;;;;;67982:42:0;;-1:-1:-1;;;;;67982:42:0;;;;;;68039:33;;67982:29;68039:14;:33::i;:::-;68096:22;;;;:13;:22;;;;;;;;:37;;-1:-1:-1;;68096:37:0;58783:1;68096:37;;;68144:10;:19;;;;;:30;;-1:-1:-1;;;;;68144:30:0;;68096:37;68144:30;-1:-1:-1;;;;;;68144:30:0;;;;;;68189:27;;;68185:83;;68233:23;:10;68248:7;68233:14;:23::i;:::-;68304:7;68300:2;-1:-1:-1;;;;;68285:27:0;68294:4;-1:-1:-1;;;;;68285:27:0;;;;;;;;;;;68325:42;64608:308;48424:120;47433:16;:14;:16::i;:::-;48483:7:::1;:15:::0;;-1:-1:-1;;48483:15:0::1;::::0;;48514:22:::1;43069:10:::0;48523:12:::1;48514:22;::::0;-1:-1:-1;;;;;2263:32:1;;;2245:51;;2233:2;2218:18;48514:22:0::1;;;;;;;48424:120::o:0;60402:98::-;60466:16;:26;60485:7;60466:16;:26;:::i;:::-;;60402:98;:::o;62287:282::-;62357:13;62372:24;62413:16;62421:7;62413;:16::i;:::-;62408:48;;62438:18;;-1:-1:-1;;;62438:18:0;;;;;;;;;;;62408:48;62486:22;62500:7;62486:13;:22::i;:::-;62527:28;;;;:10;:28;;;;;:34;;;;-1:-1:-1;;;;;62527:34:0;;:28;;-1:-1:-1;62527:34:0;-1:-1:-1;;62287:282:0:o;70778:125::-;70862:22;;;;:13;:22;;;;;;:33;;-1:-1:-1;;70862:33:0;;;;;;;;;;;70778:125::o;61546:282::-;61626:16;;:::i;:::-;61660;61668:7;61660;:16::i;:::-;61655:48;;61685:18;;-1:-1:-1;;;61685:18:0;;;;;;;;;;;61655:48;61717:24;61745:29;61766:7;61745:20;:29::i;:::-;61792:28;;;;:10;:28;;;;;;;;;61785:35;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61785:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;61546:282:0:o;84687:185::-;84760:9;84782:3;-1:-1:-1;;;;;84774:17:0;84799:7;84774:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84759:52;;;84827:4;84822:42;;84840:24;;-1:-1:-1;;;84840:24:0;;;;;;;;;;;45698:191;45791:6;;;-1:-1:-1;;;;;45808:17:0;;;45791:6;45808:17;;;-1:-1:-1;;;;;;45808:17:0;;;;;;45841:40;;45791:6;;;;;;;;45841:40;;45772:16;;45841:40;45761:128;45698:191;:::o;48165:118::-;47174:19;:17;:19::i;:::-;48225:7:::1;:14:::0;;-1:-1:-1;;48225:14:0::1;48235:4;48225:14;::::0;;48255:20:::1;48262:12;43069:10:::0;;42989:98;82559:1008;82670:7;:12;;82681:1;82670:12;82666:59;;82691:34;;-1:-1:-1;;;82691:34:0;;;;;;;;;;;82666:59;82736:17;;;;;;;:7;:17;;;;;:40;;82769:7;;82736:17;:29;;:40;;82769:7;;82736:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;82789:18;82819:19;82840;82863:37;82882:7;82863:37;;82891:8;82863:18;:37::i;:::-;82818:82;;-1:-1:-1;82818:82:0;-1:-1:-1;82943:1:0;82915:25;82818:82;;82915:25;:::i;:::-;:29;82911:373;;;82961:13;83004:11;82977:24;82990:11;82977:10;:24;:::i;:::-;:38;;;;:::i;:::-;82961:54;;83043:11;83030:9;;:24;;;;;;;:::i;:::-;;;;;;;;83085:5;83069:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;83118:15:0;;-1:-1:-1;83118:15:0;;;:5;:15;:::i;:::-;83150:17;;;;;;;:7;:17;;;;;:41;;:50;;83105:28;;-1:-1:-1;83195:5:0;;83150:41;;:17;:50;;83195:5;;83150:50;:::i;:::-;;;;-1:-1:-1;;83215:17:0;;;;;;;:7;:17;;;;;:42;;:57;;83261:11;;83215:17;:57;;83261:11;;83215:57;:::i;:::-;;;;-1:-1:-1;;;82911:373:0;83296:25;83324:14;60590:11;;;60508:101;83324:14;83296:42;;83349:23;83359:3;83364:7;83349:23;;:9;:23::i;:::-;83383:79;83399:17;83418:8;83428:10;83440:21;;;;:11;:21;:::i;:::-;60743:19;;;;:10;:19;;;;;;:37;;-1:-1:-1;;60743:37:0;;;;;;;;;;;;-1:-1:-1;60791:30:0;;:43;60845:31;;:45;60617:281;83383:79;83480;43069:10;83506:3;83511:8;83521:17;83557:1;83540:14;60590:11;;;60508:101;83540:14;:18;;;;:::i;:::-;83480:79;;;-1:-1:-1;;;;;20102:15:1;;;20084:34;;20154:15;;;;20149:2;20134:18;;20127:43;20218:4;20206:17;;;;20186:18;;;20179:45;20255:2;20240:18;;20233:34;20298:3;20283:19;;20276:35;83480:79:0;;;;;;20033:3:1;83480:79:0;;;82655:912;;;;82559:1008;;;;:::o;83575:835::-;83652:7;71458:22;;;:13;:22;;;;;;;;58783:1;71458:37;:22;;;:37;71454:66;;;71504:16;;-1:-1:-1;;;71504:16:0;;;;;;;;;;;71454:66;83676:42:::1;43069:10:::0;83695:12:::1;42989:98:::0;83676:42:::1;83671:84;;83727:28;;-1:-1:-1::0;;;83727:28:0::1;;;;;;;;;;;83671:84;83766:33;83802:21;83814:8;83802:11;:21::i;:::-;83766:57;;83836:15;83842:8;83836:5;:15::i;:::-;83893:24:::0;;83867:61:::1;::::0;;43069:10;20520:51:1;;20619:4;20607:17;;;20602:2;20587:18;;20580:45;20641:18;;;20634:34;;;83867:61:0;::::1;::::0;;;;20508:2:1;83867:61:0;;::::1;83970:24:::0;;71014:16;;70990:4;71014:16;;;:7;:16;;;;;:28;;;71045:15;-1:-1:-1;83941:443:0::1;;84028:16;:27;;;84012:12;;:43;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;84083:28:0::1;::::0;::::1;::::0;84070:9:::1;:41:::0;;:9:::1;::::0;:41:::1;::::0;84083:28;;84070:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;84189:27:0::1;::::0;;::::1;::::0;84136:24;;84128:33:::1;;;::::0;;;:7:::1;:33;::::0;;;;:57:::1;;:88:::0;;84189:27;;84128:57;;:88:::1;::::0;84189:27;;84128:88:::1;:::i;:::-;::::0;;;-1:-1:-1;;84293:28:0::1;::::0;::::1;::::0;84239:24;;84231:33:::1;;;::::0;;;:7:::1;:33;::::0;;;;:58:::1;;:90:::0;;:58;;:33;:90:::1;::::0;84293:28;;84231:90:::1;:::i;:::-;::::0;;;-1:-1:-1;;84345:27:0::1;;::::0;;-1:-1:-1;84338:34:0::1;;83941:443;84401:1;84394:8;;;71531:1;83575:835:::0;;;;:::o;64924:301::-;65081:28;65091:4;65097:2;65101:7;65081:9;:28::i;:::-;65125:51;65148:4;65154:2;65158:7;65167:1;65170:5;65125:22;:51::i;:::-;65120:97;;65185:32;;-1:-1:-1;;;65185:32:0;;;;;;;;;;;47728:108;47640:7;;;;47798:9;47790:38;;;;-1:-1:-1;;;47790:38:0;;20881:2:1;47790:38:0;;;20863:21:1;20920:2;20900:18;;;20893:30;-1:-1:-1;;;20939:18:1;;;20932:46;20995:18;;47790:38:0;20679:340:1;60286:108:0;60337:13;60370:16;60363:23;;;;;:::i;38854:716::-;38910:13;38961:14;38978:17;38989:5;38978:10;:17::i;:::-;38998:1;38978:21;38961:38;;39014:20;39048:6;39037:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39037:18:0;-1:-1:-1;39014:41:0;-1:-1:-1;39179:28:0;;;39195:2;39179:28;39236:288;-1:-1:-1;;39268:5:0;-1:-1:-1;;;39405:2:0;39394:14;;39389:30;39268:5;39376:44;39466:2;39457:11;;;-1:-1:-1;39487:21:0;39236:288;39487:21;-1:-1:-1;39545:6:0;38854:716;-1:-1:-1;;;38854:716:0:o;69583:158::-;69646:24;69702:31;69646:24;69725:7;69702:22;:31::i;84880:197::-;47174:19;:17;:19::i;:::-;71458:22:::1;::::0;;;:13:::1;:22;::::0;;;;;;;58783:1:::1;71458:37;:22:::0;;::::1;:37;71454:66;;;71504:16;;-1:-1:-1::0;;;71504:16:0::1;;;;;;;;;;;8145:204:::0;8242:1;8233:10;;;8216:14;8313:20;;;;;;;;;;;;:28;;-1:-1:-1;;;8297:4:0;8289:12;;;8269:33;;;;8313:28;;;;;8145:204::o;47913:108::-;47640:7;;;;47972:41;;;;-1:-1:-1;;;47972:41:0;;21226:2:1;47972:41:0;;;21208:21:1;21265:2;21245:18;;;21238:30;-1:-1:-1;;;21284:18:1;;;21277:50;21344:18;;47972:41:0;21024:344:1;84418:261:0;84556:17;;;84502:7;84556:17;;;:7;:17;;;;;:23;;;84502:7;;;;84546:33;;:7;:33;:::i;:::-;84606:21;;84530:49;;-1:-1:-1;84630:3:0;;84598:29;;84606:21;;84530:49;84598:29;:::i;:::-;:35;;;;:::i;:::-;84643:21;;84667:3;;84635:29;;84643:21;;;;;84635:5;:29;:::i;:::-;:35;;;;:::i;:::-;84590:81;;;;;84418:261;;;;;:::o;65779:112::-;65856:27;65866:2;65870:8;65856:27;;;;;;;;;;;;:9;:27::i;66994:335::-;67054:12;67069:16;67077:7;67069;:16::i;:::-;67054:31;;67096:51;67118:4;67132:1;67136:7;67145:1;67096:21;:51::i;:::-;67160:25;:12;67177:7;67160:16;:25::i;:::-;-1:-1:-1;;;;;67196:22:0;;;;;;:16;:22;;;;;:35;;67230:1;;67196:22;:35;;67230:1;;67196:35;:::i;:::-;;;;;;;;67257:1;67242:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;67271:50:0;;-1:-1:-1;64608:308:0;68558:1017;68745:6;-1:-1:-1;;;;;68768:13:0;;16070:19;:23;68764:804;;-1:-1:-1;68804:4:0;68846:12;68823:667;68870:23;68885:8;68870:12;:23;:::i;:::-;68860:7;:33;68823:667;;;68929:72;;-1:-1:-1;;;68929:72:0;;-1:-1:-1;;;;;68929:36:0;;;;;:72;;43069:10;;68980:4;;68986:7;;68995:5;;68929:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68929:72:0;;;;;;;;-1:-1:-1;;68929:72:0;;;;;;;;;;;;:::i;:::-;;;68925:550;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69185:6;:13;69202:1;69185:18;69181:275;;69239:32;;-1:-1:-1;;;69239:32:0;;;;;;;;;;;69181:275;69398:6;69392:13;69383:6;69379:2;69375:15;69368:38;68925:550;69053:1;:56;;;;-1:-1:-1;;;;;;;69058:51:0;;-1:-1:-1;;;69058:51:0;69053:56;69049:60;;69002:127;68895:9;;;;:::i;:::-;;;;68823:667;;;;69504:8;;68764:804;-1:-1:-1;69552:4:0;68764:804;68558:1017;;;;;;;:::o;35688:948::-;35741:7;;-1:-1:-1;;;35819:17:0;;35815:106;;-1:-1:-1;;;35857:17:0;;;-1:-1:-1;35903:2:0;35893:12;35815:106;35948:8;35939:5;:17;35935:106;;35986:8;35977:17;;;-1:-1:-1;36023:2:0;36013:12;35935:106;36068:8;36059:5;:17;36055:106;;36106:8;36097:17;;;-1:-1:-1;36143:2:0;36133:12;36055:106;36188:7;36179:5;:16;36175:103;;36225:7;36216:16;;;-1:-1:-1;36261:1:0;36251:11;36175:103;36305:7;36296:5;:16;36292:103;;36342:7;36333:16;;;-1:-1:-1;36378:1:0;36368:11;36292:103;36422:7;36413:5;:16;36409:103;;36459:7;36450:16;;;-1:-1:-1;36495:1:0;36485:11;36409:103;36539:7;36530:5;:16;36526:68;;36577:1;36567:11;36622:6;35688:948;-1:-1:-1;;35688:948:0:o;12916:1234::-;13056:1;13047:10;;;12998:19;13213:20;;;;;;;;;;;12998:19;;13047:10;13137:4;13129:12;;;;13318:18;;;13311:26;13390:6;;13387:756;;13488:22;:2;:20;:22::i;:::-;13473:37;;:11;:37;13467:1;13457:6;:11;;13456:55;13442:69;;13387:756;;;13611:1;13602:6;:10;13594:75;;;;-1:-1:-1;;;13594:75:0;;22323:2:1;13594:75:0;;;22305:21:1;22362:2;22342:18;;;22335:30;22401:34;22381:18;;;22374:62;-1:-1:-1;;;22452:18:1;;;22445:50;22512:19;;13594:75:0;22121:416:1;13594:75:0;-1:-1:-1;;;13721:8:0;;;13852:12;:20;;;;;;;;;;;13721:8;;-1:-1:-1;13912:6:0;;13909:207;;14018:22;:2;:20;:22::i;:::-;14011:3;:29;13994:47;;14005:1;13995:6;:11;;13994:47;13980:61;;14068:5;;13909:207;13563:569;;;13019:1131;;;12916:1234;;;;:::o;65901:330::-;66032:19;66054:14;60590:11;;;60508:101;66054:14;66032:36;;66079:19;66085:2;66089:8;66079:5;:19::i;:::-;66114:68;66145:1;66149:2;66153:11;66166:8;66176:5;66114:22;:68::i;5115:201::-;5177:5;5233:16;;;;;;;;;;;;;;;;;5289:3;3631:64;5251:18;5266:2;5251:14;:18::i;:::-;:33;5250:42;;5233:60;;;;;;;;:::i;:::-;;;;;;;;5115:201;-1:-1:-1;;5115:201:0:o;66239:747::-;66337:19;66359:14;60590:11;;;60508:101;66359:14;66337:36;;66390:8;66402:1;66390:13;66386:60;;66412:34;;-1:-1:-1;;;66412:34:0;;;;;;;;;;;66386:60;-1:-1:-1;;;;;66461:16:0;;66457:53;;66486:24;;-1:-1:-1;;;66486:24:0;;;;;;;;;;;66457:53;66523:60;66553:1;66557:2;66561:11;66574:8;66523:21;:60::i;:::-;66609:8;66594:11;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;66628:20:0;;;;;;:16;:20;;;;;:40;;66660:8;;66628:20;:40;;66660:8;;66628:40;:::i;:::-;;;;-1:-1:-1;;;;;;;66679:20:0;;;;;;:16;:20;;;;;:32;;:44;;66715:8;;66679:20;:44;;66715:8;;66679:44;:::i;:::-;;;;-1:-1:-1;;66760:22:0;;;;;;;;-1:-1:-1;66760:22:0;;;-1:-1:-1;;;;;66760:22:0;;;;;;;;;;;;;;;;;;;;;;66734:23;;;:10;:23;;;;;;:48;;;;;;;;;;;-1:-1:-1;;;;;;66734:48:0;;;66760:22;66734:48;;;;;;;;;;;;;;;;;;;;;;;;66793:27;;66745:11;66793:14;:27::i;:::-;66856:11;66833:146;66879:22;66893:8;66879:11;:22;:::i;:::-;66869:7;:32;66833:146;;;66934:33;;66959:7;;-1:-1:-1;;;;;66934:33:0;;;66951:1;;66934:33;;66951:1;;66934:33;66903:9;;;;:::i;:::-;;;;66833:146;;4342:169;4401:7;4434:1;4429:2;:6;4421:15;;;;;;-1:-1:-1;4485:1:0;:6;;;4479:13;;4342:169::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;789:173::-;857:20;;-1:-1:-1;;;;;906:31:1;;896:42;;886:70;;952:1;949;942:12;886:70;789:173;;;:::o;967:186::-;1026:6;1079:2;1067:9;1058:7;1054:23;1050:32;1047:52;;;1095:1;1092;1085:12;1047:52;1118:29;1137:9;1118:29;:::i;1158:250::-;1243:1;1253:113;1267:6;1264:1;1261:13;1253:113;;;1343:11;;;1337:18;1324:11;;;1317:39;1289:2;1282:10;1253:113;;;-1:-1:-1;;1400:1:1;1382:16;;1375:27;1158:250::o;1413:271::-;1455:3;1493:5;1487:12;1520:6;1515:3;1508:19;1536:76;1605:6;1598:4;1593:3;1589:14;1582:4;1575:5;1571:16;1536:76;:::i;:::-;1666:2;1645:15;-1:-1:-1;;1641:29:1;1632:39;;;;1673:4;1628:50;;1413:271;-1:-1:-1;;1413:271:1:o;1689:220::-;1838:2;1827:9;1820:21;1801:4;1858:45;1899:2;1888:9;1884:18;1876:6;1858:45;:::i;1914:180::-;1973:6;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;-1:-1:-1;2065:23:1;;1914:180;-1:-1:-1;1914:180:1:o;2307:254::-;2375:6;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;2551:2;2536:18;;;;2523:32;;-1:-1:-1;;;2307:254:1:o;2566:156::-;2632:20;;2692:4;2681:16;;2671:27;;2661:55;;2712:1;2709;2702:12;2727:163;2794:20;;2854:10;2843:22;;2833:33;;2823:61;;2880:1;2877;2870:12;2895:391;2978:6;2986;2994;3002;3055:3;3043:9;3034:7;3030:23;3026:33;3023:53;;;3072:1;3069;3062:12;3023:53;3095:27;3112:9;3095:27;:::i;:::-;3085:37;;3141;3174:2;3163:9;3159:18;3141:37;:::i;:::-;2895:391;;3131:47;;-1:-1:-1;;;;3225:2:1;3210:18;;3197:32;;3276:2;3261:18;3248:32;;2895:391::o;3473:328::-;3550:6;3558;3566;3619:2;3607:9;3598:7;3594:23;3590:32;3587:52;;;3635:1;3632;3625:12;3587:52;3658:29;3677:9;3658:29;:::i;:::-;3648:39;;3706:38;3740:2;3729:9;3725:18;3706:38;:::i;:::-;3696:48;;3791:2;3780:9;3776:18;3763:32;3753:42;;3473:328;;;;;:::o;3995:248::-;4063:6;4071;4124:2;4112:9;4103:7;4099:23;4095:32;4092:52;;;4140:1;4137;4130:12;4092:52;-1:-1:-1;;4163:23:1;;;4233:2;4218:18;;;4205:32;;-1:-1:-1;3995:248:1:o;4527:127::-;4588:10;4583:3;4579:20;4576:1;4569:31;4619:4;4616:1;4609:15;4643:4;4640:1;4633:15;4659:632;4724:5;4754:18;4795:2;4787:6;4784:14;4781:40;;;4801:18;;:::i;:::-;4876:2;4870:9;4844:2;4930:15;;-1:-1:-1;;4926:24:1;;;4952:2;4922:33;4918:42;4906:55;;;4976:18;;;4996:22;;;4973:46;4970:72;;;5022:18;;:::i;:::-;5062:10;5058:2;5051:22;5091:6;5082:15;;5121:6;5113;5106:22;5161:3;5152:6;5147:3;5143:16;5140:25;5137:45;;;5178:1;5175;5168:12;5137:45;5228:6;5223:3;5216:4;5208:6;5204:17;5191:44;5283:1;5276:4;5267:6;5259;5255:19;5251:30;5244:41;;;;4659:632;;;;;:::o;5296:451::-;5365:6;5418:2;5406:9;5397:7;5393:23;5389:32;5386:52;;;5434:1;5431;5424:12;5386:52;5474:9;5461:23;5507:18;5499:6;5496:30;5493:50;;;5539:1;5536;5529:12;5493:50;5562:22;;5615:4;5607:13;;5603:27;-1:-1:-1;5593:55:1;;5644:1;5641;5634:12;5593:55;5667:74;5733:7;5728:2;5715:16;5710:2;5706;5702:11;5667:74;:::i;6005:367::-;6068:8;6078:6;6132:3;6125:4;6117:6;6113:17;6109:27;6099:55;;6150:1;6147;6140:12;6099:55;-1:-1:-1;6173:20:1;;6216:18;6205:30;;6202:50;;;6248:1;6245;6238:12;6202:50;6285:4;6277:6;6273:17;6261:29;;6345:3;6338:4;6328:6;6325:1;6321:14;6313:6;6309:27;6305:38;6302:47;6299:67;;;6362:1;6359;6352:12;6377:507;6470:6;6478;6486;6539:2;6527:9;6518:7;6514:23;6510:32;6507:52;;;6555:1;6552;6545:12;6507:52;6595:9;6582:23;6628:18;6620:6;6617:30;6614:50;;;6660:1;6657;6650:12;6614:50;6699:70;6761:7;6752:6;6741:9;6737:22;6699:70;:::i;:::-;6788:8;;-1:-1:-1;6673:96:1;-1:-1:-1;6842:36:1;;-1:-1:-1;6874:2:1;6859:18;;6842:36;:::i;:::-;6832:46;;6377:507;;;;;:::o;6889:437::-;6975:6;6983;7036:2;7024:9;7015:7;7011:23;7007:32;7004:52;;;7052:1;7049;7042:12;7004:52;7092:9;7079:23;7125:18;7117:6;7114:30;7111:50;;;7157:1;7154;7147:12;7111:50;7196:70;7258:7;7249:6;7238:9;7234:22;7196:70;:::i;:::-;7285:8;;7170:96;;-1:-1:-1;6889:437:1;-1:-1:-1;;;;6889:437:1:o;7331:182::-;7388:6;7441:2;7429:9;7420:7;7416:23;7412:32;7409:52;;;7457:1;7454;7447:12;7409:52;7480:27;7497:9;7480:27;:::i;8265:632::-;8436:2;8488:21;;;8558:13;;8461:18;;;8580:22;;;8407:4;;8436:2;8659:15;;;;8633:2;8618:18;;;8407:4;8702:169;8716:6;8713:1;8710:13;8702:169;;;8777:13;;8765:26;;8846:15;;;;8811:12;;;;8738:1;8731:9;8702:169;;;-1:-1:-1;8888:3:1;;8265:632;-1:-1:-1;;;;;;8265:632:1:o;8902:328::-;8976:6;8984;8992;9045:2;9033:9;9024:7;9020:23;9016:32;9013:52;;;9061:1;9058;9051:12;9013:52;9084:29;9103:9;9084:29;:::i;:::-;9074:39;;9132:36;9164:2;9153:9;9149:18;9132:36;:::i;:::-;9122:46;;9187:37;9220:2;9209:9;9205:18;9187:37;:::i;9235:347::-;9300:6;9308;9361:2;9349:9;9340:7;9336:23;9332:32;9329:52;;;9377:1;9374;9367:12;9329:52;9400:29;9419:9;9400:29;:::i;:::-;9390:39;;9479:2;9468:9;9464:18;9451:32;9526:5;9519:13;9512:21;9505:5;9502:32;9492:60;;9548:1;9545;9538:12;9492:60;9571:5;9561:15;;;9235:347;;;;;:::o;9587:545::-;9684:6;9692;9700;9708;9716;9724;9777:3;9765:9;9756:7;9752:23;9748:33;9745:53;;;9794:1;9791;9784:12;9745:53;9817:27;9834:9;9817:27;:::i;:::-;9807:37;;9863:36;9895:2;9884:9;9880:18;9863:36;:::i;:::-;9853:46;;9918:36;9950:2;9939:9;9935:18;9918:36;:::i;:::-;9908:46;;9973:37;10006:2;9995:9;9991:18;9973:37;:::i;:::-;9963:47;;10029:39;10063:3;10052:9;10048:19;10029:39;:::i;:::-;10019:49;;10087:39;10121:3;10110:9;10106:19;10087:39;:::i;:::-;10077:49;;9587:545;;;;;;;;:::o;10137:184::-;10195:6;10248:2;10236:9;10227:7;10223:23;10219:32;10216:52;;;10264:1;10261;10254:12;10216:52;10287:28;10305:9;10287:28;:::i;10326:667::-;10421:6;10429;10437;10445;10498:3;10486:9;10477:7;10473:23;10469:33;10466:53;;;10515:1;10512;10505:12;10466:53;10538:29;10557:9;10538:29;:::i;:::-;10528:39;;10586:38;10620:2;10609:9;10605:18;10586:38;:::i;:::-;10576:48;;10671:2;10660:9;10656:18;10643:32;10633:42;;10726:2;10715:9;10711:18;10698:32;10753:18;10745:6;10742:30;10739:50;;;10785:1;10782;10775:12;10739:50;10808:22;;10861:4;10853:13;;10849:27;-1:-1:-1;10839:55:1;;10890:1;10887;10880:12;10839:55;10913:74;10979:7;10974:2;10961:16;10956:2;10952;10948:11;10913:74;:::i;:::-;10903:84;;;10326:667;;;;;;;:::o;11908:260::-;11976:6;11984;12037:2;12025:9;12016:7;12012:23;12008:32;12005:52;;;12053:1;12050;12043:12;12005:52;12076:29;12095:9;12076:29;:::i;:::-;12066:39;;12124:38;12158:2;12147:9;12143:18;12124:38;:::i;:::-;12114:48;;11908:260;;;;;:::o;12173:380::-;12252:1;12248:12;;;;12295;;;12316:61;;12370:4;12362:6;12358:17;12348:27;;12316:61;12423:2;12415:6;12412:14;12392:18;12389:38;12386:161;;12469:10;12464:3;12460:20;12457:1;12450:31;12504:4;12501:1;12494:15;12532:4;12529:1;12522:15;12558:127;12619:10;12614:3;12610:20;12607:1;12600:31;12650:4;12647:1;12640:15;12674:4;12671:1;12664:15;12690:128;12757:9;;;12778:11;;;12775:37;;;12792:18;;:::i;12823:148::-;12911:4;12890:12;;;12904;;;12886:31;;12929:13;;12926:39;;;12945:18;;:::i;12976:168::-;13049:9;;;13080;;13097:15;;;13091:22;;13077:37;13067:71;;13118:18;;:::i;13281:217::-;13321:1;13347;13337:132;;13391:10;13386:3;13382:20;13379:1;13372:31;13426:4;13423:1;13416:15;13454:4;13451:1;13444:15;13337:132;-1:-1:-1;13483:9:1;;13281:217::o;13764:127::-;13825:10;13820:3;13816:20;13813:1;13806:31;13856:4;13853:1;13846:15;13880:4;13877:1;13870:15;14156:135;14195:3;14216:17;;;14213:43;;14236:18;;:::i;:::-;-1:-1:-1;14283:1:1;14272:13;;14156:135::o;14296:125::-;14361:9;;;14382:10;;;14379:36;;;14395:18;;:::i;14687:172::-;14754:10;14784;;;14796;;;14780:27;;14819:11;;;14816:37;;;14833:18;;:::i;:::-;14816:37;14687:172;;;;:::o;15775:496::-;15954:3;15992:6;15986:13;16008:66;16067:6;16062:3;16055:4;16047:6;16043:17;16008:66;:::i;:::-;16137:13;;16096:16;;;;16159:70;16137:13;16096:16;16206:4;16194:17;;16159:70;:::i;:::-;16245:20;;15775:496;-1:-1:-1;;;;15775:496:1:o;17503:545::-;17605:2;17600:3;17597:11;17594:448;;;17641:1;17666:5;17662:2;17655:17;17711:4;17707:2;17697:19;17781:2;17769:10;17765:19;17762:1;17758:27;17752:4;17748:38;17817:4;17805:10;17802:20;17799:47;;;-1:-1:-1;17840:4:1;17799:47;17895:2;17890:3;17886:12;17883:1;17879:20;17873:4;17869:31;17859:41;;17950:82;17968:2;17961:5;17958:13;17950:82;;;18013:17;;;17994:1;17983:13;17950:82;;18224:1352;18350:3;18344:10;18377:18;18369:6;18366:30;18363:56;;;18399:18;;:::i;:::-;18428:97;18518:6;18478:38;18510:4;18504:11;18478:38;:::i;:::-;18472:4;18428:97;:::i;:::-;18580:4;;18644:2;18633:14;;18661:1;18656:663;;;;19363:1;19380:6;19377:89;;;-1:-1:-1;19432:19:1;;;19426:26;19377:89;-1:-1:-1;;18181:1:1;18177:11;;;18173:24;18169:29;18159:40;18205:1;18201:11;;;18156:57;19479:81;;18626:944;;18656:663;17450:1;17443:14;;;17487:4;17474:18;;-1:-1:-1;;18692:20:1;;;18810:236;18824:7;18821:1;18818:14;18810:236;;;18913:19;;;18907:26;18892:42;;19005:27;;;;18973:1;18961:14;;;;18840:19;;18810:236;;;18814:3;19074:6;19065:7;19062:19;19059:201;;;19135:19;;;19129:26;-1:-1:-1;;19218:1:1;19214:14;;;19230:3;19210:24;19206:37;19202:42;19187:58;19172:74;;19059:201;-1:-1:-1;;;;;19306:1:1;19290:14;;;19286:22;19273:36;;-1:-1:-1;18224:1352:1:o;21373:489::-;-1:-1:-1;;;;;21642:15:1;;;21624:34;;21694:15;;21689:2;21674:18;;21667:43;21741:2;21726:18;;21719:34;;;21789:3;21784:2;21769:18;;21762:31;;;21567:4;;21810:46;;21836:19;;21828:6;21810:46;:::i;:::-;21802:54;21373:489;-1:-1:-1;;;;;;21373:489:1:o;21867:249::-;21936:6;21989:2;21977:9;21968:7;21964:23;21960:32;21957:52;;;22005:1;22002;21995:12;21957:52;22037:9;22031:16;22056:30;22080:5;22056:30;:::i

Swarm Source

ipfs://fe574fc29097c6932cc0c7ffac262a9d68647285be19699b43f342982c94fec0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.